mirror of https://github.com/rwf2/Rocket.git
23 lines
558 B
TOML
23 lines
558 B
TOML
[package]
|
|
name = "rocket_guide_tests"
|
|
version = "0.5.0-rc.2"
|
|
workspace = "../../"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
rocket = { path = "../../core/lib", features = ["secrets"] }
|
|
|
|
[dev-dependencies]
|
|
rocket = { path = "../../core/lib", features = ["secrets", "json", "mtls"] }
|
|
rand = "0.8"
|
|
figment = { version = "0.10", features = ["toml", "env"] }
|
|
|
|
[dev-dependencies.rocket_dyn_templates]
|
|
path = "../../contrib/dyn_templates"
|
|
features = ["tera"]
|
|
|
|
[dev-dependencies.rocket_db_pools]
|
|
path = "../../contrib/db_pools/lib"
|
|
features = ["sqlx_sqlite"]
|