Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump serde_json from 1.0.96 to 1.0.97 #6987

Merged
merged 1 commit into from
Jun 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4064,9 +4064,9 @@ dependencies = [

[[package]]
name = "serde_json"
version = "1.0.96"
version = "1.0.97"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
checksum = "bdf3bf93142acad5821c99197022e170842cdbc1c30482b98750c688c640842a"
dependencies = [
"indexmap",
"itoa",
Expand Down
2 changes: 1 addition & 1 deletion zebra-chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ redjubjub = "0.7.0"
reddsa = "0.5.0"

# Production feature json-conversion
serde_json = { version = "1.0.95", optional = true }
serde_json = { version = "1.0.97", optional = true }

# Experimental feature getblocktemplate-rpcs
zcash_address = { version = "0.2.1", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions zebra-node-services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ color-eyre = { version = "0.6.2", optional = true }
jsonrpc-core = { version = "18.0.0", optional = true }
reqwest = { version = "0.11.18", optional = true }
serde = { version = "1.0.164", optional = true }
serde_json = { version = "1.0.95", optional = true }
serde_json = { version = "1.0.97", optional = true }

[dev-dependencies]

color-eyre = "0.6.2"
jsonrpc-core = "18.0.0"
reqwest = "0.11.18"
serde = "1.0.164"
serde_json = "1.0.95"
serde_json = "1.0.97"
2 changes: 1 addition & 1 deletion zebra-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,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.96", features = ["preserve_order"] }
serde_json = { version = "1.0.97", features = ["preserve_order"] }
indexmap = { version = "1.9.3", features = ["serde"] }

tokio = { version = "1.28.2", features = ["time", "rt-multi-thread", "macros", "tracing"] }
Expand Down
2 changes: 1 addition & 1 deletion zebra-state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ tracing = "0.1.37"

# elasticsearch specific dependencies.
elasticsearch = { version = "8.5.0-alpha.1", package = "elasticsearch", optional = true }
serde_json = { version = "1.0.96", package = "serde_json", optional = true }
serde_json = { version = "1.0.97", package = "serde_json", optional = true }

zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.26" }

Expand Down
2 changes: 1 addition & 1 deletion zebra-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] }

structopt = "0.3.26"
hex = "0.4.3"
serde_json = "1.0.96"
serde_json = "1.0.97"
tracing-error = "0.2.0"
tracing-subscriber = "0.3.17"
thiserror = "1.0.40"
Expand Down
2 changes: 1 addition & 1 deletion zebrad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ regex = "1.8.4"
semver = "1.0.17"

# zebra-rpc needs the preserve_order feature, it also makes test results more stable
serde_json = { version = "1.0.96", features = ["preserve_order"] }
serde_json = { version = "1.0.97", features = ["preserve_order"] }
tempfile = "3.5.0"

hyper = { version = "0.14.26", features = ["http1", "http2", "server"]}
Expand Down