Rocket/examples/todo/Cargo.toml

25 lines
557 B
TOML
Raw Permalink Normal View History

[package]
name = "todo"
2017-03-08 22:29:24 +00:00
version = "0.0.0"
workspace = "../../"
[dependencies]
rocket = { path = "../../lib" }
2016-09-09 03:38:58 +00:00
rocket_codegen = { path = "../../codegen" }
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
2017-02-03 01:38:36 +00:00
r2d2 = "0.7"
diesel = { version = "0.14", features = ["sqlite"] }
diesel_codegen = { version = "0.14", features = ["sqlite"] }
r2d2-diesel = "0.14"
2017-05-26 23:44:53 +00:00
[dev-dependencies]
parking_lot = {version = "0.4", features = ["nightly"]}
rand = "0.3"
[dependencies.rocket_contrib]
path = "../../contrib"
default_features = false
features = [ "tera_templates" ]