e8b418ca03
* Bump version. * Fix RPC crate. * Fix BoxFuture in crates. * Compiles and passes tests! * Get rid of .boxed() * Fixing issues with the UI. * Remove minihttp. Support threads. * Reimplement files serving to do it in chunks. * Increase chunk size. * Remove some unecessary copying. * Fix tests. * Fix stratum warning and ipfs todo. * Switch to proper branch of jsonrpc. * Update Cargo.lock. * Update docs. * Include dapps-glue in workspace. * fixed merge artifacts * Fix test compilation.
87 lines
2.5 KiB
TOML
87 lines
2.5 KiB
TOML
[package]
|
|
description = "Ethcore library"
|
|
homepage = "http://parity.io"
|
|
license = "GPL-3.0"
|
|
name = "ethcore"
|
|
version = "1.8.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
"ethcore-ipc-codegen" = { path = "../ipc/codegen" }
|
|
|
|
[dependencies]
|
|
ansi_term = "0.9"
|
|
bloomchain = "0.1"
|
|
bn = { git = "https://github.com/paritytech/bn" }
|
|
byteorder = "1.0"
|
|
clippy = { version = "0.0.103", optional = true}
|
|
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-ipc = { path = "../ipc/rpc" }
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
|
ethcore-logger = { path = "../logger" }
|
|
ethcore-stratum = { path = "../stratum" }
|
|
ethcore-util = { path = "../util" }
|
|
ethcore-bigint = { path = "../util/bigint" }
|
|
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" }
|
|
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" }
|
|
hash = { path = "../util/hash" }
|
|
triehash = { path = "../util/triehash" }
|
|
semantic_version = { path = "../util/semantic_version" }
|
|
unexpected = { path = "../util/unexpected" }
|
|
|
|
[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 = []
|
|
dev = ["clippy"]
|
|
default = []
|
|
benches = []
|
|
ipc = []
|