Skip to content

Commit 6dde6da

Browse files
committed
multiline lib.rs docs
1 parent e80e444 commit 6dde6da

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/lib.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
//! 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.
1+
//! Performant, portable, structured concurrency operations for async Rust. It
2+
//! works with any runtime, does not erase lifetimes, always handles
3+
//! cancellation, and always returns output to the caller.
24
//!
35
//! `futures-concurrency` provides concurrency operations for both groups of futures
46
//! and streams. Both for bounded and unbounded sets of futures and streams. In both
@@ -116,7 +118,11 @@
116118
//!
117119
//! ## Runtime Support
118120
//!
119-
//! `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`.
121+
//! `futures-concurrency` does not depend on any runtime executor being present.
122+
//! This enables it to work out of the box with any async runtime, including:
123+
//! `tokio`, `async-std`, `smol`, `glommio`, and `monoio`. It also supports
124+
//! `#[no_std]` environments, allowing it to be used with embedded async
125+
//! runtimes such as `embassy`.
120126
//!
121127
//! ## Feature Flags
122128
//!

0 commit comments

Comments
 (0)