From 69885e214c531067d0d15f3b3605ca7ff3a611f2 Mon Sep 17 00:00:00 2001 From: Jake Goulding Date: Sat, 14 Dec 2019 13:16:20 -0500 Subject: [PATCH] Enable the `full` feature when compiled for the playground (#1960) Closes #1932 --- tokio/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index d4008966f..c21978b75 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -131,3 +131,6 @@ tempfile = "3.1.0" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] + +[package.metadata.playground] +features = ["full"]