From 114c25b88706c56dc454bc8e387727062ae6187c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 18:03:35 +0000 Subject: [PATCH] build(deps): bump schemars from 0.8.22 to 1.2.1 Bumps [schemars](https://github.com/GREsau/schemars) from 0.8.22 to 1.2.1. - [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...v1.2.1) --- updated-dependencies: - dependency-name: schemars dependency-version: 1.2.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 29 +++++++++++++++++++++++++---- crates/ste-contracts/Cargo.toml | 2 +- 2 files changed, 26 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a4bd4c7..81f35fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -718,6 +718,26 @@ dependencies = [ "rand_core 0.9.5", ] +[[package]] +name = "ref-cast" +version = "1.0.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" +dependencies = [ + "ref-cast-impl", +] + +[[package]] +name = "ref-cast-impl" +version = "1.0.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "regex-syntax" version = "0.8.11" @@ -772,11 +792,12 @@ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" [[package]] name = "schemars" -version = "0.8.22" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" +checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc" dependencies = [ "dyn-clone", + "ref-cast", "schemars_derive", "serde", "serde_json", @@ -785,9 +806,9 @@ dependencies = [ [[package]] name = "schemars_derive" -version = "0.8.22" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" +checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f" dependencies = [ "proc-macro2", "quote", diff --git a/crates/ste-contracts/Cargo.toml b/crates/ste-contracts/Cargo.toml index a75fa5c..a331e72 100644 --- a/crates/ste-contracts/Cargo.toml +++ b/crates/ste-contracts/Cargo.toml @@ -7,7 +7,7 @@ publish = false description = "Versioned integration DTOs for the Somatic Topology Engine" [dependencies] -schemars = { version = "0.8", features = ["uuid1"] } +schemars = { version = "1.2", features = ["uuid1"] } serde = { version = "1", features = ["derive"] } serde_json = "1" thiserror = "2"