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"
|
2019-08-07 01:45:10 +02:00
|
|
|
edition = "2018"
|
2017-10-16 16:12:54 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-bytes = "0.1"
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
2019-08-15 15:36:48 +02:00
|
|
|
hash-db = "0.15.0"
|
2020-02-07 17:23:45 +01:00
|
|
|
parity-util-mem = "0.5.1"
|
2018-07-02 18:50:05 +02:00
|
|
|
keccak-hasher = { path = "../keccak-hasher" }
|
2020-02-07 17:23:45 +01:00
|
|
|
kvdb = "0.4.0"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2020-02-07 17:23:45 +01:00
|
|
|
memory-db = "0.19.0"
|
|
|
|
parking_lot = "0.10.0"
|
2018-08-09 09:51:48 +02:00
|
|
|
fastmap = { path = "../../util/fastmap" }
|
2019-06-03 15:36:21 +02:00
|
|
|
rlp = "0.4.0"
|
2017-10-17 10:40:45 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-01-08 15:07:20 +01:00
|
|
|
env_logger = "0.5"
|
2019-10-08 14:18:44 +02:00
|
|
|
keccak-hash = "0.4.0"
|
2020-02-07 17:23:45 +01:00
|
|
|
kvdb-memorydb = "0.4.0"
|