rust-cookbook/Cargo.toml

22 lines
325 B
TOML
Raw Normal View History

2017-02-20 19:22:19 +00:00
[package]
name = "rust-cookbook"
version = "0.1.0"
authors = ["Brian Anderson <banderson@mozilla.com>"]
build = "build.rs"
[dependencies]
2017-02-25 22:43:23 +00:00
rand = "0.3.15"
2017-02-20 19:22:19 +00:00
byteorder = "1.0.0"
2017-02-21 22:41:35 +00:00
error-chain = "0.8.0"
2017-02-25 16:34:44 +00:00
json = "0.11.5"
2017-02-25 20:53:13 +00:00
toml = "0.3"
serde_derive = "0.9.9"
2017-02-20 19:22:19 +00:00
2017-02-25 22:43:23 +00:00
2017-02-20 19:22:19 +00:00
[build-dependencies]
skeptic = "0.7"
2017-02-20 19:22:19 +00:00
[dev-dependencies]
skeptic = "0.7"