Skip to content

Commit

Permalink
Bump tokio from 0.2.25 to 1.3.0
Browse files Browse the repository at this point in the history
Bumps [tokio](https://github.com/tokio-rs/tokio) from 0.2.25 to 1.3.0.
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-0.2.25...tokio-1.3.0)

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Mar 15, 2021
1 parent 007f210 commit d7d2c58
Show file tree
Hide file tree
Showing 20 changed files with 38 additions and 38 deletions.
38 changes: 19 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion account/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ starcoin-chain-notify = { path = "../../chain/chain-notify" }
stest = { path = "../../commons/stest" }
starcoin-types = { path = "../../types" }
tempfile = "3"
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }

2 changes: 1 addition & 1 deletion block-relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ starcoin-service-registry = { path = "../commons/service-registry" }
once_cell = "1.7.2"

[dev-dependencies]
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
hex = "0.4.3"
stest = { path = "../commons/stest"}
2 changes: 1 addition & 1 deletion chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ sp-utils = {path = "../commons/utils"}
stdlib = { path = "../vm/stdlib" }
stest = { path = "../commons/stest" }
starcoin-account-api = { path = "../account/api" }
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
starcoin-genesis = { path = "../core/genesis" }
proptest = "1.0.0"
proptest-derive = { version = "0.3.0" }
Expand Down
2 changes: 1 addition & 1 deletion cmd/faucet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ anyhow = "1.0.38"
tiny_http = "0.6"
futures = "0.3.12"
hex = { version = "0.4.3", default-features = false }
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
tokio-executor = { version = "0.2.0-alpha.6", features = ["blocking"] }
futures-timer = "3.0"
ascii = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion cmd/indexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ starcoin-rpc-client = { path= "../../rpc/client" }
starcoin-rpc-api = {path = "../../rpc/api" }
starcoin-logger = {path = "../../commons/logger"}
jsonrpc-core-client="~17"
tokio={version="0.2", features=["full"]}
tokio={version="1.3", features=["full"]}
futures-util = "~0.3"
futures-retry="~0.5"

Expand Down
2 changes: 1 addition & 1 deletion cmd/miner_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ starcoin-config = { path = "../../config" }
starcoin-types = { path = "../../types" }
traits = { path = "../../core/traits", package = "starcoin-traits" }
consensus = { path = "../../consensus", package = "starcoin-consensus" }
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
logger = { path = "../../commons/logger", package = "starcoin-logger" }
futures-channel = "0.3"
crypto = { package = "starcoin-crypto", path = "../../commons/crypto" }
Expand Down
2 changes: 1 addition & 1 deletion cmd/starcoin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ rand = "0.8.3"
serde = { version = "1.0.124" }
serde_json = { version="1.0", features = ["arbitrary_precision"]}
crossbeam-channel = "0.5.0"
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
futures = "0.3.12"
bcs-ext = { package="bcs-ext", path = "../../commons/bcs_ext" }
structopt = "0.3.21"
Expand Down
2 changes: 1 addition & 1 deletion cmd/tx-factory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ anyhow = "1.0.38"
structopt = "0.3.21"
ctrlc = { version = "3.1", features = ["termination"] }
futures = "0.3.12"
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
starcoin-logger = { path = "../../commons/logger" }
starcoin-config = { path = "../../config"}
starcoin-crypto = {path = "../../commons/crypto"}
Expand Down
2 changes: 1 addition & 1 deletion commons/metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ starcoin-logger = { path = "../logger" }
once_cell = "1.7.2"
prometheus = { version = "0.10.0", default-features = false }
serde_json = { version="1.0", features = ["arbitrary_precision"]}
tokio = "0.2"
tokio = "1.3"
[target."cfg(any(target_os = \"macos\", target_os=\"linux\"))".dependencies]
psutil = { version = "3.2", default-features = false, features= ["cpu", "memory", "process"]}

Expand Down
2 changes: 1 addition & 1 deletion commons/stest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ log = "0.4.14"
actix = "0.10.0"
actix-rt = "1.1"
futures = "0.3.12"
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
anyhow = "1.0.38"

2 changes: 1 addition & 1 deletion miner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ starcoin-storage = { path = "../storage" }
executor = { path = "../executor", package = "starcoin-executor" }
starcoin-txpool = { path = "../txpool" }
starcoin-txpool-api = { path = "../txpool/api" }
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
logger = {path = "../commons/logger", package="starcoin-logger"}
crypto = { package="starcoin-crypto", path = "../commons/crypto"}
starcoin-accumulator = {path = "../core/accumulator", package="starcoin-accumulator"}
Expand Down
2 changes: 1 addition & 1 deletion network-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ bytes = "0.5.0"
serde = { version = "1.0.124", features = ["derive"] }
serde_json = "1.0.59"
parity-codec = { version = "3.2", features = ["derive"] }
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
once_cell = "1.7.2"

api-limiter = {path = "../commons/api-limiter"}
Expand Down
2 changes: 1 addition & 1 deletion network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ starcoin-storage = { path = "../storage" }
once_cell = "1.7.2"

[dev-dependencies]
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
test-helper = { path = "../test-helper" }
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ thiserror = "1.0"
backtrace = "0.3.55"
actix = "0.10.0"
actix-rt = "1.1"
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
futures = "0.3.12"
futures-timer = "3.0"
async-trait = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion rpc/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ serde_json = { version="1.0", features = ["arbitrary_precision"]}
hex = "~0.4"
actix = "0.10.0"
actix-rt = "1.1"
tokio = "0.2"
tokio = "1.3"
log = "0.4.14"
parking_lot = "0.11.1"
jsonrpc-core = { version = "17.0.0", features = ["arbitrary_precision"] }
Expand Down
2 changes: 1 addition & 1 deletion rpc/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ stest = { path = "../../commons/stest"}
starcoin-rpc-client = { path = "../client"}
starcoin-txpool-mock-service = {path ="../../txpool/mock-service"}
starcoin-executor={path="../../executor"}
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
starcoin-genesis = {path = "../../core/genesis"}
test-helper = { path = "../../test-helper" }
starcoin-chain-mock = { path = "../../chain/mock" }
2 changes: 1 addition & 1 deletion sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ starcoin-chain-service = { path = "../chain/service" }
starcoin-chain-api = { path = "../chain/api" }

[dev-dependencies]
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
miner = {path = "../miner", package="starcoin-miner" }
hex = "0.4.3"
starcoin-account-api = { path = "../account/api"}
Expand Down
2 changes: 1 addition & 1 deletion test-helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2018"
anyhow = "1.0.38"
thiserror = "1.0"
backtrace = "0.3.55"
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
futures = "0.3.12"
futures-timer = "3.0"
hex= "0.4.3"
Expand Down
2 changes: 1 addition & 1 deletion vm/move-prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ serde = { version = "1.0.124", features = ["derive"] }
serde_json = "1.0.61"
simplelog = "0.9.0"
once_cell = "1.7.2"
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
toml = "0.5.8"

[dev-dependencies]
Expand Down

0 comments on commit d7d2c58

Please sign in to comment.