mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
19 lines
461 B
TOML
19 lines
461 B
TOML
[package]
|
|
name = "todo"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
actix-files = { workspace = true }
|
|
actix-session = { workspace = true, features = ["cookie-session"] }
|
|
actix-web = { workspace = true }
|
|
actix-web-lab = { workspace = true }
|
|
|
|
dotenv = "0.15"
|
|
env_logger = "0.10"
|
|
log = "0.4"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "sqlite", "offline"] }
|
|
tera = "1.5"
|