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" }
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-bytes = "0.1"
|
2018-04-10 12:13:49 +02:00
|
|
|
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 = ".." }
|
2018-09-04 20:13:51 +02:00
|
|
|
ethereum-types = "0.4"
|
2018-10-09 22:07:25 +02:00
|
|
|
hashdb = "0.3.0"
|
2018-08-09 09:51:48 +02:00
|
|
|
fastmap = { path = "../../util/fastmap" }
|
2018-10-09 22:07:25 +02:00
|
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
2018-09-04 20:13:51 +02:00
|
|
|
keccak-hash = "0.1"
|
2018-10-09 22:07:25 +02:00
|
|
|
keccak-hasher = { path = "../../util/keccak-hasher" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
triehash-ethereum = {version = "0.2", path = "../../util/triehash-ethereum" }
|
2018-10-09 22:07:25 +02:00
|
|
|
kvdb = "0.1"
|
2018-04-10 12:13:49 +02:00
|
|
|
macros = { path = "../../util/macros" }
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
|
|
|
env_logger = "0.5"
|
2018-04-10 12:13:49 +02:00
|
|
|
rand = "0.4"
|
|
|
|
heapsize = "0.4"
|
2018-07-03 17:31:08 +02:00
|
|
|
parking_lot = "0.6"
|
2018-09-04 20:13:51 +02:00
|
|
|
trace-time = "0.1"
|
2018-04-10 12:13:49 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-05-10 12:34:36 +02:00
|
|
|
ethcore-io = { path = "../../util/io", features = ["mio"] }
|
2018-04-10 12:13:49 +02:00
|
|
|
ethkey = { path = "../../ethkey" }
|
2018-09-04 20:13:51 +02:00
|
|
|
kvdb-memorydb = "0.1"
|
2018-04-20 15:45:53 +02:00
|
|
|
ethcore-private-tx = { path = "../private-tx" }
|
2018-06-04 15:58:44 +02:00
|
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|
2018-09-25 15:27:27 +02:00
|
|
|
rustc-hex = "1.0"
|