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
51 lines
1.3 KiB
TOML
51 lines
1.3 KiB
TOML
[package]
|
|
description = "Parity Dapps crate"
|
|
name = "ethcore-dapps"
|
|
version = "1.6.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
rand = "0.3"
|
|
log = "0.3"
|
|
env_logger = "0.3"
|
|
futures = "0.1"
|
|
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
|
|
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc.git" }
|
|
hyper = { default-features = false, git = "https://github.com/ethcore/hyper" }
|
|
unicase = "1.3"
|
|
url = "1.0"
|
|
rustc-serialize = "0.3"
|
|
serde = "0.8"
|
|
serde_json = "0.8"
|
|
linked-hash-map = "0.3"
|
|
parity-dapps-glue = "1.4"
|
|
mime = "0.2"
|
|
mime_guess = "1.6.1"
|
|
time = "0.1.35"
|
|
serde_macros = { version = "0.8", optional = true }
|
|
zip = { version = "0.1", default-features = false }
|
|
ethcore-devtools = { path = "../devtools" }
|
|
ethcore-rpc = { path = "../rpc" }
|
|
ethcore-util = { path = "../util" }
|
|
fetch = { path = "../util/fetch" }
|
|
parity-ui = { path = "./ui" }
|
|
parity-hash-fetch = { path = "../hash-fetch" }
|
|
parity-reactor = { path = "../util/reactor" }
|
|
|
|
clippy = { version = "0.0.103", optional = true}
|
|
|
|
[build-dependencies]
|
|
serde_codegen = { version = "0.8", optional = true }
|
|
|
|
[features]
|
|
default = ["serde_codegen"]
|
|
nightly = ["serde_macros"]
|
|
dev = ["clippy", "ethcore-rpc/dev", "ethcore-util/dev"]
|
|
|
|
ui = ["parity-ui/no-precompiled-js"]
|
|
ui-precompiled = ["parity-ui/use-precompiled-js"]
|