diff --git a/Cargo.lock b/Cargo.lock index 42128b6f5..4d9f57d30 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1335,9 +1335,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.128" +version = "1.0.129" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" +checksum = "6dbcf9b78a125ee667ae19388837dd12294b858d101fdd393cb9d5501ef09eb2" dependencies = [ "indexmap 2.6.0", "itoa", diff --git a/Cargo.toml b/Cargo.toml index 0f54ce3cf..2b16724e8 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.128" +serde_json = "1.0.129" 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 d77f2df44..c26cc5dc4 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.128" } +serde_json = { version = "1.0.129" } thiserror = "1.0.64" diff --git a/crates/volta-core/Cargo.toml b/crates/volta-core/Cargo.toml index 941656e76..c30600c91 100644 --- a/crates/volta-core/Cargo.toml +++ b/crates/volta-core/Cargo.toml @@ -17,7 +17,7 @@ terminal_size = "0.4.0" indicatif = "0.17.8" console = ">=0.11.3, <1.0.0" readext = "0.1.0" -serde_json = { version = "1.0.128", features = ["preserve_order"] } +serde_json = { version = "1.0.129", features = ["preserve_order"] } serde = { version = "1.0.210", features = ["derive"] } archive = { path = "../archive" } node-semver = "2" diff --git a/crates/volta-migrate/Cargo.toml b/crates/volta-migrate/Cargo.toml index 7e9c70fe7..038279698 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.13.0" node-semver = "2" -serde_json = { version = "1.0.128", features = ["preserve_order"] } +serde_json = { version = "1.0.129", features = ["preserve_order"] } serde = { version = "1.0.210", features = ["derive"] } walkdir = "2.5.0"