mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-27 11:52:07 +00:00
50c9e88cf9
The new examples directory... * Contains a `README.md` explaining each example. * Consolidates examples into more complete chunks. * Is just better. Resolves #1447.
16 lines
281 B
TOML
16 lines
281 B
TOML
[package]
|
|
name = "serialization"
|
|
version = "0.0.0"
|
|
workspace = "../"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
rocket = { path = "../../core/lib" }
|
|
serde = "1"
|
|
|
|
[dependencies.rocket_contrib]
|
|
path = "../../contrib/lib"
|
|
default-features = false
|
|
features = ["json", "msgpack"]
|