dfb2ddfdc2
* RPC errors & logs (#1845) * Refactoring errors in RPC * Updating jsonrpc-core * Fixing code_at * Avoid mentioning obvious segments in proof [ci:skip] * fixed cache_manager lock order * Purging .derefs, fixing clippy warnings. (#1890) * Fixing clippy warnings * Purging derefs * Simplifying engine derefs * Simplifying more engine derefs * Adding more details to miner log * fixed #1889, .DS_Store is no longer treated as key file (#1892) * fixed #1889, .DS_Store is no longer treated as key file * ethstore filters directories, hidden files and common system files * fixed compiling * fix regression with geth dir * fix regression with geth dir * Fix ipc compilation and add ipc feature to test targets (#1902) * fix compilation and add it to the ci run * no separator? * use quotes and spaces * RocksDB version bump * Don't return deleted nodes that are not yet flushed (#1908) * polling & connection timeouts (#1910) * Peers RPC + UI displaying active/connected/max peers (#1915) * Peers API * Bumping Parity-UI * Fixing tests * Save nodes removed from backing_overlay until commit (#1917)
47 lines
1.5 KiB
TOML
47 lines
1.5 KiB
TOML
[package]
|
|
description = "Parity Dapps crate"
|
|
name = "ethcore-dapps"
|
|
version = "1.3.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Ethcore <admin@ethcore.io"]
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
jsonrpc-core = "2.1"
|
|
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc-http-server.git" }
|
|
hyper = { default-features = false, git = "https://github.com/ethcore/hyper" }
|
|
unicase = "1.3"
|
|
url = "1.0"
|
|
rustc-serialize = "0.3"
|
|
serde = "0.7.0"
|
|
serde_json = "0.7.0"
|
|
serde_macros = { version = "0.7.0", optional = true }
|
|
ethcore-rpc = { path = "../rpc" }
|
|
ethcore-util = { path = "../util" }
|
|
parity-dapps = { git = "https://github.com/ethcore/parity-ui.git", version = "1.4" }
|
|
# List of apps
|
|
parity-dapps-status = { git = "https://github.com/ethcore/parity-ui.git", version = "1.4" }
|
|
parity-dapps-home = { git = "https://github.com/ethcore/parity-ui.git", version = "1.4" }
|
|
parity-dapps-wallet = { git = "https://github.com/ethcore/parity-ui.git", version = "1.4", optional = true }
|
|
mime_guess = { version = "1.6.1" }
|
|
clippy = { version = "0.0.80", optional = true}
|
|
|
|
[build-dependencies]
|
|
serde_codegen = { version = "0.7.0", optional = true }
|
|
syntex = "*"
|
|
|
|
[features]
|
|
default = ["serde_codegen", "extra-dapps"]
|
|
extra-dapps = ["parity-dapps-wallet"]
|
|
nightly = ["serde_macros"]
|
|
dev = ["clippy", "ethcore-rpc/dev", "ethcore-util/dev"]
|
|
|
|
use-precompiled-js = [
|
|
"parity-dapps-status/use-precompiled-js",
|
|
"parity-dapps-home/use-precompiled-js",
|
|
"parity-dapps-wallet/use-precompiled-js"
|
|
]
|