File tree Expand file tree Collapse file tree 2 files changed +18
-19
lines changed Expand file tree Collapse file tree 2 files changed +18
-19
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,24 @@ fn main() {
8181}
8282```
8383
84+ ## Features
85+
86+ ` async-std ` is strongly commited to following semver. This means your code won't
87+ break unless _ you_ decide to upgrade.
88+
89+ However every now and then we come up with something that we think will work
90+ _ great_ for ` async-std ` , and we want to provide a sneak-peek so you can try it
91+ out. This is what we call _ "unstable"_ features. You can try out the unstable
92+ features by enabling the ` unstable ` feature in you ` Cargo.toml ` file:
93+
94+ ``` toml
95+ [dependencies ]
96+ async-std = { version = " 0.99.5" , features = [" unstable" ] }
97+ ```
98+
99+ Just be careful when running these features, as they may change between
100+ versions.
101+
84102## Take a look around
85103
86104Clone the repo:
Original file line number Diff line number Diff line change 2525//!
2626//! See [here](https://github.com/async-rs/async-std/tree/master/examples)
2727//! 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.
4728
4829#![ cfg_attr( feature = "docs" , feature( doc_cfg) ) ]
4930#![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
You can’t perform that action at this time.
0 commit comments