mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
part2: Update dependencies
This commit is contained in:
parent
b8620702fa
commit
4e051e8cd5
@ -11,17 +11,15 @@ actix-web = "2.0.0"
|
||||
actix-rt = "1.0.0"
|
||||
futures = "0.3.1"
|
||||
|
||||
juniper = "0.13"
|
||||
juniper = "0.14"
|
||||
|
||||
mysql = "16.1.0"
|
||||
mysql = "17"
|
||||
r2d2 = "0.8"
|
||||
r2d2_mysql = "16.0"
|
||||
r2d2_mysql = "17.0"
|
||||
|
||||
dotenv = "0.15"
|
||||
env_logger = "0.7"
|
||||
log = "0.4"
|
||||
env_logger = "0.6.2"
|
||||
dotenv = "0.9"
|
||||
serde = "1.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
serde_derive = "1.0"
|
||||
|
||||
uuid = {"version" = "0.7", "features" = ["serde", "v4"]}
|
||||
uuid = { version = "0.8", features = ["serde", "v4"] }
|
||||
|
@ -7,4 +7,4 @@ edition = "2018"
|
||||
[dependencies]
|
||||
actix-web = "2.0.0"
|
||||
actix-rt = "1.0.0"
|
||||
env_logger = "0.6"
|
||||
env_logger = "0.7"
|
||||
|
@ -10,4 +10,4 @@ actix-web = { version = "2.0.0", features=["openssl"] }
|
||||
clap = "2.32.0"
|
||||
futures = "0.3.1"
|
||||
failure = "0.1.3"
|
||||
url = "1.7.1"
|
||||
url = "2.0"
|
||||
|
@ -12,8 +12,8 @@ actix-service = "1.0.0"
|
||||
|
||||
bytes = "0.5.2"
|
||||
futures = "0.3.1"
|
||||
env_logger = "*"
|
||||
env_logger = "0.7"
|
||||
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
json = "*"
|
||||
json = "0.12"
|
||||
|
@ -9,7 +9,7 @@ workspace = ".."
|
||||
actix-web = "2.0.0"
|
||||
actix-rt = "1.0.0"
|
||||
bytes = "0.5"
|
||||
env_logger = "0.6"
|
||||
env_logger = "0.7"
|
||||
futures = "0.3.1"
|
||||
log = "0.4"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "middleware-example"
|
||||
version = "1.0.0"
|
||||
version = "2.0.0"
|
||||
authors = ["Gorm Casper <gcasper@gmail.com>", "Sven-Hendrik Haase <svenstaro@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
@ -8,7 +8,7 @@ edition = "2018"
|
||||
actix-service = "1.0.0"
|
||||
actix-rt = "1.0.0"
|
||||
actix-web = "2.0.0"
|
||||
futures = "0.3.1"
|
||||
env_logger = "0.6"
|
||||
bytes = "0.5"
|
||||
pin-project = "0.4.6"
|
||||
env_logger = "0.7"
|
||||
futures = "0.3.1"
|
||||
pin-project = "0.4.6"
|
||||
|
@ -10,7 +10,7 @@ repository = "https://github.com/actix/examples"
|
||||
readme = "README.md"
|
||||
|
||||
[dependencies]
|
||||
futures = "0.3.1"
|
||||
actix-multipart = "0.2.0"
|
||||
actix-web = "2.0.0"
|
||||
actix-rt = "1.0.0"
|
||||
actix-web = "2.0.0"
|
||||
futures = "0.3.1"
|
||||
|
@ -7,6 +7,6 @@ workspace = ".."
|
||||
|
||||
[dependencies]
|
||||
actix-rt = "1.0.0"
|
||||
actix-web = { version="2.0.0", features=["openssl"] }
|
||||
env_logger = "0.6"
|
||||
actix-web = { version = "2.0.0", features = ["openssl"] }
|
||||
env_logger = "0.7"
|
||||
openssl = "0.10"
|
||||
|
@ -9,7 +9,7 @@ actix-rt = "1.0.0"
|
||||
actix-web = "2.0.0"
|
||||
actix-session = "0.3.0"
|
||||
actix-redis = { version = "0.8.0", features = ["web"] }
|
||||
env_logger = "0.6"
|
||||
env_logger = "0.7"
|
||||
serde = { version = "^1.0", features = ["derive"] }
|
||||
actix-service = "1.0.0"
|
||||
actix-http = "1.0.0"
|
||||
|
@ -12,4 +12,4 @@ actix-redis = "0.8.0"
|
||||
futures = "0.3.1"
|
||||
redis-async = "0.6.1"
|
||||
serde = { version = "1.0.71", features = ["derive"] }
|
||||
env_logger = "0.6"
|
||||
env_logger = "0.7"
|
||||
|
@ -8,4 +8,4 @@ description = "Run actix-web in separate thread"
|
||||
[dependencies]
|
||||
actix-web = "2.0.0"
|
||||
actix-rt = "1.0.0"
|
||||
env_logger = "0.6"
|
||||
env_logger = "0.7"
|
||||
|
@ -10,8 +10,8 @@ name = "rustls-server"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
env_logger = "0.5"
|
||||
env_logger = "0.7"
|
||||
rustls = "0.16"
|
||||
actix-web = { version = "2.0.0", features=["rustls"] }
|
||||
actix-web = { version = "2.0.0", features = ["rustls"] }
|
||||
actix-files = "0.2.1"
|
||||
actix-rt = "1.0.0"
|
||||
|
@ -8,6 +8,6 @@ edition = "2018"
|
||||
[dependencies]
|
||||
actix-rt = "1.0.0"
|
||||
actix-web = "2.0.0"
|
||||
env_logger = "0.6"
|
||||
env_logger = "0.7"
|
||||
futures = "0.3.1"
|
||||
tokio = "0.2"
|
||||
tokio = "0.2"
|
||||
|
Loading…
Reference in New Issue
Block a user