sapling/eden/scm/lib/manifest-tree/Cargo.toml
Lukas Piatkowski ad106958f2 eden/scm/lib: autogenerate all Cargo.toml files with autocargo
Summary: This diff removes the split between manually managed and autocargo managed Cargo.toml files in `eden/scm/lib`, now all files are autogenerated.

Reviewed By: quark-zju

Differential Revision: D26830884

fbshipit-source-id: 3a5d8409a61347c7650cc7d8192fa426c03733dc
2021-03-05 04:29:49 -08:00

39 lines
1.1 KiB
TOML

# @generated by autocargo from //eden/scm/lib/manifest-tree:manifest-tree
[package]
name = "manifest-tree"
version = "0.1.0"
authors = ["Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
edition = "2018"
[[bench]]
name = "bench"
harness = false
required-features = ["for-tests"]
[dependencies]
anyhow = "1.0"
bytes = { version = "0.5", features = ["serde"] }
manifest = { path = "../manifest" }
once_cell = "1.4"
parking_lot = { version = "0.10.2", optional = true }
pathmatcher = { path = "../pathmatcher" }
quickcheck = { version = "0.9", optional = true }
rand = { version = "0.7", features = ["small_rng"], optional = true }
sha-1 = "0.8"
thiserror = "1.0"
tracing = "0.1"
types = { path = "../types" }
[dev-dependencies]
manifest = { path = "../manifest", features = ["for-tests"], default-features = false }
minibench = { path = "../minibench" }
parking_lot = "0.10.2"
quickcheck = "0.9"
rand = { version = "0.7", features = ["small_rng"] }
rand_chacha = "0.2"
types = { path = "../types", features = ["for-tests"], default-features = false }
[features]
default = []
for-tests = ["parking_lot", "quickcheck", "rand"]