summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2025-09-15 13:39:43 +0200
committerDavid Lönnhager <david.l@mullvad.net>2025-09-18 17:20:21 +0200
commitc17b891ef42f27d590700bf15eeecde28306adcb (patch)
tree28071ea90d7cd77e6165b924fc21b2055001ba16
parent923414f3f00b033dde8ed538ad05c18da4da6b27 (diff)
downloadmullvadvpn-c17b891ef42f27d590700bf15eeecde28306adcb.tar.xz
mullvadvpn-c17b891ef42f27d590700bf15eeecde28306adcb.zip
Bump tokio-util
-rw-r--r--Cargo.lock22
-rw-r--r--tunnel-obfuscation/Cargo.toml2
2 files changed, 12 insertions, 12 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b4917a5807..42fa93f816 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1758,7 +1758,7 @@ dependencies = [
"indexmap 2.2.6",
"slab",
"tokio",
- "tokio-util 0.7.10",
+ "tokio-util 0.7.16",
"tracing",
]
@@ -1777,7 +1777,7 @@ dependencies = [
"indexmap 2.2.6",
"slab",
"tokio",
- "tokio-util 0.7.10",
+ "tokio-util 0.7.16",
"tracing",
]
@@ -1818,7 +1818,7 @@ dependencies = [
"h3-datagram",
"quinn",
"tokio",
- "tokio-util 0.7.10",
+ "tokio-util 0.7.16",
]
[[package]]
@@ -1939,7 +1939,7 @@ dependencies = [
"thiserror 1.0.59",
"time",
"tokio",
- "tokio-util 0.7.10",
+ "tokio-util 0.7.16",
"tracing",
]
@@ -6089,7 +6089,7 @@ dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
- "tokio-util 0.7.10",
+ "tokio-util 0.7.16",
]
[[package]]
@@ -6125,16 +6125,16 @@ dependencies = [
[[package]]
name = "tokio-util"
-version = "0.7.10"
+version = "0.7.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
+checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
dependencies = [
"bytes",
"futures-core",
"futures-sink",
+ "futures-util",
"pin-project-lite",
"tokio",
- "tracing",
]
[[package]]
@@ -6237,7 +6237,7 @@ dependencies = [
"rand 0.8.5",
"slab",
"tokio",
- "tokio-util 0.7.10",
+ "tokio-util 0.7.16",
"tower-layer",
"tower-service",
"tracing",
@@ -6405,7 +6405,7 @@ dependencies = [
"nix 0.29.0",
"thiserror 2.0.9",
"tokio",
- "tokio-util 0.7.10",
+ "tokio-util 0.7.16",
"windows-sys 0.59.0",
"wintun-bindings",
]
@@ -6425,7 +6425,7 @@ dependencies = [
"talpid-types",
"thiserror 2.0.9",
"tokio",
- "tokio-util 0.7.10",
+ "tokio-util 0.7.16",
"udp-over-tcp",
]
diff --git a/tunnel-obfuscation/Cargo.toml b/tunnel-obfuscation/Cargo.toml
index 36ba26e344..e84486e1cf 100644
--- a/tunnel-obfuscation/Cargo.toml
+++ b/tunnel-obfuscation/Cargo.toml
@@ -15,7 +15,7 @@ log = { workspace = true }
async-trait = "0.1"
thiserror = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "net", "io-util"] }
-tokio-util = { workspace = true }
+tokio-util = { workspace = true, features = ["rt"] }
udp-over-tcp = { git = "https://github.com/mullvad/udp-over-tcp", rev = "87936ac29b68b902565955f138ab02294bcc8593" }
shadowsocks = { workspace = true }
mullvad-masque-proxy = { path = "../mullvad-masque-proxy" }