Skip to content
Open
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
5,320 changes: 2,660 additions & 2,660 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion core/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ time = "0.1"
ansi_term = "0.11"
lazy_static = "1.3"
app_dirs = "1.2"
tokio = "0.1.7"
tokio = "1.18.5"
futures = "0.1.17"
fdlimit = "0.1"
exit-future = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion core/consensus/aura/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ srml-aura = { path = "../../../srml/aura" }
client = { package = "substrate-client", path = "../../client" }
substrate-telemetry = { path = "../../telemetry" }
futures = "0.1.17"
tokio = "0.1.7"
tokio = "1.18.5"
parking_lot = "0.7.1"
error-chain = "0.12"
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion core/consensus/babe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ authorities = { package = "substrate-consensus-authorities", path = "../authorit
slots = { package = "substrate-consensus-slots", path = "../slots" }
runtime_primitives = { package = "sr-primitives", path = "../../sr-primitives" }
futures = "0.1.26"
tokio = "0.1.18"
tokio = "1.18.5"
parking_lot = "0.7.1"
error-chain = "0.12.0"
log = "0.4.6"
Expand Down
2 changes: 1 addition & 1 deletion core/consensus/rhd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ srml-consensus = { path = "../../../srml/consensus" }
runtime_primitives = { package = "sr-primitives", path = "../../sr-primitives" }
runtime_version = { package = "sr-version", path = "../../sr-version" }
runtime_io = { package = "sr-io", path = "../../sr-io" }
tokio = "0.1.7"
tokio = "1.18.5"
parking_lot = "0.7.1"
error-chain = "0.12"
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion core/consensus/slots/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runtime_primitives = { package = "sr-primitives", path = "../../sr-primitives" }
consensus_common = { package = "substrate-consensus-common", path = "../common" }
inherents = { package = "substrate-inherents", path = "../../inherents" }
futures = "0.1.17"
tokio = "0.1.7"
tokio = "1.18.5"
parking_lot = "0.7.1"
error-chain = "0.12"
log = "0.4"
2 changes: 1 addition & 1 deletion core/finality-grandpa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fork-tree = { path = "../../core/util/fork-tree" }
futures = "0.1"
log = "0.4"
parking_lot = "0.7.1"
tokio = "0.1.7"
tokio = "1.18.5"
rand = "0.6"
parity-codec = { version = "3.3", features = ["derive"] }
runtime_primitives = { package = "sr-primitives", path = "../sr-primitives" }
Expand Down
2 changes: 1 addition & 1 deletion core/network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runtime_primitives = { package = "sr-primitives", path = "../../core/sr-primitiv
parity-codec = { version = "3.3", features = ["derive"] }
network_libp2p = { package = "substrate-network-libp2p", path = "../../core/network-libp2p" }
peerset = { package = "substrate-peerset", path = "../../core/peerset" }
tokio = "0.1.11"
tokio = "1.18.5"
keyring = { package = "substrate-keyring", path = "../../core/keyring", optional = true }
test_client = { package = "substrate-test-client", path = "../../core/test-client", optional = true }
void = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion core/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ state_machine = { package = "substrate-state-machine", path = "../state-machine"
transaction_pool = { package = "substrate-transaction-pool", path = "../transaction-pool" }
runtime_primitives = { package = "sr-primitives", path = "../sr-primitives" }
runtime_version = { package = "sr-version", path = "../sr-version" }
tokio = "0.1.7"
tokio = "1.18.5"

[dev-dependencies]
assert_matches = "1.1"
Expand Down
2 changes: 1 addition & 1 deletion core/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ error-chain = "0.12"
lazy_static = "1.0"
log = "0.4"
slog = {version = "^2", features = ["nested-values"]}
tokio = "0.1.7"
tokio = "1.18.5"
exit-future = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion core/service/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"

[dependencies]
tempdir = "0.3"
tokio = "0.1.7"
tokio = "1.18.5"
futures = "0.1"
log = "0.4"
env_logger = "0.6"
Expand Down
2 changes: 1 addition & 1 deletion node-template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ error-chain = "0.12"
futures = "0.1"
ctrlc = { version = "3.0", features = ["termination"] }
log = "0.4"
tokio = "0.1"
tokio = "1.18"
exit-future = "0.1"
parking_lot = "0.7.1"
parity-codec = "3.3"
Expand Down
2 changes: 1 addition & 1 deletion node/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"

[dependencies]
log = "0.4"
tokio = "0.1.7"
tokio = "1.18.5"
futures = "0.1"
exit-future = "0.1"
cli = { package = "substrate-cli", path = "../../core/cli" }
Expand Down