[package]
edition = "2024"
rust-version = "1.89"
name = "hns-script"
version = "0.2.0"
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Handshake script, signature hashing, and fee-policy primitives"
documentation = "https://docs.rs/hns-script"
readme = "README.md"
keywords = [
"handshake",
"hns",
"blockchain",
"protocol",
]
categories = [
"cryptography::cryptocurrencies",
"encoding",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/handshake-rs/hns-rs"
[lib]
name = "hns_script"
path = "src/lib.rs"
[dependencies.blake2]
version = "0.10.6"
[dependencies.hns-encoding]
version = "0.2.0"
[dependencies.hns-primitives]
version = "0.2.0"
[dependencies.hns-transaction]
version = "0.2.0"
[dependencies.k256]
version = "0.13.4"
features = [
"ecdsa",
"std",
]
default-features = false
[dependencies.ripemd]
version = "0.1.3"
[dependencies.sha1]
version = "0.10.6"
[dependencies.sha2]
version = "0.10.9"
[dependencies.sha3]
version = "0.10.8"
[dependencies.thiserror]
version = "2.0.12"
[dev-dependencies.hex]
version = "0.4.3"
[dev-dependencies.hns-covenants]
version = "0.2.0"
[lints.clippy]
all = "warn"
[lints.rust]
unsafe_code = "forbid"