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]
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
parity-bytes = { git = "https://github.com/paritytech/parity-common" }
|
2018-04-02 13:12:52 +02:00
|
|
|
ethereum-types = "0.3"
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
hashdb = { git = "https://github.com/paritytech/parity-common" }
|
2017-10-17 10:40:45 +02:00
|
|
|
heapsize = "0.4"
|
2018-07-02 18:50:05 +02:00
|
|
|
keccak-hasher = { path = "../keccak-hasher" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
kvdb = { git = "https://github.com/paritytech/parity-common" }
|
2017-10-17 10:40:45 +02:00
|
|
|
log = "0.3"
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
memorydb = { git = "https://github.com/paritytech/parity-common" }
|
2018-07-03 17:31:08 +02:00
|
|
|
parking_lot = "0.6"
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
plain_hasher = { git = "https://github.com/paritytech/parity-common" }
|
|
|
|
rlp = { git = "https://github.com/paritytech/parity-common" }
|
2017-10-17 10:40:45 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
ethcore-logger = { path = "../../logger" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
keccak-hash = { git = "https://github.com/paritytech/parity-common" }
|
|
|
|
kvdb-memorydb = { git = "https://github.com/paritytech/parity-common" }
|