98dbd1fdc7
* fix(light_sync): calculate `load_share` properly * refactor(api.rs): extract `light_params` fn, add test * style(api.rs): add trailing commas
45 lines
1.6 KiB
TOML
45 lines
1.6 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 = { git = "https://github.com/paritytech/parity-common" }
|
|
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"
|
|
hashdb = { git = "https://github.com/paritytech/parity-common" }
|
|
fastmap = { path = "../../util/fastmap" }
|
|
rlp = { git = "https://github.com/paritytech/parity-common" }
|
|
rustc-hex = "1.0"
|
|
keccak-hash = { git = "https://github.com/paritytech/parity-common" }
|
|
keccak-hasher = { path = "../../util/keccak-hasher" }
|
|
triehash-ethereum = {version = "0.2", path = "../../util/triehash-ethereum" }
|
|
kvdb = { git = "https://github.com/paritytech/parity-common" }
|
|
macros = { path = "../../util/macros" }
|
|
log = "0.4"
|
|
env_logger = "0.5"
|
|
rand = "0.4"
|
|
heapsize = "0.4"
|
|
semver = "0.9"
|
|
smallvec = { version = "0.4", features = ["heapsizeof"] }
|
|
parking_lot = "0.6"
|
|
trace-time = { path = "../../util/trace-time" }
|
|
ipnetwork = "0.12.6"
|
|
|
|
[dev-dependencies]
|
|
ethcore-io = { path = "../../util/io", features = ["mio"] }
|
|
ethkey = { path = "../../ethkey" }
|
|
kvdb-memorydb = { git = "https://github.com/paritytech/parity-common" }
|
|
ethcore-private-tx = { path = "../private-tx" }
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|