parity-zcash/verification/Cargo.toml

27 lines
605 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"
2017-05-03 05:08:53 -07:00
parking_lot = "0.4"
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"
[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"