2018-01-11 17:49:10 +01:00
|
|
|
[package]
|
2019-06-25 08:15:13 +02:00
|
|
|
description = "Parity Ethereum Miner Interface."
|
2018-01-11 17:49:10 +01:00
|
|
|
name = "ethcore-miner"
|
|
|
|
homepage = "http://parity.io"
|
|
|
|
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
|
2018-07-05 07:19:59 +02:00
|
|
|
ethash = { path = "../ethash", optional = true }
|
|
|
|
fetch = { path = "../util/fetch", optional = true }
|
2018-10-22 09:40:50 +02:00
|
|
|
hyper = { version = "0.12", optional = true }
|
2019-10-02 10:25:51 +02:00
|
|
|
url = { version = "2", optional = true }
|
2018-04-13 17:34:27 +02:00
|
|
|
|
|
|
|
# Miner
|
2019-06-27 13:34:40 +02:00
|
|
|
ansi_term = "0.11"
|
2019-01-04 14:05:46 +01:00
|
|
|
common-types = { path = "../ethcore/types" }
|
2019-10-08 14:18:44 +02:00
|
|
|
ethabi = "9.0.1"
|
|
|
|
ethabi-derive = "9.0.1"
|
|
|
|
ethabi-contract = "9.0.0"
|
2019-01-16 19:52:21 +01:00
|
|
|
ethcore-call-contract = { path = "../ethcore/call-contract" }
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
2018-01-11 17:49:10 +01:00
|
|
|
futures = "0.1"
|
2020-02-07 17:23:45 +01:00
|
|
|
parity-util-mem = "0.5.1"
|
2019-10-08 14:18:44 +02:00
|
|
|
keccak-hash = "0.4.0"
|
2018-01-11 17:49:10 +01:00
|
|
|
linked-hash-map = "0.5"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2020-02-11 22:02:25 +01:00
|
|
|
parity-runtime = "0.1.1"
|
2020-02-07 17:23:45 +01:00
|
|
|
parking_lot = "0.10.0"
|
2018-12-28 10:33:49 +01:00
|
|
|
price-info = { path = "./price-info", optional = true }
|
2019-10-03 15:15:25 +02:00
|
|
|
registrar = { path = "../util/registrar" }
|
2019-06-03 15:36:21 +02:00
|
|
|
rlp = "0.4.0"
|
2019-04-12 13:36:49 +02:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
2018-09-04 20:13:51 +02:00
|
|
|
trace-time = "0.1"
|
2019-09-11 18:44:31 +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"
|
2020-02-10 18:29:21 +01:00
|
|
|
parity-crypto = { version = "0.5.0", features = ["publickey"] }
|
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"]
|