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]
|
2018-08-13 17:53:19 +02:00
|
|
|
common-types = { path = "../types" }
|
2019-02-13 09:20:33 +01:00
|
|
|
enum_primitive = "0.1.1"
|
2019-01-04 14:05:46 +01:00
|
|
|
ethcore = { path = ".." }
|
2018-04-10 12:13:49 +02:00
|
|
|
ethcore-io = { path = "../../util/io" }
|
|
|
|
ethcore-light = { path = "../light" }
|
2019-01-04 14:05:46 +01:00
|
|
|
ethcore-network = { path = "../../util/network" }
|
|
|
|
ethcore-network-devp2p = { path = "../../util/network-devp2p" }
|
2019-06-03 15:36:21 +02:00
|
|
|
ethereum-types = "0.6.0"
|
2019-02-07 14:34:24 +01:00
|
|
|
ethkey = { path = "../../accounts/ethkey" }
|
2019-01-04 14:05:46 +01:00
|
|
|
ethstore = { path = "../../accounts/ethstore" }
|
2018-08-09 09:51:48 +02:00
|
|
|
fastmap = { path = "../../util/fastmap" }
|
2019-02-20 19:09:34 +01:00
|
|
|
hash-db = "0.11.0"
|
2019-01-04 14:05:46 +01:00
|
|
|
heapsize = "0.4"
|
2019-06-03 15:36:21 +02:00
|
|
|
keccak-hash = "0.2.0"
|
2018-10-09 22:07:25 +02:00
|
|
|
keccak-hasher = { path = "../../util/keccak-hasher" }
|
|
|
|
kvdb = "0.1"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2019-01-04 14:05:46 +01:00
|
|
|
macros = { path = "../../util/macros" }
|
|
|
|
parity-bytes = "0.1"
|
2018-12-11 17:22:55 +01:00
|
|
|
parking_lot = "0.7"
|
2019-06-03 15:36:21 +02:00
|
|
|
rand = "0.6"
|
|
|
|
rlp = "0.4.0"
|
2018-09-04 20:13:51 +02:00
|
|
|
trace-time = "0.1"
|
2019-01-04 14:05:46 +01:00
|
|
|
triehash-ethereum = {version = "0.2", path = "../../util/triehash-ethereum" }
|
2019-04-02 17:13:55 +02:00
|
|
|
futures = "0.1"
|
|
|
|
parity-runtime = { path = "../../util/runtime" }
|
2018-04-10 12:13:49 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-01-08 15:07:20 +01:00
|
|
|
env_logger = "0.5"
|
2019-02-07 14:34:24 +01:00
|
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|
2018-05-10 12:34:36 +02:00
|
|
|
ethcore-io = { path = "../../util/io", features = ["mio"] }
|
2018-04-20 15:45:53 +02:00
|
|
|
ethcore-private-tx = { path = "../private-tx" }
|
2019-02-07 14:34:24 +01:00
|
|
|
kvdb-memorydb = "0.1"
|
2018-09-25 15:27:27 +02:00
|
|
|
rustc-hex = "1.0"
|
2019-06-03 15:36:21 +02:00
|
|
|
rand_xorshift = "0.1.1"
|