openethereum/util/journaldb/Cargo.toml

25 lines
716 B
TOML
Raw Normal View History

[package]
name = "journaldb"
version = "0.1.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]
ethcore-bytes = { path = "../bytes" }
ethereum-types = "0.1"
2017-10-17 10:40:45 +02:00
hashdb = { path = "../hashdb" }
heapsize = "0.4"
kvdb = { path = "../kvdb" }
log = "0.3"
memorydb = { path = "../memorydb" }
parking_lot = "0.5"
plain_hasher = { path = "../plain_hasher" }
2017-10-17 10:40:45 +02:00
rlp = { path = "../rlp" }
util-error = { path = "../error" }
2017-10-17 10:40:45 +02:00
[dev-dependencies]
ethcore-logger = { path = "../../logger" }
2017-11-10 19:04:55 +01:00
keccak-hash = { path = "../hash" }
2017-10-17 10:40:45 +02:00
kvdb-memorydb = { path = "../kvdb-memorydb" }