2017-10-16 16:12:54 +02:00
|
|
|
[package]
|
|
|
|
name = "journaldb"
|
2018-07-02 18:50:05 +02:00
|
|
|
version = "0.2.0"
|
2017-10-16 16:12:54 +02:00
|
|
|
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]
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-bytes = "0.1"
|
|
|
|
ethereum-types = "0.4"
|
2018-10-09 22:07:25 +02:00
|
|
|
hashdb = "0.3.0"
|
2017-10-17 10:40:45 +02:00
|
|
|
heapsize = "0.4"
|
2018-07-02 18:50:05 +02:00
|
|
|
keccak-hasher = { path = "../keccak-hasher" }
|
2018-09-04 20:13:51 +02:00
|
|
|
kvdb = "0.1"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2018-10-09 22:07:25 +02:00
|
|
|
memorydb = "0.3.0"
|
2018-07-03 17:31:08 +02:00
|
|
|
parking_lot = "0.6"
|
2018-08-09 09:51:48 +02:00
|
|
|
fastmap = { path = "../../util/fastmap" }
|
2018-10-09 22:07:25 +02:00
|
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
2017-10-17 10:40:45 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
ethcore-logger = { path = "../../logger" }
|
2018-09-04 20:13:51 +02:00
|
|
|
keccak-hash = "0.1"
|
|
|
|
kvdb-memorydb = "0.1"
|