From 17d1e0fdce1c71f79ec03e4079b05c283dd18e04 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Jul 2022 20:47:06 +0000 Subject: [PATCH 1/2] Bump tokio from 1.19.2 to 1.20.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.19.2 to 1.20.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.19.2...tokio-1.20.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 5 +++-- warpgate-admin/Cargo.toml | 2 +- warpgate-common/Cargo.toml | 2 +- warpgate-protocol-http/Cargo.toml | 2 +- warpgate-protocol-ssh/Cargo.toml | 2 +- warpgate/Cargo.toml | 2 +- 6 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4706fb9..1441df0 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 d252efc..9ffa624 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 a8b76b3..31eefd9 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 0e34020..7efc5a3 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 0e06a14..cd1e12d 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 0598fb5..56fbf1f 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"} From 0e5ad669d04a9b4e99a8020cc444b92606a1037c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Jul 2022 15:06:27 +0000 Subject: [PATCH 2/2] Bump tokio-tungstenite from 0.17.1 to 0.17.2 Bumps [tokio-tungstenite](https://github.com/snapview/tokio-tungstenite) from 0.17.1 to 0.17.2. - [Release notes](https://github.com/snapview/tokio-tungstenite/releases) - [Changelog](https://github.com/snapview/tokio-tungstenite/blob/master/CHANGELOG.md) - [Commits](https://github.com/snapview/tokio-tungstenite/compare/v0.17.1...v0.17.2) --- updated-dependencies: - dependency-name: tokio-tungstenite dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1441df0..56451b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3562,9 +3562,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", @@ -3779,9 +3779,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",