From d04fa96bcfae62e03d9b42ff7f2cb29226c2e48f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 15:37:22 +0000 Subject: [PATCH] Bump serde_json from 1.0.107 to 1.0.108 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.107 to 1.0.108. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.107...v1.0.108) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- cli/Cargo.toml | 2 +- core/Cargo.toml | 2 +- test-suite/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7c8b712..a929176 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -345,9 +345,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.107" +version = "1.0.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" +checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" dependencies = [ "itoa", "ryu", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 2d8cc05..53feee3 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -11,7 +11,7 @@ categories = ["command-line-utilities"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde_json = "1.0.95" +serde_json = "1.0.108" clap = { version = "4.0.32", features = ["derive"] } schema2000 = { version = "0.1.0", path = "../core" } diff --git a/core/Cargo.toml b/core/Cargo.toml index f3f9d6d..aff724c 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -12,6 +12,6 @@ authors = ["REWE Digital schema2000 maintainers"] [dependencies] maplit = "1.0.2" -serde_json = "1.0.95" +serde_json = "1.0.108" parameterized = "1.0.1" chrono = "0.4.23" diff --git a/test-suite/Cargo.toml b/test-suite/Cargo.toml index d8aaef1..0d2ef13 100644 --- a/test-suite/Cargo.toml +++ b/test-suite/Cargo.toml @@ -6,5 +6,5 @@ edition = "2018" license = "MIT OR Apache-2.0" [dependencies] -serde_json = "1.0.95" +serde_json = "1.0.108" schema2000 = { path = "../core" }