[package]
edition = "2021"
rust-version = "1.85.0"
name = "zebra-script"
version = "5.0.1"
authors = ["Zcash Foundation <zebra@zfnd.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zebra script verification wrapping zcashd's zcash_script library"
homepage = "https://zfnd.org/zebra/"
readme = "README.md"
keywords = [
"zebra",
"zcash",
]
categories = [
"api-bindings",
"cryptography::cryptocurrencies",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZcashFoundation/zebra"
[features]
comparison-interpreter = []
default = []
[lib]
name = "zebra_script"
path = "src/lib.rs"
[dependencies.libzcash_script]
version = "0.1"
[dependencies.thiserror]
version = "2.0"
[dependencies.zcash_primitives]
version = "0.26"
[dependencies.zcash_script]
version = "0.4.4"
[dependencies.zebra-chain]
version = "6.0.2"
[dev-dependencies.hex]
version = "0.4.3"
[dev-dependencies.lazy_static]
version = "1.4"
[dev-dependencies.ripemd]
version = "0.1"
[dev-dependencies.secp256k1]
version = "0.29"
[dev-dependencies.sha2]
version = "0.10"
[dev-dependencies.zebra-test]
version = "3.0.0"
[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", "zip235"))',
]