forked from paritytech/jsonrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 887 Bytes
/
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
[package]
authors = ["Parity Technologies <[email protected]>"]
description = "TCP/IP server for JSON-RPC"
documentation = "https://docs.rs/jsonrpc-tcp-server/"
edition = "2018"
homepage = "https://github.com/paritytech/jsonrpc"
license = "MIT"
name = "jsonrpc-tcp-server"
repository = "https://github.com/paritytech/jsonrpc"
version = "16.0.0"
[dependencies]
futures01 = { version = "0.1", package = "futures" }
# TODO remove when we no longer need compat (use jsonrpc-core re-export instead)
futures03 = { version = "0.3", features = ["compat"], package = "futures" }
jsonrpc-core = { version = "16.0", path = "../core" }
jsonrpc-server-utils = { version = "16.0", path = "../server-utils" }
log = "0.4"
parking_lot = "0.11.0"
tokio-service = "0.1"
[dev-dependencies]
lazy_static = "1.0"
env_logger = "0.7"
[badges]
travis-ci = { repository = "paritytech/jsonrpc", branch = "master"}