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" }