summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2025-09-24 15:04:09 +0200
committerDavid Lönnhager <david.l@mullvad.net>2025-09-30 16:09:04 +0200
commit648d85283b88960f30693b143859b76ff5fd395e (patch)
tree5677ab1095ca91b3c4ed9c1b0730f4d2fd5611a7
parent514b4a8d15c4e3fd8da884cefcb395588d341623 (diff)
downloadmullvadvpn-648d85283b88960f30693b143859b76ff5fd395e.tar.xz
mullvadvpn-648d85283b88960f30693b143859b76ff5fd395e.zip
Remove LWO feature. This makes the feature not hidden in the CLI
-rw-r--r--mullvad-cli/Cargo.toml5
-rw-r--r--mullvad-types/Cargo.toml3
-rw-r--r--mullvad-types/src/relay_constraints.rs1
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,
}