From a3193f922a9dfbfb824545651ab6b481728e6253 Mon Sep 17 00:00:00 2001 From: Stjepan Glavina Date: Mon, 20 Jul 2020 11:39:04 +0200 Subject: [PATCH] Expand docs a bit --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 11f6511..fd07cbe 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,10 +10,12 @@ //! * For higher-level networking primitives, use [`async-net`]. //! * For executors, use [`multitask`]. //! * To call blocking code from async code or the other way around, use [`blocking`]. +//! * For async traits and combinators, use [`futures-lite`]. //! //! [`async-io`]: https://docs.rs/async-io //! [`async-net`]: https://docs.rs/async-net //! [`blocking`]: https://docs.rs/blocking +//! [`futures-lite`]: https://docs.rs/futures-lite //! [`multitask`]: https://docs.rs/multitask //! [`tokio`]: https://docs.rs/tokio //!