From 3e7e9ca4b27ab322b78c8131dc92517280fd425a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2025 08:04:24 +0000 Subject: [PATCH] chore(deps): bump the cli-patch group in /bolt-cli with 2 updates Bumps the cli-patch group in /bolt-cli with 2 updates: [serde_json](https://github.com/serde-rs/json) and [rustls](https://github.com/rustls/rustls). Updates `serde_json` from 1.0.137 to 1.0.138 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.137...v1.0.138) Updates `rustls` from 0.23.21 to 0.23.22 - [Release notes](https://github.com/rustls/rustls/releases) - [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustls/rustls/compare/v/0.23.21...v/0.23.22) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cli-patch - dependency-name: rustls dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cli-patch ... Signed-off-by: dependabot[bot] --- bolt-cli/Cargo.lock | 8 ++++---- bolt-cli/Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bolt-cli/Cargo.lock b/bolt-cli/Cargo.lock index fd3d730ca..803e541a1 100644 --- a/bolt-cli/Cargo.lock +++ b/bolt-cli/Cargo.lock @@ -4023,9 +4023,9 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.21" +version = "0.23.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8" +checksum = "9fb9263ab4eb695e42321db096e3b8fbd715a59b154d5c88d82db2175b681ba7" dependencies = [ "aws-lc-rs", "log", @@ -4241,9 +4241,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.137" +version = "1.0.138" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b" +checksum = "d434192e7da787e94a6ea7e9670b26a036d0ca41e0b7efb2676dd32bae872949" dependencies = [ "itoa", "memchr", diff --git a/bolt-cli/Cargo.toml b/bolt-cli/Cargo.toml index 5013bf08d..706e4910b 100644 --- a/bolt-cli/Cargo.toml +++ b/bolt-cli/Cargo.toml @@ -15,10 +15,10 @@ futures = "0.3.31" # cli clap = { version = "4.5.27", features = ["derive", "env"] } serde = { version = "1.0.217", features = ["derive"] } -serde_json = "1.0.137" +serde_json = "1.0.138" # grpc -rustls = { version = "0.23.21", features = ["ring"] } +rustls = { version = "0.23.22", features = ["ring"] } tonic = { version = "0.12.3", features = ["tls"] } prost = "0.13.4"