diff --git a/Cargo.lock b/Cargo.lock index d94ad4a89..ed0ed3a44 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3929,9 +3929,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.106" +version = "1.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2cc66a619ed80bf7a0f6b17dd063a84b88f6dea1813737cf469aef1d081142c2" +checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" dependencies = [ "indexmap 2.0.0", "itoa", diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index ca35525b7..c2ef57f87 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -111,7 +111,7 @@ redjubjub = "0.7.0" reddsa = "0.5.1" # Production feature json-conversion -serde_json = { version = "1.0.106", optional = true } +serde_json = { version = "1.0.107", optional = true } # Production feature async-error and testing feature proptest-impl tokio = { version = "1.32.0", optional = true } diff --git a/zebra-node-services/Cargo.toml b/zebra-node-services/Cargo.toml index d2c8f6e33..493787fd1 100644 --- a/zebra-node-services/Cargo.toml +++ b/zebra-node-services/Cargo.toml @@ -45,7 +45,7 @@ jsonrpc-core = { version = "18.0.0", optional = true } # Security: avoid default dependency on openssl reqwest = { version = "0.11.20", default-features = false, features = ["rustls-tls"], optional = true } serde = { version = "1.0.188", optional = true } -serde_json = { version = "1.0.106", optional = true } +serde_json = { version = "1.0.107", optional = true } [dev-dependencies] @@ -53,4 +53,4 @@ color-eyre = "0.6.2" jsonrpc-core = "18.0.0" reqwest = { version = "0.11.20", default-features = false, features = ["rustls-tls"] } serde = "1.0.188" -serde_json = "1.0.106" +serde_json = "1.0.107" diff --git a/zebra-rpc/Cargo.toml b/zebra-rpc/Cargo.toml index 8211d55c3..103db3907 100644 --- a/zebra-rpc/Cargo.toml +++ b/zebra-rpc/Cargo.toml @@ -51,7 +51,7 @@ jsonrpc-http-server = "18.0.0" num_cpus = "1.16.0" # zebra-rpc needs the preserve_order feature in serde_json, which is a dependency of jsonrpc-core -serde_json = { version = "1.0.106", features = ["preserve_order"] } +serde_json = { version = "1.0.107", features = ["preserve_order"] } indexmap = { version = "2.0.0", features = ["serde"] } tokio = { version = "1.32.0", features = ["time", "rt-multi-thread", "macros", "tracing"] } diff --git a/zebra-state/Cargo.toml b/zebra-state/Cargo.toml index a0b0968c4..2d2cf0cab 100644 --- a/zebra-state/Cargo.toml +++ b/zebra-state/Cargo.toml @@ -69,7 +69,7 @@ tracing = "0.1.37" # elasticsearch specific dependencies. # Security: avoid default dependency on openssl elasticsearch = { version = "8.5.0-alpha.1", default-features = false, features = ["rustls-tls"], optional = true } -serde_json = { version = "1.0.106", package = "serde_json", optional = true } +serde_json = { version = "1.0.107", package = "serde_json", optional = true } zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.29", features = ["async-error"] } diff --git a/zebra-utils/Cargo.toml b/zebra-utils/Cargo.toml index a30636448..cc67b0806 100644 --- a/zebra-utils/Cargo.toml +++ b/zebra-utils/Cargo.toml @@ -69,7 +69,7 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] } structopt = "0.3.26" hex = "0.4.3" -serde_json = "1.0.106" +serde_json = "1.0.107" tracing-error = "0.2.0" tracing-subscriber = "0.3.17" thiserror = "1.0.48" diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index 277dab84c..86b127003 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -237,7 +237,7 @@ once_cell = "1.18.0" regex = "1.9.5" # zebra-rpc needs the preserve_order feature, it also makes test results more stable -serde_json = { version = "1.0.106", features = ["preserve_order"] } +serde_json = { version = "1.0.107", features = ["preserve_order"] } tempfile = "3.8.0" hyper = { version = "0.14.27", features = ["http1", "http2", "server"]}