diff --git a/Cargo.lock b/Cargo.lock index 937508887e4..2f6bc28326d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4366,9 +4366,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.82" +version = "1.0.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7" +checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7" dependencies = [ "indexmap", "itoa 1.0.1", diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 40ee1aefd52..abb750542a8 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -27,7 +27,7 @@ jsonrpc-core = "18.0.0" jsonrpc-derive = "18.0.0" jsonrpc-http-server = "18.0.0" # zebra-rpc needs the preserve_order feature in serde_json, which is a dependency of jsonrpc-core -serde_json = { version = "1.0.82", features = ["preserve_order"] } +serde_json = { version = "1.0.83", features = ["preserve_order"] } indexmap = { version = "1.9.1", features = ["serde"] } tokio = { version = "1.20.1", features = ["time", "rt-multi-thread", "macros", "tracing"] } @@ -46,7 +46,7 @@ proptest-derive = { version = "0.3.0", optional = true } insta = { version = "1.15.0", features = ["redactions"] } proptest = "0.10.1" proptest-derive = "0.3.0" -serde_json = "1.0.82" +serde_json = "1.0.83" thiserror = "1.0.31" tokio = { version = "1.20.1", features = ["full", "tracing", "test-util"] } diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index 3f57834e776..b083b7f07d0 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -11,7 +11,7 @@ publish = false structopt = "0.3.26" color-eyre = "0.6.1" hex = "0.4.3" -serde_json = "1.0.82" +serde_json = "1.0.83" tracing-error = "0.2.0" tracing-subscriber = "0.3.11" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 7174b7e6561..29fb295f1bb 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -151,7 +151,7 @@ regex = "1.6.0" semver = "1.0.11" # zebra-rpc needs the preserve_order feature, it also makes test results more stable -serde_json = { version = "1.0.82", features = ["preserve_order"] } +serde_json = { version = "1.0.83", features = ["preserve_order"] } tempfile = "3.3.0" hyper = { version = "0.14.20", features = ["http1", "http2", "server"]}