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"
|
2018-04-25 16:25:43 +02:00
|
|
|
version = "1.12.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]
|
2018-01-17 11:45:29 +01:00
|
|
|
ansi_term = "0.10"
|
2018-10-22 09:40:50 +02:00
|
|
|
cid = "0.3"
|
2017-10-17 14:50:53 +02:00
|
|
|
futures = "0.1.6"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2018-10-22 09:40:50 +02:00
|
|
|
multihash = "0.8"
|
2017-03-22 07:02:14 +01:00
|
|
|
order-stat = "0.1"
|
2018-12-11 17:22:55 +01:00
|
|
|
parking_lot = "0.7"
|
2018-02-09 09:32:06 +01:00
|
|
|
rand = "0.4"
|
2017-07-06 11:36:15 +02:00
|
|
|
rustc-hex = "1.0"
|
2018-04-04 11:54:41 +02:00
|
|
|
semver = "0.9"
|
2017-07-06 11:36:15 +02:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
2018-01-19 17:32:53 +01:00
|
|
|
tempdir = "0.3"
|
2018-05-31 13:53:09 +02:00
|
|
|
tiny-keccak = "1.4"
|
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
|
|
|
|
2019-02-05 14:31:19 +01:00
|
|
|
jsonrpc-core = "10.0.1"
|
2019-02-05 15:47:25 +01:00
|
|
|
jsonrpc-derive = "10.0.2"
|
2019-02-05 14:31:19 +01:00
|
|
|
jsonrpc-http-server = "10.0.1"
|
|
|
|
jsonrpc-ws-server = "10.0.1"
|
|
|
|
jsonrpc-ipc-server = "10.0.1"
|
|
|
|
jsonrpc-pubsub = "10.0.1"
|
2017-03-22 07:02:14 +01:00
|
|
|
|
2019-01-04 14:05:46 +01:00
|
|
|
common-types = { path = "../ethcore/types" }
|
2018-01-11 17:49:10 +01:00
|
|
|
ethash = { path = "../ethash" }
|
2018-06-12 08:22:54 +02:00
|
|
|
ethcore = { path = "../ethcore", features = ["test-helpers"] }
|
2019-02-07 14:34:24 +01:00
|
|
|
ethcore-accounts = { path = "../accounts", optional = true }
|
2018-01-11 17:49:10 +01:00
|
|
|
ethcore-light = { path = "../ethcore/light" }
|
2019-01-08 15:07:20 +01:00
|
|
|
ethcore-logger = { path = "../parity/logger" }
|
2018-01-11 17:49:10 +01:00
|
|
|
ethcore-miner = { path = "../miner" }
|
2019-02-07 15:27:09 +01:00
|
|
|
ethcore-network = { path = "../util/network" }
|
2018-04-09 16:14:33 +02:00
|
|
|
ethcore-private-tx = { path = "../ethcore/private-tx" }
|
2018-04-10 12:13:49 +02:00
|
|
|
ethcore-sync = { path = "../ethcore/sync" }
|
2018-09-04 20:13:51 +02:00
|
|
|
ethereum-types = "0.4"
|
2019-02-07 14:34:24 +01:00
|
|
|
fastmap = { path = "../util/fastmap" }
|
|
|
|
parity-bytes = "0.1"
|
|
|
|
parity-crypto = "0.3.0"
|
2018-01-11 17:49:10 +01:00
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
eip-712 = { path = "../util/EIP-712" }
|
2018-01-11 17:49:10 +01:00
|
|
|
ethjson = { path = "../json" }
|
2018-12-28 10:33:49 +01:00
|
|
|
ethkey = { path = "../accounts/ethkey" }
|
|
|
|
ethstore = { path = "../accounts/ethstore" }
|
2017-08-28 14:11:55 +02:00
|
|
|
fetch = { path = "../util/fetch" }
|
2018-09-04 20:13:51 +02:00
|
|
|
keccak-hash = "0.1.2"
|
2018-10-22 09:40:50 +02:00
|
|
|
parity-runtime = { path = "../util/runtime" }
|
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" }
|
2018-10-09 22:07:25 +02:00
|
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
2017-02-17 16:18:31 +01:00
|
|
|
stats = { path = "../util/stats" }
|
2017-08-28 14:11:55 +02:00
|
|
|
vm = { path = "../ethcore/vm" }
|
2016-02-18 14:36:59 +01:00
|
|
|
|
2017-09-10 18:02:14 +02:00
|
|
|
[dev-dependencies]
|
2018-06-11 12:26:49 +02:00
|
|
|
ethcore = { path = "../ethcore", features = ["test-helpers"] }
|
2019-02-07 14:34:24 +01:00
|
|
|
ethcore-accounts = { path = "../accounts" }
|
2019-03-19 16:37:24 +01:00
|
|
|
ethcore-io = { path = "../util/io" }
|
2017-09-10 18:02:14 +02:00
|
|
|
ethcore-network = { path = "../util/network" }
|
2018-04-11 11:59:04 +02:00
|
|
|
fake-fetch = { path = "../util/fake-fetch" }
|
2018-04-13 17:34:27 +02:00
|
|
|
macros = { path = "../util/macros" }
|
|
|
|
pretty_assertions = "0.1"
|
2019-04-01 10:48:51 +02:00
|
|
|
transaction-pool = "2.0"
|
2019-02-07 14:34:24 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
accounts = ["ethcore-accounts"]
|