2019-08-29 14:46:54 -07:00
|
|
|
[package]
|
2020-06-22 19:34:11 -07:00
|
|
|
name = "zebra-test"
|
2024-08-27 18:07:37 -07:00
|
|
|
version = "1.0.0-beta.39"
|
2020-06-22 19:34:11 -07:00
|
|
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
2023-06-13 01:46:01 -07:00
|
|
|
description = "Test harnesses and test vectors for Zebra"
|
2020-06-22 19:34:11 -07:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-06-13 01:46:01 -07:00
|
|
|
repository = "https://github.com/ZcashFoundation/zebra"
|
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
|
|
|
|
2023-06-13 01:46:01 -07:00
|
|
|
readme = "../README.md"
|
|
|
|
homepage = "https://zfnd.org/zebra/"
|
|
|
|
# crates.io is limited to 5 keywords and categories
|
|
|
|
keywords = ["zebra", "zcash"]
|
|
|
|
# Must be one of <https://crates.io/category_slugs>
|
|
|
|
categories = ["command-line-utilities", "cryptography::cryptocurrencies"]
|
2019-08-29 14:46:54 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2021-03-04 02:01:44 -08:00
|
|
|
hex = "0.4.3"
|
2024-08-09 03:32:22 -07:00
|
|
|
indexmap = "2.3.0"
|
2020-06-02 16:16:17 -07:00
|
|
|
lazy_static = "1.4.0"
|
2024-05-20 12:50:59 -07:00
|
|
|
insta = "1.39.0"
|
|
|
|
itertools = "0.13.0"
|
2023-11-14 17:03:57 -08:00
|
|
|
proptest = "1.4.0"
|
2023-06-06 04:14:53 -07:00
|
|
|
once_cell = "1.18.0"
|
2023-06-27 08:32:30 -07:00
|
|
|
rand = "0.8.5"
|
2024-08-09 03:32:22 -07:00
|
|
|
regex = "1.10.6"
|
2021-06-22 14:59:06 -07:00
|
|
|
|
2024-07-29 17:15:26 -07:00
|
|
|
tokio = { version = "1.39.2", features = ["full", "tracing", "test-util"] }
|
2022-06-21 10:12:19 -07:00
|
|
|
tower = { version = "0.4.13", features = ["util"] }
|
2024-01-01 17:26:54 -08:00
|
|
|
futures = "0.3.30"
|
2021-06-22 14:59:06 -07:00
|
|
|
|
2024-03-21 11:23:41 -07:00
|
|
|
color-eyre = "0.6.3"
|
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.
|
2024-07-23 08:44:31 -07:00
|
|
|
tinyvec = { version = "1.8.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"
|
2024-01-01 17:26:54 -08:00
|
|
|
owo-colors = "4.0.0"
|
2022-04-28 00:08:30 -07:00
|
|
|
spandoc = "0.2.2"
|
2024-07-26 13:19:38 -07:00
|
|
|
thiserror = "1.0.63"
|
2022-08-28 16:52:19 -07:00
|
|
|
|
2023-11-26 19:26:29 -08:00
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
2022-05-31 20:53:51 -07:00
|
|
|
tracing-error = "0.2.0"
|
2023-10-16 13:13:38 -07:00
|
|
|
tracing = "0.1.39"
|
2020-06-22 21:00:20 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-08-09 03:32:22 -07:00
|
|
|
tempfile = "3.11.0"
|