2018-08-27 11:56:26 +02:00
|
|
|
[package]
|
|
|
|
name = "actix-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]
|
2020-09-12 17:49:45 +02:00
|
|
|
actix-web = "3"
|
|
|
|
actix-files = "0.3"
|
|
|
|
actix-session = "0.4"
|
|
|
|
|
2020-04-07 18:18:52 +02:00
|
|
|
dotenv = "0.15"
|
2020-12-14 12:30:06 +01:00
|
|
|
env_logger = "0.8"
|
2019-12-07 18:59:24 +01:00
|
|
|
futures = "0.3.1"
|
2018-08-27 11:56:26 +02:00
|
|
|
log = "0.4.3"
|
2020-01-12 14:04:02 +01:00
|
|
|
serde = { version = "1.0.69", features = ["derive"] }
|
2018-08-27 11:56:26 +02:00
|
|
|
serde_json = "1.0.22"
|
2020-09-14 18:02:57 +02:00
|
|
|
tera = "1.5.0"
|
2018-08-27 11:56:26 +02:00
|
|
|
|
|
|
|
[dependencies.diesel]
|
|
|
|
features = ["postgres", "r2d2"]
|
|
|
|
version = "1.3.2"
|