From bacf83537e33a86aca68bc91b775c013ffa6b987 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 15:06:33 +0000 Subject: [PATCH] Bump serde_json from 1.0.111 to 1.0.114 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.111 to 1.0.114. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.111...v1.0.114) --- 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 cbed8e8..b60761c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -345,9 +345,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.111" +version = "1.0.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4" +checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0" dependencies = [ "itoa", "ryu", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 10f826d..66302c9 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.111" +serde_json = "1.0.114" 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 66804c4..bf59bbe 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.111" +serde_json = "1.0.114" parameterized = "1.0.1" chrono = "0.4.23" diff --git a/test-suite/Cargo.toml b/test-suite/Cargo.toml index d610372..05a8a95 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.111" +serde_json = "1.0.114" schema2000 = { path = "../core" }