Skip to content

Commit

Permalink
chore(deps): bump serde from 1.0.140 to 1.0.141 (MystenLabs/narwhal#653)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Aug 1, 2022
1 parent 44085c5 commit 4933898
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion narwhal/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Mysten Labs <[email protected]>"]
edition = "2021"

[dependencies]
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
serde_json = "1.0.82"
thiserror = "1.0.31"
tracing = "0.1.36"
Expand Down
2 changes: 1 addition & 1 deletion narwhal/consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ match_opt = "0.1.2"
rand = { version = "0.7.3", optional = true }
# deactivation of bzip2 due to https://github.com/rust-rocksdb/rust-rocksdb/issues/609
rocksdb = { version = "0.18.0", features = ["snappy", "lz4", "zstd", "zlib"], default-features = false }
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
serde_bytes = "0.11.6"
store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "123c9e40b529315e1c1d91a54fb717111c3e349c" }
thiserror = "1.0.31"
Expand Down
2 changes: 1 addition & 1 deletion narwhal/crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ed25519-dalek = { version = "1.0.1", features = ["batch", "serde"] }
eyre = "0.6.8"
hex = "0.4.3"
rand = { version = "0.7.3", features = ["std"] }
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
zeroize = "1.5.7"
signature = "1.5.0"
tokio = { version = "1.20.1", features = ["sync", "rt", "macros"] }
Expand Down
2 changes: 1 addition & 1 deletion narwhal/dag/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ crypto = { path = "../crypto" }
dashmap = "5.3.4"
either = "1.7.0"
itertools = "0.10.3"
serde = "1.0.140"
serde = "1.0.141"
thiserror = "1.0.31"
arc-swap = "1.5.0"
once_cell = "1.13.0"
Expand Down
2 changes: 1 addition & 1 deletion narwhal/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ blake2 = "0.9"
bytes = "1.2.1"
futures = "0.3.21"
rocksdb = { version = "0.18.0", features = ["snappy", "lz4", "zstd", "zlib"], default-features = false }
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
thiserror = "1.0.31"
tokio = { version = "1.20.1", features = ["sync"] }
tokio-util = { version = "0.7.3", features = ["codec"] }
Expand Down
2 changes: 1 addition & 1 deletion narwhal/network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ prometheus = "0.13.1"

mysten-network = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "123c9e40b529315e1c1d91a54fb717111c3e349c" }
workspace-hack = { version = "0.1", path = "../workspace-hack" }
serde = "1.0.140"
serde = "1.0.141"

[dev-dependencies]
bincode = "1.3.3"
Expand Down
2 changes: 1 addition & 1 deletion narwhal/primary/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ itertools = "0.10.3"
multiaddr = "0.14.0"
prost = "0.10.4"
rand = { version = "0.7.3", features = ["small_rng"] }
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
thiserror = "1.0.31"
tokio = { version = "1.20.1", features = ["sync", "rt", "macros"] }
tokio-util = { version = "0.7.3", features = ["codec"] }
Expand Down
2 changes: 1 addition & 1 deletion narwhal/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ proptest = "1.0.0"
proptest-derive = "0.3.0"
prost = "0.10.4"
rand = "0.7.3"
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
signature = "1.5.0"
store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "123c9e40b529315e1c1d91a54fb717111c3e349c" }
thiserror = "1.0.31"
Expand Down
2 changes: 1 addition & 1 deletion narwhal/worker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ blake2 = "0.9"
bytes = "1.2.1"
ed25519-dalek = "1.0.1"
futures = "0.3.21"
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
tokio = { version = "1.20.1", features = ["sync", "rt", "macros"] }
tokio-util = { version = "0.7.3", features = ["codec"] }
tracing = "0.1.36"
Expand Down

0 comments on commit 4933898

Please sign in to comment.