2016-01-26 13:14:22 +01:00
|
|
|
[package]
|
2017-04-13 16:32:07 +02:00
|
|
|
description = "Parity JSON-RPC servers."
|
|
|
|
name = "parity-rpc"
|
2017-10-12 23:44:02 +02:00
|
|
|
version = "1.9.0"
|
2016-01-26 13:14:22 +01:00
|
|
|
license = "GPL-3.0"
|
2016-12-11 19:14:42 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2016-01-26 13:14:22 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[dependencies]
|
2017-09-01 16:57:57 +02:00
|
|
|
ansi_term = "0.9"
|
2017-05-24 12:24:07 +02:00
|
|
|
cid = "0.2"
|
2017-10-17 14:50:53 +02:00
|
|
|
futures = "0.1.6"
|
2017-07-11 12:22:19 +02:00
|
|
|
futures-cpupool = "0.1"
|
2016-03-01 01:15:00 +01:00
|
|
|
log = "0.3"
|
2017-06-07 12:31:12 +02:00
|
|
|
multihash ="0.6"
|
2017-03-22 07:02:14 +01:00
|
|
|
order-stat = "0.1"
|
2017-09-02 20:09:13 +02:00
|
|
|
parking_lot = "0.4"
|
2017-05-24 12:24:07 +02:00
|
|
|
rand = "0.3"
|
|
|
|
rust-crypto = "0.2"
|
2017-07-06 11:36:15 +02:00
|
|
|
rustc-hex = "1.0"
|
2017-03-28 19:06:08 +02:00
|
|
|
semver = "0.6"
|
2017-07-06 11:36:15 +02:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
2016-12-22 18:26:39 +01:00
|
|
|
time = "0.1"
|
2017-11-16 17:34:23 +01:00
|
|
|
tiny-keccak = "1.3"
|
2017-05-06 13:24:18 +02:00
|
|
|
tokio-timer = "0.1"
|
2017-03-20 19:15:02 +01:00
|
|
|
transient-hashmap = "0.4"
|
2017-08-17 16:05:26 +02:00
|
|
|
itertools = "0.5"
|
2017-03-22 07:02:14 +01:00
|
|
|
|
2017-11-13 22:52:25 +01:00
|
|
|
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.9" }
|
|
|
|
jsonrpc-http-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.9" }
|
|
|
|
jsonrpc-ws-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.9" }
|
|
|
|
jsonrpc-ipc-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.9" }
|
|
|
|
jsonrpc-macros = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.9" }
|
|
|
|
jsonrpc-pubsub = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.9" }
|
2017-03-22 07:02:14 +01:00
|
|
|
|
2016-08-05 10:32:04 +02:00
|
|
|
ethcore-io = { path = "../util/io" }
|
2016-01-26 13:14:22 +01:00
|
|
|
ethcore-util = { path = "../util" }
|
2017-09-04 16:36:49 +02:00
|
|
|
ethcore-bigint = { path = "../util/bigint" }
|
2017-09-06 20:47:45 +02:00
|
|
|
ethcore-bytes = { path = "../util/bytes" }
|
2016-02-01 12:08:43 +01:00
|
|
|
ethcore = { path = "../ethcore" }
|
2016-09-22 14:48:22 +02:00
|
|
|
ethcrypto = { path = "../ethcrypto" }
|
2016-08-24 18:35:21 +02:00
|
|
|
ethkey = { path = "../ethkey" }
|
2016-08-10 17:57:40 +02:00
|
|
|
ethstore = { path = "../ethstore" }
|
2016-02-29 19:30:13 +01:00
|
|
|
ethash = { path = "../ethash" }
|
2016-02-01 12:08:43 +01:00
|
|
|
ethsync = { path = "../sync" }
|
2016-05-25 15:14:02 +02:00
|
|
|
ethjson = { path = "../json" }
|
|
|
|
ethcore-devtools = { path = "../devtools" }
|
2017-02-03 16:20:43 +01:00
|
|
|
ethcore-light = { path = "../ethcore/light" }
|
2017-03-22 06:23:40 +01:00
|
|
|
ethcore-logger = { path = "../logger" }
|
2017-08-28 14:11:55 +02:00
|
|
|
fetch = { path = "../util/fetch" }
|
|
|
|
node-health = { path = "../dapps/node-health" }
|
2017-03-22 07:02:14 +01:00
|
|
|
parity-reactor = { path = "../util/reactor" }
|
2017-08-28 14:11:55 +02:00
|
|
|
parity-updater = { path = "../updater" }
|
2017-12-22 14:37:39 +01:00
|
|
|
parity-version = { path = "../util/version" }
|
2016-09-01 14:49:12 +02:00
|
|
|
rlp = { path = "../util/rlp" }
|
2017-02-17 16:18:31 +01:00
|
|
|
stats = { path = "../util/stats" }
|
2017-08-28 14:11:55 +02:00
|
|
|
vm = { path = "../ethcore/vm" }
|
2017-11-10 19:04:55 +01:00
|
|
|
keccak-hash = { path = "../util/hash" }
|
2017-09-14 19:28:43 +02:00
|
|
|
hardware-wallet = { path = "../hw" }
|
2016-02-18 14:36:59 +01:00
|
|
|
|
2017-09-10 18:02:14 +02:00
|
|
|
[dev-dependencies]
|
2017-10-20 15:40:25 +02:00
|
|
|
pretty_assertions = "0.1"
|
2017-10-10 20:01:27 +02:00
|
|
|
macros = { path = "../util/macros" }
|
2017-09-10 18:02:14 +02:00
|
|
|
ethcore-network = { path = "../util/network" }
|
2017-10-12 15:36:27 +02:00
|
|
|
kvdb-memorydb = { path = "../util/kvdb-memorydb" }
|