dae5d75dd6
* cargo upgrade "ethereum-types" --all --allow-prerelease * [ethash] fix compilation errors * [ethkey] fix compilation errors * [journaldb] fix compilation errors * [dir] fix compilation errors * [ethabi] update to 0.7 * wip * [eip-712] fix compilation errors * [ethjson] fix compilation errors * [Cargo.toml] add TODO to remove patches * [ethstore] fix compilation errors * use patched keccak-hash with new primitive-types * wip * [ethcore-network-devp2p] fix compilation errors * [vm] fix compilation errors * [common-types, evm, wasm] fix compilation errors * [ethcore-db] Require AsRef instead of Deref for keys * [ethcore-blockchain] fix some compilation errors * [blooms-db] fix compilation errors Thanks a lot @dvdplm :) * we don't need no rlp ethereum feature * [ethcore] fix some compilation errors * [parity-ipfs-api] fix compilation error * [ethcore-light] fix compilation errors * [Cargo.lock] update parity-common * [ethcore-private-tx] fix some compilation errors * wip * [ethcore-private-tx] fix compilation errors * [parity-updater] fix compilation errors * [parity-rpc] fix compilation errors * [parity-bin] fix other compilation errors * update to new ethereum-types * update keccak-hash * [fastmap] fix compilation in tests * [blooms-db] fix compilation in tests * [common-types] fix compilation in tests * [triehash-ethereum] fix compilation in tests * [ethkey] fix compilation in tests * [pwasm-run-test] fix compilation errors * [wasm] fix compilation errors * [ethjson] fix compilation in tests * [eip-712] fix compilation in tests * [ethcore-blockchain] fix compilation in tests * [ethstore] fix compilation in tests * [ethstore-accounts] fix compilation in tests * [parity-hash-fetch] fix compilation in tests * [parity-whisper] fix compilation in tests * [ethcore-miner] fix compilation in tests * [ethcore-network-devp2p] fix compilation in tests * [*] upgrade rand to 0.6 * [evm] get rid of num-bigint conversions * [ethcore] downgrade trie-standardmap and criterion * [ethcore] fix some warnings * [ethcore] fix compilation in tests * [evmbin] fix compilation in tests * [updater] fix compilation in tests * [ethash] fix compilation in tests * [ethcore-secretstore] fix compilation in tests * [ethcore-sync] fix compilation in tests * [parity-rpc] fix compilation in tests * [ethcore] finally fix compilation in tests FUCK YEAH!!! * [ethstore] lazy_static is unused * [ethcore] fix test * fix up bad merge * [Cargo.toml] remove unused patches * [*] replace some git dependencies with crates.io * [Cargo.toml] remove unused lazy_static * [*] clean up * [ethcore] fix transaction_filter_deprecated test * [private-tx] fix serialization tests * fix more serialization tests * [ethkey] fix smoky test * [rpc] fix tests, please? * [ethcore] remove commented out code * Apply suggestions from code review Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * [ethstore] remove unused dev-dependency * [ethcore] remove resolved TODO * [*] resolve keccak-hash TODO * [*] s/Address::default()/Address::zero() * [rpc] remove Subscribers::new_test * [rpc] remove EthPubSubClient::new_test * [ethcore] use trie-standardmap from crates.io * [dir] fix db_root_path * [ethcore] simplify snapshot::tests::helpers::fill_storage * Apply suggestions from code review Co-Authored-By: David <dvdplm@gmail.com> * [ethcore-secretstore] resolve TODO in serialization * [ethcore-network-devp2p] resolve TODO in save_key * [Cargo.lock] update triehash * [*] use ethabi from crates.io * [ethkey] use secp256k1 from master branch * [Cargo.lock] update eth-secp256k1
123 lines
3.8 KiB
TOML
123 lines
3.8 KiB
TOML
[package]
|
|
description = "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.11.0"
|
|
heapsize = "0.4"
|
|
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.11.0"
|
|
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.11.0"
|
|
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.3"
|
|
|
|
[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
|