diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-02-17 00:34:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-17 00:34:12 +0100 |
commit | e0074b5afdbdebe64417cbada7c00f9cff85e56e (patch) | |
tree | a3d96d9fea8592bb4c4ac5121f21366d7a59da42 | |
parent | f82e91786020adc2f97df52f47f458acdabe22ef (diff) |
chore: upgrade tokio to 1.25.0 (#17590)
Upgrades "tokio" dependency to version 1.25.0.
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index d5bf93411..b677ef044 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4974,9 +4974,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.24.2" +version = "1.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb" +checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af" dependencies = [ "autocfg", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 20699ef74..72f093614 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -112,7 +112,7 @@ sha2 = { version = "0.10.6", features = ["oid"] } smallvec = "1.8" socket2 = "0.4.7" tar = "=0.4.38" -tokio = { version = "=1.24.2", features = ["full"] } +tokio = { version = "=1.25.0", features = ["full"] } tokio-rustls = "0.23.3" tokio-tungstenite = "0.16.1" tokio-util = "=0.7.4" |