Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,25 @@
//!
//! See [here](https://github.com/async-rs/async-std/tree/master/examples)
//! for more examples.
//!
//! # Features
//!
//! `async-std` is strongly commited to following semver. This means your code
//! won't break unless _you_ decide to upgrade.
//!
//! However every now and then we come up with something that we think will
//! work _great_ for `async-std`, and we want to provide a sneak-peek so you
//! can try it out. This is what we call _"unstable"_ features. You can try out
//! the unstable features by enabling the `unstable` feature in you `Cargo.toml`
//! file:
//!
//! ```toml
//! [dependencies]
//! async-std = { version = "0.99.5", features = ["unstable"] }
//! ```
//!
//! Just be careful when running these features, as they may change between
//! versions.

#![cfg_attr(feature = "docs", feature(doc_cfg))]
#![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)]
Expand Down