From e798416fc5238a354691dd82019a6bc3dc7c5dc0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Mar 2023 14:26:08 +0000 Subject: [PATCH] Bump serde_json from 1.0.85 to 1.0.94 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.85 to 1.0.94. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.85...v1.0.94) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- crates/test-support/Cargo.toml | 2 +- crates/volta-core/Cargo.toml | 2 +- crates/volta-migrate/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 984d73846..dc5d1738e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1143,9 +1143,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.85" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44" +checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea" dependencies = [ "indexmap", "itoa 1.0.1", diff --git a/Cargo.toml b/Cargo.toml index 296cc3d1e..2bdc18cf3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ path = "src/volta-migrate.rs" atty = "0.2" volta-core = { path = "crates/volta-core" } serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0.85" +serde_json = "1.0.94" lazy_static = "1.3.0" log = { version = "0.4", features = ["std"] } semver = { git = "https://github.com/mikrostew/semver", branch = "new-parser" } diff --git a/crates/test-support/Cargo.toml b/crates/test-support/Cargo.toml index a7ed2d77f..870ca97f7 100644 --- a/crates/test-support/Cargo.toml +++ b/crates/test-support/Cargo.toml @@ -7,5 +7,5 @@ edition = "2018" [dependencies] hamcrest2 = "0.3.0" archive = { path = "../archive" } -serde_json = { version = "1.0.85" } +serde_json = { version = "1.0.94" } thiserror = "1.0.37" diff --git a/crates/volta-core/Cargo.toml b/crates/volta-core/Cargo.toml index d952f39ce..05f2576f2 100644 --- a/crates/volta-core/Cargo.toml +++ b/crates/volta-core/Cargo.toml @@ -17,7 +17,7 @@ term_size = "0.3.2" indicatif = "0.17.1" console = ">=0.11.3, <1.0.0" readext = "0.1.0" -serde_json = { version = "1.0.85", features = ["preserve_order"] } +serde_json = { version = "1.0.94", features = ["preserve_order"] } serde = { version = "1.0.147", features = ["derive"] } archive = { path = "../archive" } lazycell = "1.3.0" diff --git a/crates/volta-migrate/Cargo.toml b/crates/volta-migrate/Cargo.toml index 2e12867ab..8bb35fc33 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.3.0" semver = { git = "https://github.com/mikrostew/semver", branch = "new-parser" } -serde_json = { version = "1.0.85", features = ["preserve_order"] } +serde_json = { version = "1.0.94", features = ["preserve_order"] } serde = { version = "1.0.147", features = ["derive"] } walkdir = "2.3.2"