1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-11-18 15:41:17 +00:00

Update most examples to use actix from git (#68)

This commit is contained in:
Christopher Armstrong 2018-02-08 00:08:36 -06:00 committed by GitHub
parent d0cbf7cd25
commit bd03ba1192
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 7 deletions

View file

@ -7,5 +7,5 @@ workspace = "../.."
[dependencies] [dependencies]
futures = "*" futures = "*"
env_logger = "0.5" env_logger = "0.5"
actix = "0.4" actix = { git = "https://github.com/actix/actix.git" }
actix-web = { path="../.." } actix-web = { path="../.." }

View file

@ -6,7 +6,7 @@ workspace = "../.."
[dependencies] [dependencies]
env_logger = "0.5" env_logger = "0.5"
actix = "0.4" actix = { git = "https://github.com/actix/actix.git/" }
actix-web = { path = "../../" } actix-web = { path = "../../" }
futures = "0.1" futures = "0.1"

View file

@ -6,5 +6,5 @@ workspace = "../.."
[dependencies] [dependencies]
env_logger = "0.5" env_logger = "0.5"
actix = "0.4" actix = { git = "https://github.com/actix/actix.git" }
actix-web = { path = "../../" } actix-web = { path = "../../" }

View file

@ -14,5 +14,5 @@ serde_json = "1.0"
serde_derive = "1.0" serde_derive = "1.0"
json = "*" json = "*"
actix = "0.4" actix = { git = "https://github.com/actix/actix.git" }
actix-web = { path="../../" } actix-web = { path="../../" }

View file

@ -11,5 +11,5 @@ path = "src/main.rs"
[dependencies] [dependencies]
env_logger = "*" env_logger = "*"
futures = "0.1" futures = "0.1"
actix = "0.4" actix = { git = "https://github.com/actix/actix.git" }
actix-web = { path="../../" } actix-web = { path="../../" }

View file

@ -10,6 +10,6 @@ path = "src/main.rs"
[dependencies] [dependencies]
env_logger = "0.5" env_logger = "0.5"
actix = "^0.4.2" actix = { git = "https://github.com/actix/actix.git" }
actix-web = { path = "../../", features=["alpn"] } actix-web = { path = "../../", features=["alpn"] }
openssl = { version="0.10" } openssl = { version="0.10" }

View file

@ -10,7 +10,7 @@ serde_derive = "1.0"
serde_json = "1.0" serde_json = "1.0"
http = "0.1" http = "0.1"
actix = "0.4.5" actix = { git = "https://github.com/actix/actix.git" }
actix-web = { path = "../../../" } actix-web = { path = "../../../" }
dotenv = "0.10" dotenv = "0.10"
env_logger = "0.5" env_logger = "0.5"