build(deps): bump serde_json from 1.0.85 to 1.0.86 (#5369)

Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.85 to 1.0.86.
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](https://github.com/serde-rs/json/compare/v1.0.85...v1.0.86)

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

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2022-10-12 18:12:32 +00:00 committed by GitHub
parent 1f1487e1a6
commit 393fcd018c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

4
Cargo.lock generated
View File

@ -4369,9 +4369,9 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.85"
version = "1.0.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44"
checksum = "41feea4228a6f1cd09ec7a3593a682276702cd67b5273544757dae23c096f074"
dependencies = [
"indexmap",
"itoa",

View File

@ -24,7 +24,7 @@ jsonrpc-http-server = "18.0.0"
num_cpus = "1.13.1"
# zebra-rpc needs the preserve_order feature in serde_json, which is a dependency of jsonrpc-core
serde_json = { version = "1.0.85", features = ["preserve_order"] }
serde_json = { version = "1.0.86", features = ["preserve_order"] }
indexmap = { version = "1.9.1", features = ["serde"] }
tokio = { version = "1.21.2", features = ["time", "rt-multi-thread", "macros", "tracing"] }
@ -48,7 +48,7 @@ zebra-state = { path = "../zebra-state" }
insta = { version = "1.21.0", features = ["redactions", "json"] }
proptest = "0.10.1"
proptest-derive = "0.3.0"
serde_json = "1.0.85"
serde_json = "1.0.86"
thiserror = "1.0.37"
tokio = { version = "1.21.2", features = ["full", "tracing", "test-util"] }

View File

@ -15,7 +15,7 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] }
structopt = "0.3.26"
hex = "0.4.3"
serde_json = "1.0.85"
serde_json = "1.0.86"
tracing-error = "0.2.0"
tracing-subscriber = "0.3.15"

View File

@ -156,7 +156,7 @@ regex = "1.6.0"
semver = "1.0.14"
# zebra-rpc needs the preserve_order feature, it also makes test results more stable
serde_json = { version = "1.0.85", features = ["preserve_order"] }
serde_json = { version = "1.0.86", features = ["preserve_order"] }
tempfile = "3.3.0"
hyper = { version = "0.14.20", features = ["http1", "http2", "server"]}