diff --git a/Cargo.lock b/Cargo.lock index 6cd052cb2..70bc8899b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4020,9 +4020,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.94" +version = "1.0.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea" +checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744" dependencies = [ "indexmap", "itoa", diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index a8c12e003..c87dadab3 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -44,7 +44,7 @@ jsonrpc-http-server = "18.0.0" num_cpus = "1.15.0" # zebra-rpc needs the preserve_order feature in serde_json, which is a dependency of jsonrpc-core -serde_json = { version = "1.0.94", features = ["preserve_order"] } +serde_json = { version = "1.0.95", features = ["preserve_order"] } indexmap = { version = "1.9.3", features = ["serde"] } tokio = { version = "1.27.0", features = ["time", "rt-multi-thread", "macros", "tracing"] } diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index bddfbc8a9..fcc1e89fe 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -53,7 +53,7 @@ tracing = "0.1.37" # elasticsearch specific dependencies. elasticsearch = { version = "8.5.0-alpha.1", package = "elasticsearch", optional = true } -serde_json = { version = "1.0.93", package = "serde_json", optional = true } +serde_json = { version = "1.0.95", package = "serde_json", optional = true } zebra-chain = { path = "../zebra-chain" } zebra-test = { path = "../zebra-test/", optional = true } diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index ddd5b66f5..d6a142cb9 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -43,7 +43,7 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] } structopt = "0.3.26" hex = "0.4.3" -serde_json = "1.0.94" +serde_json = "1.0.95" tracing-error = "0.2.0" tracing-subscriber = "0.3.16" thiserror = "1.0.40" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 2b2b660c5..62172cf0a 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -182,7 +182,7 @@ regex = "1.7.3" semver = "1.0.17" # zebra-rpc needs the preserve_order feature, it also makes test results more stable -serde_json = { version = "1.0.94", features = ["preserve_order"] } +serde_json = { version = "1.0.95", features = ["preserve_order"] } tempfile = "3.4.0" hyper = { version = "0.14.25", features = ["http1", "http2", "server"]}