From 4d34faef53bb75fa2fc4a1e454484b8248ba1d46 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Feb 2023 00:37:52 +0000 Subject: [PATCH] Bump tokio from 1.21.2 to 1.24.2 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.21.2 to 1.24.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/commits) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 +++--- reservation/Cargo.toml | 4 ++-- service/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ee289f6..b550495 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1692,9 +1692,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.21.2" +version = "1.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099" +checksum = "597a12a59981d9e3c38d216785b0c37399f6e415e8d0712047620f189371b0bb" dependencies = [ "autocfg", "bytes", @@ -1707,7 +1707,7 @@ dependencies = [ "signal-hook-registry", "socket2", "tokio-macros", - "winapi", + "windows-sys 0.42.0", ] [[package]] diff --git a/reservation/Cargo.toml b/reservation/Cargo.toml index 2c73cf2..8c8742c 100644 --- a/reservation/Cargo.toml +++ b/reservation/Cargo.toml @@ -10,7 +10,7 @@ abi = { version = "0.1.0", path = "../abi" } async-trait = "0.1.58" chrono = { version = "0.4.22", features = ["serde"] } sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres", "chrono", "uuid"] } -tokio = { version = "1.21.2", features = ["sync"] } +tokio = { version = "1.24.2", features = ["sync"] } futures = { version = "0.3.25", default-features = false } tracing = "0.1.37" tokio-stream = "0.1.11" @@ -19,4 +19,4 @@ tokio-stream = "0.1.11" dotenvy = "0.15.6" prost-types = "0.11.1" sqlx-db-tester = "0.1.1" -tokio = { version = "1.21.2", features = ["full"] } +tokio = { version = "1.24.2", features = ["full"] } diff --git a/service/Cargo.toml b/service/Cargo.toml index bc78939..08b1648 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -17,7 +17,7 @@ reservation = { version = "0.1.0", path = "../reservation" } serde = { version = "1.0.147", features = ["derive"] } serde_yaml = "0.9.14" shellexpand = "2.1.2" -tokio = { version = "1.21.2", features = ["full"] } +tokio = { version = "1.24.2", features = ["full"] } tonic = { version = "0.8.2", features = ["tokio-rustls", "gzip"] } tracing = "0.1.37"