Skip to content

Commit

Permalink
Merge of #6480
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Apr 12, 2023
2 parents 7d13a67 + 3ec577f commit 2432a55
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4031,9 +4031,9 @@ dependencies = [

[[package]]
name = "serde"
version = "1.0.159"
version = "1.0.160"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065"
checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c"
dependencies = [
"serde_derive",
]
Expand All @@ -4049,9 +4049,9 @@ dependencies = [

[[package]]
name = "serde_derive"
version = "1.0.159"
version = "1.0.160"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585"
checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df"
dependencies = [
"proc-macro2 1.0.53",
"quote 1.0.26",
Expand Down
2 changes: 1 addition & 1 deletion zebra-chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ tracing = "0.1.37"

# Serialization
hex = { version = "0.4.3", features = ["serde"] }
serde = { version = "1.0.159", features = ["serde_derive", "rc"] }
serde = { version = "1.0.160", features = ["serde_derive", "rc"] }
serde_with = "2.3.2"
serde-big-array = "0.5.1"

Expand Down
2 changes: 1 addition & 1 deletion zebra-consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ chrono = { version = "0.4.24", default-features = false, features = ["clock", "s
displaydoc = "0.2.3"
lazy_static = "1.4.0"
once_cell = "1.17.1"
serde = { version = "1.0.159", features = ["serde_derive"] }
serde = { version = "1.0.160", features = ["serde_derive"] }

futures = "0.3.28"
futures-util = "0.3.28"
Expand Down
2 changes: 1 addition & 1 deletion zebra-network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pin-project = "1.0.12"
rand = { version = "0.8.5", package = "rand" }
rayon = "1.7.0"
regex = "1.7.3"
serde = { version = "1.0.159", features = ["serde_derive"] }
serde = { version = "1.0.160", features = ["serde_derive"] }
thiserror = "1.0.40"

futures = "0.3.28"
Expand Down
2 changes: 1 addition & 1 deletion zebra-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ tower = "0.4.13"
tracing = "0.1.37"

hex = { version = "0.4.3", features = ["serde"] }
serde = { version = "1.0.159", features = ["serde_derive"] }
serde = { version = "1.0.160", features = ["serde_derive"] }

# Experimental feature getblocktemplate-rpcs
rand = { version = "0.8.5", package = "rand", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion zebra-state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ mset = "0.1.1"
regex = "1.7.3"
rlimit = "0.9.1"
rocksdb = { version = "0.20.1", default_features = false, features = ["lz4"] }
serde = { version = "1.0.159", features = ["serde_derive"] }
serde = { version = "1.0.160", features = ["serde_derive"] }
tempfile = "3.5.0"
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 @@ -108,7 +108,7 @@ chrono = { version = "0.4.24", default-features = false, features = ["clock", "s
humantime-serde = "1.1.1"
indexmap = "1.9.3"
lazy_static = "1.4.0"
serde = { version = "1.0.159", features = ["serde_derive"] }
serde = { version = "1.0.160", features = ["serde_derive"] }
toml = "0.7.3"

futures = "0.3.28"
Expand Down

0 comments on commit 2432a55

Please sign in to comment.