cbcc369a2d
* Full API in Authenticated WS server. * Replacing UI server with Hyper. * Solving CLI, RPCs and tests. * Porting signer tests. * Fixing origin recognition for dapps/rpc. * Fixing tests. Adding parity-rpc-client to test. * Dapps exposed as RPC method. * JS code to support new connection scheme. * Fixing dapps tests. * Updating allowed origins/hosts to support web3.site. * Fixing tests, fixing UI. * Fixing tests. * Removing invalid tests. * Fixing merge. * 404 fallback for UI * Improve ContentFetcher constructor readability. * Naming. * Update .gitlab-ci.yml fix CI lint error * Fixing tests and linting issues. * Fixing new tests. * UI hosts. * Submodules fix.
22 lines
580 B
TOML
22 lines
580 B
TOML
[package]
|
|
authors = ["Ethcore <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"
|
|
rand = "0.3.14"
|
|
serde = "0.9"
|
|
serde_json = "0.9"
|
|
tempdir = "0.3.5"
|
|
url = "1.2.0"
|
|
matches = "0.1"
|
|
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.7" }
|
|
jsonrpc-ws-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.7" }
|
|
parity-rpc = { path = "../rpc" }
|
|
ethcore-util = { path = "../util" }
|