From b51e3080e436015150db1969a6842343f5a13909 Mon Sep 17 00:00:00 2001 From: Peter Hall Date: Fri, 27 Mar 2020 10:38:48 +0000 Subject: [PATCH] Enable all mio features in Rust Playground --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 924b28c9e..89a88859e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,6 +51,11 @@ net2 = "0.2.33" all-features = true rustdoc-args = ["--cfg", "docsrs"] +[package.metadata.playground] +default-features = true +features = ["os-poll", "os-util", "tcp", "udp", "uds"] +all-features = false + [[example]] name = "tcp_server" required-features = ["os-poll", "tcp"]