mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-09 19:19:12 +00:00
8d3f1d65ac
The guide is now in docs/guide. All other site assets are being migrated to a separate repository. The guide markup has been upgraded to take advantages of improvements in the static site generator used to build the Rocket website.
27 lines
671 B
TOML
27 lines
671 B
TOML
[package]
|
|
name = "rocket_docs_tests"
|
|
version = "0.6.0-dev"
|
|
workspace = "../../"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
rocket = { path = "../../core/lib", features = ["secrets"] }
|
|
|
|
[dev-dependencies]
|
|
rocket = { path = "../../core/lib", features = ["secrets", "json", "mtls"] }
|
|
figment = { version = "0.10", features = ["toml", "env"] }
|
|
tokio = { version = "1", features = ["macros", "io-std"] }
|
|
rand = "0.8"
|
|
|
|
[dev-dependencies.rocket_dyn_templates]
|
|
path = "../../contrib/dyn_templates"
|
|
features = ["tera"]
|
|
|
|
[dev-dependencies.rocket_db_pools]
|
|
path = "../../contrib/db_pools/lib"
|
|
features = ["sqlx_sqlite"]
|
|
|
|
[dev-dependencies.rocket_ws]
|
|
path = "../../contrib/ws"
|