2016-01-26 13:14:22 +01:00
|
|
|
[package]
|
|
|
|
description = "Ethcore jsonrpc"
|
|
|
|
name = "ethcore-rpc"
|
2016-08-09 11:40:57 +02:00
|
|
|
version = "1.4.0"
|
2016-01-26 13:14:22 +01:00
|
|
|
license = "GPL-3.0"
|
2016-01-27 17:18:38 +01:00
|
|
|
authors = ["Ethcore <admin@ethcore.io"]
|
2016-02-18 14:36:59 +01:00
|
|
|
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-09-01 12:00:00 +02:00
|
|
|
serde = "0.8"
|
|
|
|
serde_json = "0.8"
|
|
|
|
jsonrpc-core = "3.0"
|
2016-06-01 18:00:40 +02:00
|
|
|
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc-http-server.git" }
|
2016-08-05 10:32:04 +02:00
|
|
|
ethcore-io = { path = "../util/io" }
|
2016-01-26 13:14:22 +01:00
|
|
|
ethcore-util = { path = "../util" }
|
2016-02-01 12:08:43 +01:00
|
|
|
ethcore = { path = "../ethcore" }
|
2016-09-22 14:48:22 +02:00
|
|
|
ethcrypto = { path = "../ethcrypto" }
|
2016-08-24 18:35:21 +02:00
|
|
|
ethkey = { path = "../ethkey" }
|
2016-08-10 17:57:40 +02:00
|
|
|
ethstore = { path = "../ethstore" }
|
2016-02-29 19:30:13 +01:00
|
|
|
ethash = { path = "../ethash" }
|
2016-02-01 12:08:43 +01:00
|
|
|
ethsync = { path = "../sync" }
|
2016-05-25 15:14:02 +02:00
|
|
|
ethjson = { path = "../json" }
|
|
|
|
ethcore-devtools = { path = "../devtools" }
|
2016-09-01 14:49:12 +02:00
|
|
|
rlp = { path = "../util/rlp" }
|
2016-09-27 16:27:06 +02:00
|
|
|
fetch = { path = "../util/fetch" }
|
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-09-01 12:00:00 +02:00
|
|
|
serde_macros = { version = "0.8.0", optional = true }
|
2016-10-27 08:28:12 +02:00
|
|
|
clippy = { version = "0.0.96", optional = true}
|
2016-06-01 20:32:16 +02:00
|
|
|
json-ipc-server = { git = "https://github.com/ethcore/json-ipc-server.git" }
|
2016-07-07 09:39:32 +02:00
|
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
2016-08-23 17:07:00 +02:00
|
|
|
time = "0.1"
|
2016-02-18 14:36:59 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2016-09-01 12:00:00 +02:00
|
|
|
serde_codegen = { version = "0.8.0", optional = true }
|
2016-02-12 22:01:23 +01:00
|
|
|
|
|
|
|
[features]
|
2016-02-18 14:36:59 +01:00
|
|
|
default = ["serde_codegen"]
|
|
|
|
nightly = ["serde_macros"]
|
2016-05-31 20:54:02 +02:00
|
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev"]
|