Skip to content

Commit

Permalink
chore: upgrade to tokio 1.11 (#3299)
Browse files Browse the repository at this point in the history
Description
---
https://github.com/tokio-rs/tokio/releases/tag/tokio-1.11.0
Formatted Cargo manifest files and made tokio includes consistent for easy future find and replace.

Motivation and Context
---
Keeping tokio up to date

How Has This Been Tested?
---
Existing tests pass
  • Loading branch information
sdbondi authored Sep 6, 2021
1 parent fa257cd commit 3d49eae
Show file tree
Hide file tree
Showing 18 changed files with 103 additions and 104 deletions.
74 changes: 37 additions & 37 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions applications/tari_app_utilities/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ authors = ["The Tari Development Community"]
edition = "2018"

[dependencies]
tari_comms = { path = "../../comms"}
tari_comms = { path = "../../comms" }
tari_crypto = "0.11.1"
tari_common = { path = "../../common" }
tari_common_types ={ path ="../../base_layer/common_types"}
tari_common_types = { path = "../../base_layer/common_types" }
tari_p2p = { path = "../../base_layer/p2p", features = ["auto-update"] }
tari_wallet = { path = "../../base_layer/wallet", optional = true }

config = { version = "0.9.3" }
futures = { version = "^0.3.16", default-features = false, features = ["alloc"]}
futures = { version = "^0.3.16", default-features = false, features = ["alloc"] }
qrcode = { version = "0.12" }
dirs-next = "1.0.2"
serde_json = "1.0"
log = { version = "0.4.8", features = ["std"] }
rand = "0.8"
tokio = { version="^1.10", features = ["signal"] }
tokio = { version = "1.11", features = ["signal"] }
structopt = { version = "0.3.13", default_features = false }
strum = "^0.19"
strum_macros = "^0.19"
Expand All @@ -33,7 +33,7 @@ default-features = false
features = ["transactions"]

[build-dependencies]
tari_common = { path = "../../common", features = ["build", "static-application-info"] }
tari_common = { path = "../../common", features = ["build", "static-application-info"] }

[features]
# TODO: This crate is supposed to hold common logic. Move code from this feature into the crate that is more specific to the wallet
Expand Down
2 changes: 1 addition & 1 deletion applications/tari_base_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ log = { version = "0.4.8", features = ["std"] }
regex = "1"
rustyline = "6.0"
rustyline-derive = "0.3"
tokio = { version = "^1.10", features = ["signal"] }
tokio = { version = "1.11", features = ["signal"] }
strum = "^0.19"
strum_macros = "0.18.0"
thiserror = "^1.0.26"
Expand Down
Loading

0 comments on commit 3d49eae

Please sign in to comment.