72fd1fa58d
* Fetch `parity-common` crates from crates.io * Add doc tests from `patricia-trie` to `patricia-trie-ethereum` Fix/update a few deps * [ethkey] upgrade ethereum-types * [whisper] update deps * [network] deps * [network-devp2p] deps * [journaldb] deps * [fastmap] deps * [miner] deps and test fixes * [machine] deps * [json] deps * [hw] deps * [ethash] deps * [registrar] deps * Update a few more dependencies with new ethabi-* * [updater] Update deps * deps * [ethcore] Update deps * Use new parity-snappy and parity-rocksdb crates * Updated submodules * Use parity-snappy 0.1 * Use kvdb-rocksdb 0.1.2 * Don't use latest ethereum/tests * Fix merge conflicts errors * Remove superseeded comment * Address grumbles: add newlines, add/remove spaces
45 lines
1.3 KiB
TOML
45 lines
1.3 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.2.1"
|
|
fastmap = { path = "../../util/fastmap" }
|
|
rlp = { version = "0.2.4", features = ["ethereum"] }
|
|
rustc-hex = "1.0"
|
|
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"
|
|
semver = "0.9"
|
|
smallvec = { version = "0.4", features = ["heapsizeof"] }
|
|
parking_lot = "0.6"
|
|
trace-time = "0.1"
|
|
ipnetwork = "0.12.6"
|
|
|
|
[dev-dependencies]
|
|
ethcore-io = { path = "../../util/io", features = ["mio"] }
|
|
ethkey = { path = "../../ethkey" }
|
|
kvdb-memorydb = "0.1"
|
|
ethcore-private-tx = { path = "../private-tx" }
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|