Skip to content

Commit

Permalink
chore(deps): update rust crate tokio to 1.32
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Aug 16, 2023
1 parent 864e0bd commit 26af21b
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 16 deletions.
23 changes: 16 additions & 7 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ num_cpus = "1.16"
ring = "0.16"
data-encoding = "2.4"
regex = "1.9"
tokio = {version="1.29", features=["full"]}
tokio = {version="1.32", features=["full"]}

dirs = "5.0"
csv = "1.2"
Expand Down
4 changes: 2 additions & 2 deletions crates/async-tar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ edition = "2021"
[dependencies]
tar="0.4"
futures="0.3"
tokio={version="1.29", features=["fs"]}
tokio={version="1.32", features=["fs"]}

[dev-dependencies]
tempfile="3.7"
bytes = "1.4"
tokio-util = {version="0.7", features=["codec"]}
tokio={version="1.29", features=["macros", "rt"]}
tokio={version="1.32", features=["macros", "rt"]}

2 changes: 1 addition & 1 deletion crates/async-zip/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"

[dependencies]
futures = "0.3"
tokio = {version="1.29", features=["full"]}
tokio = {version="1.32", features=["full"]}
bytes = "1.4"
chrono = "0.4"
thiserror = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/file-cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ thiserror ="1.0"
log = "0.4"
byteorder = "1.4"

tokio = { version="1.29", optional=true, features=[ "rt", "fs"] }
tokio = { version="1.32", optional=true, features=[ "rt", "fs"] }


[features]
Expand All @@ -21,6 +21,6 @@ asynch = ["tokio"]
[dev-dependencies]
env_logger = "0.10"
tempfile ="3.7"
tokio = { version="1.29", features=["io-util", "macros",] }
tokio = { version="1.32", features=["io-util", "macros",] }


2 changes: 1 addition & 1 deletion crates/leaky-cauldron/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ edition = "2021"
[dependencies]

[dev-dependencies]
tokio={version="1.29", features=["macros", "test-util", "rt-multi-thread"]}
tokio={version="1.32", features=["macros", "test-util", "rt-multi-thread"]}
4 changes: 2 additions & 2 deletions crates/websock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
[dependencies]

hyper = "0.14"
tokio = {version="1.29", features=["rt-multi-thread", "time"]}
tokio = {version="1.32", features=["rt-multi-thread", "time"]}
futures = "0.3"
log = "0.4"
tokio-tungstenite = "0.20"
Expand All @@ -17,4 +17,4 @@ headers = "0.3"
[dev-dependencies]
env_logger = "0.10"
hyper = {version="0.14", features=["server", "http1", "http2", "tcp"]}
tokio = {version="1.29", features=["macros", "io-util", "fs"]}
tokio = {version="1.32", features=["macros", "io-util", "fs"]}

0 comments on commit 26af21b

Please sign in to comment.