a0f406e26b
* Upgrade Eth types ethereum-types -> 0.9.2 rlp -> 0.4.6 keccak-hash -> 0.5.0 parity-crypto -> 0.6.2 ethabi -> 0.12.0 ethabi-derive -> 0.12.0 ethabi-contract -> 0.11.0 ethbloom -> 0.9.1 rand -> 0.7.3 trie-standardmap -> 0.15.2 triehash -> 0.5.0 * backport #10714. Small changes, merge fixes Co-authored-by: mdben1247 <mdben1247@users.noreply.github.com>
26 lines
680 B
TOML
26 lines
680 B
TOML
[package]
|
|
name = "journaldb"
|
|
version = "0.2.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "A `HashDB` which can manage a short-term journal potentially containing many forks of mutually exclusive actions"
|
|
license = "GPL3"
|
|
|
|
[dependencies]
|
|
parity-bytes = "0.1"
|
|
ethereum-types = "0.9.2"
|
|
hash-db = "0.11.0"
|
|
keccak-hasher = { path = "../../util/keccak-hasher" }
|
|
ethcore-db = { path = "../../db/db"}
|
|
kvdb = "0.1"
|
|
log = "0.4"
|
|
memory-db = { path = "../memory-db" }
|
|
parity-util-mem = "0.7"
|
|
parking_lot = "0.7"
|
|
fastmap = { path = "../../util/fastmap" }
|
|
rlp = { version = "0.4.6" }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.5"
|
|
keccak-hash = "0.5.0"
|
|
kvdb-memorydb = "=0.1.0"
|