add stateful example

This commit is contained in:
Nikolay Kim 2017-10-23 11:48:06 -07:00
parent ba504cc69e
commit 203d0dd80f
2 changed files with 88 additions and 1 deletions

View file

@ -26,12 +26,13 @@ To use `actix-web`, add this to your `Cargo.toml`:
```toml
[dependencies]
actix-web = { git = "https://github.com/actix/actix-web.git" }
actix-web = "0.1"
```
## Example
* [Basic](https://github.com/actix/actix-web/tree/master/examples/basic.rs)
* [Stateful](https://github.com/actix/actix-web/tree/master/examples/state.rs)
* [Mulitpart streams](https://github.com/actix/actix-web/tree/master/examples/multipart)
* [Simple websocket session](https://github.com/actix/actix-web/tree/master/examples/websocket.rs)
* [Tcp/Websocket chat](https://github.com/actix/actix-web/tree/master/examples/websocket-chat)