filite/Cargo.toml

32 lines
650 B
TOML
Raw Normal View History

2019-10-07 21:43:34 +00:00
[package]
name = "filite"
version = "0.1.0"
authors = ["Raphaël Thériault <raphael_theriault@outlook.com>"]
edition = "2018"
[dependencies]
2019-10-09 02:49:38 +00:00
actix-files = "0.1.5"
2019-10-17 19:14:38 +00:00
actix-identity = "0.1.0"
2019-10-07 21:43:34 +00:00
actix-web = "1.0.8"
2019-10-09 15:59:52 +00:00
base64 = "0.10.1"
2019-10-17 18:15:39 +00:00
blake2 = "0.8.1"
2019-10-07 21:43:34 +00:00
chrono = "0.4.9"
2019-10-17 18:33:52 +00:00
diesel_migrations = "1.4.0"
2019-10-17 18:15:39 +00:00
dirs = "2.0.2"
2019-10-08 18:17:08 +00:00
env_logger = "0.7.0"
futures = "0.1.29"
2019-10-07 22:04:52 +00:00
num_cpus = "1.10.1"
2019-10-17 18:15:39 +00:00
toml = "0.5.3"
2019-10-07 21:43:34 +00:00
[dependencies.diesel]
version = "1.4.2"
features = ["r2d2", "sqlite"]
[dependencies.libsqlite3-sys]
version = "0.12.0"
features = ["bundled"]
2019-10-08 00:54:18 +00:00
[dependencies.serde]
version = "1.0.101"
features = ["derive"]
2019-10-07 21:43:34 +00:00
2019-10-08 00:54:18 +00:00
[target.'cfg(debug_assertions)'.dependencies]
2019-10-07 21:43:34 +00:00
dotenv = "0.14.1"