-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
43 lines (38 loc) · 1.43 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
description = "Aion JSON-RPC servers."
name = "aion-rpc"
version = "0.1.0"
license = "GPL-3.0"
authors = ["Aion Foundation <admin@aion.network>"]
[dependencies]
futures = "0.1.6"
log = "0.3"
order-stat = "0.1"
parking_lot = "0.5"
rustc-hex = "1.0"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tiny-keccak = "1.4.2"
blake2b = { path = "../util/blake2b"}
trace-time = { path = "../util/trace-time" }
tokio = "0.1.13"
transient-hashmap = "0.4"
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-2.2" }
jsonrpc-http-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-2.2" }
jsonrpc-ws-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-2.2" }
jsonrpc-ipc-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-2.2" }
jsonrpc-macros = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-2.2" }
jsonrpc-pubsub = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-2.2" }
acore = { path = "../core" }
acore-bytes = { path = "../util/bytes" }
aion-types = { path = "../util/aion-types"}
ethbloom = { path = "../util/ethbloom"}
key = { path = "../keystore/key" }
aion-version = { path = "../util/version" }
rlp = { path = "../util/rlp" }
stats = { path = "../util/stats" }
solidity = { path = "../vms/solidity" }
[dev-dependencies]
pretty_assertions = "0.1"
#macros = { path = "../util/macros" }