sapling/eden/scm/lib/manifest/Cargo.toml
Stefan Filip dd4d4a7b85 manifest: split in two crates: manifest and manifest-tree
Summary:
This isolates the core types in manifest so that it is harder to
create unsound dependencies with specific implementations.

Reviewed By: quark-zju

Differential Revision: D18843133

fbshipit-source-id: 4b866ad84d2e7d0ff2dc4ec6bd65f66548c3fe4a
2019-12-06 14:33:02 -08:00

22 lines
527 B
TOML

[package]
name = "manifest"
version = "0.1.0"
authors = ["Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
edition = "2018"
[features]
default = []
for-tests = ["quickcheck", "rand"]
[dependencies]
anyhow = "1.0.20"
pathmatcher = { path = "../pathmatcher" }
quickcheck = { version = "0.9", optional = true }
rand = { version = "0.7", optional = true }
types = { path = "../types" }
[dev-dependencies]
quickcheck = "0.9"
rand = "0.7"
types = { path = "../types", default-features = false, features = ["for-tests"] }