diff --git a/Cargo.lock b/Cargo.lock index 25a9fa0a..bfed675a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -278,9 +278,9 @@ dependencies = [ [[package]] name = "schemars" -version = "0.8.8" +version = "0.8.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6b5a3c80cea1ab61f4260238409510e814e38b4b563c06044edf91e7dc070e3" +checksum = "1847b767a3d62d95cbf3d8a9f0e421cf57a0d8aa4f411d4b16525afb0284d4ed" dependencies = [ "dyn-clone", "schemars_derive", @@ -291,9 +291,9 @@ dependencies = [ [[package]] name = "schemars_derive" -version = "0.8.8" +version = "0.8.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41ae4dce13e8614c46ac3c38ef1c0d668b101df6ac39817aebdaa26642ddae9b" +checksum = "af4d7e1b012cb3d9129567661a63755ea4b8a7386d339dc945ae187e403c6743" dependencies = [ "proc-macro2", "quote", @@ -341,9 +341,9 @@ dependencies = [ [[package]] name = "serde_derive_internals" -version = "0.25.0" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dbab34ca63057a1f15280bdf3c39f2b1eb1b54c17e98360e511637aef7418c6" +checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c" dependencies = [ "proc-macro2", "quote", @@ -527,9 +527,9 @@ checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04" [[package]] name = "uuid" -version = "0.8.2" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" +checksum = "8cfcd319456c4d6ea10087ed423473267e1a071f3bc0aa89f80d60997843c6f0" [[package]] name = "walkdir" diff --git a/typify-impl/Cargo.toml b/typify-impl/Cargo.toml index fc111f77..cd714c85 100644 --- a/typify-impl/Cargo.toml +++ b/typify-impl/Cargo.toml @@ -14,7 +14,7 @@ log = "0.4" proc-macro2 = "1.0" quote = "1.0" rustfmt-wrapper = "0.1" -schemars = "0.8" +schemars = "0.8.10" serde_json = "1.0" syn = { version = "1.0", features = ["full"] } thiserror = "1.0" @@ -24,6 +24,6 @@ unicode-xid = "0.2" expectorate = "1.0" paste = "1.0" schema = "0.0.1" -schemars = { version = "0.8", features = ["uuid"] } +schemars = { version = "0.8.10", features = ["uuid1"] } serde = "1.0" -uuid = "0.8" +uuid = "1.0.0" diff --git a/typify-macro/Cargo.toml b/typify-macro/Cargo.toml index ceed2221..879e8ce3 100644 --- a/typify-macro/Cargo.toml +++ b/typify-macro/Cargo.toml @@ -11,7 +11,7 @@ readme = "../README.md" [dependencies] proc-macro2 = "1.0" quote = "1.0" -schemars = "0.8" +schemars = "0.8.10" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_tokenstream = "0.1.3" diff --git a/typify-test/Cargo.toml b/typify-test/Cargo.toml index 22121d8e..03cf2842 100644 --- a/typify-test/Cargo.toml +++ b/typify-test/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" serde = "1.0" [build-dependencies] -schemars = "0.8" +schemars = "0.8.10" serde = "1.0" serde_json = "1.0" typify = { path = "../typify" } diff --git a/typify/Cargo.toml b/typify/Cargo.toml index f3e96772..49b5e58a 100644 --- a/typify/Cargo.toml +++ b/typify/Cargo.toml @@ -15,5 +15,5 @@ typify-macro = { path = "../typify-macro" } typify-impl = { path = "../typify-impl" } [dev-dependencies] -schemars = "0.8" +schemars = "0.8.10" serde = "1.0"