2016-01-17 12:00:34 +01:00
|
|
|
[package]
|
2020-03-25 17:16:51 +01:00
|
|
|
description = "OpenEthereum Ethash & ProgPoW Implementations"
|
2016-01-17 12:00:34 +01:00
|
|
|
name = "ethash"
|
2018-04-25 16:25:43 +02:00
|
|
|
version = "1.12.0"
|
2016-12-11 19:43:58 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2016-01-17 12:00:34 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2019-08-23 15:32:58 +02:00
|
|
|
common-types = { path = "../ethcore/types" }
|
2017-09-25 19:45:33 +02:00
|
|
|
either = "1.0.0"
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
|
|
|
keccak-hash = "0.4.0"
|
2018-08-10 15:36:19 +02:00
|
|
|
log = "0.4"
|
|
|
|
memmap = "0.6"
|
2020-02-07 17:23:45 +01:00
|
|
|
parking_lot = "0.10.0"
|
2018-08-10 15:36:19 +02:00
|
|
|
primal = "0.2.3"
|
2020-02-07 17:23:45 +01:00
|
|
|
static_assertions = "1.1.0"
|
2017-07-18 14:14:42 +02:00
|
|
|
|
2018-03-14 12:26:20 +01:00
|
|
|
[dev-dependencies]
|
2019-09-05 19:28:01 +02:00
|
|
|
criterion = "0.3"
|
2020-02-21 15:10:00 +01:00
|
|
|
hex-literal = "0.2.1"
|
|
|
|
rustc-hex = "2.1.0"
|
2019-02-20 10:05:11 +01:00
|
|
|
serde_json = "1.0"
|
2020-03-29 22:31:17 +02:00
|
|
|
tempfile = "3.1"
|
2019-02-20 10:05:11 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
bench = []
|
2018-03-14 12:26:20 +01:00
|
|
|
|
2018-11-06 14:22:44 +01:00
|
|
|
[[bench]]
|
|
|
|
name = "basic"
|
|
|
|
harness = false
|
2019-09-24 11:45:28 +02:00
|
|
|
required-features = ['bench']
|
2019-02-20 10:05:11 +01:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "progpow"
|
|
|
|
harness = false
|
2019-09-24 11:45:28 +02:00
|
|
|
required-features = ['bench']
|