2019-08-29 14:46:54 -07:00
|
|
|
[package]
|
2020-06-22 19:34:11 -07:00
|
|
|
name = "zebra-test"
|
2022-09-19 14:21:27 -07:00
|
|
|
version = "1.0.0-beta.15"
|
2020-06-22 19:34:11 -07:00
|
|
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
Enforce Rust edition 2021 (#3332)
* Rust edition 2021: zebra-network, cargo fix --edition and clippy --fix
* Rust edition 2021: zebra-chain, cargo fix --edition
* Rust edition 2021: tower-batch, cargo fix --edition
* Rust edition 2021: tower-fallback, cargo fix --edition
* Rust edition 2021: zebra-client, cargo fix --edition
* Rust edition 2021: zebra-consensus, cargo fix --edition
* Rust edition 2021: zebra-rpc, cargo fix --edition
* Rust edition 2021: zebra-state, cargo fix --edition
* Rust edition 2021: zebra-state, cargo fix --edition
* Rust edition 2021: zebra-test, cargo fix --edition
* Rust edition 2021: zebra-utils, cargo fix --edition
* Rust edition 2021: zebrad, cargo fix --edition
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2022-01-14 04:10:18 -08:00
|
|
|
edition = "2021"
|
2019-08-29 14:46:54 -07:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-03-04 02:01:44 -08:00
|
|
|
hex = "0.4.3"
|
2022-06-27 00:37:36 -07:00
|
|
|
indexmap = "1.9.1"
|
2020-06-02 16:16:17 -07:00
|
|
|
lazy_static = "1.4.0"
|
2022-09-28 17:22:39 -07:00
|
|
|
insta = "1.21.0"
|
2021-06-22 14:59:06 -07:00
|
|
|
proptest = "0.10.1"
|
2022-09-22 13:22:22 -07:00
|
|
|
once_cell = "1.15.0"
|
2022-03-06 18:07:25 -08:00
|
|
|
rand = { version = "0.8.5", package = "rand" }
|
2022-08-01 02:07:08 -07:00
|
|
|
regex = "1.6.0"
|
2021-06-22 14:59:06 -07:00
|
|
|
|
2022-09-28 17:22:13 -07:00
|
|
|
tokio = { version = "1.21.2", features = ["full", "tracing", "test-util"] }
|
2022-06-21 10:12:19 -07:00
|
|
|
tower = { version = "0.4.13", features = ["util"] }
|
2022-09-03 18:15:31 -07:00
|
|
|
futures = "0.3.24"
|
2021-06-22 14:59:06 -07:00
|
|
|
|
2022-09-26 15:23:59 -07:00
|
|
|
color-eyre = "0.6.2"
|
2022-08-03 16:42:50 -07:00
|
|
|
# This is a transitive dependency via color-eyre.
|
|
|
|
# Enable a feature that makes tinyvec compile much faster.
|
2022-08-04 15:03:24 -07:00
|
|
|
tinyvec = { version = "1.6.0", features = ["rustc_1_55"] }
|
2022-08-03 16:42:50 -07:00
|
|
|
|
2022-08-28 16:52:19 -07:00
|
|
|
humantime = "2.1.0"
|
2022-09-04 20:31:53 -07:00
|
|
|
owo-colors = "3.5.0"
|
2022-04-28 00:08:30 -07:00
|
|
|
spandoc = "0.2.2"
|
2022-09-29 04:37:48 -07:00
|
|
|
thiserror = "1.0.37"
|
2022-08-28 16:52:19 -07:00
|
|
|
|
2022-09-21 21:50:56 -07:00
|
|
|
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
|
2022-05-31 20:53:51 -07:00
|
|
|
tracing-error = "0.2.0"
|
2022-09-27 20:17:49 -07:00
|
|
|
tracing = "0.1.36"
|
2020-06-22 21:00:20 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-01-14 07:11:23 -08:00
|
|
|
tempfile = "3.3.0"
|