2015-11-24 20:57:45 +01:00
|
|
|
[package]
|
2016-01-17 13:11:25 +01:00
|
|
|
description = "Ethcore library"
|
2016-12-11 19:14:42 +01:00
|
|
|
homepage = "http://parity.io"
|
2015-11-24 21:25:07 +01:00
|
|
|
license = "GPL-3.0"
|
2016-01-17 13:11:25 +01:00
|
|
|
name = "ethcore"
|
2018-04-25 16:25:43 +02:00
|
|
|
version = "1.12.0"
|
2016-12-11 19:14:42 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2015-11-24 22:21:31 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2018-01-17 11:45:29 +01:00
|
|
|
ansi_term = "0.10"
|
2018-06-20 15:13:07 +02:00
|
|
|
blooms-db = { path = "../util/blooms-db" }
|
2018-03-27 04:35:51 +02:00
|
|
|
bn = { git = "https://github.com/paritytech/bn", default-features = false }
|
2017-02-05 16:17:03 +01:00
|
|
|
byteorder = "1.0"
|
2017-07-12 13:09:17 +02:00
|
|
|
common-types = { path = "types" }
|
2018-12-11 13:30:21 +01:00
|
|
|
crossbeam = "0.4"
|
2016-07-30 15:38:44 +02:00
|
|
|
ethash = { path = "../ethash" }
|
2017-04-03 09:40:18 +02:00
|
|
|
ethcore-bloom-journal = { path = "../util/bloom" }
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-bytes = "0.1"
|
2018-10-09 22:07:25 +02:00
|
|
|
hashdb = "0.3.0"
|
|
|
|
memorydb = "0.3.0"
|
|
|
|
patricia-trie = "0.3.0"
|
2018-07-02 18:50:05 +02:00
|
|
|
patricia-trie-ethereum = { path = "../util/patricia-trie-ethereum" }
|
2018-10-22 09:40:50 +02:00
|
|
|
parity-crypto = "0.2"
|
2018-06-25 14:20:44 +02:00
|
|
|
error-chain = { version = "0.12", default-features = false }
|
2017-04-03 09:40:18 +02:00
|
|
|
ethcore-io = { path = "../util/io" }
|
|
|
|
ethcore-logger = { path = "../logger" }
|
2018-01-11 17:49:10 +01:00
|
|
|
ethcore-miner = { path = "../miner" }
|
2018-07-05 07:19:59 +02:00
|
|
|
ethcore-stratum = { path = "./stratum", optional = true }
|
2018-01-11 17:49:10 +01:00
|
|
|
ethcore-transaction = { path = "./transaction" }
|
2018-09-04 20:13:51 +02:00
|
|
|
ethereum-types = "0.4"
|
2017-10-16 06:05:54 +02:00
|
|
|
memory-cache = { path = "../util/memory_cache" }
|
2018-09-13 11:04:39 +02:00
|
|
|
ethabi = "6.0"
|
|
|
|
ethabi-derive = "6.0"
|
|
|
|
ethabi-contract = "6.0"
|
2017-04-03 09:40:18 +02:00
|
|
|
ethjson = { path = "../json" }
|
|
|
|
ethkey = { path = "../ethkey" }
|
|
|
|
ethstore = { path = "../ethstore" }
|
2017-07-12 13:09:17 +02:00
|
|
|
evm = { path = "evm" }
|
2017-08-30 16:04:47 +02:00
|
|
|
heapsize = "0.4"
|
2017-04-03 09:40:18 +02:00
|
|
|
itertools = "0.5"
|
2018-01-17 11:45:29 +01:00
|
|
|
lazy_static = "1.0"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2017-10-05 12:35:01 +02:00
|
|
|
lru-cache = "0.1"
|
2018-03-27 04:35:51 +02:00
|
|
|
num = { version = "0.1", default-features = false, features = ["bigint"] }
|
2017-04-03 09:40:18 +02:00
|
|
|
num_cpus = "1.2"
|
2017-09-26 14:19:08 +02:00
|
|
|
parity-machine = { path = "../machine" }
|
2018-12-11 17:22:55 +01:00
|
|
|
parking_lot = "0.7"
|
2018-04-04 14:05:21 +02:00
|
|
|
rayon = "1.0"
|
2018-02-09 09:32:06 +01:00
|
|
|
rand = "0.4"
|
2018-10-09 22:07:25 +02:00
|
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
2018-02-23 10:12:52 +01:00
|
|
|
rlp_compress = { path = "../util/rlp_compress" }
|
2017-08-20 06:01:46 +02:00
|
|
|
rlp_derive = { path = "../util/rlp_derive" }
|
2018-09-04 20:13:51 +02:00
|
|
|
kvdb = "0.1"
|
|
|
|
kvdb-memorydb = "0.1"
|
|
|
|
parity-snappy = "0.1"
|
2018-01-19 13:46:31 +01:00
|
|
|
stop-guard = { path = "../util/stop-guard" }
|
2017-10-10 20:01:27 +02:00
|
|
|
macros = { path = "../util/macros" }
|
2017-07-06 11:36:15 +02:00
|
|
|
rustc-hex = "1.0"
|
2017-04-03 09:40:18 +02:00
|
|
|
stats = { path = "../util/stats" }
|
2018-09-04 20:13:51 +02:00
|
|
|
trace-time = "0.1"
|
2017-07-29 17:12:07 +02:00
|
|
|
using_queue = { path = "../util/using_queue" }
|
2017-08-01 12:37:57 +02:00
|
|
|
vm = { path = "vm" }
|
|
|
|
wasm = { path = "wasm" }
|
2018-09-04 20:13:51 +02:00
|
|
|
keccak-hash = "0.1"
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
triehash-ethereum = { version = "0.2", path = "../util/triehash-ethereum" }
|
2017-09-05 12:14:03 +02:00
|
|
|
unexpected = { path = "../util/unexpected" }
|
2017-10-17 06:20:24 +02:00
|
|
|
journaldb = { path = "../util/journaldb" }
|
2018-07-02 18:50:05 +02:00
|
|
|
keccak-hasher = { path = "../util/keccak-hasher" }
|
2018-09-03 18:40:11 +02:00
|
|
|
kvdb-rocksdb = "0.1.3"
|
2018-11-25 20:12:59 +01:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2018-07-02 18:50:05 +02:00
|
|
|
tempdir = {version="0.3", optional = true}
|
2018-12-13 19:07:56 +01:00
|
|
|
len-caching-lock = { path = "../util/len-caching-lock" }
|
2015-12-02 21:49:57 +01:00
|
|
|
|
2018-06-26 09:03:38 +02:00
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "macos", target_os = "windows", target_os = "android"))'.dependencies]
|
|
|
|
hardware-wallet = { path = "../hw" }
|
|
|
|
|
|
|
|
[target.'cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows", target_os = "android")))'.dependencies]
|
|
|
|
fake-hardware-wallet = { path = "../util/fake-hardware-wallet" }
|
|
|
|
|
2018-02-19 12:03:54 +01:00
|
|
|
[dev-dependencies]
|
2018-11-18 00:06:34 +01:00
|
|
|
env_logger = "0.4"
|
2018-06-27 20:25:49 +02:00
|
|
|
tempdir = "0.3"
|
2018-09-04 20:13:51 +02:00
|
|
|
trie-standardmap = "0.1"
|
2018-11-06 14:22:44 +01:00
|
|
|
criterion = "0.2"
|
2018-02-19 12:03:54 +01:00
|
|
|
|
2016-01-17 13:11:25 +01:00
|
|
|
[features]
|
2018-07-13 12:36:58 +02:00
|
|
|
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"]
|
|
|
|
|
2018-07-13 16:20:24 +02:00
|
|
|
# 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 = []
|
2018-04-13 17:34:27 +02:00
|
|
|
# Display EVM debug traces.
|
2018-06-22 11:00:19 +02:00
|
|
|
evm-debug = ["evm/evm-debug"]
|
2018-04-13 17:34:27 +02:00
|
|
|
# Display EVM debug traces when running tests.
|
2017-12-29 15:29:18 +01:00
|
|
|
evm-debug-tests = ["evm-debug", "evm/evm-debug-tests"]
|
2018-04-13 17:34:27 +02:00
|
|
|
# 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.
|
2018-11-25 20:12:59 +01:00
|
|
|
json-tests = ["ethcore-transaction/json-tests", "test-helpers", "tempdir", "to-pod-full"]
|
2018-09-25 12:24:40 +02:00
|
|
|
# Skip JSON consensus tests with pending issues.
|
|
|
|
ci-skip-issue = []
|
2018-04-13 17:34:27 +02:00
|
|
|
# Run memory/cpu heavy tests.
|
2016-01-21 16:08:09 +01:00
|
|
|
test-heavy = []
|
2018-06-04 15:58:44 +02:00
|
|
|
# Compile test helpers
|
2018-06-25 11:21:45 +02:00
|
|
|
test-helpers = ["tempdir"]
|
2018-11-25 20:12:59 +01:00
|
|
|
# Enables slow 'to-pod-full' method for use in tests and evmbin.
|
|
|
|
to-pod-full = []
|
2018-11-06 14:22:44 +01:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "builtin"
|
|
|
|
harness = false
|