mirror of
https://github.com/rwf2/Rocket.git
synced 2025-02-05 00:02:03 +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'.
18 lines
517 B
TOML
18 lines
517 B
TOML
[package]
|
|
name = "rocket_guide_tests"
|
|
version = "0.5.0-dev"
|
|
workspace = "../../"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
rocket = { path = "../../core/lib", features = ["secrets"] }
|
|
|
|
[dev-dependencies]
|
|
rocket = { path = "../../core/lib", features = ["secrets", "json"] }
|
|
rocket_contrib = { path = "../../contrib/lib", features = ["tera_templates", "diesel_sqlite_pool"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
rand = "0.8"
|
|
figment = { version = "0.10", features = ["toml", "env"] }
|
|
time = "0.2"
|