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)
30 lines
802 B
TOML
30 lines
802 B
TOML
[package]
|
|
description = "Ethcore Trusted Signer"
|
|
homepage = "http://ethcore.io"
|
|
license = "GPL-3.0"
|
|
name = "ethcore-signer"
|
|
version = "1.3.0"
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
rustc_version = "0.1"
|
|
|
|
[dependencies]
|
|
rand = "0.3.14"
|
|
jsonrpc-core = "2.1"
|
|
log = "0.3"
|
|
env_logger = "0.3"
|
|
ws = { git = "https://github.com/ethcore/ws-rs.git", branch = "mio-upstream-stable" }
|
|
ethcore-util = { path = "../util" }
|
|
ethcore-io = { path = "../util/io" }
|
|
ethcore-rpc = { path = "../rpc" }
|
|
parity-dapps-signer = { git = "https://github.com/ethcore/parity-ui.git", version = "1.4", optional = true}
|
|
|
|
clippy = { version = "0.0.80", optional = true}
|
|
|
|
[features]
|
|
dev = ["clippy"]
|
|
ui = ["parity-dapps-signer"]
|
|
use-precompiled-js = ["parity-dapps-signer/use-precompiled-js"]
|