From 0cd78495619cb29516bd0213f54c7f94b4dca048 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 02:16:10 +0000 Subject: [PATCH] Update jsonschema requirement from 0.20 to 0.21 Updates the requirements on [jsonschema](https://github.com/Stranger6667/jsonschema-rs) to permit the latest version. - [Release notes](https://github.com/Stranger6667/jsonschema-rs/releases) - [Changelog](https://github.com/Stranger6667/jsonschema-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.20.0...rust-v0.21.0) --- updated-dependencies: - dependency-name: jsonschema dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/samples/components/json_validator/Cargo.toml | 2 +- crates/samples/components/json_validator_winrt/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/samples/components/json_validator/Cargo.toml b/crates/samples/components/json_validator/Cargo.toml index abd76eb628..397e388067 100644 --- a/crates/samples/components/json_validator/Cargo.toml +++ b/crates/samples/components/json_validator/Cargo.toml @@ -8,7 +8,7 @@ publish = false crate-type = ["cdylib"] [dependencies] -jsonschema = { version = "0.20", default-features = false } +jsonschema = { version = "0.21", default-features = false } serde_json = {version = "1.0", default-features = false } [dependencies.windows] diff --git a/crates/samples/components/json_validator_winrt/Cargo.toml b/crates/samples/components/json_validator_winrt/Cargo.toml index 52719dd88e..d9a51807c3 100644 --- a/crates/samples/components/json_validator_winrt/Cargo.toml +++ b/crates/samples/components/json_validator_winrt/Cargo.toml @@ -9,7 +9,7 @@ name = "sample" crate-type = ["cdylib"] [dependencies] -jsonschema = { version = "0.20", default-features = false } +jsonschema = { version = "0.21", default-features = false } serde_json = {version = "1.0", default-features = false } [dependencies.windows]