diff options
| author | Markus Pettersson <markus.pettersson@mullvad.net> | 2024-02-13 13:25:01 +0100 |
|---|---|---|
| committer | Markus Pettersson <markus.pettersson@mullvad.net> | 2024-02-15 16:28:36 +0100 |
| commit | dc9929ba4af952e2d88b11dc9f36c880f1f339f5 (patch) | |
| tree | efd200426f0f061265d32ea8e9703e3cacb30b14 /mullvad-relay-selector | |
| parent | a000aa96ca4f4a029030b398f364c56f9d32f8b9 (diff) | |
| download | mullvadvpn-dc9929ba4af952e2d88b11dc9f36c880f1f339f5.tar.xz mullvadvpn-dc9929ba4af952e2d88b11dc9f36c880f1f339f5.zip | |
Swap out `talpid-core` for `talpid-future`
Diffstat (limited to 'mullvad-relay-selector')
| -rw-r--r-- | mullvad-relay-selector/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-relay-selector/src/updater.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mullvad-relay-selector/Cargo.toml b/mullvad-relay-selector/Cargo.toml index 6ca82364fe..078415f31a 100644 --- a/mullvad-relay-selector/Cargo.toml +++ b/mullvad-relay-selector/Cargo.toml @@ -21,7 +21,7 @@ rand = "0.8.5" serde_json = "1.0" tokio = { workspace = true, features = ["fs", "io-util", "time"] } -talpid-core = { path = "../talpid-core" } +talpid-future = { path = "../talpid-future" } talpid-types = { path = "../talpid-types" } mullvad-api = { path = "../mullvad-api" } mullvad-types = { path = "../mullvad-types" } diff --git a/mullvad-relay-selector/src/updater.rs b/mullvad-relay-selector/src/updater.rs index e9d65d1dd8..9e86cbb413 100644 --- a/mullvad-relay-selector/src/updater.rs +++ b/mullvad-relay-selector/src/updater.rs @@ -12,7 +12,7 @@ use std::{ sync::Arc, time::{Duration, SystemTime, UNIX_EPOCH}, }; -use talpid_core::future_retry::{retry_future, ExponentialBackoff, Jittered}; +use talpid_future::retry::{retry_future, ExponentialBackoff, Jittered}; use talpid_types::ErrorExt; use tokio::fs::File; |
