zebra/zebra-rpc/Cargo.toml

41 lines
1.1 KiB
TOML

[package]
name = "zebra-rpc"
version = "1.0.0-beta.0"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
zebra-chain = { path = "../zebra-chain" }
zebra-node-services = { path = "../zebra-node-services" }
zebra-network = { path = "../zebra-network" }
futures = "0.3.21"
# lightwalletd sends JSON-RPC requests over HTTP 1.1
hyper = { version = "0.14.17", features = ["http1", "server"] }
jsonrpc-core = "18.0.0"
jsonrpc-derive = "18.0.0"
jsonrpc-http-server = "18.0.0"
tokio = { version = "1.17.0", features = ["time", "rt-multi-thread", "macros", "tracing"] }
tower = "0.4.12"
tracing = "0.1.31"
tracing-futures = "0.2.5"
serde = { version = "1.0.136", features = ["serde_derive"] }
hex = "0.4.3"
[dev-dependencies]
proptest = "0.10.1"
thiserror = "1.0.30"
tokio = { version = "1.16.1", features = ["full", "test-util"] }
zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
zebra-test = { path = "../zebra-test/" }