09ee6e1477
* Fix test compile for light, node_filter, service in ethcore * Fix ipfs, local-store, rpc, secret_store, updater subcrate test compile
22 lines
601 B
TOML
22 lines
601 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]
|
|
ethcore = { path = "../ethcore", features = ["test-helpers"] }
|
|
ethkey = { path = "../ethkey" }
|
|
kvdb-memorydb = { path = "../util/kvdb-memorydb" }
|