From df65c0e6ae08f11aa29db6b5cc8d0579731bf098 Mon Sep 17 00:00:00 2001 From: whitequark Date: Mon, 18 Dec 2017 15:10:50 +0000 Subject: [PATCH] Unbreak `cargo test --no-default-features --features default`. I'm not sure why is this needed, but it broke CI. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 8ca10a2..8bb7309 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,6 +41,7 @@ verbose = [] "socket-tcp" = [] "socket-icmp" = [] default = [ + "std", "log", # needed for `cargo test --no-default-features --features default` :/ "phy-raw_socket", "phy-tap_interface", "socket-raw", "socket-icmp", "socket-udp", "socket-tcp" ]