mirror of
https://github.com/actix/examples
synced 2024-11-24 06:43:00 +01:00
18 lines
348 B
TOML
18 lines
348 B
TOML
[package]
|
|
name = "todo"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
actix-web = "4"
|
|
actix-files = "0.6"
|
|
actix-session = "0.5"
|
|
|
|
dotenv = "0.15"
|
|
env_logger = "0.9"
|
|
log = "0.4"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "sqlite", "offline"] }
|
|
tera = "1.5"
|