diff options
| -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 } |
