diff --git a/Cargo.lock b/Cargo.lock index ae699bd..200e4f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -465,7 +465,7 @@ dependencies = [ "libc", "percent-encoding", "pin-project-lite", - "socket2", + "socket2 0.5.10", "tokio", "tower-service", "tracing", @@ -1098,6 +1098,16 @@ dependencies = [ "windows-sys 0.52.0", ] +[[package]] +name = "socket2" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" +dependencies = [ + "libc", + "windows-sys 0.59.0", +] + [[package]] name = "stable_deref_trait" version = "1.2.0" @@ -1181,9 +1191,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.46.1" +version = "1.47.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17" +checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" dependencies = [ "backtrace", "io-uring", @@ -1191,9 +1201,9 @@ dependencies = [ "mio", "pin-project-lite", "slab", - "socket2", + "socket2 0.6.0", "tokio-macros", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] diff --git a/crates/twirp/Cargo.toml b/crates/twirp/Cargo.toml index 2dbabc4..41f77cc 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.46", default-features = false } +tokio = { version = "1.47", 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 26833af..5337216 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -11,7 +11,7 @@ prost-wkt = "0.6" prost-wkt-types = "0.6" serde = { version = "1.0", features = ["derive"] } thiserror = "2.0" -tokio = { version = "1.46", features = ["rt-multi-thread", "macros"] } +tokio = { version = "1.47", features = ["rt-multi-thread", "macros"] } http = "1.3" http-body-util = "0.1"