2019-08-29 14:46:54 -07:00
|
|
|
[package]
|
2020-06-22 19:34:11 -07:00
|
|
|
name = "zebra-test"
|
2022-07-30 13:20:43 -07:00
|
|
|
version = "1.0.0-beta.13"
|
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-08-04 08:44:44 -07:00
|
|
|
insta = "1.17.1"
|
2021-06-22 14:59:06 -07:00
|
|
|
proptest = "0.10.1"
|
2022-08-01 16:52:53 -07:00
|
|
|
once_cell = "1.13.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-08-02 18:01:45 -07:00
|
|
|
tokio = { version = "1.20.1", features = ["full", "tracing", "test-util"] }
|
2022-06-21 10:12:19 -07:00
|
|
|
tower = { version = "0.4.13", features = ["util"] }
|
2022-02-08 07:36:28 -08:00
|
|
|
futures = "0.3.21"
|
2021-06-22 14:59:06 -07:00
|
|
|
|
2022-05-31 20:53:51 -07:00
|
|
|
color-eyre = "0.6.1"
|
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-04-25 10:42:54 -07:00
|
|
|
owo-colors = "3.4.0"
|
2022-04-28 00:08:30 -07:00
|
|
|
spandoc = "0.2.2"
|
2022-08-05 08:02:11 -07:00
|
|
|
thiserror = "1.0.32"
|
2022-05-31 20:53:51 -07:00
|
|
|
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
|
|
|
|
tracing-error = "0.2.0"
|
2022-03-06 18:07:25 -08:00
|
|
|
tracing = "0.1.31"
|
2020-06-22 21:00:20 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-01-14 07:11:23 -08:00
|
|
|
tempfile = "3.3.0"
|