2016-07-16 04:09:08 +00:00
|
|
|
[package]
|
|
|
|
name = "todo"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rocket = { path = "../../lib" }
|
|
|
|
rocket_macros = { path = "../../macros" }
|
2016-08-02 02:07:36 +00:00
|
|
|
lazy_static = "*"
|
|
|
|
tera = "*"
|
2016-08-06 04:57:55 +00:00
|
|
|
serde = "0.8"
|
|
|
|
serde_json = "0.8"
|
|
|
|
serde_macros = "0.8"
|
|
|
|
diesel = { git = "https://github.com/diesel-rs/diesel.git", features = ["sqlite"] }
|
|
|
|
diesel_codegen = { git = "https://github.com/diesel-rs/diesel.git", default_features = false, features = ["sqlite"] }
|