Skip to content

Commit

Permalink
chore: add one round of dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
huitseeker committed Apr 21, 2022
1 parent 444690d commit 78d73f7
Show file tree
Hide file tree
Showing 10 changed files with 39 additions and 40 deletions.
2 changes: 1 addition & 1 deletion narwhal/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
thiserror = "1.0.30"
tracing = { version = "0.1.31", features = ["log"] }
tracing = { version = "0.1.34", features = ["log"] }

crypto = { path = "../crypto" }

15 changes: 7 additions & 8 deletions narwhal/consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,30 @@ authors = ["Mysten Labs <[email protected]>"]
edition = "2021"

[dependencies]
async-trait = "0.1.52"
bincode = "1.3.3"
blake2 = "0.9"
bytes = "1.1.0"
config = { path = "../config" }
crypto = { path = "../crypto" }
futures = "0.3.21"
primary = { path = "../primary" }
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.136", features = ["derive"] }
serde_bytes = "0.11.5"
store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "808de09203d147b43d59114b8afd9e51cbcf5778" }
tokio = { version = "1.17.0", features = ["sync"] }
tokio-util = { version = "0.7.0", features = ["codec"] }
tracing = "0.1.31"
tokio-util = { version = "0.7.1", features = ["codec"] }
tracing = "0.1.34"

config = { path = "../config" }
crypto = { path = "../crypto" }
types = { path = "../types" }

[dev-dependencies]
bincode = "1.3.3"
criterion = "0.3.5"
ed25519-dalek = { version = "1.0.1", features = ["batch", "serde"] }
pprof = { version = "0.6.2", features = ["criterion", "flamegraph"] }
temp_testdir = "0.2"
pprof = { version = "0.8.0", features = ["criterion", "flamegraph"] }
temp_testdir = "0.2.3"

[features]
default = ["rand"]
Expand Down
8 changes: 4 additions & 4 deletions narwhal/crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ publish = false

[dependencies]
base64 = "0.13.0"
base64ct = { version = "1.3.3", features = ["alloc"] }
base64ct = { version = "1.5.0", features = ["alloc"] }
ed25519-dalek = { version = "1.0.1", features = ["batch", "serde"] }
eyre = "0.6.7"
eyre = "0.6.8"
rand = { version = "0.7.3", features = ["std"] }
serde = { version = "1.0.136", features = ["derive"] }
signature = "1.5.0"
Expand All @@ -28,10 +28,10 @@ ark-serialize = { version = "0.3.0", features = ["std"], optional = true }
ark-std = { version = "0.3.0", features = ["std"], optional = true }
blake2 = "0.9"
blst = "0.3.6"
once_cell = "1.9.0"
once_cell = "1.10.0"
readonly = "0.2.0"
serde_bytes = "0.11.5"
serde_with = { version = "1.12.0", optional = true }
serde_with = { version = "1.12.1", optional = true }

[[bench]]
name = "crypto"
Expand Down
12 changes: 6 additions & 6 deletions narwhal/dag/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ edition = "2021"

[dependencies]
crypto = { path = "../crypto" }
dashmap = "5.2.0"
either = "1.6.1"
dashmap = "5.2.0"
either = "1.6.1"
itertools = "0.10.3"
rayon = "1.5.1"
serde = "1.0.136"
serde_with = "1.12.0"
rayon = "1.5.2"
serde = "1.0.136"
serde_with = "1.12.1"
thiserror = "1.0.30"

[dev-dependencies]
hex = "0.4.3"
proptest = "1.0.0"
proptest-derive = "0.3.0"
rayon = "1.5.1"
rayon = "1.5.2"
4 changes: 2 additions & 2 deletions narwhal/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ rocksdb = { version = "0.18.0", features = ["snappy", "lz4", "zstd", "zlib"], de
serde = { version = "1.0.136", features = ["derive"] }
thiserror = "1.0.30"
tokio = { version = "1.17.0", features = ["sync"] }
tokio-util = { version = "0.7.0", features = ["codec"] }
tracing = "0.1.31"
tokio-util = { version = "0.7.1", features = ["codec"] }
tracing = "0.1.34"
config = { path = "../config" }
consensus = { path = "../consensus" }
crypto = { path = "../crypto" }
Expand Down
6 changes: 3 additions & 3 deletions narwhal/network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ edition = "2021"
publish = false

[dependencies]
async-trait = "0.1.52"
async-trait = "0.1.53"
bytes = "1.1.0"
futures = "0.3.21"
rand = { version = "0.7.3", features = ["small_rng"] }
thiserror = "1.0.30"
tokio = { version = "1.17.0", features = ["rt", "net", "sync", "macros", "time"] }
tokio-util = { version = "0.7.0", features = ["codec"] }
tracing = { version = "0.1.31", features = ["log"] }
tokio-util = { version = "0.7.1", features = ["codec"] }
tracing = { version = "0.1.34", features = ["log"] }

[dev-dependencies]
bincode = "1.3.3"
14 changes: 7 additions & 7 deletions narwhal/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ authors = ["Mysten Labs <[email protected]>"]
edition = "2021"

[dependencies]
anyhow = "1.0.55"
async-trait = "0.1.52"
anyhow = "1.0.57"
async-trait = "0.1.53"
bincode = "1.3.3"
bytes = "1.1.0"
cfg-if = "1.0.0"
Expand All @@ -17,10 +17,10 @@ rand = "0.7.3"
store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "808de09203d147b43d59114b8afd9e51cbcf5778" }
thiserror = "1.0.30"
tokio = { version = "1.17.0", features = ["full"] }
tokio-util = { version = "0.7.0", features = ["codec"] }
tracing = { version = "0.1.31", features = ["log"] }
tracing-log = "0.1.2"
tracing-subscriber = { version = "0.3.9", features = ["time", "env-filter"] }
tokio-util = { version = "0.7.1", features = ["codec"] }
tracing = { version = "0.1.34", features = ["log"] }
tracing-log = "0.1.3"
tracing-subscriber = { version = "0.3.11", features = ["time", "env-filter"] }

config = { path = "../config" }
consensus = { path = "../consensus" }
Expand All @@ -33,7 +33,7 @@ worker = { path = "../worker" }
[dev-dependencies]
ed25519-dalek = "1.0.1"
hex = "0.4.3"
pretty_assertions = "1.2.0"
pretty_assertions = "1.2.1"
serde-reflection = "0.3.5"
serde_yaml = "0.8.23"
structopt = "0.3.26"
Expand Down
8 changes: 4 additions & 4 deletions narwhal/primary/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ edition = "2021"

[dependencies]
async-recursion = "1.0.0"
async-trait = "0.1.52"
async-trait = "0.1.53"
base64 = "0.13.0"
bincode = "1.3.3"
blake2 = "0.9"
bytes = "1.1.0"
config = { path = "../config" }
derive_builder = "0.11.1"
derive_builder = "0.11.2"
ed25519-dalek = "1.0.1"
futures = "0.3.21"
serde = { version = "1.0.136", features = ["derive"] }
store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "808de09203d147b43d59114b8afd9e51cbcf5778" }
thiserror = "1.0.30"
tokio = { version = "1.17.0", features = ["sync", "rt", "macros"] }
tokio-util = { version = "0.7.0", features = ["codec"] }
tracing = { version = "0.1.31", features = ["log"] }
tokio-util = { version = "0.7.1", features = ["codec"] }
tracing = { version = "0.1.34", features = ["log"] }

crypto = { path = "../crypto" }
network = { path = "../network" }
Expand Down
4 changes: 2 additions & 2 deletions narwhal/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ base64 = "0.13.0"
bincode = "1.3.3"
blake2 = "0.9"
bytes = "1.1.0"
derive_builder = "0.11.1"
derive_builder = "0.11.2"
ed25519-dalek = "1.0.1"
futures = "0.3.21"
rand = "0.7.3"
Expand All @@ -20,7 +20,7 @@ store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typ
tempfile = "3.3.0"
thiserror = "1.0.30"
tokio = { version = "1.17.0", features = ["sync", "rt", "macros"] }
tokio-util = { version = "0.7.0", features = ["codec"] }
tokio-util = { version = "0.7.1", features = ["codec"] }

config = { path = "../config" }
crypto = { path = "../crypto" }
Expand Down
6 changes: 3 additions & 3 deletions narwhal/worker/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]
async-trait = "0.1.52"
async-trait = "0.1.53"
bincode = "1.3.3"
blake2 = "0.9"
bytes = "1.1.0"
Expand All @@ -15,8 +15,8 @@ futures = "0.3.21"
serde = { version = "1.0.136", features = ["derive"] }
store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "808de09203d147b43d59114b8afd9e51cbcf5778" }
tokio = { version = "1.17.0", features = ["sync", "rt", "macros"] }
tokio-util = { version = "0.7.0", features = ["codec"] }
tracing = { version = "0.1.31", features = ["log"] }
tokio-util = { version = "0.7.1", features = ["codec"] }
tracing = { version = "0.1.34", features = ["log"] }

config = { path = "../config" }
crypto = { path = "../crypto" }
Expand Down

0 comments on commit 78d73f7

Please sign in to comment.