6022c47b53
* docs: Update Readme with TOC, Contributor Guide and License sections * docs: Simplify package descriptions in Readme * docs: Fix typos * docs: Update Cargo package configs adding missing descriptions * fix: Remove machine since was accidental from diff branch. Fix contribting indentation. * fix: Fix formatting * remove details snippet since not code and formats badly * review-fix: Remove duplicate description * fix dot point formatting * fix: Add missing description to vm package * fix: Remove duplicate Code of Conduct and Contributor guidelines * docs: Update Contributing for consistency with other repos * docs: Update Readme to link to existing Code of Conduct and Contributor guidelines in .github folder * refactor: Add missing space * fix: Fix links to be markdown format * review-fix: Update CONTRIBUTING.md to link to Parity Ethereum Style Guide * docs: Fix type in .github/CONTRIBUTING.md Co-Authored-By: David <dvdplm@gmail.com> * docs: Fix typo in .github/CONTRIBUTING.md Co-Authored-By: David <dvdplm@gmail.com> * docs: Rephrase parity-clib/Cargo.toml Co-Authored-By: David <dvdplm@gmail.com> * review-fix: Fix whole paragraph * review-fix: Add comment to prevent direct pushes to master branch * review-fix: Change some rules to recommendations * Update .github/CONTRIBUTING.md Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * review-fix: Replace feature reduction with breaking changes dot point * review-fix: Rephrase what to do when reviewing PR * review-fix: Update parity-rpc package description and module rustdocs * docs: Add missing fullstop * review-fix: Update rustdoc section to show all packages first as default * review-fix: Rename Parity Util to Parity Core Libraries * review-fix: Rename readme too for the C bindings name change * review-fix: Remove some docs since we do not teach the reader Rust * review-fix: Wrap Parity Ethereum specific packages in a details section * review-fix: Separate tools that are in this repo vs those that are not * review-fix: Add link to ethabi on crates.io * review-fix: Remove unnecessary extra line talking about pushing to master * review-fix: Remove useless summary of parts of the rust book documentation section * docs: Update .github/CONTRIBUTING.md to specify two reviewers required Co-Authored-By: David <dvdplm@gmail.com> * docs: Update README.md with simplification Co-Authored-By: David <dvdplm@gmail.com> * docs: Update README.md renaming to Test Runner instead of just Run Co-Authored-By: David <dvdplm@gmail.com> * review-fix: Remove hardware wallet from docs * review-fix: Remove veto PR section of contributor doc * review-fix: Change to test generator title
47 lines
1.2 KiB
TOML
47 lines
1.2 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 = "8.0"
|
|
ethabi-derive = "8.0"
|
|
ethabi-contract = "8.0"
|
|
ethcore-call-contract = { path = "../ethcore/call-contract" }
|
|
ethereum-types = "0.6.0"
|
|
futures = "0.1"
|
|
parity-util-mem = "0.1"
|
|
keccak-hash = "0.2.0"
|
|
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 = "0.4.0"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
trace-time = "0.1"
|
|
transaction-pool = "2.0"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.5"
|
|
ethkey = { path = "../accounts/ethkey" }
|
|
rustc-hex = "1.0"
|
|
|
|
[features]
|
|
work-notify = ["ethash", "fetch", "hyper", "url"]
|