ff0095ac5e
* Move devtools. * Merge stop_guard & rename memzero * Move price-info to miner. * Group account management * Clean up workspace members. * Move local store closer to miner. * Move clib examples. * Move registrar and hash-fetch * Move rpc_cli/rpc_client * Move stratum closer to miner. * Fix naming convention of crates. * Update Cpp examples path. * Fix paths for clib-example. * Fix removing build.
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
description = "Ethcore blockchain sync"
|
|
name = "ethcore-sync"
|
|
version = "1.12.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
common-types = { path = "../types" }
|
|
parity-bytes = "0.1"
|
|
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.4"
|
|
hashdb = "0.3.0"
|
|
fastmap = { path = "../../util/fastmap" }
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
|
keccak-hash = "0.1"
|
|
keccak-hasher = { path = "../../util/keccak-hasher" }
|
|
triehash-ethereum = {version = "0.2", path = "../../util/triehash-ethereum" }
|
|
kvdb = "0.1"
|
|
macros = { path = "../../util/macros" }
|
|
log = "0.4"
|
|
env_logger = "0.5"
|
|
rand = "0.4"
|
|
heapsize = "0.4"
|
|
parking_lot = "0.7"
|
|
trace-time = "0.1"
|
|
|
|
[dev-dependencies]
|
|
ethcore-io = { path = "../../util/io", features = ["mio"] }
|
|
ethkey = { path = "../../accounts/ethkey" }
|
|
kvdb-memorydb = "0.1"
|
|
ethcore-private-tx = { path = "../private-tx" }
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|
|
rustc-hex = "1.0"
|