forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add one round of dependency updates
- Loading branch information
1 parent
444690d
commit 78d73f7
Showing
10 changed files
with
39 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
@@ -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" } | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
@@ -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" } | ||
|