2018-04-10 12:13:49 +02:00
|
|
|
[package]
|
|
|
|
description = "Ethcore blockchain sync"
|
|
|
|
name = "ethcore-sync"
|
2018-04-25 16:25:43 +02:00
|
|
|
version = "1.12.0"
|
2018-04-10 12:13:49 +02:00
|
|
|
license = "GPL-3.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
ethcore-bytes = { path = "../../util/bytes" }
|
|
|
|
ethcore-network = { path = "../../util/network" }
|
|
|
|
ethcore-network-devp2p = { path = "../../util/network-devp2p" }
|
|
|
|
ethcore-io = { path = "../../util/io" }
|
|
|
|
ethcore-light = { path = "../light" }
|
|
|
|
ethcore-transaction = { path = "../transaction" }
|
|
|
|
ethcore = { path = ".." }
|
|
|
|
ethereum-types = "0.3"
|
|
|
|
plain_hasher = { path = "../../util/plain_hasher" }
|
|
|
|
rlp = { path = "../../util/rlp" }
|
|
|
|
rustc-hex = "1.0"
|
|
|
|
keccak-hash = { path = "../../util/hash" }
|
|
|
|
triehash = { path = "../../util/triehash" }
|
|
|
|
kvdb = { path = "../../util/kvdb" }
|
|
|
|
macros = { path = "../../util/macros" }
|
|
|
|
log = "0.3"
|
|
|
|
env_logger = "0.4"
|
|
|
|
rand = "0.4"
|
|
|
|
heapsize = "0.4"
|
|
|
|
semver = "0.9"
|
|
|
|
smallvec = { version = "0.4", features = ["heapsizeof"] }
|
|
|
|
parking_lot = "0.5"
|
|
|
|
ipnetwork = "0.12.6"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
ethkey = { path = "../../ethkey" }
|
|
|
|
kvdb-memorydb = { path = "../../util/kvdb-memorydb" }
|
2018-04-20 15:45:53 +02:00
|
|
|
ethcore-private-tx = { path = "../private-tx" }
|