Skip to content

Commit

Permalink
Update tokio dependency (#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez authored Sep 13, 2021
1 parent a48d1d8 commit 82ba8f3
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 66 deletions.
111 changes: 50 additions & 61 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 bee-ledger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ref-cast = { version = "1.0", optional = true }
reqwest = { version = "0.11", features = [ "stream" ], optional = true }
serde = { version = "1.0", features = [ "derive" ], optional = true }
thiserror = { version = "1.0" }
tokio = { version = "1.10", features = [ "sync", "fs" ], optional = true }
tokio = { version = "1.11", features = [ "sync", "fs" ], optional = true }
tokio-stream = { version = "0.1", optional = true }

[features]
Expand Down
4 changes: 2 additions & 2 deletions bee-network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ once_cell = { version = "1.7", optional = true }
rand = { version = "0.8", optional = true }
serde = { version = "1.0", features = [ "derive" ], optional = true }
thiserror = { version = "1.0", optional = true }
tokio = { version = "1.10", features = [ "macros", "rt", "time" ], optional = true }
tokio = { version = "1.11", features = [ "macros", "rt", "time" ], optional = true }
tokio-stream = { version = "0.1", optional = true }

[dev-dependencies]
fern = "0.6"
hex = "0.4"
serial_test = "0.5"
tokio = { version = "1.10", features = [ "rt", "rt-multi-thread", "macros", "signal", "time", "io-std", "io-util" ] }
tokio = { version = "1.11", features = [ "rt", "rt-multi-thread", "macros", "signal", "time", "io-std", "io-util" ] }

[[example]]
name = "chat"
Expand Down
2 changes: 1 addition & 1 deletion bee-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ futures = "0.3"
log = { version = "0.4", features = [ "serde" ] }

[dev-dependencies]
tokio = { version = "1.10", features = [ "rt", "macros", "time" ] }
tokio = { version = "1.11", features = [ "rt", "macros", "time" ] }
2 changes: 1 addition & 1 deletion bee-tangle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ rand = "0.8"
ref-cast = "1.0"
serde = { version = "1.0", features = [ "derive" ] }
thiserror = "1.0"
tokio = { version = "1.10", features = [ "sync", "time" ] }
tokio = { version = "1.11", features = [ "sync", "time" ] }
tokio-stream = { version = "0.1" }

0 comments on commit 82ba8f3

Please sign in to comment.