From dcd817aba9c82d534d990e0a9dfee6e5557de0da Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 May 2024 15:20:28 +0000 Subject: [PATCH] Bump serde_json from 1.0.116 to 1.0.117 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.116 to 1.0.117. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.116...v1.0.117) --- 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 4c3ea7f..aa730bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -345,9 +345,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.116" +version = "1.0.117" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" +checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" dependencies = [ "itoa", "ryu", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 03bbcb4..3472e6f 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.116" +serde_json = "1.0.117" clap = { version = "4.5.4", features = ["derive"] } schema2000 = { version = "0.1.0", path = "../core" } diff --git a/core/Cargo.toml b/core/Cargo.toml index 31a5af9..d9594a5 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.116" +serde_json = "1.0.117" parameterized = "1.0.1" chrono = "0.4.38" diff --git a/test-suite/Cargo.toml b/test-suite/Cargo.toml index 97dbcce..4590829 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.116" +serde_json = "1.0.117" schema2000 = { path = "../core" }