sapling/lib/manifest/Cargo.toml

22 lines
517 B
TOML
Raw Normal View History

[package]
name = "manifest"
version = "0.1.0"
authors = ["Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
edition = "2018"
[features]
default = []
for-tests = ["quickcheck"]
[dependencies]
bytes = { version = "0.4.11", features = ["serde"] }
failure = "0.1.3"
once_cell = "0.2.0"
quickcheck = { version = "0.6.2", optional = true }
rust-crypto = "0.2"
types = { path = "../types" }
[dev-dependencies]
quickcheck = "0.6.2"
types = { path = "../types", default-features = false, features = ["for-tests"] }