mirror of https://github.com/rwf2/Rocket.git
21 lines
421 B
TOML
21 lines
421 B
TOML
[package]
|
|
name = "todo"
|
|
version = "0.0.0"
|
|
workspace = "../"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
rocket = { path = "../../core/lib" }
|
|
diesel = { version = "1.3", features = ["sqlite", "r2d2"] }
|
|
diesel_migrations = "1.3"
|
|
|
|
[dev-dependencies]
|
|
parking_lot = "0.11"
|
|
rand = "0.8"
|
|
|
|
[dependencies.rocket_contrib]
|
|
path = "../../contrib/lib"
|
|
default_features = false
|
|
features = ["tera_templates", "diesel_sqlite_pool"]
|