2019-01-04 14:05:46 +01:00
|
|
|
[package]
|
2020-03-25 17:16:51 +01:00
|
|
|
description = "OpenEthereum Blockchain Database, Test Generator, Configuration, Caching, Importing Blocks, and Block Information"
|
|
|
|
repository = "https://github.com/openethereum/openethereum"
|
2019-01-04 14:05:46 +01:00
|
|
|
license = "GPL-3.0"
|
|
|
|
name = "ethcore-blockchain"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-06-27 13:34:40 +02:00
|
|
|
ansi_term = "0.11"
|
2019-01-04 14:05:46 +01:00
|
|
|
blooms-db = { path = "../../util/blooms-db" }
|
|
|
|
common-types = { path = "../types" }
|
|
|
|
ethcore-db = { path = "../db" }
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
|
|
|
keccak-hash = "0.4.0"
|
2020-02-07 17:23:45 +01:00
|
|
|
parity-util-mem = "0.5.1"
|
|
|
|
itertools = "0.8.2"
|
|
|
|
kvdb = "0.4.0"
|
2019-01-04 14:05:46 +01:00
|
|
|
log = "0.4"
|
|
|
|
parity-bytes = "0.1"
|
2020-04-09 11:03:27 +02:00
|
|
|
rand = "0.7.3"
|
2020-02-07 17:23:45 +01:00
|
|
|
parking_lot = "0.10.0"
|
2019-01-04 14:05:46 +01:00
|
|
|
rayon = "1.0"
|
2019-06-03 15:36:21 +02:00
|
|
|
rlp = "0.4.0"
|
2019-01-04 14:05:46 +01:00
|
|
|
rlp_compress = { path = "../../util/rlp-compress" }
|
2020-02-13 15:34:51 +01:00
|
|
|
rlp-derive = "0.1"
|
2019-07-08 19:21:06 +02:00
|
|
|
triehash-ethereum = { version = "0.2", path = "../../util/triehash-ethereum" }
|
2019-01-04 14:05:46 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
env_logger = "0.5"
|
2020-02-10 18:29:21 +01:00
|
|
|
parity-crypto = { version = "0.5.0", features = ["publickey"] }
|
2020-02-21 15:10:00 +01:00
|
|
|
rustc-hex = "2.1.0"
|
2020-03-29 22:31:17 +02:00
|
|
|
tempfile = "3.1"
|
2020-02-07 17:23:45 +01:00
|
|
|
kvdb-memorydb = "0.4.0"
|