From ce668528c424540936af73803d69f11c618337db Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Dec 2025 00:25:36 +0000 Subject: [PATCH] chore(deps): bump the cargo-dependencies group across 1 directory with 2 updates Bumps the cargo-dependencies group with 2 updates in the / directory: [rayon](https://github.com/rayon-rs/rayon) and [serde_json](https://github.com/serde-rs/json). Updates `rayon` from 1.10.0 to 1.11.0 - [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.10.0...rayon-core-v1.11.0) Updates `serde_json` from 1.0.145 to 1.0.147 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.145...v1.0.147) --- updated-dependencies: - dependency-name: rayon dependency-version: 1.11.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-dependencies - dependency-name: serde_json dependency-version: 1.0.147 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 +++++++++++----- enclave/Cargo.toml | 4 ++-- parent/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 57ec27b..8e8fbc1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1803,9 +1803,9 @@ dependencies = [ [[package]] name = "rayon" -version = "1.10.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" +checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" dependencies = [ "either", "rayon-core", @@ -2047,15 +2047,15 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.145" +version = "1.0.147" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" +checksum = "6af14725505314343e673e9ecb7cd7e8a36aa9791eb936235a3567cc31447ae4" dependencies = [ "itoa", "memchr", - "ryu", "serde", "serde_core", + "zmij", ] [[package]] @@ -3032,3 +3032,9 @@ dependencies = [ "quote", "syn", ] + +[[package]] +name = "zmij" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e404bcd8afdaf006e529269d3e85a743f9480c3cef60034d77860d02964f3ba" diff --git a/enclave/Cargo.toml b/enclave/Cargo.toml index 1ef229d..d390b89 100644 --- a/enclave/Cargo.toml +++ b/enclave/Cargo.toml @@ -26,9 +26,9 @@ aws-lc-rs = { version = "=1.15.2", default-features = false } cel-interpreter = { version = "=0.10.0", default-features = false, features = ["json", "chrono"] } chrono = { version = "=0.4.42", default-features = false, features = ["now"] } data-encoding = { version = "=2.9.0", default-features = false, features = ["alloc"] } -rayon = { version = "=1.10.0", default-features = false } +rayon = { version = "=1.11.0", default-features = false } serde = { version = "=1.0.228", default-features = false, features = ["derive"] } -serde_json = { version = "=1.0.145", default-features = false } +serde_json = { version = "=1.0.147", default-features = false } rustls = { version = "=0.23.35", default-features = false, features = ["aws_lc_rs", "prefer-post-quantum"] } vsock = { version = "=0.5.2", default-features = false } zeroize = { version = "=1.8.2", default-features = false, features = ["zeroize_derive"] } diff --git a/parent/Cargo.toml b/parent/Cargo.toml index 82d751d..58cf824 100644 --- a/parent/Cargo.toml +++ b/parent/Cargo.toml @@ -23,7 +23,7 @@ axum = { version = "=0.8.8", default-features = false, features = ["http1", "jso clap = { version = "=4.5.53", default-features = false, features = ["std", "derive", "env", "help"] } fastrand = { version = "=2.3.0", default-features = false } serde = { version = "=1.0.228", default-features = false, features = ["derive"] } -serde_json = { version = "=1.0.145", default-features = false } +serde_json = { version = "=1.0.147", default-features = false } thiserror = { version = "=2.0.17", default-features = false } tokio = { version = "=1.48.0", default-features = false, features = ["rt-multi-thread", "process", "tracing", "time", "signal"] } tower-http = { version = "=0.6.8", default-features = false, features = ["limit", "timeout"] }