mirror of https://github.com/rwf2/Rocket.git
25 lines
679 B
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_macros = "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" ]
|