2019-01-04 14:05:46 +01:00
|
|
|
[package]
|
2019-06-25 08:15:13 +02:00
|
|
|
description = "Parity Ethereum Blockchain Database, Test Generator, Configuration, Caching, Importing Blocks, and Block Information"
|
2019-01-04 14:05:46 +01:00
|
|
|
homepage = "http://parity.io"
|
|
|
|
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"
|
2019-12-20 12:27:38 +01:00
|
|
|
parity-util-mem = "0.3.0"
|
2019-01-04 14:05:46 +01:00
|
|
|
itertools = "0.5"
|
2020-02-03 19:00:23 +01:00
|
|
|
kvdb = "0.3.1"
|
2019-01-04 14:05:46 +01:00
|
|
|
log = "0.4"
|
|
|
|
parity-bytes = "0.1"
|
2019-10-18 15:12:16 +02:00
|
|
|
rand = "0.7"
|
2019-09-27 23:29:14 +02:00
|
|
|
parking_lot = "0.9"
|
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" }
|
|
|
|
rlp_derive = { path = "../../util/rlp-derive" }
|
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"
|
2019-10-23 13:03:46 +02:00
|
|
|
parity-crypto = { version = "0.4.2", features = ["publickey"] }
|
2019-01-04 14:05:46 +01:00
|
|
|
rustc-hex = "1.0"
|
|
|
|
tempdir = "0.3"
|
2020-02-03 19:00:23 +01:00
|
|
|
kvdb-memorydb = "0.3.1"
|