mirror of
https://github.com/actix/actix-web.git
synced 2024-11-26 11:31:09 +00:00
use git master for examples
This commit is contained in:
parent
88eb6bc6a2
commit
ac3fe30d19
4 changed files with 4 additions and 6 deletions
|
@ -29,7 +29,7 @@ To use `actix-web`, add this to your `Cargo.toml`:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-web = "0.2"
|
actix-web = { git = "https://github.com/actix/actix-web" }
|
||||||
```
|
```
|
||||||
|
|
||||||
## HTTP/2
|
## HTTP/2
|
||||||
|
|
|
@ -10,4 +10,4 @@ path = "src/main.rs"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
env_logger = "*"
|
env_logger = "*"
|
||||||
actix = "^0.3.1"
|
actix = "^0.3.1"
|
||||||
actix-web = { path = "../../" }
|
actix-web = { git = "https://github.com/actix/actix-web.git" }
|
||||||
|
|
|
@ -9,6 +9,5 @@ path = "src/main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
env_logger = "0.4"
|
env_logger = "0.4"
|
||||||
|
|
||||||
actix = "^0.3.1"
|
actix = "^0.3.1"
|
||||||
actix-web = { path = "../../", features=["alpn"] }
|
actix-web = { git = "https://github.com/actix/actix-web.git", features=["alpn"] }
|
||||||
|
|
|
@ -25,5 +25,4 @@ serde_json = "1.0"
|
||||||
serde_derive = "1.0"
|
serde_derive = "1.0"
|
||||||
|
|
||||||
actix = "^0.3.1"
|
actix = "^0.3.1"
|
||||||
#actix = { git = "https://github.com/actix/actix.git" }
|
actix-web = { git = "https://github.com/actix/actix-web.git" }
|
||||||
actix-web = { path = "../../" }
|
|
||||||
|
|
Loading…
Reference in a new issue