1
0
mirror of https://github.com/actix/examples synced 2025-06-27 01:27:43 +02:00

Updated basics/to-do to v4 using sqlx.

This commit is contained in:
Chris Gubbin
2022-02-05 17:34:43 +00:00
parent ae9a9a0382
commit 2aa8b15ce2
11 changed files with 110 additions and 132 deletions

View File

@ -4,11 +4,10 @@ version = "1.0.0"
edition = "2021"
[dependencies]
actix-web = "4.0.0-rc.1"
actix-files = "0.6.0-beta.15"
actix-web = "4.0.0-rc.2"
actix-files = "0.6.0-beta.16"
actix-session = "0.5.0-beta.7"
diesel = { version = "1.3.2", features = ["postgres", "r2d2"] }
dotenv = "0.15"
env_logger = "0.9"
futures = "0.3.7"
@ -16,3 +15,10 @@ log = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tera = "1.5"
[dependencies.sqlx]
features = [
"runtime-actix-rustls",
"postgres"
]
version = "0.5.10"