From 17ceebb5dcac3a064f0ec7fadac30cc28566adea Mon Sep 17 00:00:00 2001 From: Naja Melan Date: Tue, 10 Mar 2020 19:34:45 +0100 Subject: [PATCH] Add required feature for example async-std-echo. Allows `cargo +nightly test` without any features. --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 36aaa68..0d11660 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,6 +79,10 @@ async-std = { version = "1.0", features = ["attributes", "unstable"] } name = "autobahn-client" required-features = ["async-std-runtime"] +[[example]] +name = "async-std-echo" +required-features = ["async-std-runtime"] + [[example]] name = "client" required-features = ["async-std-runtime"]