Rocket/examples/todo/Cargo.toml

25 lines
679 B
TOML

[package]
name = "todo"
version = "0.0.1"
authors = ["Sergio Benitez <sb@sergio.bz>"]
workspace = "../../"
[dependencies]
rocket = { path = "../../lib" }
rocket_codegen = { path = "../../codegen" }
lazy_static = "*"
serde = "0.8"
serde_json = "0.8"
serde_derive = "0.8"
diesel = { git = "https://github.com/SergioBenitez/diesel", features = ["sqlite"] }
diesel_codegen = { git = "https://github.com/SergioBenitez/diesel", default_features = false, features = ["sqlite"] }
[dependencies.tera]
git = "https://github.com/SergioBenitez/tera"
branch = "array-get-filter"
[dependencies.rocket_contrib]
path = "../../contrib"
default_features = false
features = [ "tera_templates" ]