File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 43
43
44
44
Tide is a minimal and pragmatic Rust web application framework built for
45
45
rapid development. It comes with a robust set of features that make building
46
- database-backed web applications easier and more fun.
46
+ async web applications and APIs easier and more fun.
47
47
48
48
## Getting started
49
49
@@ -59,8 +59,8 @@ async-std = { version = "1.6.0", features = ["attributes"] }
59
59
60
60
## Examples
61
61
62
- Create an HTTP server that takes JSON, validates it, and responds with a
63
- confirmation message.
62
+ Create an HTTP server that receives a JSON body , validates it, and responds
63
+ with a confirmation message.
64
64
65
65
``` rust
66
66
use tide :: Request ;
Original file line number Diff line number Diff line change 1
1
//! Tide is a minimal and pragmatic Rust web application framework built for
2
2
//! rapid development. It comes with a robust set of features that make
3
- //! building database-backed web applications easier and more fun.
3
+ //! building async web applications and APIs easier and more fun.
4
4
//!
5
5
//! # Getting started
6
6
//!
16
16
//!
17
17
//! # Examples
18
18
//!
19
- //! Create an HTTP server that takes JSON, validates it, and responds with a
19
+ //! Create an HTTP server that receives a JSON body , validates it, and responds with a
20
20
//! confirmation message.
21
21
//!
22
22
//! ```no_run
You can’t perform that action at this time.
0 commit comments