From 861fe33bc9f360e878be752091832017ea71ee42 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 02:23:37 +0000 Subject: [PATCH] Bump serde_json from 1.0.111 to 1.0.115 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.111 to 1.0.115. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.111...v1.0.115) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- couchstore/Cargo.toml | 2 +- ep_engine/Cargo.toml | 2 +- kv_engine/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 978ce56..b5b678d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -495,9 +495,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.111" +version = "1.0.115" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4" +checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd" dependencies = [ "itoa", "ryu", diff --git a/couchstore/Cargo.toml b/couchstore/Cargo.toml index cfbe2f4..5837041 100644 --- a/couchstore/Cargo.toml +++ b/couchstore/Cargo.toml @@ -13,5 +13,5 @@ crc32fast = "1.4.0" hex = "0.4.3" num_enum = "0.7.2" serde = { version = "1.0.197", features = ["derive"] } -serde_json = "1.0.111" +serde_json = "1.0.115" snap = "1.1.1" diff --git a/ep_engine/Cargo.toml b/ep_engine/Cargo.toml index 9069d61..4eb459f 100644 --- a/ep_engine/Cargo.toml +++ b/ep_engine/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] serde = { version = "1.0.197", features = ["derive"] } -serde_json = "1.0.111" +serde_json = "1.0.115" couchstore = { path = "../couchstore" } parking_lot = "0.12.1" crossbeam-utils = "0.8.19" diff --git a/kv_engine/Cargo.toml b/kv_engine/Cargo.toml index c3ce4ed..80c38d0 100644 --- a/kv_engine/Cargo.toml +++ b/kv_engine/Cargo.toml @@ -13,7 +13,7 @@ tracing = "0.1.40" crc32fast = "1.4.0" couchstore = { path = "../couchstore" } serde = { version = "1.0.197", features = ["derive"] } -serde_json = "1.0.111" +serde_json = "1.0.115" maplit = "1.0.2" bitflags = "2.4.2" tracing-subscriber = "0.3"