dcbor-parse 0.5.0

dCBOR Diagnostic Parser and Composer for Rust
Documentation
[package]
name = "dcbor-parse"
version = "0.5.0"
edition = "2024"
description = "dCBOR Diagnostic Parser and Composer for Rust"
authors = ["Blockchain Commons"]
repository = "https://github.com/BlockchainCommons/bc-dcbor-parse-rust"
readme = "README.md"
license = "BSD-2-Clause-Patent"
documentation = "https://docs.rs/dcbor-parse"
keywords = [
    "encoding",
    "cbor",
    "binary",
    "format",
    "serialization",
] # Up to five
categories = [
    "data-structures",
    "encoding",
    "no-std",
] # https://crates.io/category_slugs

[dependencies]
dcbor = { version = "^0.23.1", features = ["multithreaded"] }
bc-ur = "^0.14.0"
known-values = "^0.9.0"

thiserror = "^2.0"
base64 = "^0.22.0"
hex = "0.4.3"
logos = "0.15.0"

[features]
# Feature flag for simplified patterns (used by rust-analyzer)
simplified-patterns = []

[dev-dependencies]
indoc = "^2.0.0"

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
    'cfg(feature, values("simplified-patterns"))',
] }