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:
parent
d0cbf7cd25
commit
bd03ba1192
7 changed files with 7 additions and 7 deletions
|
@ -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="../.." }
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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 = "../../" }
|
||||||
|
|
|
@ -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="../../" }
|
||||||
|
|
|
@ -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="../../" }
|
||||||
|
|
|
@ -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" }
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue