diff options
| author | Fuwn <[email protected]> | 2021-06-15 17:18:55 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-06-15 17:18:55 -0700 |
| commit | a564fdcac7cc32bf757b6a83eeb812ee30d5ef28 (patch) | |
| tree | 0e22229572aac12bcf802c69188e032af65f4323 | |
| parent | style: fix license template reporting errors (diff) | |
| parent | fix(deps): update rust crate tokio to 1.7.0 (diff) | |
| download | whirl-a564fdcac7cc32bf757b6a83eeb812ee30d5ef28.tar.xz whirl-a564fdcac7cc32bf757b6a83eeb812ee30d5ef28.zip | |
Merge pull request #46 from Whirlsplash/renovate/tokio-1.x
fix(deps): update rust crate tokio to 1.7.0
| -rw-r--r-- | crates/whirl/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/whirl_api/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/whirl_server/Cargo.toml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/crates/whirl/Cargo.toml b/crates/whirl/Cargo.toml index 03dfb33..663fb14 100644 --- a/crates/whirl/Cargo.toml +++ b/crates/whirl/Cargo.toml @@ -43,7 +43,7 @@ structopt = "0.3.21" whirl_config = { path = "../whirl_config" } # TCP -tokio = { version = "1.6.2", features = ["full"] } +tokio = { version = "1.7.0", features = ["full"] } tokio-util = { version = "0.6.7", features = ["codec"] } tokio-stream = "0.1.6" diff --git a/crates/whirl_api/Cargo.toml b/crates/whirl_api/Cargo.toml index 55aaadf..88b4932 100644 --- a/crates/whirl_api/Cargo.toml +++ b/crates/whirl_api/Cargo.toml @@ -21,7 +21,7 @@ actix-cors = "0.5.4" # Utility sysinfo = "0.18.2" whirl_common = { path = "../whirl_common" } -tokio = { version = "1.6.2", features = ["full"] } +tokio = { version = "1.7.0", features = ["full"] } num-traits = "0.2.14" # Serialization diff --git a/crates/whirl_server/Cargo.toml b/crates/whirl_server/Cargo.toml index d1e8602..fd6e2b9 100644 --- a/crates/whirl_server/Cargo.toml +++ b/crates/whirl_server/Cargo.toml @@ -31,7 +31,7 @@ serde = "1.0.126" serde_derive = "1.0.126" # TCP -tokio = { version = "1.6.2", features = ["full"] } +tokio = { version = "1.7.0", features = ["full"] } tokio-util = { version = "0.6.7", features = ["codec"] } tokio-stream = "0.1.6" |