diff options
| author | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2025-04-22 13:29:20 +0200 |
|---|---|---|
| committer | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2025-04-23 10:46:38 +0200 |
| commit | af38d33c942d1fda43a6d2fbf7efe4116674da3e (patch) | |
| tree | 7a882a2c99db709a98a261298a014d67ea353a37 | |
| parent | f11903757ec9996809b73253ad06e2afd80f1e5b (diff) | |
| download | mullvadvpn-af38d33c942d1fda43a6d2fbf7efe4116674da3e.tar.xz mullvadvpn-af38d33c942d1fda43a6d2fbf7efe4116674da3e.zip | |
Remove `async_trait` from `Cargo.toml`
| -rw-r--r-- | Cargo.lock | 1 | ||||
| -rw-r--r-- | mullvad-update/Cargo.toml | 3 | ||||
| -rw-r--r-- | test/Cargo.lock | 1 |
3 files changed, 1 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock index 6d9abdc891..88765eddbe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3011,7 +3011,6 @@ version = "0.0.0" dependencies = [ "anyhow", "async-tempfile", - "async-trait", "chrono", "clap", "ed25519-dalek", diff --git a/mullvad-update/Cargo.toml b/mullvad-update/Cargo.toml index 4bd9a5c74b..69f8005e8f 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"] +client = ["reqwest", "sha2", "tokio", "thiserror"] [dependencies] anyhow = { workspace = true } @@ -25,7 +25,6 @@ serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } zeroize = { version = "1.8", features = ["zeroize_derive"] } -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 } diff --git a/test/Cargo.lock b/test/Cargo.lock index 7987d395a3..31777ef776 100644 --- a/test/Cargo.lock +++ b/test/Cargo.lock @@ -2195,7 +2195,6 @@ name = "mullvad-update" version = "0.0.0" dependencies = [ "anyhow", - "async-trait", "chrono", "ed25519-dalek", "hex", |
