diff options
| author | David Lönnhager <david.l@mullvad.net> | 2022-02-16 15:50:17 +0100 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2022-02-18 09:44:50 +0100 |
| commit | da46978de470a3c6a1333817bc70d82d98e2b9d1 (patch) | |
| tree | 155daf608b1b1279e4055b23217cc20f8deee892 | |
| parent | c189ab57f328de3ac70ffe030587dc9fca2e9e2c (diff) | |
| download | mullvadvpn-da46978de470a3c6a1333817bc70d82d98e2b9d1.tar.xz mullvadvpn-da46978de470a3c6a1333817bc70d82d98e2b9d1.zip | |
Add missing tokio feature to mullvad-daemon
| -rw-r--r-- | mullvad-daemon/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mullvad-daemon/Cargo.toml b/mullvad-daemon/Cargo.toml index e382c056c0..2d868e9076 100644 --- a/mullvad-daemon/Cargo.toml +++ b/mullvad-daemon/Cargo.toml @@ -25,7 +25,7 @@ rand = "0.7" regex = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -tokio = { version = "1.8", features = ["fs", "rt-multi-thread", "sync", "time"] } +tokio = { version = "1.8", features = ["fs", "io-util", "rt-multi-thread", "sync", "time"] } tokio-stream = "0.1" uuid = { version = "0.8", features = ["v4"] } |
