parity-zcash/rpc/Cargo.toml

34 lines
870 B
TOML
Raw Normal View History

2016-12-07 02:30:31 -08:00
[package]
name = "rpc"
version = "0.1.0"
authors = ["Ethcore <admin@ethcore.io>"]
[lib]
[dependencies]
log = "0.4"
2017-05-05 05:36:54 -07:00
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
rustc-hex = "2"
tokio-core = "0.1.1"
2016-12-07 02:30:31 -08:00
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
2016-12-09 16:25:15 -08:00
jsonrpc-macros = { git = "https://github.com/ethcore/jsonrpc.git" }
2016-12-07 05:14:52 -08:00
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc.git" }
2016-12-09 16:25:15 -08:00
2016-12-07 11:39:12 -08:00
sync = { path = "../sync" }
serialization = { path = "../serialization" }
chain = { path = "../chain" }
primitives = { path = "../primitives" }
p2p = { path = "../p2p" }
network = { path = "../network" }
storage = { path = "../storage" }
db = { path = "../db" }
miner = { path = "../miner" }
2016-12-10 02:50:07 -08:00
verification = { path = "../verification" }
2016-12-10 10:24:39 -08:00
script = { path = "../script" }
2016-12-12 10:49:01 -08:00
keys = { path = "../keys" }
[dev-dependencies]
test-data = { path = "../test-data" }