media-collection-crud/Cargo.toml

29 lines
680 B
INI
Raw Normal View History

2019-03-26 16:00:35 -04:00
[package]
2019-03-29 10:35:58 -04:00
name = "media-collection-crud"
license = "MIT"
description = "Expiremental CRUD for managing a personal collection of media"
2019-03-26 16:00:35 -04:00
version = "0.1.0"
authors = ["Timothy J Warren <tim@timshomepage.net>"]
edition = "2018"
2019-03-29 10:35:58 -04:00
publish = false
2019-03-26 16:00:35 -04:00
[dependencies]
bodyparser = "0.8.0"
2019-03-26 16:44:22 -04:00
diesel = { version = "1.4.1", features = ["postgres"] }
dotenv = "0.13.0"
2019-03-28 17:24:19 -04:00
env_logger = "0.6.1"
2019-03-26 16:00:35 -04:00
handlebars = "1.1.0"
2019-03-28 17:24:19 -04:00
handlebars-iron = { version = "0.27.0", features = ["watch"] }
2019-03-26 16:00:35 -04:00
iron = "0.6.0"
juniper = "0.11.1"
logger = "0.4.0"
2019-03-28 17:24:19 -04:00
mount = "0.4.0"
2019-04-08 09:00:17 -04:00
postgres = "0.15.2"
2019-03-26 16:00:35 -04:00
router = "0.6.0"
2019-03-28 17:24:19 -04:00
serde = "1.0.89"
serde_json = "1.0.39"
2019-03-26 16:00:35 -04:00
staticfile = "0.5.0"
2019-03-28 17:24:19 -04:00
urlencoded = "0.6.0"
2019-03-29 10:35:58 -04:00
[dev-dependencies]
iron-test = "0.6.0"