forked from paritytech/jsonrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (24 loc) · 909 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]
description = "Blazing fast http server for JSON-RPC 2.0."
homepage = "https://github.com/paritytech/jsonrpc"
repository = "https://github.com/paritytech/jsonrpc"
license = "MIT"
name = "jsonrpc-minihttp-server"
version = "8.0.1"
authors = ["tomusdrw <tomasz@parity.io>"]
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"]
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_minihttp_server/index.html"
[dependencies]
bytes = "0.4"
jsonrpc-core = { version = "8.0", path = "../core" }
jsonrpc-server-utils = { version = "8.0", path = "../server-utils" }
log = "0.4"
parking_lot = "0.5"
tokio-minihttp = { git = "https://github.com/tomusdrw/tokio-minihttp" }
tokio-proto = { git = "https://github.com/tomusdrw/tokio-proto" }
tokio-service = "0.1"
[dev-dependencies]
env_logger = "0.5"
reqwest = "0.6"
[badges]
travis-ci = { repository = "paritytech/jsonrpc", branch = "master"}