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
123 lines
3.9 KiB
TOML
123 lines
3.9 KiB
TOML
[package]
|
|
description = "Parity Ethereum (EthCore) Library"
|
|
homepage = "http://parity.io"
|
|
license = "GPL-3.0"
|
|
name = "ethcore"
|
|
version = "1.12.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
ansi_term = "0.10"
|
|
blooms-db = { path = "../util/blooms-db", optional = true }
|
|
bn = { git = "https://github.com/paritytech/bn", default-features = false }
|
|
byteorder = "1.0"
|
|
common-types = { path = "types" }
|
|
crossbeam = "0.4"
|
|
derive_more = "0.14.0"
|
|
env_logger = { version = "0.5", optional = true }
|
|
ethabi = "8.0"
|
|
ethabi-contract = "8.0"
|
|
ethabi-derive = "8.0"
|
|
ethash = { path = "../ethash" }
|
|
ethcore-blockchain = { path = "./blockchain" }
|
|
ethcore-bloom-journal = { path = "../util/bloom" }
|
|
ethcore-call-contract = { path = "./call-contract" }
|
|
ethcore-db = { path = "./db" }
|
|
ethcore-io = { path = "../util/io" }
|
|
ethcore-miner = { path = "../miner" }
|
|
ethcore-stratum = { path = "../miner/stratum", optional = true }
|
|
ethereum-types = "0.6.0"
|
|
ethjson = { path = "../json" }
|
|
ethkey = { path = "../accounts/ethkey" }
|
|
evm = { path = "evm" }
|
|
futures = "0.1"
|
|
hash-db = "0.12.4"
|
|
parity-util-mem = "0.1"
|
|
itertools = "0.5"
|
|
journaldb = { path = "../util/journaldb" }
|
|
keccak-hash = "0.2.0"
|
|
keccak-hasher = { path = "../util/keccak-hasher" }
|
|
kvdb = "0.1"
|
|
kvdb-memorydb = "0.1"
|
|
kvdb-rocksdb = { version = "0.1.3", optional = true }
|
|
lazy_static = "1.2.0"
|
|
len-caching-lock = { path = "../util/len-caching-lock" }
|
|
log = "0.4"
|
|
lru-cache = "0.1"
|
|
macros = { path = "../util/macros" }
|
|
memory-cache = { path = "../util/memory-cache" }
|
|
memory-db = "0.12.4"
|
|
num = { version = "0.1", default-features = false, features = ["bigint"] }
|
|
num_cpus = "1.2"
|
|
parity-bytes = "0.1"
|
|
parity-crypto = "0.4.0"
|
|
parity-snappy = "0.1"
|
|
parking_lot = "0.7"
|
|
trie-db = "0.12.4"
|
|
patricia-trie-ethereum = { path = "../util/patricia-trie-ethereum" }
|
|
rand = "0.6"
|
|
rayon = "1.0"
|
|
rlp = "0.4.0"
|
|
rlp_derive = { path = "../util/rlp-derive" }
|
|
rustc-hex = "1.0"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
stats = { path = "../util/stats" }
|
|
tempdir = { version = "0.3", optional = true }
|
|
time-utils = { path = "../util/time-utils" }
|
|
trace-time = "0.1"
|
|
triehash-ethereum = { version = "0.2", path = "../util/triehash-ethereum" }
|
|
unexpected = { path = "../util/unexpected" }
|
|
using_queue = { path = "../miner/using-queue" }
|
|
vm = { path = "vm" }
|
|
wasm = { path = "wasm" }
|
|
rand_xorshift = "0.1.1"
|
|
|
|
[dev-dependencies]
|
|
blooms-db = { path = "../util/blooms-db" }
|
|
criterion = "0.2"
|
|
env_logger = "0.5"
|
|
ethcore-accounts = { path = "../accounts" }
|
|
fetch = { path = "../util/fetch" }
|
|
kvdb-rocksdb = "0.1.3"
|
|
parity-runtime = { path = "../util/runtime" }
|
|
rlp_compress = { path = "../util/rlp-compress" }
|
|
tempdir = "0.3"
|
|
trie-standardmap = "0.12.4"
|
|
|
|
[features]
|
|
parity = ["work-notify", "price-info", "stratum"]
|
|
# Large optional features that are enabled by default for Parity,
|
|
# but might be omitted for other dependent crates.
|
|
work-notify = ["ethcore-miner/work-notify"]
|
|
price-info = ["ethcore-miner/price-info"]
|
|
stratum = ["ethcore-stratum"]
|
|
|
|
# Disables seal verification for mined blocks.
|
|
# This allows you to submit any seal via RPC to test and benchmark
|
|
# how fast pending block get's created while running on the mainnet.
|
|
miner-debug = []
|
|
# Display EVM debug traces.
|
|
evm-debug = ["evm/evm-debug"]
|
|
# Display EVM debug traces when running tests.
|
|
evm-debug-tests = ["evm-debug", "evm/evm-debug-tests"]
|
|
# Measure time of transaction execution.
|
|
# Whenever the transaction execution time (in millis) exceeds the value of
|
|
# SLOW_TX_DURATION env variable (provided compile time!)
|
|
# EVM debug traces are printed.
|
|
slow-blocks = []
|
|
# Run JSON consensus tests.
|
|
json-tests = ["env_logger", "test-helpers", "to-pod-full"]
|
|
# Skip JSON consensus tests with pending issues.
|
|
ci-skip-tests = []
|
|
# Run memory/cpu heavy tests.
|
|
test-heavy = []
|
|
# Compile test helpers
|
|
test-helpers = ["tempdir", "kvdb-rocksdb", "blooms-db"]
|
|
# Enables slow 'to-pod-full' method for use in tests and evmbin.
|
|
to-pod-full = []
|
|
|
|
[[bench]]
|
|
name = "builtin"
|
|
harness = false
|