From b39014e319e3fb2d279c27f971f97757a2b381cb Mon Sep 17 00:00:00 2001 From: Markus Pettersson Date: Wed, 24 Jul 2024 13:17:16 +0200 Subject: [PATCH] Add missing feature in `talpid-wireguard` Fix `cargo test -p talpid-wireguard` by adding missing `test-util` feature for `tokio`. --- talpid-wireguard/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/talpid-wireguard/Cargo.toml b/talpid-wireguard/Cargo.toml index 1b103f9d1d54..0366e99d7095 100644 --- a/talpid-wireguard/Cargo.toml +++ b/talpid-wireguard/Cargo.toml @@ -86,3 +86,4 @@ features = [ [dev-dependencies] proptest = { workspace = true } +tokio = { workspace = true, features = [ "test-util" ] }