From 1bc389775c2edf8dabbab01bc90bafd3da574a7d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Feb 2023 02:14:18 +0000 Subject: [PATCH] Bump tokio from 1.18.0 to 1.18.5 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.18.0 to 1.18.5. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.18.0...tokio-1.18.5) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 5 ++--- crates/bolt/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1053abb..cfc9d92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -724,16 +724,15 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.18.0" +version = "1.18.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f48b6d60512a392e34dbf7fd456249fd2de3c83669ab642e021903f4015185b" +checksum = "0e050c618355082ae5a89ec63bbf897225d5ffe84c7c4e036874e4d185a5044e" dependencies = [ "bytes", "libc", "memchr", "mio", "num_cpus", - "once_cell", "pin-project-lite", "socket2", "tokio-macros", diff --git a/crates/bolt/Cargo.toml b/crates/bolt/Cargo.toml index cf6ca52..171a82a 100644 --- a/crates/bolt/Cargo.toml +++ b/crates/bolt/Cargo.toml @@ -8,7 +8,7 @@ clap = "3.1.12" hyper = { version = "0.14.18", features = ["server", "stream", "http1", "http2"] } num_cpus = "1.13.1" thiserror = "1.0.30" -tokio = { version = "1.17.0", features = ["rt-multi-thread", "net", "io-util", "tracing", "macros"] } +tokio = { version = "1.18.5", features = ["rt-multi-thread", "net", "io-util", "tracing", "macros"] } tokio-rustls = "0.23.3" tower = { version = "0.4.12", features = ["util"] } tracing = "0.1.34"