2019-08-29 14:46:54 -07:00
|
|
|
[package]
|
|
|
|
name = "zebra-network"
|
2020-07-24 11:12:23 -07:00
|
|
|
version = "3.0.0-alpha.0"
|
2019-10-08 09:25:59 -07:00
|
|
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
2019-08-29 14:46:54 -07:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2019-09-30 11:58:32 -07:00
|
|
|
bitflags = "1.2"
|
2019-09-13 05:29:17 -07:00
|
|
|
byteorder = "1.3"
|
2020-11-19 11:54:20 -08:00
|
|
|
bytes = "0.6"
|
2019-09-11 19:24:16 -07:00
|
|
|
chrono = "0.4"
|
2019-10-15 16:38:44 -07:00
|
|
|
hex = "0.4"
|
|
|
|
# indexmap has rayon support for parallel iteration,
|
2019-10-10 18:15:24 -07:00
|
|
|
# which we don't use, so disable it to drop the dependencies.
|
2020-09-07 02:01:15 -07:00
|
|
|
indexmap = { version = "1.6", default-features = false }
|
2019-10-15 16:38:44 -07:00
|
|
|
pin-project = "0.4"
|
|
|
|
rand = "0.7"
|
|
|
|
serde = { version = "1", features = ["serde_derive"] }
|
2019-10-16 22:56:25 -07:00
|
|
|
thiserror = "1"
|
2019-10-08 21:10:01 -07:00
|
|
|
|
2020-07-21 01:41:18 -07:00
|
|
|
futures = "0.3"
|
2020-12-03 19:52:37 -08:00
|
|
|
tokio = { version = "0.3.4", features = ["net", "time", "stream", "tracing", "macros", "rt-multi-thread"] }
|
2020-11-19 11:54:20 -08:00
|
|
|
tokio-util = { version = "0.5", features = ["codec"] }
|
|
|
|
tower = { version = "0.4", features = ["retry", "discover", "load", "load-shed", "timeout", "util", "buffer"] }
|
2019-10-07 15:36:16 -07:00
|
|
|
|
2020-02-14 13:38:33 -08:00
|
|
|
metrics = "0.12"
|
2020-07-21 01:41:18 -07:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-futures = "0.2"
|
|
|
|
tracing-error = { version = "0.1.2", features = ["traced-error"] }
|
2020-02-14 13:38:33 -08:00
|
|
|
|
2019-10-07 15:36:16 -07:00
|
|
|
zebra-chain = { path = "../zebra-chain" }
|
2020-07-21 01:41:18 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
proptest = "0.10"
|
|
|
|
proptest-derive = "0.2.0"
|
2020-07-15 02:15:52 -07:00
|
|
|
|
|
|
|
zebra-test = { path = "../zebra-test/" }
|