From 45b2103c5b11a971a06612ef1b2b984b718a3e7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Jan 2025 17:04:02 +0000 Subject: [PATCH] build(deps): bump serde_json from 1.0.134 to 1.0.135 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.134 to 1.0.135. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.134...v1.0.135) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 18 ++++++++++++++---- Cargo.toml | 2 +- crates/test-support/Cargo.toml | 2 +- crates/volta-core/Cargo.toml | 2 +- crates/volta-migrate/Cargo.toml | 2 +- 5 files changed, 18 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8b4f7045d..5c7c5cf3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1330,9 +1330,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.134" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d" +checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9" dependencies = [ "indexmap 2.7.0", "itoa", @@ -1646,7 +1646,7 @@ dependencies = [ "volta-core", "volta-migrate", "which", - "winreg", + "winreg 0.52.0", ] [[package]] @@ -1690,7 +1690,7 @@ dependencies = [ "volta-layout", "walkdir", "which", - "winreg", + "winreg 0.53.0", ] [[package]] @@ -2004,6 +2004,16 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "winreg" +version = "0.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89a47b489f8fc5b949477e89dca4d1617f162c6c53fbcbefde553ab17b342ff9" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + [[package]] name = "winsafe" version = "0.0.19" diff --git a/Cargo.toml b/Cargo.toml index 6111350fb..d19ce4396 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ codegen-units = 1 [dependencies] volta-core = { path = "crates/volta-core" } serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0.134" +serde_json = "1.0.135" once_cell = "1.19.0" log = { version = "0.4", features = ["std"] } node-semver = "2" diff --git a/crates/test-support/Cargo.toml b/crates/test-support/Cargo.toml index 12fdf7a89..e95a81d3f 100644 --- a/crates/test-support/Cargo.toml +++ b/crates/test-support/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [dependencies] hamcrest2 = "0.3.0" -serde_json = { version = "1.0.134" } +serde_json = { version = "1.0.135" } thiserror = "2.0.9" diff --git a/crates/volta-core/Cargo.toml b/crates/volta-core/Cargo.toml index c07ee18c5..b615a4b13 100644 --- a/crates/volta-core/Cargo.toml +++ b/crates/volta-core/Cargo.toml @@ -17,7 +17,7 @@ terminal_size = "0.4.1" indicatif = "0.17.9" console = ">=0.11.3, <1.0.0" readext = "0.1.0" -serde_json = { version = "1.0.134", features = ["preserve_order"] } +serde_json = { version = "1.0.135", features = ["preserve_order"] } serde = { version = "1.0.217", features = ["derive"] } archive = { path = "../archive" } node-semver = "2" diff --git a/crates/volta-migrate/Cargo.toml b/crates/volta-migrate/Cargo.toml index 071b9d055..c43db980c 100644 --- a/crates/volta-migrate/Cargo.toml +++ b/crates/volta-migrate/Cargo.toml @@ -10,6 +10,6 @@ volta-layout = { path = "../volta-layout" } log = { version = "0.4", features = ["std"] } tempfile = "3.14.0" node-semver = "2" -serde_json = { version = "1.0.134", features = ["preserve_order"] } +serde_json = { version = "1.0.135", features = ["preserve_order"] } serde = { version = "1.0.217", features = ["derive"] } walkdir = "2.5.0"