diff options
| author | David Lönnhager <david.l@mullvad.net> | 2025-09-24 15:04:09 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2025-09-30 16:09:04 +0200 |
| commit | 648d85283b88960f30693b143859b76ff5fd395e (patch) | |
| tree | 5677ab1095ca91b3c4ed9c1b0730f4d2fd5611a7 | |
| parent | 514b4a8d15c4e3fd8da884cefcb395588d341623 (diff) | |
| download | mullvadvpn-648d85283b88960f30693b143859b76ff5fd395e.tar.xz mullvadvpn-648d85283b88960f30693b143859b76ff5fd395e.zip | |
Remove LWO feature. This makes the feature not hidden in the CLI
| -rw-r--r-- | mullvad-cli/Cargo.toml | 5 | ||||
| -rw-r--r-- | mullvad-types/Cargo.toml | 3 | ||||
| -rw-r--r-- | mullvad-types/src/relay_constraints.rs | 1 |
3 files changed, 1 insertions, 8 deletions
diff --git a/mullvad-cli/Cargo.toml b/mullvad-cli/Cargo.toml index c09fd64d4a..058951bff4 100644 --- a/mullvad-cli/Cargo.toml +++ b/mullvad-cli/Cargo.toml @@ -14,9 +14,6 @@ workspace = true name = "mullvad" path = "src/main.rs" -[features] -lwo = ["mullvad-types/lwo"] - [dependencies] anyhow = { workspace = true } chrono = { workspace = true } @@ -31,7 +28,7 @@ mullvad-version = { path = "../mullvad-version" } talpid-types = { path = "../talpid-types" } mullvad-management-interface = { path = "../mullvad-management-interface" } -tokio = { workspace = true, features = ["macros", "rt-multi-thread", "fs"] } +tokio = { workspace = true, features = ["macros", "rt-multi-thread", "fs"] } serde = { workspace = true } serde_json = { workspace = true } diff --git a/mullvad-types/Cargo.toml b/mullvad-types/Cargo.toml index fcad67d35a..36efa91eda 100644 --- a/mullvad-types/Cargo.toml +++ b/mullvad-types/Cargo.toml @@ -10,9 +10,6 @@ rust-version.workspace = true [lints] workspace = true -[features] -lwo = [] - [dependencies] either = "1.11" chrono = { workspace = true, features = ["clock", "serde"] } diff --git a/mullvad-types/src/relay_constraints.rs b/mullvad-types/src/relay_constraints.rs index 39a8f58e63..013153524e 100644 --- a/mullvad-types/src/relay_constraints.rs +++ b/mullvad-types/src/relay_constraints.rs @@ -640,7 +640,6 @@ pub enum SelectedObfuscation { Udp2Tcp, Shadowsocks, Quic, - #[cfg_attr(all(feature = "clap", not(feature = "lwo")), clap(skip))] Lwo, } |
