fafb534cd3
* WIP move errors, pod_account and state account to own crates * Sort out dependencies, fix broken code and tests Remove botched ethcore-error crate * remove template line * fix review feedback * Remove test-only AccountDBMut::new * Extract AccountDB to account-db * test failure * test failure 2 * third time's the charm
15 lines
328 B
TOML
15 lines
328 B
TOML
[package]
|
|
description = "DB backend wrapper for Account trie"
|
|
name = "account-db"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
ethereum-types = "0.6"
|
|
hash-db = "0.12.4"
|
|
keccak-hash = "0.2.0"
|
|
keccak-hasher = { path = "../../util/keccak-hasher" }
|
|
kvdb = "0.1"
|
|
rlp = "0.4"
|