2016-01-26 13:14:22 +01:00
|
|
|
[package]
|
2019-06-25 08:15:13 +02:00
|
|
|
description = "Parity Ethereum JSON-RPC Servers (WS, HTTP, IPC)"
|
2017-04-13 16:32:07 +02:00
|
|
|
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]
|
2019-06-27 13:34:40 +02:00
|
|
|
ansi_term = "0.11"
|
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"
|
2019-10-18 15:12:16 +02:00
|
|
|
rand = "0.7"
|
|
|
|
rand_xorshift = "0.2"
|
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"
|
2020-02-07 17:23:45 +01:00
|
|
|
parking_lot = "0.10.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"
|
2020-02-07 17:23:45 +01:00
|
|
|
itertools = "0.8.2"
|
2017-03-22 07:02:14 +01:00
|
|
|
|
2019-12-06 16:39:56 +01:00
|
|
|
jsonrpc-core = "14.0.5"
|
|
|
|
jsonrpc-derive = "14.0.5"
|
|
|
|
jsonrpc-http-server = "14.0.5"
|
|
|
|
jsonrpc-ws-server = "14.0.5"
|
|
|
|
jsonrpc-ipc-server = "14.0.6"
|
|
|
|
jsonrpc-pubsub = "14.0.5"
|
2017-03-22 07:02:14 +01:00
|
|
|
|
2019-08-15 17:59:22 +02:00
|
|
|
client-traits = { path = "../ethcore/client-traits" }
|
2019-01-04 14:05:46 +01:00
|
|
|
common-types = { path = "../ethcore/types" }
|
2019-08-15 17:59:22 +02:00
|
|
|
engine = { path = "../ethcore/engine" }
|
2018-01-11 17:49:10 +01:00
|
|
|
ethash = { path = "../ethash" }
|
2019-09-13 11:13:41 +02:00
|
|
|
ethcore = { path = "../ethcore" }
|
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" }
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
2019-02-07 14:34:24 +01:00
|
|
|
fastmap = { path = "../util/fastmap" }
|
2019-08-13 12:33:34 +02:00
|
|
|
machine = { path = "../ethcore/machine" }
|
2019-02-07 14:34:24 +01:00
|
|
|
parity-bytes = "0.1"
|
2020-02-10 18:29:21 +01:00
|
|
|
parity-crypto = { version = "0.5.0", features = ["publickey"] }
|
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" }
|
2019-10-08 14:18:44 +02:00
|
|
|
keccak-hash = "0.4.0"
|
2020-02-11 22:02:25 +01:00
|
|
|
parity-runtime = { version = "0.1.1", features = ["test-helpers"] }
|
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" }
|
2019-06-03 15:36:21 +02:00
|
|
|
rlp = "0.4.0"
|
2019-07-08 18:17:48 +02:00
|
|
|
account-state = { path = "../ethcore/account-state" }
|
2019-09-03 11:29:25 +02:00
|
|
|
snapshot = { path = "../ethcore/snapshot" }
|
2017-02-17 16:18:31 +01:00
|
|
|
stats = { path = "../util/stats" }
|
2019-07-08 18:17:48 +02:00
|
|
|
trace = { path = "../ethcore/trace" }
|
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]
|
2019-08-13 12:33:34 +02:00
|
|
|
client-traits = { path = "../ethcore/client-traits" }
|
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" }
|
2019-09-10 20:46:50 +02:00
|
|
|
ethjson = { path = "../json", features = ["test-helpers"] }
|
2018-04-11 11:59:04 +02:00
|
|
|
fake-fetch = { path = "../util/fake-fetch" }
|
2020-02-19 13:07:33 +01:00
|
|
|
maplit = "1.0.2"
|
2019-08-27 17:29:33 +02:00
|
|
|
spec = { path = "../ethcore/spec" }
|
2018-04-13 17:34:27 +02:00
|
|
|
pretty_assertions = "0.1"
|
2019-09-11 18:44:31 +02:00
|
|
|
transaction-pool = "2.0.1"
|
2019-08-28 16:15:50 +02:00
|
|
|
verification = { path = "../ethcore/verification" }
|
2019-02-07 14:34:24 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
accounts = ["ethcore-accounts"]
|