45f27cec34
* add more tx tests (#11038) * Fix parallel transactions race-condition (#10995) * Add blake2_f precompile (#11017) * [trace] introduce trace failed to Ext (#11019) * Edit publish-onchain.sh to use https (#11016) * Fix deadlock in network-devp2p (#11013) * EIP 1108: Reduce alt_bn128 precompile gas costs (#11008) * xDai chain support and nodes list update (#10989) * EIP 2028: transaction gas lowered from 68 to 16 (#10987) * EIP-1344 Add CHAINID op-code (#10983) * manual publish jobs for releases, no changes for nightlies (#10977) * [blooms-db] Fix benchmarks (#10974) * Verify transaction against its block during import (#10954) * Better error message for rpc gas price errors (#10931) * tx-pool: accept local tx with higher gas price when pool full (#10901) * Fix fork choice (#10837) * Cleanup unused vm dependencies (#10787) * Fix compilation on recent nightlies (#10991)
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[package]
|
|
description = "Parity Ethereum Miner Interface."
|
|
name = "ethcore-miner"
|
|
homepage = "http://parity.io"
|
|
license = "GPL-3.0"
|
|
version = "1.12.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
# Only work_notify, consider a separate crate
|
|
ethash = { path = "../ethash", optional = true }
|
|
fetch = { path = "../util/fetch", optional = true }
|
|
hyper = { version = "0.12", optional = true }
|
|
url = { version = "1", optional = true }
|
|
|
|
# Miner
|
|
ansi_term = "0.10"
|
|
common-types = { path = "../ethcore/types" }
|
|
error-chain = "0.12"
|
|
ethabi = "6.0"
|
|
ethabi-derive = "6.0"
|
|
ethabi-contract = "6.0"
|
|
ethcore-call-contract = { path = "../ethcore/call-contract" }
|
|
ethereum-types = "0.4"
|
|
futures = "0.1"
|
|
heapsize = "0.4"
|
|
keccak-hash = "0.1"
|
|
linked-hash-map = "0.5"
|
|
log = "0.4"
|
|
parity-runtime = { path = "../util/runtime" }
|
|
parking_lot = "0.7"
|
|
price-info = { path = "./price-info", optional = true }
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
|
trace-time = "0.1"
|
|
transaction-pool = "2.0.1"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.5"
|
|
ethkey = { path = "../accounts/ethkey" }
|
|
rustc-hex = "1.0"
|
|
|
|
[features]
|
|
work-notify = ["ethash", "fetch", "hyper", "url"]
|