mirror of https://github.com/rwf2/Rocket.git
19 lines
411 B
TOML
19 lines
411 B
TOML
[package]
|
|
name = "cookies"
|
|
version = "0.0.1"
|
|
authors = ["Sergio Benitez <sb@sergio.bz>"]
|
|
workspace = "../../"
|
|
|
|
[dependencies]
|
|
rocket = { path = "../../lib" }
|
|
rocket_codegen = { path = "../../codegen" }
|
|
lazy_static = "*"
|
|
|
|
[dependencies.rocket_contrib]
|
|
path = "../../contrib"
|
|
default-features = false
|
|
features = ["handlebars_templates"]
|
|
|
|
[dev-dependencies]
|
|
rocket = { path = "../../lib", features = ["testing"] }
|