[package]
edition = "2024"
rust-version = "1.85"
name = "hide-format"
version = "0.7.0"
authors = ["HIDE contributors"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Wire format and bounded canonical CBOR container parsing for HIDE. Experimental, unaudited."
homepage = "https://github.com/hide-protocol/hide"
documentation = "https://docs.rs/hide-format"
readme = "README.md"
keywords = [
"cbor",
"file-format",
"encoding",
"parser",
"encryption",
]
categories = [
"cryptography",
"encoding",
]
license = "Apache-2.0"
repository = "https://github.com/hide-protocol/hide"
[lib]
name = "hide_format"
path = "src/lib.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[dependencies.minicbor]
version = "=2.3.0"
features = ["std"]
[dependencies.thiserror]
version = "=2.0.20"
[dev-dependencies.proptest]
version = "=1.11.0"
[lints.clippy]
all = "warn"
[lints.rust]
unsafe_code = "forbid"