diff --git a/Cargo.lock b/Cargo.lock index 9f0c3cf..5df024c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3853,10 +3853,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", @@ -3926,9 +3927,9 @@ dependencies = [ [[package]] name = "tokio-tungstenite" -version = "0.17.1" +version = "0.17.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06cda1232a49558c46f8a504d5b93101d42c0bf7f911f12a105ba48168f821ae" +checksum = "f714dd15bead90401d77e04243611caec13726c2408afd5b31901dfcdcb3b181" dependencies = [ "futures-util", "log", @@ -4143,9 +4144,9 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "tungstenite" -version = "0.17.2" +version = "0.17.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d96a2dea40e7570482f28eb57afbe42d97551905da6a9400acc5c328d24004f5" +checksum = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0" dependencies = [ "base64", "byteorder", diff --git a/warpgate-admin/Cargo.toml b/warpgate-admin/Cargo.toml index c884737..6ea044e 100644 --- a/warpgate-admin/Cargo.toml +++ b/warpgate-admin/Cargo.toml @@ -34,7 +34,7 @@ sea-orm = { version = "^0.9", features = [ 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 0b53a4d..636fd1f 100644 --- a/warpgate-common/Cargo.toml +++ b/warpgate-common/Cargo.toml @@ -25,7 +25,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-database-protocols/Cargo.toml b/warpgate-database-protocols/Cargo.toml index 927aa30..6e34dbc 100644 --- a/warpgate-database-protocols/Cargo.toml +++ b/warpgate-database-protocols/Cargo.toml @@ -12,7 +12,7 @@ authors = [ ] [dependencies] -tokio = { version = "1.19", features = ["io-util"] } +tokio = { version = "1.20", features = ["io-util"] } bitflags = { version = "1.3", default-features = false } bytes = "1.1" futures-core = { version = "0.3", default-features = false } diff --git a/warpgate-protocol-http/Cargo.toml b/warpgate-protocol-http/Cargo.toml index 28b6b23..f902cc0 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-mysql/Cargo.toml b/warpgate-protocol-mysql/Cargo.toml index bbc0ba9..01c5837 100644 --- a/warpgate-protocol-mysql/Cargo.toml +++ b/warpgate-protocol-mysql/Cargo.toml @@ -11,7 +11,7 @@ warpgate-db-entities = { version = "*", path = "../warpgate-db-entities" } warpgate-database-protocols = { version = "*", path = "../warpgate-database-protocols" } anyhow = { version = "1.0", features = ["std"] } async-trait = "0.1" -tokio = { version = "1.19", features = ["tracing", "signal"] } +tokio = { version = "1.20", features = ["tracing", "signal"] } tracing = "0.1" uuid = { version = "1.0", features = ["v4"] } bytes = "1.1" diff --git a/warpgate-protocol-ssh/Cargo.toml b/warpgate-protocol-ssh/Cargo.toml index 525acc0..1ca3e2b 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 ca1367f..733281a 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"}