From 7d7d388771ef9c0f5c58246f4c203f7f6753ee7c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Aug 2024 15:45:58 +0000 Subject: [PATCH] Bump serde_json from 1.0.116 to 1.0.122 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.116 to 1.0.122. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.116...v1.0.122) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 11 +++++++++-- cli/Cargo.toml | 2 +- core/Cargo.toml | 2 +- test-suite/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4c3ea7f..d8e8b02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -236,6 +236,12 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" +[[package]] +name = "memchr" +version = "2.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" + [[package]] name = "num-traits" version = "0.2.17" @@ -345,11 +351,12 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.116" +version = "1.0.122" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" +checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da" dependencies = [ "itoa", + "memchr", "ryu", "serde", ] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 03bbcb4..be6922b 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.122" 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..3c6e09e 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.122" parameterized = "1.0.1" chrono = "0.4.38" diff --git a/test-suite/Cargo.toml b/test-suite/Cargo.toml index 97dbcce..ad9958e 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.122" schema2000 = { path = "../core" }