openethereum/rpc/Cargo.toml

36 lines
1013 B
TOML
Raw Normal View History

2016-01-26 13:14:22 +01:00
[package]
description = "Ethcore jsonrpc"
name = "ethcore-rpc"
2016-05-02 15:01:22 +02:00
version = "1.2.0"
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-03-01 01:15:00 +01:00
log = "0.3"
2016-02-27 13:14:58 +01:00
serde = "0.7.0"
serde_json = "0.7.0"
2016-05-06 14:40:24 +02:00
jsonrpc-core = "2.0"
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc-http-server.git", branch = "multiple_cors_domains" }
2016-01-26 13:14:22 +01:00
ethcore-util = { path = "../util" }
2016-02-01 12:08:43 +01:00
ethcore = { path = "../ethcore" }
2016-02-29 19:30:13 +01:00
ethash = { path = "../ethash" }
2016-02-01 12:08:43 +01:00
ethsync = { path = "../sync" }
ethminer = { path = "../miner" }
2016-02-08 10:58:08 +01:00
rustc-serialize = "0.3"
2016-02-27 15:56:41 +01:00
transient-hashmap = "0.1"
2016-02-27 13:14:58 +01:00
serde_macros = { version = "0.7.0", optional = true }
clippy = { version = "0.0.64", optional = true}
2016-05-06 12:58:37 +02:00
json-ipc-server = { git = "https://github.com/ethcore/json-ipc-server.git" }
[build-dependencies]
2016-02-27 13:14:58 +01:00
serde_codegen = { version = "0.7.0", optional = true }
2016-05-06 14:40:24 +02:00
syntex = "^0.32.0"
2016-02-12 22:01:23 +01:00
[features]
default = ["serde_codegen"]
nightly = ["serde_macros"]
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "ethminer/dev"]