1acc8031ce
* flush work * flush work * flush work * flush work * generalized notifiers * general setup with modules * general setup with modules * all binded * catch up with master * all dependencies injected * stratum another up * tcp update * submitwork routine * finalize & fix warnings * merge bugs, review fixes * merge bugs, review fixes * new cli mess cleanup * usage.txt swap * flush work * cli adopt * compilation with new cli sorted * subid space in json * serialization issues * grumbles addressed * more grumbles * remove last_work note for now * fix compilation * fix tests * merge bugs * no obliged ipc * moving notifiers * no optional feature now * refactored again * working on tests * refactor to new tcp/ip * stratum lib ok * ethcore crate ok * wip on tests * final test working * fix warnings, \n-terminated response * new compatibility * re-pushing work once anybody submitted * various review and general fixes * reviewe fixes * remove redundant notifier * one symbol -> huge bug * ensure write lock isn't held when calling handlers * extern declarations moved * options to stratum mod, SocketAddr strongly-typed instantiation * Minor style fix. * Whitespace and phrasing * Whitespace
64 lines
1.6 KiB
TOML
64 lines
1.6 KiB
TOML
[package]
|
|
description = "Ethcore library"
|
|
homepage = "http://parity.io"
|
|
license = "GPL-3.0"
|
|
name = "ethcore"
|
|
version = "1.6.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
"ethcore-ipc-codegen" = { path = "../ipc/codegen" }
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
env_logger = "0.3"
|
|
rustc-serialize = "0.3"
|
|
heapsize = "0.3"
|
|
rust-crypto = "0.2.34"
|
|
num_cpus = "0.2"
|
|
crossbeam = "0.2.9"
|
|
lazy_static = "0.2"
|
|
bloomchain = "0.1"
|
|
semver = "0.5"
|
|
bit-set = "0.4"
|
|
time = "0.1"
|
|
rand = "0.3"
|
|
byteorder = "0.5"
|
|
transient-hashmap = "0.1"
|
|
linked-hash-map = "0.3.0"
|
|
evmjit = { path = "../evmjit", optional = true }
|
|
clippy = { version = "0.0.103", optional = true}
|
|
ethash = { path = "../ethash" }
|
|
ethcore-util = { path = "../util" }
|
|
ethcore-io = { path = "../util/io" }
|
|
ethcore-devtools = { path = "../devtools" }
|
|
ethjson = { path = "../json" }
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
|
ethstore = { path = "../ethstore" }
|
|
ethkey = { path = "../ethkey" }
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
|
rlp = { path = "../util/rlp" }
|
|
ethcore-stratum = { path = "../stratum" }
|
|
lru-cache = "0.1.0"
|
|
ethcore-bloom-journal = { path = "../util/bloom" }
|
|
ethabi = "0.2.2"
|
|
|
|
[dependencies.hyper]
|
|
git = "https://github.com/ethcore/hyper"
|
|
default-features = false
|
|
|
|
[features]
|
|
jit = ["evmjit"]
|
|
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 = []
|
|
ethkey-cli = ["ethkey/cli"]
|
|
ethstore-cli = ["ethstore/cli"]
|