fix typify dependency on github (#108)

This commit is contained in:
Adam Leventhal 2022-07-05 10:42:01 -07:00 committed by GitHub
parent 9c46782df8
commit 20e80c6312
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 9 deletions

6
Cargo.lock generated
View File

@ -1716,7 +1716,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
[[package]]
name = "typify"
version = "0.0.10-dev"
source = "git+https://github.com/oxidecomputer/typify#48a1b6de2fe9af0230ee1080d8edcf741a8ccc5b"
source = "git+https://github.com/oxidecomputer/typify#7b5f72b1e492d3b585791f13758a9d692876b633"
dependencies = [
"typify-impl",
"typify-macro",
@ -1725,7 +1725,7 @@ dependencies = [
[[package]]
name = "typify-impl"
version = "0.0.10-dev"
source = "git+https://github.com/oxidecomputer/typify#48a1b6de2fe9af0230ee1080d8edcf741a8ccc5b"
source = "git+https://github.com/oxidecomputer/typify#7b5f72b1e492d3b585791f13758a9d692876b633"
dependencies = [
"heck",
"log",
@ -1742,7 +1742,7 @@ dependencies = [
[[package]]
name = "typify-macro"
version = "0.0.10-dev"
source = "git+https://github.com/oxidecomputer/typify#48a1b6de2fe9af0230ee1080d8edcf741a8ccc5b"
source = "git+https://github.com/oxidecomputer/typify#7b5f72b1e492d3b585791f13758a9d692876b633"
dependencies = [
"proc-macro2",
"quote",

View File

@ -13,8 +13,4 @@ members = [
#[patch.crates-io]
#typify = { path = "../typify/typify" }
#rustfmt-wrapper = { path = "../rustfmt-wrapper" }
# Latest typify (this can be deleted when typify is updated)
[patch.crates-io]
typify = { git = "https://github.com/oxidecomputer/typify" }
#rustfmt-wrapper = { path = "../rustfmt-wrapper" }

View File

@ -20,7 +20,9 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
syn = { version = "1.0", features = ["parsing"] }
thiserror = "1.0"
typify = "0.0.10-dev"
# To publish, use a numbered version
#typify = "0.0.9"
typify = { git = "https://github.com/oxidecomputer/typify" }
unicode-ident = "1.0.0"
[dev-dependencies]