From e04b64fbdacb860e2eb1d524014677805af8a2fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Mar 2025 19:26:26 +0000 Subject: [PATCH] Bump tokio from 1.43.0 to 1.44.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.43.0 to 1.44.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.43.0...tokio-1.44.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/twirp/Cargo.toml | 2 +- example/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ae6d45c..c8aca29 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1156,9 +1156,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.43.0" +version = "1.44.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" +checksum = "9975ea0f48b5aa3972bf2d888c238182458437cc2a19374b81b25cdf1023fb3a" dependencies = [ "backtrace", "libc", diff --git a/crates/twirp/Cargo.toml b/crates/twirp/Cargo.toml index dcb8e61..1388513 100644 --- a/crates/twirp/Cargo.toml +++ b/crates/twirp/Cargo.toml @@ -29,6 +29,6 @@ reqwest = { version = "0.12", default-features = false } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "2.0" -tokio = { version = "1.43", default-features = false } +tokio = { version = "1.44", default-features = false } tower = { version = "0.5", default-features = false } url = { version = "2.5" } diff --git a/example/Cargo.toml b/example/Cargo.toml index 7aded99..e01ec01 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -10,7 +10,7 @@ prost = "0.13" prost-wkt = "0.6" prost-wkt-types = "0.6" serde = { version = "1.0", features = ["derive"] } -tokio = { version = "1.43", features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.44", features = ["rt-multi-thread", "macros"] } [build-dependencies] twirp-build = { path = "../crates/twirp-build" }