From ce4ac93631d866cff9951074f0b5cdc9335f9373 Mon Sep 17 00:00:00 2001 From: moznion Date: Sat, 2 Jan 2021 11:24:55 +0900 Subject: [PATCH] Upgrade tokio version: v1.0.1 --- e2e-test/Cargo.toml | 2 +- examples/Cargo.toml | 2 +- radius/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e-test/Cargo.toml b/e2e-test/Cargo.toml index 26fbec1..ab3b70e 100644 --- a/e2e-test/Cargo.toml +++ b/e2e-test/Cargo.toml @@ -7,5 +7,5 @@ publish = false [dependencies] radius = { version = "0.1.0", path = "../radius" } -tokio = { version = "0.3.5", features = ["signal", "net"] } +tokio = { version = "1.0.1", features = ["signal", "net"] } async-trait = "0.1.42" diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 833b868..1fa052e 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/moznion/radius-rs" radius = { version = "0.1.0", path = "../radius" } log = "0.4.11" env_logger = "0.8.2" -tokio = { version = "0.3.4", features = ["signal", "net"] } +tokio = { version = "1.0.1", features = ["signal", "net"] } async-trait = "0.1.42" [[example]] diff --git a/radius/Cargo.toml b/radius/Cargo.toml index dc19d00..392b497 100644 --- a/radius/Cargo.toml +++ b/radius/Cargo.toml @@ -19,5 +19,5 @@ rand = "0.7.3" num_enum = "0.5.1" thiserror = "1.0" log = "0.4.11" -tokio = { version = "0.3.5", features = ["full"] } +tokio = { version = "1.0.1", features = ["full"] } async-trait = "0.1.42"