[package]
edition = "2024"
rust-version = "1.89"
name = "hns-chat-protocol"
version = "0.3.1"
build = false
include = [
"src/*.rs",
"tests/*.rs",
"fixtures/chat-v1/*.txt",
"fixtures/chat-v1/*.sha256",
"CHANGELOG.md",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Owner-bound HNS Chat identity and opaque mailbox protocol values"
documentation = "https://docs.rs/hns-chat-protocol"
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_chat_protocol"
path = "src/lib.rs"
[[test]]
name = "release_source"
path = "tests/release_source.rs"
[dependencies.hex]
version = "0.4.3"
[dependencies.hns-covenants]
version = "0.3.1"
[dependencies.hns-encoding]
version = "0.3.1"
[dependencies.hns-service-authority]
version = "0.3.1"
[dependencies.hns-transaction]
version = "0.3.1"
[dependencies.k256]
version = "0.13.4"
features = [
"ecdsa",
"std",
]
default-features = false
[dependencies.thiserror]
version = "2.0.12"
[dev-dependencies.hns-primitives]
version = "0.3.1"
[dev-dependencies.sha2]
version = "0.10.9"
[lints.clippy]
all = "warn"
[lints.rust]
unsafe_code = "forbid"