mirror of https://github.com/rwf2/Rocket.git
21 lines
402 B
TOML
21 lines
402 B
TOML
[package]
|
|
name = "json"
|
|
version = "0.0.1"
|
|
workspace = "../../"
|
|
|
|
[dependencies]
|
|
rocket = { path = "../../lib" }
|
|
rocket_codegen = { path = "../../codegen" }
|
|
serde = "0.9"
|
|
serde_json = "0.9"
|
|
serde_derive = "0.9"
|
|
lazy_static = "*"
|
|
|
|
[dependencies.rocket_contrib]
|
|
path = "../../contrib"
|
|
default-features = false
|
|
features = ["json"]
|
|
|
|
[dev-dependencies]
|
|
rocket = { path = "../../lib", features = ["testing"] }
|