diff --git a/Cargo.toml b/Cargo.toml index fb239fa091c8..4f9828d603c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -137,6 +137,7 @@ serde = "1.0.204" serde_json = "1.0.122" ipnetwork = "0.20" +tun = { version = "0.7", features = ["async"] } # Test dependencies proptest = "1.4" diff --git a/talpid-tunnel/Cargo.toml b/talpid-tunnel/Cargo.toml index a3400889e041..542e30fb0ffd 100644 --- a/talpid-tunnel/Cargo.toml +++ b/talpid-tunnel/Cargo.toml @@ -24,7 +24,7 @@ jnix = { version = "0.5.1", features = ["derive"] } log = { workspace = true } [target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies] -tun = { version = "0.7", features = ["async"] } +tun = { workspace = true } [target.'cfg(windows)'.dependencies] talpid-windows = { path = "../talpid-windows" }