From 51a7082d135f52f5fe87ddd9ccc09d4d2a401dd4 Mon Sep 17 00:00:00 2001 From: cssivision Date: Sat, 9 Jan 2021 21:01:10 +0800 Subject: [PATCH] docs: test-util feature is not enabled with full (#3397) --- tokio/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/lib.rs b/tokio/src/lib.rs index 2efcaf759..1dbace5cf 100644 --- a/tokio/src/lib.rs +++ b/tokio/src/lib.rs @@ -301,7 +301,7 @@ //! Beware though that this will pull in many extra dependencies that you may not //! need. //! -//! - `full`: Enables all Tokio public API features listed below. +//! - `full`: Enables all Tokio public API features listed below except `test-util`. //! - `rt`: Enables `tokio::spawn`, the basic (current thread) scheduler, //! and non-scheduler utilities. //! - `rt-multi-thread`: Enables the heavier, multi-threaded, work-stealing scheduler.