2019-08-29 14:46:54 -07:00
|
|
|
[package]
|
|
|
|
name = "zebra-script"
|
2024-08-27 18:07:37 -07:00
|
|
|
version = "1.0.0-beta.39"
|
2019-10-08 09:25:59 -07:00
|
|
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
2023-06-13 01:46:01 -07:00
|
|
|
description = "Zebra script verification wrapping zcashd's zcash_script library"
|
2019-10-08 09:25:59 -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 = ["api-bindings", "cryptography::cryptocurrencies"]
|
2019-08-29 14:46:54 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2024-06-19 05:48:12 -07:00
|
|
|
zcash_script = "0.2.0"
|
2024-08-27 18:07:37 -07:00
|
|
|
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39" }
|
2021-11-15 12:55:32 -08:00
|
|
|
|
2024-07-26 13:19:38 -07:00
|
|
|
thiserror = "1.0.63"
|
2020-08-18 11:08:53 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-03-04 02:01:44 -08:00
|
|
|
hex = "0.4.3"
|
2020-08-18 11:08:53 -07:00
|
|
|
lazy_static = "1.4.0"
|
2024-08-27 18:07:37 -07:00
|
|
|
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.39" }
|