parity-zcash/verification/Cargo.toml

22 lines
492 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"
2017-08-08 04:41:00 -07:00
lazy_static = "0.2"
log = "0.3"
2017-06-06 03:18:41 -07:00
rayon = "0.7"
2017-05-03 05:08:53 -07:00
parking_lot = "0.4"
2016-10-17 12:27:45 -07:00
primitives = { path = "../primitives" }
chain = { path = "../chain" }
serialization = { path = "../serialization" }
script = { path = "../script" }
network = { path = "../network" }
db = { path = "../db" }
bitcrypto = { path = "../crypto" }
[dev-dependencies]
test-data = { path = "../test-data" }