diff --git a/Cargo.lock b/Cargo.lock index 4a599823..ba73ac64 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -689,9 +689,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.89" +version = "1.0.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" +checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" dependencies = [ "unicode-ident", ] @@ -991,9 +991,9 @@ checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" [[package]] name = "syn" -version = "2.0.87" +version = "2.0.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" +checksum = "44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e" dependencies = [ "proc-macro2", "quote", diff --git a/typify-impl/Cargo.toml b/typify-impl/Cargo.toml index 176f8b2b..b6048161 100644 --- a/typify-impl/Cargo.toml +++ b/typify-impl/Cargo.toml @@ -17,7 +17,7 @@ schemars = "0.8.21" semver = "1.0.23" serde = "1.0.215" serde_json = "1.0.133" -syn = { version = "2.0.87", features = ["full"] } +syn = { version = "2.0.89", features = ["full"] } thiserror = "2.0.3" unicode-ident = "1.0.13" @@ -29,5 +29,5 @@ paste = "1.0.15" rustfmt-wrapper = "0.2.1" schema = "0.1.0" schemars = { version = "0.8.21", features = ["uuid1", "impl_json_schema"] } -syn = { version = "2.0.87", features = ["full", "extra-traits"] } +syn = { version = "2.0.89", features = ["full", "extra-traits"] } uuid = "1.11.0" diff --git a/typify-test/Cargo.toml b/typify-test/Cargo.toml index c80a2e97..a38a1a02 100644 --- a/typify-test/Cargo.toml +++ b/typify-test/Cargo.toml @@ -13,5 +13,5 @@ ipnetwork = { version = "0.20.0", features = ["schemars"] } prettyplease = "0.2.25" schemars = "0.8.21" serde = "1.0.215" -syn = "2.0.87" +syn = "2.0.89" typify = { path = "../typify" }