mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
upgrade actix-web
This commit is contained in:
parent
68509a7eaf
commit
cee9142257
@ -7,7 +7,7 @@ workspace = ".."
|
||||
|
||||
[dependencies]
|
||||
actix = "0.8.1"
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
actix-redis = { git="https://github.com/actix/actix-redis.git" }
|
||||
futures = "0.1.23"
|
||||
redis-async = "0.4.0"
|
||||
|
@ -6,9 +6,9 @@ workspace = ".."
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-files = "0.1.0-beta.1"
|
||||
actix-session = "0.1.0-beta.2"
|
||||
actix-web = "1.0.0-beta.5"
|
||||
actix-files = "0.1.0-beta.4"
|
||||
actix-session = "0.1.0-beta.4"
|
||||
dotenv = "0.13.0"
|
||||
env_logger = "0.5.10"
|
||||
futures = "0.1.22"
|
||||
|
@ -7,7 +7,7 @@ workspace = ".."
|
||||
|
||||
[dependencies]
|
||||
actix-rt = "0.2"
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
|
||||
dotenv = "0.10"
|
||||
env_logger = "0.5"
|
||||
|
@ -7,9 +7,9 @@ workspace = ".."
|
||||
|
||||
[dependencies]
|
||||
actix-rt = "0.2.2"
|
||||
actix-web = { version="1.0.0-beta.1", features=["ssl"] }
|
||||
actix-web = { version="1.0.0-beta.4", features=["ssl"] }
|
||||
actix-multipart = "0.1.0-beta.1"
|
||||
actix-service = "0.3.6"
|
||||
actix-service = "0.4.0"
|
||||
bytes = "0.4.12"
|
||||
env_logger = "0.6.1"
|
||||
futures = "0.1"
|
||||
|
@ -7,9 +7,9 @@ edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
actix-rt = "0.2"
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-files = "0.1.0-beta.1"
|
||||
actix-session = "0.1.0-beta.2"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
actix-files = "0.1.0-beta.4"
|
||||
actix-session = "0.1.0-beta.4"
|
||||
|
||||
futures = "0.1.25"
|
||||
env_logger = "0.5"
|
||||
|
@ -6,5 +6,5 @@ edition = "2018"
|
||||
workspace = ".."
|
||||
|
||||
[dependencies]
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
env_logger = "0.6"
|
||||
|
@ -6,8 +6,8 @@ workspace = ".."
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-session = "0.1.0-beta.2"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
actix-session = "0.1.0-beta.4"
|
||||
|
||||
futures = "0.1"
|
||||
time = "0.1"
|
||||
|
@ -6,7 +6,7 @@ workspace = ".."
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
|
||||
bytes = "0.4"
|
||||
env_logger = "0.6"
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
workspace = ".."
|
||||
|
||||
[dependencies]
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
|
||||
derive_more = "0.14.0"
|
||||
futures = "0.1.23"
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
workspace = ".."
|
||||
|
||||
[dependencies]
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
|
||||
serde = "1.0"
|
||||
serde_derive = "1.0"
|
||||
|
@ -6,5 +6,5 @@ workspace = ".."
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
env_logger = "0.6"
|
||||
|
@ -7,7 +7,7 @@ edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
actix-rt = "0.2"
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
|
||||
clap = "2.32.0"
|
||||
futures = "0.1.25"
|
||||
|
@ -87,6 +87,7 @@ fn main() -> std::io::Result<()> {
|
||||
|
||||
HttpServer::new(move || {
|
||||
App::new()
|
||||
.data(Client::new())
|
||||
.data(forward_url.clone())
|
||||
.wrap(middleware::Logger::default())
|
||||
.default_service(web::route().to_async(forward))
|
||||
|
@ -15,7 +15,7 @@ path = "src/server.rs"
|
||||
|
||||
[dependencies]
|
||||
actix-rt = "0.2"
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
|
||||
env_logger = "0.5"
|
||||
futures = "0.1"
|
||||
|
@ -6,7 +6,7 @@ workspace = ".."
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
|
||||
bytes = "0.4"
|
||||
futures = "0.1"
|
||||
|
@ -7,7 +7,7 @@ workspace = ".."
|
||||
|
||||
[dependencies]
|
||||
actix = "0.8.1"
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
env_logger = "0.6"
|
||||
futures = "0.1.23"
|
||||
futures-timer = "0.1"
|
||||
|
@ -6,7 +6,7 @@ workspace = ".."
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
env_logger = "0.6"
|
||||
futures = "0.1"
|
||||
serde = "1.0"
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
workspace = ".."
|
||||
|
||||
[dependencies]
|
||||
actix-service = "0.3.6"
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-service = "0.4.0"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
futures = "0.1.25"
|
||||
env_logger = "0.6"
|
@ -10,8 +10,8 @@ name = "multipart"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-multipart = "0.1.0-beta.1"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
actix-multipart = "0.1.0-beta.4"
|
||||
|
||||
env_logger = "0.6"
|
||||
futures = "0.1.25"
|
||||
|
@ -13,4 +13,4 @@ derive_more = "0.14"
|
||||
prost = "0.2.0"
|
||||
prost-derive = "0.2.0"
|
||||
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
|
@ -7,7 +7,7 @@ workspace = ".."
|
||||
|
||||
[dependencies]
|
||||
actix-rt = "0.2"
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
|
||||
futures = "0.1"
|
||||
env_logger = "0.6"
|
||||
|
@ -7,7 +7,7 @@ edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
actix = "0.8.1"
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-session = "0.1.0-beta.2"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
actix-session = "0.1.0-beta.4"
|
||||
actix-redis = { git = "https://github.com/actix/actix-redis.git", features = ["web"] }
|
||||
env_logger = "0.6"
|
||||
|
@ -12,5 +12,5 @@ path = "src/main.rs"
|
||||
[dependencies]
|
||||
env_logger = "0.5"
|
||||
rustls = "0.15"
|
||||
actix-web = { version = "1.0.0-alpha.4", features=["rust-tls"] }
|
||||
actix-files = "0.1.0-alpha.4"
|
||||
actix-web = { version = "1.0.0-beta.4", features=["rust-tls"] }
|
||||
actix-files = "0.1.0-beta.4"
|
||||
|
@ -8,8 +8,8 @@ workspace = ".."
|
||||
[dependencies]
|
||||
actix = { version = "0.8.1", features = ["http"] }
|
||||
actix-rt = "0.2.2"
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-files = "0.1.0-beta.1"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
actix-files = "0.1.0-beta.4"
|
||||
|
||||
bcrypt = "0.2.1"
|
||||
chrono = { version = "0.4.6", features = ["serde"] }
|
||||
|
@ -6,6 +6,6 @@ workspace = ".."
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
futures = "0.1.25"
|
||||
env_logger = "0.6"
|
||||
|
@ -9,5 +9,5 @@ edition = "2018"
|
||||
futures = "0.1"
|
||||
env_logger = "0.5"
|
||||
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-files = "0.1.0-beta.1"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
actix-files = "0.1.0-beta.4"
|
||||
|
@ -6,7 +6,7 @@ workspace = ".."
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
env_logger = "0.6"
|
||||
askama = "0.8"
|
||||
|
||||
|
@ -8,4 +8,4 @@ edition = "2018"
|
||||
[dependencies]
|
||||
env_logger = "0.6"
|
||||
tera = "0.11"
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
|
@ -12,12 +12,12 @@ env_logger = "0.6"
|
||||
|
||||
yarte = { version = "0.2", features=["with-actix-web"] }
|
||||
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
|
||||
[build-dependencies]
|
||||
yarte = { version = "0.2", features=["with-actix-web"] }
|
||||
|
||||
[dev-dependencies]
|
||||
bytes = "0.4"
|
||||
actix-http-test = "0.1.0"
|
||||
actix-http = "0.1.0"
|
||||
actix-http-test = "0.2.0"
|
||||
actix-http = "0.2.0"
|
||||
|
@ -11,6 +11,6 @@ path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
actix-rt = "0.2"
|
||||
actix-web = { version="1.0.0-alpha.4", features=["ssl"] }
|
||||
actix-web = { version="1.0.0-beta.4", features=["ssl"] }
|
||||
env_logger = "0.6"
|
||||
openssl = { version="0.10" }
|
||||
|
@ -6,7 +6,7 @@ workspace = "../../"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
serde = "1.0"
|
||||
serde_derive = "1.0"
|
||||
serde_json = "1.0"
|
||||
|
@ -11,9 +11,9 @@ path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
actix = "0.8.1"
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web-actors = "1.0.0-alpha.3"
|
||||
actix-files = "0.1.0-beta.1"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
actix-web-actors = "1.0.0-beta.4"
|
||||
actix-files = "0.1.0-beta.4"
|
||||
|
||||
rand = "0.6"
|
||||
bytes = "0.4"
|
||||
|
@ -15,9 +15,9 @@ path = "src/client.rs"
|
||||
|
||||
[dependencies]
|
||||
actix = "0.8.1"
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web-actors = "1.0.0-alpha.3"
|
||||
actix-files = "0.1.0-beta.1"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
actix-web-actors = "1.0.0-beta.4"
|
||||
actix-files = "0.1.0-beta.4"
|
||||
|
||||
rand = "0.6"
|
||||
bytes = "0.4"
|
||||
|
@ -15,9 +15,9 @@ path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
actix = "0.8.1"
|
||||
actix-web = "1.0.0-beta.3"
|
||||
actix-web-actors = "1.0.0-alpha.3"
|
||||
actix-files = "0.1.0-beta.1"
|
||||
actix-web = "1.0.0-beta.4"
|
||||
actix-web-actors = "1.0.0-beta.4"
|
||||
actix-files = "0.1.0-beta.4"
|
||||
env_logger = "0.6"
|
||||
futures = "0.1"
|
||||
bytes = "0.4"
|
Loading…
Reference in New Issue
Block a user