18 lines
547 B
TOML
18 lines
547 B
TOML
[package]
|
|
name = "zebra-network"
|
|
version = "0.1.0"
|
|
authors = ["Henry de Valence <hdevalence@hdevalence.ca>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rand = "0.7"
|
|
byteorder = "1.3"
|
|
chrono = "0.4"
|
|
failure = "0.1"
|
|
tokio = "=0.2.0-alpha.5"
|
|
tracing = { git = "https://github.com/tokio-rs/tracing" }
|
|
tracing-futures = { git = "https://github.com/tokio-rs/tracing", features = ["tokio-alpha"], default-features = false }
|
|
|
|
zebra-chain = { path = "../zebra-chain" } |