File tree 1 file changed +19
-0
lines changed
1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 25
25
//!
26
26
//! See [here](https://github.com/async-rs/async-std/tree/master/examples)
27
27
//! for more examples.
28
+ //!
29
+ //! # Features
30
+ //!
31
+ //! `async-std` is strongly commited to following semver. This means your code
32
+ //! won't break unless _you_ decide to upgrade.
33
+ //!
34
+ //! However every now and then we come up with something that we think will
35
+ //! work _great_ for `async-std`, and we want to provide a sneak-peek so you
36
+ //! can try it out. This is what we call _"unstable"_ features. You can try out
37
+ //! the unstable features by enabling the `unstable` feature in you `Cargo.toml`
38
+ //! file:
39
+ //!
40
+ //! ```toml
41
+ //! [dependencies]
42
+ //! async-std = { version = "0.99.5", features = ["unstable"] }
43
+ //! ```
44
+ //!
45
+ //! Just be careful when running these features, as they may change between
46
+ //! versions.
28
47
29
48
#![ cfg_attr( feature = "docs" , feature( doc_cfg) ) ]
30
49
#![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
You can’t perform that action at this time.
0 commit comments