From 6d65af5226f48cbff24221432875d771febb1f41 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Apr 2025 02:08:55 +0000 Subject: [PATCH] Bump tokio from 1.39.3 to 1.43.1 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.39.3 to 1.43.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.39.3...tokio-1.43.1) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.43.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 +++++++------- mongo-protocol/Cargo.toml | 2 +- proxy/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c879395..5b32515 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -526,9 +526,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.158" +version = "0.2.171" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" +checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" [[package]] name = "linked-hash-map" @@ -1104,9 +1104,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.39.3" +version = "1.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9babc99b9923bfa4804bd74722ff02c0381021eafa4db9949217e3be8e84fff5" +checksum = "492a604e2fd7f814268a378409e6c92b5525d747d10db9a229723f55a417958c" dependencies = [ "backtrace", "bytes", @@ -1120,9 +1120,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", diff --git a/mongo-protocol/Cargo.toml b/mongo-protocol/Cargo.toml index 700684b..8b350a7 100644 --- a/mongo-protocol/Cargo.toml +++ b/mongo-protocol/Cargo.toml @@ -13,7 +13,7 @@ prometheus = "0.7" lazy_static = "1.4" bson = "1.1" byteorder = "1.3" -tokio = { version = "1.34", features = ["macros", "io-util"], optional = true } +tokio = { version = "1.43", features = ["macros", "io-util"], optional = true } async-bson = { path = "../async-bson" } bytes = "1.7.1" tracing-test = "0.2.5" diff --git a/proxy/Cargo.toml b/proxy/Cargo.toml index dd4aba6..8cb9609 100644 --- a/proxy/Cargo.toml +++ b/proxy/Cargo.toml @@ -12,7 +12,7 @@ lazy_static = '1.4' clap = '2.33' libc = '0.2' bson = '1.1' -tokio = { version = "1.34", features = ["rt-multi-thread", "net", "macros", "io-util", "sync" ] } +tokio = { version = "1.43", features = ["rt-multi-thread", "net", "macros", "io-util", "sync" ] } tokio-util = { version = '0.6', features = ["io"] } tokio-stream = '0.1' bytes = '1.0'