build(deps): bump serde_json from 1.0.93 to 1.0.94 (#6269)

Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.93 to 1.0.94.
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](https://github.com/serde-rs/json/compare/v1.0.93...v1.0.94)

---
updated-dependencies:
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-03-06 19:15:25 +00:00 committed by GitHub
parent a1105c0672
commit 365e107f3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -3864,9 +3864,9 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.93"
version = "1.0.94"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76"
checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea"
dependencies = [
"indexmap",
"itoa",

View File

@ -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.93", features = ["preserve_order"] }
serde_json = { version = "1.0.94", features = ["preserve_order"] }
indexmap = { version = "1.9.2", features = ["serde"] }
tokio = { version = "1.26.0", features = ["time", "rt-multi-thread", "macros", "tracing"] }

View File

@ -36,7 +36,7 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] }
structopt = "0.3.26"
hex = "0.4.3"
serde_json = "1.0.93"
serde_json = "1.0.94"
tracing-error = "0.2.0"
tracing-subscriber = "0.3.16"
thiserror = "1.0.38"

View File

@ -178,7 +178,7 @@ regex = "1.7.1"
semver = "1.0.16"
# zebra-rpc needs the preserve_order feature, it also makes test results more stable
serde_json = { version = "1.0.93", features = ["preserve_order"] }
serde_json = { version = "1.0.94", features = ["preserve_order"] }
tempfile = "3.4.0"
hyper = { version = "0.14.24", features = ["http1", "http2", "server"]}