diff --git a/README.md b/README.md index 892648a6e..b86ef1de9 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ To use `actix-web`, add this to your `Cargo.toml`: ```toml [dependencies] -actix-web = "0.2" +actix-web = { git = "https://github.com/actix/actix-web" } ``` ## HTTP/2 diff --git a/examples/multipart/Cargo.toml b/examples/multipart/Cargo.toml index 420532ed5..5cb2031df 100644 --- a/examples/multipart/Cargo.toml +++ b/examples/multipart/Cargo.toml @@ -10,4 +10,4 @@ path = "src/main.rs" [dependencies] env_logger = "*" actix = "^0.3.1" -actix-web = { path = "../../" } +actix-web = { git = "https://github.com/actix/actix-web.git" } diff --git a/examples/tls/Cargo.toml b/examples/tls/Cargo.toml index df91f54cc..fbb22fb77 100644 --- a/examples/tls/Cargo.toml +++ b/examples/tls/Cargo.toml @@ -9,6 +9,5 @@ path = "src/main.rs" [dependencies] env_logger = "0.4" - actix = "^0.3.1" -actix-web = { path = "../../", features=["alpn"] } +actix-web = { git = "https://github.com/actix/actix-web.git", features=["alpn"] } diff --git a/examples/websocket-chat/Cargo.toml b/examples/websocket-chat/Cargo.toml index 43521ac93..2a5c92925 100644 --- a/examples/websocket-chat/Cargo.toml +++ b/examples/websocket-chat/Cargo.toml @@ -25,5 +25,4 @@ serde_json = "1.0" serde_derive = "1.0" actix = "^0.3.1" -#actix = { git = "https://github.com/actix/actix.git" } -actix-web = { path = "../../" } +actix-web = { git = "https://github.com/actix/actix-web.git" }