f044b61f42
* Move miner away from ethcore. * Fix ethcore to use miner/transaction. * Fix tests and warnings. * fixed incorrect merge of the test in the documentation
21 lines
538 B
TOML
21 lines
538 B
TOML
[package]
|
|
name = "parity-local-store"
|
|
description = "Manages persistent local node data."
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
ethcore = { path = "../ethcore" }
|
|
ethcore-io = { path = "../util/io" }
|
|
ethcore-transaction = { path = "../ethcore/transaction" }
|
|
kvdb = { path = "../util/kvdb" }
|
|
log = "0.3"
|
|
rlp = { path = "../util/rlp" }
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
|
|
[dev-dependencies]
|
|
ethkey = { path = "../ethkey" }
|
|
kvdb-memorydb = { path = "../util/kvdb-memorydb" }
|