From b00c047a3c2c6b83c5d60f9f291121bedf0abd13 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 19:16:55 +0000 Subject: [PATCH] Bump tokio from 1.42.0 to 1.43.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.42.0 to 1.43.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.42.0...tokio-1.43.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- crates/twirp/Cargo.toml | 2 +- example/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 40d237c..282466c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1156,9 +1156,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.42.0" +version = "1.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" +checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" dependencies = [ "backtrace", "libc", @@ -1171,9 +1171,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/crates/twirp/Cargo.toml b/crates/twirp/Cargo.toml index 597ee6f..59d4210 100644 --- a/crates/twirp/Cargo.toml +++ b/crates/twirp/Cargo.toml @@ -24,6 +24,6 @@ reqwest = { version = "0.12", default-features = false } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "2.0" -tokio = { version = "1.42", default-features = false } +tokio = { version = "1.43", 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 3b4dd3a..e945d17 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.42", features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.43", features = ["rt-multi-thread", "macros"] } [build-dependencies] twirp-build = { path = "../crates/twirp-build" }