build(deps): bump the formats group with 2 updates (#7526)

Bumps the formats group with 2 updates: [serde_json](https://github.com/serde-rs/json) and [bytes](https://github.com/tokio-rs/bytes).


Updates `serde_json` from 1.0.105 to 1.0.106
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](https://github.com/serde-rs/json/compare/v1.0.105...v1.0.106)

Updates `bytes` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](https://github.com/tokio-rs/bytes/compare/v1.4.0...v1.5.0)

---
updated-dependencies:
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: formats
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: formats
...

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-09-12 00:33:20 +00:00 committed by GitHub
parent 3ec142d2ee
commit 70d34a6d4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 12 additions and 12 deletions

View File

@ -595,9 +595,9 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
version = "1.4.0"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
[[package]]
name = "bzip2-sys"
@ -3923,9 +3923,9 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.105"
version = "1.0.106"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360"
checksum = "2cc66a619ed80bf7a0f6b17dd063a84b88f6dea1813737cf469aef1d081142c2"
dependencies = [
"indexmap 2.0.0",
"itoa",

View File

@ -111,7 +111,7 @@ redjubjub = "0.7.0"
reddsa = "0.5.1"
# Production feature json-conversion
serde_json = { version = "1.0.105", optional = true }
serde_json = { version = "1.0.106", optional = true }
# Production feature async-error and testing feature proptest-impl
tokio = { version = "1.32.0", optional = true }

View File

@ -42,7 +42,7 @@ proptest-impl = ["proptest", "proptest-derive", "zebra-chain/proptest-impl"]
[dependencies]
bitflags = "2.4.0"
byteorder = "1.4.3"
bytes = "1.4.0"
bytes = "1.5.0"
chrono = { version = "0.4.30", default-features = false, features = ["clock", "std"] }
dirs = "5.0.1"
hex = "0.4.3"

View File

@ -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.105", optional = true }
serde_json = { version = "1.0.106", 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.105"
serde_json = "1.0.106"

View File

@ -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.105", features = ["preserve_order"] }
serde_json = { version = "1.0.106", features = ["preserve_order"] }
indexmap = { version = "2.0.0", features = ["serde"] }
tokio = { version = "1.32.0", features = ["time", "rt-multi-thread", "macros", "tracing"] }

View File

@ -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.105", package = "serde_json", optional = true }
serde_json = { version = "1.0.106", package = "serde_json", optional = true }
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.29", features = ["async-error"] }

View File

@ -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.105"
serde_json = "1.0.106"
tracing-error = "0.2.0"
tracing-subscriber = "0.3.17"
thiserror = "1.0.48"

View File

@ -236,7 +236,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.105", features = ["preserve_order"] }
serde_json = { version = "1.0.106", features = ["preserve_order"] }
tempfile = "3.8.0"
hyper = { version = "0.14.27", features = ["http1", "http2", "server"]}