sapling/eden/scm/lib/manifest/Cargo.toml

28 lines
666 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]
anyhow = "1.0.20"
bytes = { version = "0.4.11", features = ["serde"] }
once_cell = "1.0.2"
quickcheck = { version = "0.9", optional = true }
rand = { version = "0.7", optional = true }
pathmatcher = { path = "../pathmatcher" }
rust-crypto = "0.2"
thiserror = "1.0"
tracing = "0.1"
types = { path = "../types" }
[dev-dependencies]
parking_lot = "0.9"
quickcheck = "0.9"
rand = "0.7"
types = { path = "../types", default-features = false, features = ["for-tests"] }