Skip to content

Commit

Permalink
use actix-web from master
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Apr 6, 2018
1 parent 191b53b commit fdb7419
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ Actix web is a simple, pragmatic, extremely fast, web framework for Rust.

## Example

At the moment all examples uses actix-web master.

```toml
[dependencies]
actix = "0.5"
actix-web = { git="https://github.com/actix/actix-web.git" }
```

```rust
extern crate actix_web;
use actix_web::{server, App, Path};
Expand Down
2 changes: 1 addition & 1 deletion guide/src/qs_2.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ contains the following:
```toml
[dependencies]
actix = "0.5"
actix-web = "0.4"
actix-web = { git="https://github.com/actix/actix-web.git" }
```

In order to implement a web server, we first need to create a request handler.
Expand Down

0 comments on commit fdb7419

Please sign in to comment.