File tree 2 files changed +18
-19
lines changed
2 files changed +18
-19
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,24 @@ fn main() {
81
81
}
82
82
```
83
83
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
+
84
102
## Take a look around
85
103
86
104
Clone the repo:
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.
47
28
48
29
#![ cfg_attr( feature = "docs" , feature( doc_cfg) ) ]
49
30
#![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
You can’t perform that action at this time.
0 commit comments