diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index bc8cf4a..d117707 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -13,6 +13,9 @@ == Unreleased changes (release date TBD) +* Minor fixes +* Support for `x-rust-types`` via typify (#804) + https://github.com/oxidecomputer/progenitor/compare/v0.6.0\...HEAD[Full list of commits] == 0.6.0 (released 2024-02-28) diff --git a/Cargo.lock b/Cargo.lock index 06e71f9..1ed16d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2393,7 +2393,8 @@ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" [[package]] name = "typify" version = "0.1.0" -source = "git+https://github.com/oxidecomputer/typify#ad1296f6ceb998ae8c247d999b7828703a232bdd" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adb6beec125971dda80a086f90b4a70f60f222990ce4d63ad0fc140492f53444" dependencies = [ "typify-impl", "typify-macro", @@ -2402,7 +2403,8 @@ dependencies = [ [[package]] name = "typify-impl" version = "0.1.0" -source = "git+https://github.com/oxidecomputer/typify#ad1296f6ceb998ae8c247d999b7828703a232bdd" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93bbb24e990654aff858d80fee8114f4322f7d7a1b1ecb45129e2fcb0d0ad5ae" dependencies = [ "heck", "log", @@ -2421,7 +2423,8 @@ dependencies = [ [[package]] name = "typify-macro" version = "0.1.0" -source = "git+https://github.com/oxidecomputer/typify#ad1296f6ceb998ae8c247d999b7828703a232bdd" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8e6491896e955692d68361c68db2b263e3bec317ec0b684e0e2fa882fb6e31e" dependencies = [ "proc-macro2", "quote", diff --git a/progenitor-impl/Cargo.toml b/progenitor-impl/Cargo.toml index 0eac706..dfbd647 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.0.16" } -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]