diff options
| author | David Lönnhager <david.l@mullvad.net> | 2025-03-07 13:04:07 +0100 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2025-03-07 15:05:08 +0100 |
| commit | 8f8b7a49e6e07fb8c5db63da082f190d4145dc90 (patch) | |
| tree | 0ddb8679f54c974bb355892f0c1967499a2cb019 | |
| parent | d2f4996292731788ac8a52b2335b52b999c25c72 (diff) | |
| download | mullvadvpn-8f8b7a49e6e07fb8c5db63da082f190d4145dc90.tar.xz mullvadvpn-8f8b7a49e6e07fb8c5db63da082f190d4145dc90.zip | |
Fix vec1 being optional incorrectly
| -rw-r--r-- | mullvad-update/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mullvad-update/Cargo.toml b/mullvad-update/Cargo.toml index 1c607905dd..4bd9a5c74b 100644 --- a/mullvad-update/Cargo.toml +++ b/mullvad-update/Cargo.toml @@ -13,7 +13,7 @@ workspace = true [features] default = [] sign = ["rand", "clap"] -client = ["async-trait", "reqwest", "sha2", "tokio", "thiserror", "vec1"] +client = ["async-trait", "reqwest", "sha2", "tokio", "thiserror"] [dependencies] anyhow = { workspace = true } @@ -29,7 +29,7 @@ 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 } -vec1 = { workspace = true, optional = true } +vec1 = { workspace = true } mullvad-version = { path = "../mullvad-version", features = ["serde"] } |
