parity-zcash/sync/Cargo.toml

35 lines
738 B
TOML
Raw Normal View History

[package]
name = "sync"
version = "0.1.0"
authors = ["Ethcore <admin@ethcore.io>"]
[dependencies]
2017-03-26 01:17:28 -07:00
parking_lot = "0.4"
log = "0.4"
time = "0.1"
2016-11-04 02:36:58 -07:00
futures = "0.1"
linked-hash-map = "0.3"
2016-11-22 07:03:07 -08:00
bit-vec = "0.4.3"
2017-04-05 02:45:51 -07:00
murmur3 = "0.4"
2018-02-05 06:25:36 -08:00
rand = "0.4"
2017-03-12 08:05:35 -07:00
byteorder = "1.0"
chain = { path = "../chain" }
2016-11-25 04:09:08 -08:00
bitcrypto = { path = "../crypto" }
storage = { path = "../storage" }
db = { path = "../db" }
message = { path = "../message" }
2016-11-02 05:18:52 -07:00
miner = { path = "../miner" }
p2p = { path = "../p2p" }
primitives = { path = "../primitives" }
2016-11-22 07:03:07 -08:00
script = { path = "../script" }
serialization = { path = "../serialization" }
verification = { path = "../verification" }
network = { path = "../network" }
2016-11-10 04:16:16 -08:00
[dev-dependencies]
test-data = { path = "../test-data" }
2016-11-10 04:16:16 -08:00
[features]
dev = []