From 3dd09970a899cf7f94d1e4220df4fa53f94bba4c Mon Sep 17 00:00:00 2001 From: "Adam H. Leventhal" Date: Wed, 15 May 2024 10:45:31 -0700 Subject: [PATCH] typify dep to github --- Cargo.lock | 9 +++------ progenitor-impl/Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8402990..dc10e94 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2393,8 +2393,7 @@ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" [[package]] name = "typify" version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adb6beec125971dda80a086f90b4a70f60f222990ce4d63ad0fc140492f53444" +source = "git+https://github.com/oxidecomputer/typify#ad1296f6ceb998ae8c247d999b7828703a232bdd" dependencies = [ "typify-impl", "typify-macro", @@ -2403,8 +2402,7 @@ dependencies = [ [[package]] name = "typify-impl" version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93bbb24e990654aff858d80fee8114f4322f7d7a1b1ecb45129e2fcb0d0ad5ae" +source = "git+https://github.com/oxidecomputer/typify#ad1296f6ceb998ae8c247d999b7828703a232bdd" dependencies = [ "heck", "log", @@ -2423,8 +2421,7 @@ dependencies = [ [[package]] name = "typify-macro" version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8e6491896e955692d68361c68db2b263e3bec317ec0b684e0e2fa882fb6e31e" +source = "git+https://github.com/oxidecomputer/typify#ad1296f6ceb998ae8c247d999b7828703a232bdd" dependencies = [ "proc-macro2", "quote", diff --git a/progenitor-impl/Cargo.toml b/progenitor-impl/Cargo.toml index e5bdca4..ca1b215 100644 --- a/progenitor-impl/Cargo.toml +++ b/progenitor-impl/Cargo.toml @@ -22,8 +22,8 @@ serde_json = "1.0" syn = { version = "2.0", features = ["parsing"] } thiserror = "1.0" # change when publishing -typify = { version = "0.1.0" } -# typify = { git = "https://github.com/oxidecomputer/typify" } +# typify = { version = "0.1.0" } +typify = { git = "https://github.com/oxidecomputer/typify" } unicode-ident = "1.0.12" [dev-dependencies]