2017-10-16 16:12:54 +02:00
|
|
|
[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" }
|
2018-02-09 09:32:06 +01:00
|
|
|
ethereum-types = "0.2"
|
2017-10-17 10:40:45 +02:00
|
|
|
hashdb = { path = "../hashdb" }
|
|
|
|
heapsize = "0.4"
|
|
|
|
kvdb = { path = "../kvdb" }
|
|
|
|
log = "0.3"
|
2017-10-16 16:12:54 +02:00
|
|
|
memorydb = { path = "../memorydb" }
|
2018-01-19 13:46:11 +01:00
|
|
|
parking_lot = "0.5"
|
2018-01-10 13:35:18 +01:00
|
|
|
plain_hasher = { path = "../plain_hasher" }
|
2017-10-17 10:40:45 +02:00
|
|
|
rlp = { path = "../rlp" }
|
2017-10-16 16:12:54 +02:00
|
|
|
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" }
|