From fb0223679bb31e96f0f6e3fb28301c7afca21f20 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 26 Nov 2022 19:32:49 +0000 Subject: [PATCH] Bump bytes from 1.2.1 to 1.3.0 Bumps [bytes](https://github.com/tokio-rs/bytes) from 1.2.1 to 1.3.0. - [Release notes](https://github.com/tokio-rs/bytes/releases) - [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/bytes/commits) --- updated-dependencies: - dependency-name: bytes dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- warpgate-admin/Cargo.toml | 2 +- warpgate-common/Cargo.toml | 2 +- warpgate-core/Cargo.toml | 2 +- warpgate-database-protocols/Cargo.toml | 2 +- warpgate-protocol-mysql/Cargo.toml | 2 +- warpgate-protocol-ssh/Cargo.toml | 2 +- warpgate-sso/Cargo.toml | 2 +- warpgate/Cargo.toml | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2b14366..3b01c2c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -548,9 +548,9 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" [[package]] name = "bytes" -version = "1.2.1" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" +checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c" [[package]] name = "cache-padded" diff --git a/warpgate-admin/Cargo.toml b/warpgate-admin/Cargo.toml index 1001cc7..49cbf30 100644 --- a/warpgate-admin/Cargo.toml +++ b/warpgate-admin/Cargo.toml @@ -7,7 +7,7 @@ version = "0.7.0" [dependencies] anyhow = { version = "1.0", features = ["std"] } async-trait = "0.1" -bytes = "1.2" +bytes = "1.3" chrono = "0.4" futures = "0.3" hex = "0.4" diff --git a/warpgate-common/Cargo.toml b/warpgate-common/Cargo.toml index 020ac2c..82282aa 100644 --- a/warpgate-common/Cargo.toml +++ b/warpgate-common/Cargo.toml @@ -8,7 +8,7 @@ version = "0.7.0" anyhow = "1.0" argon2 = "0.4" async-trait = "0.1" -bytes = "1.2" +bytes = "1.3" chrono = { version = "0.4", features = ["serde"] } data-encoding = "2.3" delegate = "0.6" diff --git a/warpgate-core/Cargo.toml b/warpgate-core/Cargo.toml index cc44523..1ca917d 100644 --- a/warpgate-core/Cargo.toml +++ b/warpgate-core/Cargo.toml @@ -12,7 +12,7 @@ warpgate-db-migrations = { version = "*", path = "../warpgate-db-migrations" } anyhow = "1.0" argon2 = "0.4" async-trait = "0.1" -bytes = "1.2" +bytes = "1.3" chrono = { version = "0.4", features = ["serde"] } data-encoding = "2.3" humantime-serde = "1.1" diff --git a/warpgate-database-protocols/Cargo.toml b/warpgate-database-protocols/Cargo.toml index a195f0c..7524d76 100644 --- a/warpgate-database-protocols/Cargo.toml +++ b/warpgate-database-protocols/Cargo.toml @@ -14,7 +14,7 @@ authors = [ [dependencies] tokio = { version = "1.20", features = ["io-util"] } bitflags = { version = "1.3", default-features = false } -bytes = "1.2" +bytes = "1.3" futures-core = { version = "0.3", default-features = false } futures-util = { version = "0.3", default-features = false, features = [ "alloc", diff --git a/warpgate-protocol-mysql/Cargo.toml b/warpgate-protocol-mysql/Cargo.toml index 20f3048..2870f44 100644 --- a/warpgate-protocol-mysql/Cargo.toml +++ b/warpgate-protocol-mysql/Cargo.toml @@ -14,7 +14,7 @@ async-trait = "0.1" tokio = { version = "1.20", features = ["tracing", "signal"] } tracing = "0.1" uuid = { version = "1.2", features = ["v4"] } -bytes = "1.2" +bytes = "1.3" mysql_common = "0.29" rand = "0.8" sha1 = "0.10.5" diff --git a/warpgate-protocol-ssh/Cargo.toml b/warpgate-protocol-ssh/Cargo.toml index 1e77b36..6f6fc19 100644 --- a/warpgate-protocol-ssh/Cargo.toml +++ b/warpgate-protocol-ssh/Cargo.toml @@ -9,7 +9,7 @@ ansi_term = "0.12" anyhow = { version = "1.0", features = ["std"] } async-trait = "0.1" bimap = "0.6" -bytes = "1.2" +bytes = "1.3" dialoguer = "0.10" futures = "0.3" russh = { version = "0.35.0-beta.6", features = ["vendored-openssl"] } diff --git a/warpgate-sso/Cargo.toml b/warpgate-sso/Cargo.toml index c3fe0d2..b58f983 100644 --- a/warpgate-sso/Cargo.toml +++ b/warpgate-sso/Cargo.toml @@ -5,7 +5,7 @@ name = "warpgate-sso" version = "0.7.0" [dependencies] -bytes = "1.2" +bytes = "1.3" thiserror = "1.0" tokio = { version = "1.20", features = ["tracing", "macros"] } tracing = "0.1" diff --git a/warpgate/Cargo.toml b/warpgate/Cargo.toml index e7a9dac..1a8694c 100644 --- a/warpgate/Cargo.toml +++ b/warpgate/Cargo.toml @@ -9,7 +9,7 @@ ansi_term = "0.12" anyhow = { version = "1.0", features = ["backtrace"] } async-trait = "0.1" atty = "0.2" -bytes = "1.2" +bytes = "1.3" clap = { version = "3.2", features = ["derive"] } config = { version = "0.13", features = ["yaml"], default_features = false } console = { version = "0.15", default_features = false }