Cargo.toml 674 B
Newer Older
[package]
name = "rpc"
version = "0.1.0"
authors = ["Ethcore <[email protected]>"]
build = "build.rs"

[lib]

[dependencies]
log = "0.3"
serde = "0.8"
serde_json = "0.8"
rustc-serialize = "0.3"
serde_macros = { version = "0.8.0", optional = true }
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc.git" }
Svyatoslav Nikolsky's avatar
Svyatoslav Nikolsky committed
sync = { path = "../sync" }
serialization = { path = "../serialization" }
chain = { path = "../chain" }
primitives = { path = "../primitives" }

[build-dependencies]
serde_codegen = { version = "0.8.0", optional = true }

[features]
default = ["serde_codegen"]
nightly = ["serde_macros"]