build(deps): bump serde_json from 1.0.87 to 1.0.88 (#5667)

Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.87 to 1.0.88.
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](https://github.com/serde-rs/json/compare/v1.0.87...v1.0.88)

---
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>
This commit is contained in:
dependabot[bot] 2022-11-22 14:09:19 +00:00 committed by GitHub
parent a14ce26be4
commit a96d23ab1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

4
Cargo.lock generated
View File

@ -3812,9 +3812,9 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.87"
version = "1.0.88"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ce777b7b150d76b9cf60d28b55f5847135a003f7d7350c6be7a773508ce7d45"
checksum = "8e8b3801309262e8184d9687fb697586833e939767aea0dda89f5a8e650e8bd7"
dependencies = [
"indexmap",
"itoa",

View File

@ -42,7 +42,7 @@ jsonrpc-http-server = "18.0.0"
num_cpus = "1.14.0"
# zebra-rpc needs the preserve_order feature in serde_json, which is a dependency of jsonrpc-core
serde_json = { version = "1.0.87", features = ["preserve_order"] }
serde_json = { version = "1.0.88", features = ["preserve_order"] }
indexmap = { version = "1.9.2", features = ["serde"] }
tokio = { version = "1.22.0", features = ["time", "rt-multi-thread", "macros", "tracing"] }

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.87"
serde_json = "1.0.88"
tracing-error = "0.2.0"
tracing-subscriber = "0.3.16"

View File

@ -172,7 +172,7 @@ regex = "1.7.0"
semver = "1.0.14"
# zebra-rpc needs the preserve_order feature, it also makes test results more stable
serde_json = { version = "1.0.87", features = ["preserve_order"] }
serde_json = { version = "1.0.88", features = ["preserve_order"] }
tempfile = "3.3.0"
hyper = { version = "0.14.23", features = ["http1", "http2", "server"]}