sapling/eden/scm/lib/manifest-tree/Cargo.toml
Steven Troxler 71279b3916 Deprecate rust-crypto in manifest-tree
Summary:
Replace `rust-crypto` with `sha-1`:
 - `crypto::digest::Digest` with `sha1::Digest`
 - `crypto::sha1::Sha1` with `sha1::Sha1`

Reviewed By: jsgf

Differential Revision: D20587716

fbshipit-source-id: de801c20bffd356eb5b2205a63ec0218b3aca6c0
2020-03-23 11:15:58 -07:00

38 lines
994 B
TOML

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