parity-zcash/verification/Cargo.toml

30 lines
697 B
TOML
Raw Normal View History

2016-10-17 12:27:45 -07:00
[package]
name = "verification"
version = "0.1.0"
authors = ["Nikolay Volf <nikvolf@gmail.com>"]
[dependencies]
time = "0.1"
log = "0.4"
rayon = "1.0"
2019-03-25 02:34:16 -07:00
parking_lot = "0.7"
2018-05-17 03:55:08 -07:00
byteorder = "1.2"
2018-12-24 05:34:58 -08:00
keys = { path = "../keys" }
2016-10-17 12:27:45 -07:00
primitives = { path = "../primitives" }
2018-12-07 01:10:57 -08:00
chain = { path = "../chain" }
2016-10-17 12:27:45 -07:00
serialization = { path = "../serialization" }
script = { path = "../script" }
network = { path = "../network" }
storage = { path = "../storage" }
bitcrypto = { path = "../crypto" }
2018-11-13 22:41:11 -08:00
rustc-hex = "2"
2019-03-26 06:09:59 -07:00
bitvec = "0.10"
2019-04-03 05:42:13 -07:00
bitflags = "1.0"
[dev-dependencies]
2018-11-12 04:38:21 -08:00
rand = "0.4"
test-data = { path = "../test-data" }
2018-05-11 02:59:45 -07:00
db = { path = "../db" }
2018-12-20 04:55:41 -08:00
assert_matches = "1.3.0"
2019-03-20 02:29:04 -07:00
chain = { path = "../chain", features = ["test-helpers"] }