update to use actix-web 4.0.0 rc.3

This commit is contained in:
2022-02-11 16:41:34 +01:00
parent ba11157687
commit 3d83a6761a
2 changed files with 292 additions and 306 deletions

590
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -6,11 +6,11 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
actix-web = {git = "https://github.com/actix/actix-web.git", tag="web-v4.0.0-beta.11"} actix-web = "4.0.0-rc.3"
uuid = { version = "0.8.2", features = ["v4"] } uuid = { version = "0.8", features = ["v4"] }
url = "2.2" url = "2.2"
reqwest = { version = "0.11", features = ["blocking"] } reqwest = { version = "0.11", features = ["blocking"] }
tera = "1.12.1" tera = "1.15"
dotenv = "0.15" dotenv = "0.15"
sqlx = { version = "0.5.9", features = [ "sqlite", "runtime-actix-rustls" ] } sqlx = { version = "0.5", features = [ "sqlite", "runtime-actix-rustls" ] }