From d508e415930a498c54201929cff9755900303fdd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Sep 2024 02:24:30 +0000 Subject: [PATCH] Update jsonschema requirement from 0.19 to 0.20 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.19.0...rust-v0.20.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 d7e58b6abe..abd76eb628 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.19", default-features = false } +jsonschema = { version = "0.20", 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 534a077a56..52719dd88e 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.19", default-features = false } +jsonschema = { version = "0.20", default-features = false } serde_json = {version = "1.0", default-features = false } [dependencies.windows]