diff options
| author | Markus Pettersson <markus.pettersson@mullvad.net> | 2025-01-02 14:08:02 +0100 |
|---|---|---|
| committer | Markus Pettersson <markus.pettersson@mullvad.net> | 2025-01-03 12:50:04 +0100 |
| commit | 8713e93ae51245da487b7e46ed8d09c2b47a5fbe (patch) | |
| tree | e0a00cdad0d45559fa5e9bd5d662019f5afc2630 | |
| parent | afd1b7b9687a8ff895a9180eb705a70c7d04c836 (diff) | |
| download | mullvadvpn-8713e93ae51245da487b7e46ed8d09c2b47a5fbe.tar.xz mullvadvpn-8713e93ae51245da487b7e46ed8d09c2b47a5fbe.zip | |
Promote `tun` to a workspace dependency
| -rw-r--r-- | Cargo.toml | 1 | ||||
| -rw-r--r-- | talpid-tunnel/Cargo.toml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index fb239fa091..4f9828d603 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 a3400889e0..542e30fb0f 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" } |
