From 2a614fba0d6af9660912cffa5615b464bad224a7 Mon Sep 17 00:00:00 2001 From: omjadas Date: Tue, 23 Nov 2021 22:11:42 +1100 Subject: [PATCH] docs: document that parking_lot is enabled by full (#4269) --- 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 22f1ece3d..35295d837 100644 --- a/tokio/src/lib.rs +++ b/tokio/src/lib.rs @@ -307,7 +307,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 except `test-util`. +//! - `full`: Enables all features listed below except `test-util` and `tracing`. //! - `rt`: Enables `tokio::spawn`, the basic (current thread) scheduler, //! and non-scheduler utilities. //! - `rt-multi-thread`: Enables the heavier, multi-threaded, work-stealing scheduler.