From ee70660c11aa3f5de6213fd45113f16b798845a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Mar 2026 16:09:25 +0000 Subject: [PATCH] chore(deps)(deps): 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 | 15 ++++++++++++++- desktop/src-tauri/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ec0dc8a0..9ff8a7bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4615,6 +4615,7 @@ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" dependencies = [ "dyn-clone", "ref-cast", + "schemars_derive 0.9.0", "serde", "serde_json", ] @@ -4645,6 +4646,18 @@ dependencies = [ "syn 2.0.114", ] +[[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.114", +] + [[package]] name = "schemars_derive" version = "1.1.0" @@ -5922,7 +5935,7 @@ dependencies = [ "portpicker", "regex", "rmcp", - "schemars 0.8.22", + "schemars 0.9.0", "serde", "serde_json", "serde_json_any_key", diff --git a/desktop/src-tauri/Cargo.toml b/desktop/src-tauri/Cargo.toml index 1bb59dc1..1992e9f9 100644 --- a/desktop/src-tauri/Cargo.toml +++ b/desktop/src-tauri/Cargo.toml @@ -55,7 +55,7 @@ serde_json = "1.0.104" tokio = { version = "1.36.0", features = ["full"] } thiserror = "1.0.58" ahash = "0.8.11" -schemars = { version = "0.8.22", features = ["derive"] } +schemars = { version = "0.9.0", features = ["derive"] } tsify = { version = "0.5", features = ["js"] } wasm-bindgen = "0.2" tracing = "0.1.40"