1
0
mirror of https://github.com/actix/examples synced 2025-01-23 06:14:35 +01:00
examples/todo/Cargo.toml

23 lines
450 B
TOML
Raw Normal View History

2018-08-27 10:56:26 +01:00
[package]
authors = ["Dan Munckton <dangit@munckfish.net>"]
name = "actix-todo"
2019-12-07 23:59:24 +06:00
version = "2.0.0"
2019-03-10 18:23:44 -07:00
edition = "2018"
2018-08-27 10:56:26 +01:00
[dependencies]
2019-12-25 20:48:33 +04:00
actix-web = "2.0.0"
actix-files = "0.2.1"
2019-12-20 22:30:26 +06:00
actix-session = "0.3.0"
2019-12-15 23:07:17 +06:00
actix-rt = "1.0.0"
2018-08-27 10:56:26 +01:00
dotenv = "0.13.0"
env_logger = "0.5.10"
2019-12-07 23:59:24 +06:00
futures = "0.3.1"
2018-08-27 10:56:26 +01:00
log = "0.4.3"
serde = { version = "1.0.69", features = ["derive"] }
2018-08-27 10:56:26 +01:00
serde_json = "1.0.22"
2019-12-19 03:25:56 +09:00
tera = "1.0"
2018-08-27 10:56:26 +01:00
[dependencies.diesel]
features = ["postgres", "r2d2"]
version = "1.3.2"