mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
22 lines
371 B
TOML
22 lines
371 B
TOML
[package]
|
|
name = "actix-todo"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
actix-web = "3"
|
|
actix-files = "0.3"
|
|
actix-session = "0.4"
|
|
|
|
dotenv = "0.15"
|
|
env_logger = "0.8"
|
|
futures = "0.3.1"
|
|
log = "0.4.3"
|
|
serde = { version = "1.0.69", features = ["derive"] }
|
|
serde_json = "1.0.22"
|
|
tera = "1.5.0"
|
|
|
|
[dependencies.diesel]
|
|
features = ["postgres", "r2d2"]
|
|
version = "1.3.2"
|