openethereum/rpc/Cargo.toml

22 lines
594 B
TOML
Raw Normal View History

2016-01-26 13:14:22 +01:00
[package]
description = "Ethcore jsonrpc"
name = "ethcore-rpc"
2016-02-03 17:35:25 +01:00
version = "0.9.0"
2016-01-26 13:14:22 +01:00
license = "GPL-3.0"
authors = ["Ethcore <admin@ethcore.io"]
2016-01-26 13:14:22 +01:00
[lib]
[dependencies]
serde = "0.6.7"
2016-02-14 12:54:27 +01:00
serde_macros = { git = "https://github.com/debris/serde", path = "serde_macros" }
2016-01-26 13:14:22 +01:00
serde_json = "0.6.0"
2016-02-14 12:54:27 +01:00
jsonrpc-core = { git = "https://github.com/debris/jsonrpc-core" }
jsonrpc-http-server = { git = "https://github.com/debris/jsonrpc-http-server" }
2016-01-26 13:14:22 +01:00
ethcore-util = { path = "../util" }
2016-02-01 12:08:43 +01:00
ethcore = { path = "../ethcore" }
ethsync = { path = "../sync" }
2016-02-13 22:58:41 +01:00
clippy = "0.0.41"
2016-02-03 17:30:02 +01:00
target_info = "0.1.0"
2016-02-08 10:58:08 +01:00
rustc-serialize = "0.3"