From 01673ad2a4c6bab5a538ddffc44060b4db2a0da4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Jun 2025 02:09:22 +0000 Subject: [PATCH] update: bump schemars from 0.8.22 to 0.9.0 Bumps [schemars](https://github.com/GREsau/schemars) from 0.8.22 to 0.9.0. - [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.22...v0.9.0) --- updated-dependencies: - dependency-name: schemars dependency-version: 0.9.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 ++++++----------------- export_schema/Cargo.toml | 2 +- sdk/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1e875905c..8d4a1afea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -778,7 +778,7 @@ dependencies = [ "riff", "ring", "rsa", - "schemars 0.8.22", + "schemars", "serde", "serde-transcode", "serde-wasm-bindgen", @@ -1576,7 +1576,7 @@ version = "0.56.0" dependencies = [ "anyhow", "c2pa", - "schemars 0.8.22", + "schemars", "serde_json", ] @@ -3985,18 +3985,6 @@ dependencies = [ "windows-sys 0.59.0", ] -[[package]] -name = "schemars" -version = "0.8.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" -dependencies = [ - "dyn-clone", - "schemars_derive", - "serde", - "serde_json", -] - [[package]] name = "schemars" version = "0.9.0" @@ -4005,15 +3993,16 @@ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" dependencies = [ "dyn-clone", "ref-cast", + "schemars_derive", "serde", "serde_json", ] [[package]] name = "schemars_derive" -version = "0.8.22" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" +checksum = "5016d94c77c6d32f0b8e08b781f7dc8a90c2007d4e77472cc2807bc10a8438fe" dependencies = [ "proc-macro2", "quote", @@ -4195,7 +4184,7 @@ dependencies = [ "hex", "indexmap 1.9.3", "indexmap 2.9.0", - "schemars 0.9.0", + "schemars", "serde", "serde_derive", "serde_json", diff --git a/export_schema/Cargo.toml b/export_schema/Cargo.toml index 22380d234..c34b23e60 100644 --- a/export_schema/Cargo.toml +++ b/export_schema/Cargo.toml @@ -13,5 +13,5 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(test)'] } [dependencies] anyhow = "1.0.40" c2pa = { path = "../sdk", features = ["json_schema"], default-features = false } -schemars = "0.8.21" +schemars = "0.9.0" serde_json = "1.0.117" diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 4a13e8515..08b7e34a0 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -157,7 +157,7 @@ rasn-pkix = "0.22.0" regex = "1.11" riff = "2.0.0" rsa = { version = "0.9.7", features = ["pem", "sha2", "std"], optional = true } -schemars = { version = "0.8.21", optional = true } +schemars = { version = "0.9.0", optional = true } serde = { version = "1.0.197", features = ["derive"] } serde_bytes = "0.11.14" serde_cbor = "0.11.1"