parity-zcash/miner/Cargo.toml

22 lines
540 B
TOML
Raw Normal View History

2016-10-14 14:37:32 -07:00
[package]
name = "miner"
version = "0.1.0"
authors = ["Ethcore <admin@ethcore.io>"]
[dependencies]
2017-03-12 08:05:35 -07:00
byteorder = "1.0"
2017-08-02 01:38:08 -07:00
heapsize = "0.4"
2016-12-08 07:45:37 -08:00
bitcrypto = { path = "../crypto" }
2016-10-14 14:37:32 -07:00
chain = { path = "../chain" }
storage = { path = "../storage" }
2016-11-24 22:07:29 -08:00
db = { path = "../db" }
network = { path = "../network" }
2016-10-14 14:37:32 -07:00
primitives = { path = "../primitives" }
serialization = { path = "../serialization" }
verification = { path = "../verification" }
keys = { path = "../keys" }
script = { path = "../script" }
[dev-dependencies]
test-data = { path = "../test-data" }