3650f2d51c
* Split blockchain & db from ethcore. * Clean up blockchain deps. * Missing docs. * Fix blockchain tests. * Make other crates compile. * Remove some re-exports. * Remove types re-export from ethcore. * Remove EVM dependency from transaction. * Merge ethcore-transaction with common-types. * Clean-up ethcore deps a bit. * remove ethcore from cargo.toml * Update ethcore/blockchain/src/lib.rs Co-Authored-By: tomusdrw <tomusdrw@users.noreply.github.com> * Address review comments. * Update DB comment. * Add tracking issue to the TODO and fix typo. * Common naming for common types. * Update ethcore/db/src/keys.rs Co-Authored-By: tomusdrw <tomusdrw@users.noreply.github.com> * Update ethcore/blockchain/src/generator.rs Co-Authored-By: tomusdrw <tomusdrw@users.noreply.github.com> * Try to fix beta tests.
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" }
|
|
env_logger = "0.5"
|
|
ethcore = { path = ".." }
|
|
ethcore-io = { path = "../../util/io" }
|
|
ethcore-light = { path = "../light" }
|
|
ethcore-network = { path = "../../util/network" }
|
|
ethcore-network-devp2p = { path = "../../util/network-devp2p" }
|
|
ethereum-types = "0.4"
|
|
ethstore = { path = "../../accounts/ethstore" }
|
|
fastmap = { path = "../../util/fastmap" }
|
|
hashdb = "0.3.0"
|
|
heapsize = "0.4"
|
|
keccak-hash = "0.1"
|
|
keccak-hasher = { path = "../../util/keccak-hasher" }
|
|
kvdb = "0.1"
|
|
log = "0.4"
|
|
macros = { path = "../../util/macros" }
|
|
parity-bytes = "0.1"
|
|
parking_lot = "0.7"
|
|
rand = "0.4"
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
|
trace-time = "0.1"
|
|
triehash-ethereum = {version = "0.2", path = "../../util/triehash-ethereum" }
|
|
|
|
[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"
|