From 29a898505edd6a3e3ebd50fe63fb852cbce220fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Feb 2026 01:46:22 +0000 Subject: [PATCH] Bump schemars from 0.8.22 to 0.9.0 in /backend 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] --- backend/Cargo.lock | 33 +++++++++++++++++++++++++++++---- backend/Cargo.toml | 2 +- 2 files changed, 30 insertions(+), 5 deletions(-) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index b3a329a..9d1c3f0 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -242,7 +242,7 @@ dependencies = [ "rusqlite", "rusqlite_migration", "rustls", - "schemars", + "schemars 0.9.0", "serde", "serde_json", "serde_repr", @@ -2162,7 +2162,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a64853d7ab065474e87696f7601cee817d200e86c42e04004e005cb3e20c3c5" dependencies = [ "log", - "schemars", + "schemars 0.8.22", "serde", "serde_json", ] @@ -2969,7 +2969,7 @@ dependencies = [ "okapi", "rocket", "rocket_okapi_codegen", - "schemars", + "schemars 0.8.22", "serde", "serde_json", ] @@ -3166,7 +3166,20 @@ checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" dependencies = [ "dyn-clone", "indexmap 1.9.3", - "schemars_derive", + "schemars_derive 0.8.22", + "serde", + "serde_json", +] + +[[package]] +name = "schemars" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" +dependencies = [ + "dyn-clone", + "ref-cast", + "schemars_derive 0.9.0", "serde", "serde_json", ] @@ -3183,6 +3196,18 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "schemars_derive" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5016d94c77c6d32f0b8e08b781f7dc8a90c2007d4e77472cc2807bc10a8438fe" +dependencies = [ + "proc-macro2", + "quote", + "serde_derive_internals", + "syn 2.0.104", +] + [[package]] name = "scoped-tls" version = "1.0.1" diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 3bf17a3..d66eba7 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -21,7 +21,7 @@ test-mode = [] rocket = { version = "0.5.1", features = ["json", "secrets"] } rocket_cors = "0.6.0" rocket_okapi = { version = "0.9.0", features = ["secrets", "rapidoc"] } -schemars = { version = "0.8.22", features = ["derive"] } +schemars = { version = "0.9.0", features = ["derive"] } serde = "1.0.228" serde_json = "1.0.149" serde_repr = "0.1.20"