41 lines
985 B
TOML
41 lines
985 B
TOML
[package]
|
|
name = "zebrad"
|
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
rand = "0.7"
|
|
chrono = "0.4"
|
|
abscissa_core = "0.5"
|
|
gumdrop = "0.7"
|
|
serde = { version = "1", features = ["serde_derive"] }
|
|
toml = "0.5"
|
|
thiserror = "1"
|
|
|
|
tokio = { version = "0.2", features = ["time", "rt-threaded", "stream", "macros"] }
|
|
futures = "0.3"
|
|
|
|
tracing = "0.1"
|
|
tracing-futures = "0.2"
|
|
tracing-log = "0.1"
|
|
|
|
hyper = "0.13.6"
|
|
|
|
tower = "0.3"
|
|
|
|
metrics-runtime = "0.13"
|
|
metrics = "0.12"
|
|
|
|
zebra-chain = { path = "../zebra-chain" }
|
|
zebra-network = { path = "../zebra-network" }
|
|
zebra-state = { path = "../zebra-state" }
|
|
tracing-subscriber = { version = "0.2.6", features = ["tracing-log"] }
|
|
tracing-error = "0.1.2"
|
|
color-eyre = { git = "https://github.com/yaahc/color-eyre.git", branch = "hooked", features = ["capture-spantrace"] }
|
|
|
|
[dev-dependencies]
|
|
abscissa_core = { version = "0.5", features = ["testing"] }
|
|
once_cell = "1.4"
|