[package]
edition = "2021"
rust-version = "1.85.1"
name = "zebra-test"
version = "4.0.0"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Test harnesses and test vectors for Zebra"
homepage = "https://zfnd.org/zebra/"
readme = "README.md"
keywords = [
"zebra",
"zcash",
]
categories = [
"command-line-utilities",
"cryptography::cryptocurrencies",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZcashFoundation/zebra"
[lib]
name = "zebra_test"
path = "src/lib.rs"
[[test]]
name = "command"
path = "tests/command.rs"
[[test]]
name = "transcript"
path = "tests/transcript.rs"
[dependencies.color-eyre]
version = "0.6.3"
default-features = false
[dependencies.futures]
version = "0.3.31"
[dependencies.hex]
version = "0.4.3"
[dependencies.humantime]
version = "2.2"
[dependencies.indexmap]
version = "2.8"
[dependencies.insta]
version = "1.42"
[dependencies.itertools]
version = "0.14"
[dependencies.lazy_static]
version = "1.4"
[dependencies.once_cell]
version = "1.21"
[dependencies.owo-colors]
version = "4.2.0"
[dependencies.proptest]
version = "1.6"
[dependencies.regex]
version = "1.11"
[dependencies.spandoc]
version = "0.2"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.44"
features = [
"full",
"tracing",
"test-util",
]
[dependencies.tower]
version = "0.4.13"
features = ["util"]
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-error]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3.19"
features = ["env-filter"]
[dev-dependencies.tempfile]
version = "3.20"
[target."cfg(windows)".dependencies.rand]
version = "0.8.5"
[lints.clippy]
await_holding_lock = "warn"
await_holding_refcell_ref = "warn"
cast_ptr_alignment = "warn"
checked_conversions = "warn"
dbg_macro = "warn"
fallible_impl_from = "warn"
fn_to_numeric_cast_any = "warn"
implicit_saturating_sub = "warn"
invalid_upcast_comparisons = "warn"
print_stderr = "warn"
print_stdout = "warn"
range_minus_one = "warn"
range_plus_one = "warn"
result_large_err = "allow"
todo = "warn"
try_err = "allow"
unnecessary_cast = "warn"
unwrap_in_result = "warn"
[lints.rust]
missing_docs = "warn"
non_ascii_idents = "deny"
unsafe_code = "deny"
[lints.rust.future_incompatible]
level = "warn"
priority = -1
[lints.rust.nonstandard_style]
level = "warn"
priority = -1
[lints.rust.rust_2021_compatibility]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(tokio_unstable)",
'cfg(zcash_unstable, values("zfuture", "nu6.1", "nu7"))',
]