2018-01-11 17:49:10 +01:00
|
|
|
[package]
|
2020-09-22 14:53:52 +02:00
|
|
|
description = "OpenEthereum Miner Interface."
|
2018-01-11 17:49:10 +01:00
|
|
|
name = "ethcore-miner"
|
2020-09-22 14:53:52 +02:00
|
|
|
homepage = "https://github.com/openethereum/openethereum"
|
2018-01-11 17:49:10 +01:00
|
|
|
license = "GPL-3.0"
|
2018-04-25 16:25:43 +02:00
|
|
|
version = "1.12.0"
|
2018-01-11 17:49:10 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
|
|
|
|
[dependencies]
|
2018-04-13 17:34:27 +02:00
|
|
|
# Only work_notify, consider a separate crate
|
2021-01-13 18:03:12 +01:00
|
|
|
ethash = { path = "../../concensus/ethash", optional = true }
|
|
|
|
fetch = { path = "../../net/fetch", optional = true }
|
2018-10-22 09:40:50 +02:00
|
|
|
hyper = { version = "0.12", optional = true }
|
2019-11-11 21:57:38 +01:00
|
|
|
url = { version = "2", optional = true }
|
2018-04-13 17:34:27 +02:00
|
|
|
|
|
|
|
# Miner
|
|
|
|
ansi_term = "0.10"
|
2021-01-13 18:03:12 +01:00
|
|
|
common-types = { path = "../../ethcore/types" }
|
2018-06-25 14:20:44 +02:00
|
|
|
error-chain = "0.12"
|
2019-01-16 19:52:21 +01:00
|
|
|
ethabi = "6.0"
|
|
|
|
ethabi-derive = "6.0"
|
|
|
|
ethabi-contract = "6.0"
|
2021-01-13 18:03:12 +01:00
|
|
|
ethcore-call-contract = { path = "../../vm/call-contract" }
|
2018-09-04 20:13:51 +02:00
|
|
|
ethereum-types = "0.4"
|
2018-01-11 17:49:10 +01:00
|
|
|
futures = "0.1"
|
|
|
|
heapsize = "0.4"
|
2018-09-04 20:13:51 +02:00
|
|
|
keccak-hash = "0.1"
|
2018-01-11 17:49:10 +01:00
|
|
|
linked-hash-map = "0.5"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2021-01-13 18:03:12 +01:00
|
|
|
parity-runtime = { path = "../../runtime/runtime" }
|
2018-12-11 17:22:55 +01:00
|
|
|
parking_lot = "0.7"
|
2018-12-28 10:33:49 +01:00
|
|
|
price-info = { path = "./price-info", optional = true }
|
2018-10-09 22:07:25 +02:00
|
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
2018-09-04 20:13:51 +02:00
|
|
|
trace-time = "0.1"
|
2019-09-12 18:43:53 +02:00
|
|
|
transaction-pool = "2.0.1"
|
2018-04-13 17:34:27 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-08-10 01:04:10 +02:00
|
|
|
env_logger = "0.5"
|
2021-01-13 18:03:12 +01:00
|
|
|
ethkey = { path = "../../accounts/ethkey" }
|
2018-01-11 17:49:10 +01:00
|
|
|
rustc-hex = "1.0"
|
2018-07-05 07:19:59 +02:00
|
|
|
|
|
|
|
[features]
|
2018-10-22 09:40:50 +02:00
|
|
|
work-notify = ["ethash", "fetch", "hyper", "url"]
|