File tree 2 files changed +18
-0
lines changed
2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 44
44
A modular web framework built around async/await. It's actively being developed
45
45
and ** not ready for production yet** .
46
46
47
+ ## Getting started
48
+
49
+ Add two dependencies to your project's ` Cargo.toml ` file: ` tide ` itself, and ` async-std ` with the feature ` attributes ` enabled:
50
+ ``` toml
51
+ # Example, use the version numbers you need
52
+ tide = " 0.7.0"
53
+ async-std = { version = " 1.5.0" , features = [" attributes" ] }
54
+ ```
55
+
47
56
## Examples
48
57
49
58
** Hello World**
Original file line number Diff line number Diff line change 12
12
//! - __Minimal:__ With only a few concepts to learn, Tide is easy to pick up and become productive
13
13
//! with.
14
14
//!
15
+ //! # Getting started
16
+ //!
17
+ //! Add two dependencies to your project's `Cargo.toml` file: `tide` itself, and `async-std` with the feature `attributes` enabled:
18
+ //! ```toml
19
+ //!# Example, use the version numbers you need
20
+ //!tide = "0.7.0"
21
+ //!async-std = { version = "1.5.0", features = ["attributes"] }
22
+ //!```
23
+ //!
15
24
//! # Examples
16
25
//!
17
26
//! __hello world__
You can’t perform that action at this time.
0 commit comments