Document the core feature

Follow-up to https://github.com/async-rs/async-std/pull/680
pull/697/head
Yoshua Wuyts 5 years ago
parent 125fa5b0a0
commit d026c44ea3

@ -220,6 +220,16 @@
//! default-features = false
//! features = ["std"]
//! ```
//!
//! And to use async-std on `no_std` targets that only support `alloc` only
//! enable the `core` Cargo feature:
//!
//! ```toml
//! [dependencies.async-std]
//! version = "1.0.0"
//! default-features = false
//! features = ["core"]
//! ```
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(feature = "docs", feature(doc_cfg))]

Loading…
Cancel
Save