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

[lib]

[dependencies]
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
Svyatoslav Nikolsky's avatar
Svyatoslav Nikolsky committed
jsonrpc-core = { git = "https://github.com/svyatonik/jsonrpc.git" }
jsonrpc-macros = { git = "https://github.com/svyatonik/jsonrpc.git" }
jsonrpc-http-server = { git = "https://github.com/svyatonik/jsonrpc.git" }
Svyatoslav Nikolsky's avatar
Svyatoslav Nikolsky committed
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" }
verification = { path = "../verification" }
script = { path = "../script" }
keys = { path = "../keys" }

[dev-dependencies]
test-data = { path = "../test-data" }