mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-10 19:49:06 +00:00
c74bcfd40a
This has the following nice benefits: * The 'JsonValue' wrapper type is gone. * 'Local{Request, Response}' natively support JSON/MessagePack. * The 'json' and 'msgpack' limits are officially recognized. * Soon, Rocket application will not require an explicit 'serde' dep. This marks the beginning of the end of 'rocket_contrib'.
21 lines
430 B
TOML
21 lines
430 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", "serve"]
|