From 6dde6dadab69a4cad9f1fbb1e522c7f0d31021d3 Mon Sep 17 00:00:00 2001 From: Yosh Date: Sun, 7 Apr 2024 00:14:54 +0200 Subject: [PATCH] multiline lib.rs docs --- src/lib.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 3a5b74b..98b9eaa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,6 @@ -//! Performant, portable, structured concurrency operations for async Rust. It works with any runtime, does not erase lifetimes, always handles cancellation, and always returns output to the caller. +//! Performant, portable, structured concurrency operations for async Rust. It +//! works with any runtime, does not erase lifetimes, always handles +//! cancellation, and always returns output to the caller. //! //! `futures-concurrency` provides concurrency operations for both groups of futures //! and streams. Both for bounded and unbounded sets of futures and streams. In both @@ -116,7 +118,11 @@ //! //! ## Runtime Support //! -//! `futures-concurrency` does not depend on any runtime executor being present. This enables it to work out of the box with any async runtime, including: `tokio`, `async-std`, `smol`, `glommio`, and `monoio`. It also supports `#[no_std]` environments, allowing it to be used with embedded async runtimes such as `embassy`. +//! `futures-concurrency` does not depend on any runtime executor being present. +//! This enables it to work out of the box with any async runtime, including: +//! `tokio`, `async-std`, `smol`, `glommio`, and `monoio`. It also supports +//! `#[no_std]` environments, allowing it to be used with embedded async +//! runtimes such as `embassy`. //! //! ## Feature Flags //!