2016-07-16 04:09:08 +00:00
|
|
|
[package]
|
|
|
|
name = "todo"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
2016-08-11 00:50:08 +00:00
|
|
|
workspace = "../../"
|
2016-07-16 04:09:08 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rocket = { path = "../../lib" }
|
2016-09-09 03:38:58 +00:00
|
|
|
rocket_codegen = { path = "../../codegen" }
|
2016-08-02 02:07:36 +00:00
|
|
|
lazy_static = "*"
|
2016-08-06 04:57:55 +00:00
|
|
|
serde = "0.8"
|
|
|
|
serde_json = "0.8"
|
2016-10-04 00:56:43 +00:00
|
|
|
serde_derive = "0.8"
|
2016-09-04 21:24:48 +00:00
|
|
|
diesel = { git = "https://github.com/SergioBenitez/diesel", features = ["sqlite"] }
|
|
|
|
diesel_codegen = { git = "https://github.com/SergioBenitez/diesel", default_features = false, features = ["sqlite"] }
|
2016-09-22 11:12:07 +00:00
|
|
|
|
|
|
|
[dependencies.tera]
|
|
|
|
git = "https://github.com/SergioBenitez/tera"
|
|
|
|
branch = "array-get-filter"
|
|
|
|
|
|
|
|
[dependencies.rocket_contrib]
|
|
|
|
path = "../../contrib"
|
|
|
|
default_features = false
|
|
|
|
features = [ "tera_templates" ]
|