2019-08-29 14:46:54 -07:00
|
|
|
[package]
|
|
|
|
name = "zebrad"
|
2019-10-08 09:25:59 -07:00
|
|
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
2020-07-24 11:12:23 -07:00
|
|
|
version = "3.0.0-alpha.0"
|
2019-08-29 14:46:54 -07:00
|
|
|
edition = "2018"
|
2020-09-17 15:09:18 -07:00
|
|
|
repository = "https://github.com/ZcashFoundation/zebra"
|
2019-08-29 14:46:54 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2020-07-14 10:17:05 -07:00
|
|
|
zebra-chain = { path = "../zebra-chain" }
|
|
|
|
zebra-consensus = { path = "../zebra-consensus/" }
|
|
|
|
zebra-network = { path = "../zebra-network" }
|
|
|
|
zebra-state = { path = "../zebra-state" }
|
|
|
|
|
2019-12-20 11:20:04 -08:00
|
|
|
abscissa_core = "0.5"
|
|
|
|
gumdrop = "0.7"
|
2019-08-29 14:46:54 -07:00
|
|
|
serde = { version = "1", features = ["serde_derive"] }
|
2019-09-09 13:05:42 -07:00
|
|
|
toml = "0.5"
|
2020-07-14 10:17:05 -07:00
|
|
|
chrono = "0.4"
|
|
|
|
rand = "0.7"
|
|
|
|
|
2020-11-19 12:54:31 -08:00
|
|
|
hyper = { version = "0.14.0-dev", features = ["full"] }
|
2019-12-13 14:25:14 -08:00
|
|
|
futures = "0.3"
|
2020-11-19 11:54:20 -08:00
|
|
|
tokio = { version = "0.3", features = ["time", "rt-multi-thread", "stream", "macros", "tracing", "signal"] }
|
|
|
|
tower = { version = "0.4", features = ["hedge", "limit"] }
|
2020-09-09 14:45:05 -07:00
|
|
|
pin-project = "0.4.23"
|
2019-08-29 14:46:54 -07:00
|
|
|
|
2020-11-06 02:01:28 -08:00
|
|
|
color-eyre = { version = "0.5.7", features = ["issue-url"] }
|
2020-07-14 10:17:05 -07:00
|
|
|
thiserror = "1"
|
2020-09-09 14:45:05 -07:00
|
|
|
|
2019-10-08 21:10:01 -07:00
|
|
|
tracing = "0.1"
|
2019-12-13 14:25:14 -08:00
|
|
|
tracing-futures = "0.2"
|
2020-09-09 14:45:05 -07:00
|
|
|
tracing-flame = "0.1.0"
|
2020-11-04 16:33:15 -08:00
|
|
|
tracing-subscriber = { version = "0.2.15", features = ["tracing-log"] }
|
2020-07-14 10:17:05 -07:00
|
|
|
tracing-error = "0.1.2"
|
2020-11-19 12:54:31 -08:00
|
|
|
metrics = "0.13.0-alpha.8"
|
|
|
|
metrics-exporter-prometheus = "0.1.0-alpha.7"
|
2020-09-09 14:45:05 -07:00
|
|
|
|
2020-07-23 04:12:20 -07:00
|
|
|
dirs = "3.0.1"
|
2020-10-06 02:01:26 -07:00
|
|
|
inferno = { version = "0.10.1", default-features = false }
|
2020-02-14 13:38:33 -08:00
|
|
|
|
2019-12-20 11:20:04 -08:00
|
|
|
[dev-dependencies]
|
|
|
|
abscissa_core = { version = "0.5", features = ["testing"] }
|
2020-11-13 02:01:37 -08:00
|
|
|
once_cell = "1.5"
|
2020-08-22 16:45:03 -07:00
|
|
|
tempdir = "0.3.7"
|
2020-07-31 23:15:26 -07:00
|
|
|
zebra-test = { path = "../zebra-test" }
|