87 lines
2.7 KiB
TOML
87 lines
2.7 KiB
TOML
[package]
|
|
description = "Ethcore library"
|
|
homepage = "http://parity.io"
|
|
license = "GPL-3.0"
|
|
name = "ethcore"
|
|
version = "1.9.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
ansi_term = "0.9"
|
|
bloomchain = "0.1"
|
|
bn = { git = "https://github.com/paritytech/bn" }
|
|
byteorder = "1.0"
|
|
common-types = { path = "types" }
|
|
crossbeam = "0.2.9"
|
|
ethash = { path = "../ethash" }
|
|
ethcore-bloom-journal = { path = "../util/bloom" }
|
|
ethcore-bytes = { path = "../util/bytes" }
|
|
hashdb = { path = "../util/hashdb" }
|
|
memorydb = { path = "../util/memorydb" }
|
|
patricia-trie = { path = "../util/patricia_trie" }
|
|
ethcore-devtools = { path = "../devtools" }
|
|
ethcore-io = { path = "../util/io" }
|
|
ethcore-logger = { path = "../logger" }
|
|
ethcore-stratum = { path = "../stratum" }
|
|
ethcore-util = { path = "../util" }
|
|
ethcore-bigint = { path = "../util/bigint" }
|
|
memory-cache = { path = "../util/memory_cache" }
|
|
ethjson = { path = "../json" }
|
|
ethkey = { path = "../ethkey" }
|
|
ethstore = { path = "../ethstore" }
|
|
evm = { path = "evm" }
|
|
futures = "0.1"
|
|
hardware-wallet = { path = "../hw" }
|
|
heapsize = "0.4"
|
|
hyper = { git = "https://github.com/paritytech/hyper", default-features = false }
|
|
itertools = "0.5"
|
|
lazy_static = "0.2"
|
|
linked-hash-map = "0.5"
|
|
log = "0.3"
|
|
lru-cache = "0.1"
|
|
native-contracts = { path = "native_contracts" }
|
|
num = "0.1"
|
|
num_cpus = "1.2"
|
|
parity-machine = { path = "../machine" }
|
|
parking_lot = "0.4"
|
|
price-info = { path = "../price-info" }
|
|
rayon = "0.8"
|
|
rand = "0.3"
|
|
rlp = { path = "../util/rlp" }
|
|
rlp_derive = { path = "../util/rlp_derive" }
|
|
kvdb = { path = "../util/kvdb" }
|
|
kvdb-rocksdb = { path = "../util/kvdb-rocksdb" }
|
|
kvdb-memorydb = { path = "../util/kvdb-memorydb" }
|
|
util-error = { path = "../util/error" }
|
|
snappy = { git = "https://github.com/paritytech/rust-snappy" }
|
|
migration = { path = "../util/migration" }
|
|
macros = { path = "../util/macros" }
|
|
rust-crypto = "0.2.34"
|
|
rustc-hex = "1.0"
|
|
stats = { path = "../util/stats" }
|
|
time = "0.1"
|
|
transient-hashmap = "0.4"
|
|
using_queue = { path = "../util/using_queue" }
|
|
table = { path = "../util/table" }
|
|
bloomable = { path = "../util/bloomable" }
|
|
vm = { path = "vm" }
|
|
wasm = { path = "wasm" }
|
|
keccak-hash = { path = "../util/hash" }
|
|
triehash = { path = "../util/triehash" }
|
|
semantic_version = { path = "../util/semantic_version" }
|
|
unexpected = { path = "../util/unexpected" }
|
|
journaldb = { path = "../util/journaldb" }
|
|
|
|
[dev-dependencies]
|
|
native-contracts = { path = "native_contracts", features = ["test_contracts"] }
|
|
|
|
[features]
|
|
jit = ["evm/jit"]
|
|
evm-debug = ["slow-blocks"]
|
|
evm-debug-tests = ["evm-debug"]
|
|
slow-blocks = [] # Use SLOW_TX_DURATION="50" (compile time!) to track transactions over 50ms
|
|
json-tests = []
|
|
test-heavy = []
|
|
default = []
|
|
benches = []
|