From 49de0942427f416719e33173f37470a449870391 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 May 2022 18:39:12 +0000 Subject: [PATCH 1/2] Bump schemars from 0.8.8 to 0.8.10 Bumps [schemars](https://github.com/GREsau/schemars) from 0.8.8 to 0.8.10. - [Release notes](https://github.com/GREsau/schemars/releases) - [Changelog](https://github.com/GREsau/schemars/blob/master/CHANGELOG.md) - [Commits](https://github.com/GREsau/schemars/compare/v0.8.8...v0.8.10) --- updated-dependencies: - dependency-name: schemars dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 25a9fa0a..982c8973 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", From 1693ab1cb006dd15c1456bbc83c9fa6ddd0a309b Mon Sep 17 00:00:00 2001 From: "Adam H. Leventhal" Date: Wed, 18 May 2022 11:43:12 -0700 Subject: [PATCH 2/2] schemars uuid1 feature --- Cargo.lock | 4 ++-- typify-impl/Cargo.toml | 6 +++--- typify-macro/Cargo.toml | 2 +- typify-test/Cargo.toml | 2 +- typify/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 982c8973..bfed675a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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"