2018-01-11 17:49:10 +01:00
|
|
|
[package]
|
|
|
|
description = "Parity Miner interface."
|
|
|
|
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-01-11 17:49:10 +01:00
|
|
|
ethash = { path = "../ethash" }
|
2018-04-13 17:34:27 +02:00
|
|
|
fetch = { path = "../util/fetch" }
|
|
|
|
hyper = "0.11"
|
|
|
|
parity-reactor = { path = "../util/reactor" }
|
|
|
|
url = "1"
|
|
|
|
|
|
|
|
# Miner
|
|
|
|
ansi_term = "0.10"
|
|
|
|
error-chain = "0.11"
|
2018-01-11 17:49:10 +01:00
|
|
|
ethcore-transaction = { path = "../ethcore/transaction" }
|
2018-04-02 13:12:52 +02:00
|
|
|
ethereum-types = "0.3"
|
2018-01-11 17:49:10 +01:00
|
|
|
futures = "0.1"
|
2018-04-13 17:34:27 +02:00
|
|
|
futures-cpupool = "0.1"
|
2018-01-11 17:49:10 +01:00
|
|
|
heapsize = "0.4"
|
|
|
|
keccak-hash = { path = "../util/hash" }
|
|
|
|
linked-hash-map = "0.5"
|
|
|
|
log = "0.3"
|
2018-01-19 13:46:11 +01:00
|
|
|
parking_lot = "0.5"
|
2018-04-13 17:34:27 +02:00
|
|
|
price-info = { path = "../price-info" }
|
2018-04-27 15:02:45 +02:00
|
|
|
rlp = { path = "../util/rlp" }
|
2018-04-13 17:34:27 +02:00
|
|
|
trace-time = { path = "../util/trace-time" }
|
|
|
|
transaction-pool = { path = "../transaction-pool" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
env_logger = "0.4"
|
|
|
|
ethkey = { path = "../ethkey" }
|
2018-01-11 17:49:10 +01:00
|
|
|
rustc-hex = "1.0"
|