Skip to content
Closed
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
465 changes: 306 additions & 159 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/faucet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ reqwest = { version = "0.10.8", features = ["blocking"], default-features = fals
serde = "1.0.117"
serde_derive = "1.0.117"
structopt = "0.3.20"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
warp = "0.2.5"

generate-key = { path = "../../config/generate-key", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion client/json-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ hex = "0.4.2"
reqwest = { version = "0.10.8", features = ["blocking", "json"], default_features = false }
serde = { version = "1.0.117", default-features = false }
serde_json = "1.0.59"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }

libra-crypto = { path = "../../crypto/crypto", version = "0.1.0" }
lcs = { path = "../../common/lcs", version = "0.1.0", package = "libra-canonical-serialization" }
Expand Down
4 changes: 2 additions & 2 deletions common/bounded-executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
futures = "0.3.8"
libra-workspace-hack = { path = "../workspace-hack", version = "0.1.0" }
tokio = { version = "0.2.22", features = ["sync"] }
tokio = { version = "1.18.2", features = ["sync"] }

[dev-dependencies]
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
2 changes: 1 addition & 1 deletion common/channel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ libra-workspace-hack = { path = "../workspace-hack", version = "0.1.0" }

[dev-dependencies]
libra-types = { path = "../../types", version = "0.1.0" }
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
2 changes: 1 addition & 1 deletion common/debug-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0.34"
bytes = "0.5.6"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
reqwest = { version = "0.10.8", features = ["blocking", "json"], default_features = false }
warp = "0.2.5"

Expand Down
2 changes: 1 addition & 1 deletion common/metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ hyper = "0.13.9"
once_cell = "1.4.1"
prometheus = { version = "0.10.0", default-features = false }
serde_json = "1.0.59"
tokio = "0.2.22"
tokio = "1.18.2"

libra-logger = { path = "../logger", version = "0.1.0" }
libra-metrics-core = { path = "../metrics-core", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion common/retrier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ edition = "2018"

[dependencies]
libra-workspace-hack = { path = "..//workspace-hack", version = "0.1.0" }
tokio = { version = "0.2.22", features = ["time"] }
tokio = { version = "1.18.2", features = ["time"] }
libra-logger = { path = "../../common/logger", version = "0.1.0"}
2 changes: 1 addition & 1 deletion common/trace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
chrono = "0.4.19"
structopt = "0.3.20"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
serde_json = "1.0.59"
serde = "1.0.117"
anyhow = "1.0.34"
Expand Down
2 changes: 1 addition & 1 deletion consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ serde = { version = "1.0.117", default-features = false }
serde_json = "1.0.59"
termion = { version = "1.5.5", default-features = false }
thiserror = "1.0.22"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }

channel = { path = "../common/channel", version = "0.1.0" }
consensus-types = { path = "consensus-types", version = "0.1.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion json-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ once_cell = "1.4.1"
rand = "0.7.3"
serde_json = "1.0.59"
serde = { version = "1.0.117", default-features = false }
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
warp = "0.2.5"
reqwest = { version = "0.10.8", features = ["blocking", "json"], default_features = false, optional = true }
proptest = { version = "0.10.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion language/libra-tools/libra-events-fetcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ hex = "0.4.2"
reqwest = { version = "0.10.8", features = ["blocking", "json"] }
structopt = "0.3.20"
futures = "0.3.8"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }

libra-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1.0" }
libra-json-rpc-client = { path = "../../../client/json-rpc", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion language/move-prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ serde = { version = "1.0.117", features = ["derive"] }
serde_json = "1.0.59"
simplelog = "0.8.0"
once_cell = "1.4.1"
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.18", features = ["full"] }
toml = "0.5.7"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion libra-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fail = "0.4.0"
futures = "0.3.8"
jemallocator = { version = "0.3.2", features = ["profiling", "unprefixed_malloc_on_supported_platforms"] }
structopt = "0.3.20"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }

backup-service = { path = "../storage/backup/backup-service", version = "0.1.0" }
consensus = { path = "../consensus", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion mempool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ itertools = "0.9.0"
once_cell = "1.4.1"
proptest = { version = "0.10.1", optional = true }
serde = { version = "1.0.117", default-features = false }
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }

bounded-executor = { path = "../common/bounded-executor", version = "0.1.0" }
channel = { path = "../common/channel", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ rand_core = { version = "0.5.1", optional = true }
serde = { version = "1.0.117", default-features = false }
serde_bytes = "0.11.5"
thiserror = "1.0.22"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
tokio-retry = "0.2.0"
tokio-util = { version = "0.3.1", features = ["codec"] }

Expand Down
2 changes: 1 addition & 1 deletion network/builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ edition = "2018"
futures = "0.3.8"
rand = "0.7.3"
serde = { version = "1.0.117", default-features = false }
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
tokio-retry = "0.2.0"


Expand Down
2 changes: 1 addition & 1 deletion network/netcore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ bytes = "0.5.6"
futures = "0.3.8"
pin-project = "1.0.1"
serde = { version = "1.0.117", default-features = false }
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }

libra-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" }
libra-network-address = { path = "../network-address", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion network/simple-onchain-discovery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2018"
anyhow = "1.0.34"
futures = "0.3.8"
once_cell = "1.4.1"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }

channel = {path = "../../common/channel", version = "0.1.0"}
lcs = { path = "../../common/lcs", version = "0.1.0", package = "libra-canonical-serialization" }
Expand Down
2 changes: 1 addition & 1 deletion network/socket-bench-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"

[dependencies]
futures = "0.3.8"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
tokio-util = { version = "0.3.1", features = ["codec"] }

libra-crypto = { path = "../../crypto/crypto" }
Expand Down
2 changes: 1 addition & 1 deletion secure/json-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ libra-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0"
anyhow = "1.0.34"
futures = "0.3.8"
proptest = "0.10.1"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }

libra-config = { path = "../../config", version = "0.1.0" }
libra-proptest-helpers = { path = "../../common/proptest-helpers", version = "0.1.0"}
Expand Down
2 changes: 1 addition & 1 deletion secure/key-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ transaction-builder-generated = { path = "../../client/transaction-builder", ver
anyhow = "1.0.34"
futures = "0.3.8"
rand = "0.7.3"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }

executor = { path = "../../execution/executor", version = "0.1.0" }
executor-test-helpers = { path = "../../execution/executor-test-helpers", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion state-synchronizer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ futures = "0.3.8"
serde = { version = "1.0.117", default-features = false }
once_cell = "1.4.1"
rand = "0.7.3"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
itertools = { version = "0.9.0", default-features = false }
proptest = { version = "0.10.1", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion storage/backup/backup-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ serde = { version = "1.0.117", features = ["derive"] }
serde_json = "1.0.59"
structopt = "0.3.20"
toml = "0.5.7"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
tokio-util = { version = "0.3.1", features = ["compat"] }

executor = { path = "../../../execution/executor", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion storage/backup/backup-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ futures = "0.3.8"
hyper = "0.13.9"
once_cell = "1.4.1"
serde = { version = "1.0.117", default-features = false }
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
warp = "0.2.5"

lcs = { path = "../../../common/lcs", package = "libra-canonical-serialization", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion storage/storage-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"

[dependencies]
anyhow = "1.0.34"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
futures = "0.3.8"

lcs = { path = "../../common/lcs", version = "0.1.0", package = "libra-canonical-serialization" }
Expand Down
2 changes: 1 addition & 1 deletion testsuite/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ once_cell = "1.4.1"
reqwest = { version = "0.10.8", features = ["blocking", "json"] }
serde = { version = "1.0.117", features = ["derive"] }
structopt = "0.3.20"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
walkdir = "2.3.1"

libra-config = { path = "../../config", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion testsuite/cluster-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ state-synchronizer = { path = "../../state-synchronizer", version = "0.1.0" }
transaction-builder = { path = "../../language/transaction-builder", version = "0.1.0" }

futures = "0.3.8"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }
async-trait = "0.1.41"

kube = { version = "0.42.0" }
Expand Down
2 changes: 1 addition & 1 deletion testsuite/smoke-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rand = "0.7.3"
regex = "1.4.2"
rust_decimal = "1.8.1"
statistical = "1.0.0"
tokio = { version = "0.2.22", features = ["full"] }
tokio = { version = "1.18.2", features = ["full"] }

backup-cli = { path = "../../storage/backup/backup-cli", version = "0.1.0" }
cli = { path = "../cli", version = "0.1.0", features = ["fuzzing"] }
Expand Down