openethereum/rpc/Cargo.toml

31 lines
727 B
TOML
Raw Normal View History

2016-01-26 13:14:22 +01:00
[package]
description = "Ethcore jsonrpc"
name = "ethcore-rpc"
version = "0.9.99"
2016-01-26 13:14:22 +01:00
license = "GPL-3.0"
authors = ["Ethcore <admin@ethcore.io"]
build = "build.rs"
2016-01-26 13:14:22 +01:00
[lib]
[dependencies]
2016-02-27 13:14:58 +01:00
serde = "0.7.0"
serde_json = "0.7.0"
jsonrpc-core = "1.2"
jsonrpc-http-server = "2.1"
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-23 10:47:57 +01:00
clippy = { version = "0.0.44", optional = true }
2016-02-08 10:58:08 +01:00
rustc-serialize = "0.3"
2016-02-27 13:14:58 +01:00
serde_macros = { version = "0.7.0", optional = true }
[build-dependencies]
2016-02-27 13:14:58 +01:00
serde_codegen = { version = "0.7.0", optional = true }
2016-02-19 00:50:23 +01:00
syntex = "0.29.0"
2016-02-12 22:01:23 +01:00
[features]
default = ["serde_codegen"]
nightly = ["serde_macros"]
2016-02-12 22:01:23 +01:00
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev"]