mirror of https://github.com/rwf2/Rocket.git
17 lines
522 B
TOML
17 lines
522 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 = "*"
|
|
tera = { git = "https://github.com/Keats/tera" }
|
|
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"] }
|