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-05-17 20:20:17 +03:00
|
|
|
bytes = { version = "0.4.11", features = ["serde"] }
|
2019-02-14 23:50:05 +03:00
|
|
|
failure = "0.1.3"
|
2019-05-24 08:35:02 +03:00
|
|
|
once_cell = "0.2.0"
|
2019-02-23 02:38:53 +03:00
|
|
|
quickcheck = { version = "0.6.2", optional = true }
|
2019-03-06 03:08:15 +03:00
|
|
|
rust-crypto = "0.2"
|
2019-02-14 23:50:05 +03:00
|
|
|
types = { path = "../types" }
|
2019-02-14 23:50:05 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-02-23 02:38:53 +03:00
|
|
|
quickcheck = "0.6.2"
|
2019-02-14 23:50:05 +03:00
|
|
|
types = { path = "../types", default-features = false, features = ["for-tests"] }
|