8282c7dd50
* btree map serializer * serde tests * state diff serialization * basic layout * more missing serializaers * uncle returns rlp * block queue info * sorting with transaction result * sorting out util imports * transaction import result sorting also * sorting filters & ranges * error sorting out * deriving ipc service compiling * rpc & sync recompile * sorting rpc using uncles * fix compilation * fix merging bugs * fix unused imports * fix all warnings * tests stub * some merge bugs * ethcore compilation * fix rpc compilation * deriving attribute * tests (and fixes) * rpc test working * fix warnings again * rs.in -> rs * missing attribute * refactored tree changes * paste reformat mess fix * pub mod actually * intendation fix
38 lines
1.0 KiB
TOML
38 lines
1.0 KiB
TOML
[package]
|
|
description = "Ethcore jsonrpc"
|
|
name = "ethcore-rpc"
|
|
version = "1.3.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Ethcore <admin@ethcore.io"]
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
serde = "0.7.0"
|
|
serde_json = "0.7.0"
|
|
jsonrpc-core = "2.0"
|
|
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc-http-server.git" }
|
|
ethcore-util = { path = "../util" }
|
|
ethcore = { path = "../ethcore" }
|
|
ethash = { path = "../ethash" }
|
|
ethsync = { path = "../sync" }
|
|
ethjson = { path = "../json" }
|
|
ethcore-devtools = { path = "../devtools" }
|
|
rustc-serialize = "0.3"
|
|
transient-hashmap = "0.1"
|
|
serde_macros = { version = "0.7.0", optional = true }
|
|
clippy = { version = "0.0.78", optional = true}
|
|
json-ipc-server = { git = "https://github.com/ethcore/json-ipc-server.git" }
|
|
ethcore-ipc = { path = "../ipc/rpc" }
|
|
|
|
[build-dependencies]
|
|
serde_codegen = { version = "0.7.0", optional = true }
|
|
syntex = "*"
|
|
|
|
[features]
|
|
default = ["serde_codegen"]
|
|
nightly = ["serde_macros"]
|
|
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev"]
|