[package]
edition = "2021"
rust-version = "1.85.0"
name = "zebra-script"
version = "4.0.0"
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.2"
[dependencies.zebra-chain]
version = "5.0.0"
[dev-dependencies.hex]
version = "0.4.3"
[dev-dependencies.lazy_static]
version = "1.4"
[dev-dependencies.zebra-test]
version = "2.0.1"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(tokio_unstable)",
'cfg(zcash_unstable, values("zfuture", "nu6.1", "nu7"))',
]