zebra/zebra-network/Cargo.toml

26 lines
806 B
TOML
Raw Normal View History

[package]
name = "zebra-network"
version = "0.1.0"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
license = "MIT OR Apache-2.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitflags = "1.2"
bytes = "0.4"
rand = "0.7"
2019-09-13 05:29:17 -07:00
byteorder = "1.3"
chrono = "0.4"
2019-09-13 05:29:17 -07:00
failure = "0.1"
serde = { version = "1", features = ["serde_derive"] }
tokio = "=0.2.0-alpha.6"
tower = { git = "https://github.com/tower-rs/tower", branch = "v0.3.x" }
tracing = { git = "https://github.com/tokio-rs/tracing" }
tracing-futures = { git = "https://github.com/tokio-rs/tracing", features = ["tokio-alpha"], default-features = false }
futures-preview = { version = "=0.3.0-alpha.19", features = ["async-await"] }
zebra-chain = { path = "../zebra-chain" }