mirror of https://github.com/rwf2/Rocket.git
23 lines
537 B
TOML
23 lines
537 B
TOML
[package]
|
|
name = "todo"
|
|
version = "0.0.0"
|
|
workspace = "../../"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
rocket = { path = "../../core/lib" }
|
|
rocket_codegen = { path = "../../core/codegen" }
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_derive = "1.0"
|
|
diesel = { version = "1.3", features = ["sqlite", "r2d2"] }
|
|
|
|
[dev-dependencies]
|
|
parking_lot = { version = "0.6", features = ["nightly"] }
|
|
rand = "0.5"
|
|
|
|
[dependencies.rocket_contrib]
|
|
path = "../../contrib/lib"
|
|
default_features = false
|
|
features = ["tera_templates", "diesel_sqlite_pool", "static_files"]
|