2018-08-27 11:56:26 +02:00
|
|
|
[package]
|
2022-02-02 03:19:01 +01:00
|
|
|
name = "todo"
|
2022-02-02 02:45:20 +01:00
|
|
|
version = "1.0.0"
|
2022-02-02 02:43:51 +01:00
|
|
|
edition = "2021"
|
2018-08-27 11:56:26 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2022-12-21 15:49:28 +01:00
|
|
|
actix-files = { workspace = true }
|
|
|
|
actix-session = { workspace = true, features = ["cookie-session"] }
|
|
|
|
actix-web = { workspace = true }
|
|
|
|
actix-web-lab = { workspace = true }
|
2020-09-12 17:49:45 +02:00
|
|
|
|
2020-04-07 18:18:52 +02:00
|
|
|
dotenv = "0.15"
|
2022-12-11 16:25:57 +01:00
|
|
|
env_logger = "0.10"
|
2022-02-02 03:19:01 +01:00
|
|
|
log = "0.4"
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = "1"
|
2022-07-10 00:39:21 +02:00
|
|
|
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "sqlite", "offline"] }
|
2022-02-02 03:19:01 +01:00
|
|
|
tera = "1.5"
|