e8b418ca03
* Bump version. * Fix RPC crate. * Fix BoxFuture in crates. * Compiles and passes tests! * Get rid of .boxed() * Fixing issues with the UI. * Remove minihttp. Support threads. * Reimplement files serving to do it in chunks. * Increase chunk size. * Remove some unecessary copying. * Fix tests. * Fix stratum warning and ipfs todo. * Switch to proper branch of jsonrpc. * Update Cargo.lock. * Update docs. * Include dapps-glue in workspace. * fixed merge artifacts * Fix test compilation.
21 lines
562 B
TOML
21 lines
562 B
TOML
[package]
|
|
authors = ["Parity <admin@parity.io>"]
|
|
description = "Parity Rpc Client"
|
|
homepage = "http://parity.io"
|
|
license = "GPL-3.0"
|
|
name = "parity-rpc-client"
|
|
version = "1.4.0"
|
|
|
|
[dependencies]
|
|
futures = "0.1"
|
|
log = "0.3.6"
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
url = "1.2.0"
|
|
matches = "0.1"
|
|
parking_lot = "0.4"
|
|
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.8" }
|
|
jsonrpc-ws-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.8" }
|
|
parity-rpc = { path = "../rpc" }
|
|
hash = { path = "../util/hash" }
|