2017-02-20 17:21:55 +01:00
|
|
|
[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" }
|
2018-01-11 17:49:10 +01:00
|
|
|
ethcore-io = { path = "../util/io" }
|
|
|
|
ethcore-transaction = { path = "../ethcore/transaction" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
kvdb = { git = "https://github.com/paritytech/parity-common" }
|
2018-01-11 17:49:10 +01:00
|
|
|
log = "0.3"
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
rlp = { git = "https://github.com/paritytech/parity-common" }
|
2017-07-06 11:36:15 +02:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
2017-10-12 15:36:27 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-06-11 12:26:49 +02:00
|
|
|
ethcore = { path = "../ethcore", features = ["test-helpers"] }
|
2017-02-20 17:21:55 +01:00
|
|
|
ethkey = { path = "../ethkey" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
kvdb-memorydb = { git = "https://github.com/paritytech/parity-common" }
|