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
31 lines
849 B
TOML
31 lines
849 B
TOML
[package]
|
|
description = "Ethcore stratum lib"
|
|
name = "ethcore-stratum"
|
|
version = "1.6.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
ethcore-ipc-codegen = { path = "../ipc/codegen" }
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
|
|
jsonrpc-macros = { git = "https://github.com/ethcore/jsonrpc.git" }
|
|
jsonrpc-tcp-server = { git = "https://github.com/ethcore/jsonrpc.git" }
|
|
mio = { git = "https://github.com/ethcore/mio", branch = "v0.5.x" }
|
|
ethcore-util = { path = "../util" }
|
|
ethcore-devtools = { path = "../devtools" }
|
|
lazy_static = "0.2"
|
|
env_logger = "0.3"
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
|
semver = "0.5"
|
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
|
futures = "0.1"
|
|
tokio-core = "0.1"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
lto = false
|