diff options
| author | David Lönnhager <david.l@mullvad.net> | 2025-02-27 14:02:00 +0100 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2025-03-06 00:09:23 +0100 |
| commit | df3a550bce40d2630fa4434a5a7d01d217d2e3ae (patch) | |
| tree | e537610fa7537dd37eff63fe2a6aed1f2088bc19 | |
| parent | 8c9ed9b9bb5c5f97b6323c4f544476b9f136c153 (diff) | |
| download | mullvadvpn-df3a550bce40d2630fa4434a5a7d01d217d2e3ae.tar.xz mullvadvpn-df3a550bce40d2630fa4434a5a7d01d217d2e3ae.zip | |
Fix unused dependency
| -rw-r--r-- | mullvad-update/Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mullvad-update/Cargo.toml b/mullvad-update/Cargo.toml index 229d813d1f..128a635194 100644 --- a/mullvad-update/Cargo.toml +++ b/mullvad-update/Cargo.toml @@ -28,7 +28,6 @@ async-trait = { version = "0.1", optional = true } reqwest = { version = "0.12.9", default-features = false, features = ["rustls-tls"], optional = true } sha2 = { version = "0.10", optional = true } tokio = { workspace = true, features = ["rt-multi-thread", "fs", "process", "macros"], optional = true } -thiserror = { workspace = true, optional = true } mullvad-version = { path = "../mullvad-version", features = ["serde"] } @@ -36,6 +35,9 @@ mullvad-version = { path = "../mullvad-version", features = ["serde"] } clap = { workspace = true, optional = true } rand = { version = "0.8.5", optional = true } +[target.'cfg(any(target_os = "macos", target_os = "windows"))'.dependencies] +thiserror = { workspace = true, optional = true } + [dev-dependencies] async-tempfile = "0.6" insta = { workspace = true } |
