2b8b8851ab
* Update a few dependencies Updates two dependencies: `kvdb-rocksdb` and `h2`. Brings in `parking_lot 0.9` which is unintended but possibly fine. * Bump parking_lot to 0.9 Bump kvdb-memorydb to 0.2 (from git atm) * New kvdb-memorydb is not breaking * Remove [patch]
37 lines
652 B
TOML
37 lines
652 B
TOML
[package]
|
|
description = "Parity Ethereum Ethash & ProgPoW Implementations"
|
|
name = "ethash"
|
|
version = "1.12.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
common-types = { path = "../ethcore/types" }
|
|
either = "1.0.0"
|
|
ethereum-types = "0.6.0"
|
|
keccak-hash = "0.2.0"
|
|
log = "0.4"
|
|
memmap = "0.6"
|
|
parking_lot = "0.9"
|
|
primal = "0.2.3"
|
|
static_assertions = "0.3.3"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
rustc-hex = "1.0"
|
|
serde_json = "1.0"
|
|
tempdir = "0.3"
|
|
|
|
[features]
|
|
default = []
|
|
bench = []
|
|
|
|
[[bench]]
|
|
name = "basic"
|
|
harness = false
|
|
required-features = ['bench']
|
|
|
|
[[bench]]
|
|
name = "progpow"
|
|
harness = false
|
|
required-features = ['bench']
|