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-12-14 17:21:00 -08:00
|
|
|
version = "1.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-12-03 19:52:37 -08:00
|
|
|
tokio = { version = "0.3.4", features = ["time", "rt-multi-thread", "stream", "macros", "tracing", "signal"] }
|
2020-11-19 11:54:20 -08:00
|
|
|
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-12-03 02:02:13 -08:00
|
|
|
color-eyre = { version = "0.5.10", 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"
|
2020-12-02 13:41:06 -08:00
|
|
|
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-12-01 02:01:02 -08:00
|
|
|
inferno = { version = "0.10.2", default-features = false }
|
2020-11-30 17:08:55 -08:00
|
|
|
atty = "0.2.14"
|
2020-02-14 13:38:33 -08:00
|
|
|
|
2020-12-08 15:40:04 -08:00
|
|
|
sentry = { version = "0.21.0", default-features = false, features = ["backtrace", "contexts", "reqwest", "rustls"] }
|
2020-12-04 14:23:43 -08:00
|
|
|
sentry-tracing = { git = "https://github.com/kellpossible/sentry-tracing.git", rev = "f1a4a4a16b5ff1022ae60be779eb3fb928ce9b0f" }
|
2020-12-04 00:47:52 -08:00
|
|
|
|
2020-12-01 12:13:20 -08:00
|
|
|
[build-dependencies]
|
|
|
|
vergen = "3.1.0"
|
|
|
|
|
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" }
|
2020-11-22 21:12:12 -08:00
|
|
|
|
|
|
|
[features]
|
2020-12-04 02:07:16 -08:00
|
|
|
enable-sentry = []
|
2020-11-22 21:12:12 -08:00
|
|
|
test_sync_to_sapling_mainnet = []
|
|
|
|
test_sync_to_sapling_testnet = []
|
|
|
|
test_sync_past_sapling_mainnet = []
|
|
|
|
test_sync_past_sapling_testnet = []
|