-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
52 lines (49 loc) · 1.52 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
44
45
46
47
48
49
50
51
52
[package]
name = "toyrpc"
version = "0.1.0"
authors = ["mmacedoeu <contato@mmacedo.eu.org>"]
description = "Toy starter kit http jsonrpc derived from Ethereum parity"
repository = "https://github.com/mmacedoeu/toyrpc.rs"
keywords = ["rpc", "blockchain","jsonrpc","json","http"]
categories = ["encoding", "date-and-time","data-structures","parsing","value-formatting"]
license-file = "LICENSE"
build = "build.rs"
[dependencies]
chrono = { version = "^0.2", features = ["serde"] }
error-chain = "0.10"
log = "0.3"
env_logger = "0.3"
lazy_static = "0.2"
parking_lot = "0.3"
arrayvec = "0.3"
ansi_term = "0.7"
futures = "0.1"
futures-cpupool = "0.1"
order-stat = "0.1"
bigint = "1.0"
heapsize = "0.3"
rand = "0.3.12"
libc = "0.2"
rustc-serialize = "0.3"
serde = "1.0.10"
serde_json = "1.0.2"
serde_derive = "1.0.10"
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "master" }
jsonrpc-http-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "master" }
jsonrpc-macros = { git = "https://github.com/paritytech/jsonrpc.git", branch = "master" }
ethcore-io = { path = "crates/util/io" }
parity-reactor = { path = "crates/util/reactor" }
ethcore-logger = { path = "crates/logger" }
rulid = "^0.3.0"
ctrlc = { version = "3.0", features = ["termination"] }
fdlimit = "0.1"
app_dirs = "1.1.1"
number_prefix = "0.2"
clap = "2.22"
target_info = "0.1"
clippy = { version = "0.0.103", optional = true}
[target.'cfg(not(windows))'.dependencies]
daemonize = "0.2"
[build-dependencies]
vergen = "0.1"
rustc_version = "0.1"