diff --git a/Cargo.lock b/Cargo.lock index 4706fb9b..1441df0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3488,10 +3488,11 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.19.2" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439" +checksum = "57aec3cfa4c296db7255446efb4928a6be304b431a806216105542a67b6ca82e" dependencies = [ + "autocfg", "bytes", "libc", "memchr", diff --git a/warpgate-admin/Cargo.toml b/warpgate-admin/Cargo.toml index d252efc4..9ffa6243 100644 --- a/warpgate-admin/Cargo.toml +++ b/warpgate-admin/Cargo.toml @@ -20,7 +20,7 @@ sea-orm = {version = "^0.9", features = ["sqlx-sqlite", "runtime-tokio-native-tl serde = "1.0" serde_json = "1.0" thiserror = "1.0" -tokio = {version = "1.19", features = ["tracing"]} +tokio = {version = "1.20", features = ["tracing"]} tracing = "0.1" uuid = {version = "1.0", features = ["v4", "serde"]} warpgate-common = {version = "*", path = "../warpgate-common"} diff --git a/warpgate-common/Cargo.toml b/warpgate-common/Cargo.toml index a8b76b34..31eefd9c 100644 --- a/warpgate-common/Cargo.toml +++ b/warpgate-common/Cargo.toml @@ -24,7 +24,7 @@ sea-orm = {version = "^0.9", features = ["sqlx-sqlite", "runtime-tokio-native-tl serde = "1.0" serde_json = "1.0" thiserror = "1.0" -tokio = {version = "1.19", features = ["tracing"]} +tokio = {version = "1.20", features = ["tracing"]} totp-rs = {version = "2.0", features = ["otpauth"]} tracing = "0.1" tracing-core = "0.1" diff --git a/warpgate-protocol-http/Cargo.toml b/warpgate-protocol-http/Cargo.toml index 0e340207..7efc5a34 100644 --- a/warpgate-protocol-http/Cargo.toml +++ b/warpgate-protocol-http/Cargo.toml @@ -18,7 +18,7 @@ poem-openapi = {version = "^2.0.4", features = ["swagger-ui"]} reqwest = {version = "0.11", features = ["rustls-tls-native-roots", "stream"]} serde = "1.0" serde_json = "1.0" -tokio = {version = "1.19", features = ["tracing", "signal"]} +tokio = {version = "1.20", features = ["tracing", "signal"]} tokio-tungstenite = {version = "0.17", features = ["rustls-tls-native-roots"]} tracing = "0.1" warpgate-admin = {version = "*", path = "../warpgate-admin"} diff --git a/warpgate-protocol-ssh/Cargo.toml b/warpgate-protocol-ssh/Cargo.toml index 0e06a14c..cd1e12d1 100644 --- a/warpgate-protocol-ssh/Cargo.toml +++ b/warpgate-protocol-ssh/Cargo.toml @@ -17,7 +17,7 @@ russh-keys = {version = "0.22.0-beta.3", features = ["openssl"]} sea-orm = {version = "^0.9", features = ["runtime-tokio-native-tls"], default-features = false} thiserror = "1.0" time = "0.3" -tokio = {version = "1.19", features = ["tracing", "signal"]} +tokio = {version = "1.20", features = ["tracing", "signal"]} tracing = "0.1" uuid = {version = "1.0", features = ["v4"]} warpgate-common = {version = "*", path = "../warpgate-common"} diff --git a/warpgate/Cargo.toml b/warpgate/Cargo.toml index 0598fb5a..56fbf1f8 100644 --- a/warpgate/Cargo.toml +++ b/warpgate/Cargo.toml @@ -24,7 +24,7 @@ qrcode = "0.12" rcgen = {version = "0.9", features = ["zeroize"]} serde_yaml = "0.8.23" time = "0.3" -tokio = {version = "1.19", features = ["tracing", "signal", "macros"]} +tokio = {version = "1.20", features = ["tracing", "signal", "macros"]} tracing = "0.1" tracing-subscriber = {version = "0.3", features = ["env-filter", "local-time"]} warpgate-admin = {version = "*", path = "../warpgate-admin"}