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)
39 lines
1.0 KiB
TOML
39 lines
1.0 KiB
TOML
[package]
|
|
description = "Ethcore jsonrpc"
|
|
name = "ethcore-rpc"
|
|
version = "1.3.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Ethcore <admin@ethcore.io"]
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
serde = "0.7.0"
|
|
serde_json = "0.7.0"
|
|
jsonrpc-core = "2.1"
|
|
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc-http-server.git" }
|
|
ethcore-io = { path = "../util/io" }
|
|
ethcore-util = { path = "../util" }
|
|
ethcore = { path = "../ethcore" }
|
|
ethash = { path = "../ethash" }
|
|
ethsync = { path = "../sync" }
|
|
ethjson = { path = "../json" }
|
|
ethcore-devtools = { path = "../devtools" }
|
|
rustc-serialize = "0.3"
|
|
transient-hashmap = "0.1"
|
|
serde_macros = { version = "0.7.0", optional = true }
|
|
clippy = { version = "0.0.80", optional = true}
|
|
json-ipc-server = { git = "https://github.com/ethcore/json-ipc-server.git" }
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
|
|
|
[build-dependencies]
|
|
serde_codegen = { version = "0.7.0", optional = true }
|
|
syntex = "*"
|
|
|
|
[features]
|
|
default = ["serde_codegen"]
|
|
nightly = ["serde_macros"]
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev"]
|