2019-02-14 23:50:05 +03:00
|
|
|
[package]
|
|
|
|
name = "manifest"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2019-02-23 02:38:53 +03:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
for-tests = ["quickcheck"]
|
|
|
|
|
2019-02-14 23:50:05 +03:00
|
|
|
[dependencies]
|
2019-11-22 19:51:58 +03:00
|
|
|
anyhow = "1.0.20"
|
2019-05-17 20:20:17 +03:00
|
|
|
bytes = { version = "0.4.11", features = ["serde"] }
|
2019-09-04 00:55:45 +03:00
|
|
|
once_cell = "1.0.2"
|
2019-10-31 19:38:54 +03:00
|
|
|
quickcheck = { version = "0.9", optional = true }
|
|
|
|
rand = { version = "0.7", optional = true }
|
2019-07-22 22:56:51 +03:00
|
|
|
pathmatcher = { path = "../pathmatcher" }
|
2019-03-06 03:08:15 +03:00
|
|
|
rust-crypto = "0.2"
|
2019-12-03 02:52:10 +03:00
|
|
|
thiserror = "1.0"
|
2019-11-13 02:33:03 +03:00
|
|
|
tracing = "0.1"
|
2019-02-14 23:50:05 +03:00
|
|
|
types = { path = "../types" }
|
2019-02-14 23:50:05 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-09-14 01:14:26 +03:00
|
|
|
parking_lot = "0.9"
|
2019-10-31 19:38:54 +03:00
|
|
|
quickcheck = "0.9"
|
|
|
|
rand = "0.7"
|
2019-02-14 23:50:05 +03:00
|
|
|
types = { path = "../types", default-features = false, features = ["for-tests"] }
|