From 23b1b9cadaf3ebdeefb92b4cc6162ff17cf36514 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sarek=20H=C3=B8verstad=20Skot=C3=A5m?= <44001885+sarsko@users.noreply.github.com> Date: Tue, 3 Sep 2024 11:37:42 -0700 Subject: [PATCH] Tokio-util: Enable the full feature when compiled for the playground --- tokio-util/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml index 23a577a37fe..19a33c9e083 100644 --- a/tokio-util/Cargo.toml +++ b/tokio-util/Cargo.toml @@ -65,3 +65,6 @@ rustdoc-args = ["--cfg", "docsrs", "--cfg", "tokio_unstable"] # it's necessary to _also_ pass `--cfg tokio_unstable` to rustc, or else # dependencies will not be enabled, and the docs build will fail. rustc-args = ["--cfg", "docsrs", "--cfg", "tokio_unstable"] + +[package.metadata.playground] +features = ["full"]