dcbor 0.23.2

Deterministic CBOR ("dCBOR") for Rust.
Documentation
[dependencies.chrono]
default-features = true
version = "^0.4.28"

[dependencies.half]
default-features = false
version = "^2.4.1"

[dependencies.hashbrown]
optional = true
version = "^0.14.3"

[dependencies.hex]
default-features = true
version = "^0.4.3"

[dependencies.paste]
version = "^1.0.12"

[dependencies.spin]
optional = true
version = "0.9.8"

[dependencies.thiserror]
default-features = false
optional = true
version = "^2.0"

[dependencies.unicode-normalization]
default-features = false
version = "^0.1.22"

[dev-dependencies.hex-literal]
version = "^0.4.1"

[dev-dependencies.indoc]
version = "^2.0.0"

[dev-dependencies.version-sync]
version = "^0.9.0"

[[example]]
name = "abort_test"
path = "examples/abort_test.rs"

[[example]]
name = "comprehensive_walk_demo"
path = "examples/comprehensive_walk_demo.rs"

[[example]]
name = "consistent_stop_test"
path = "examples/consistent_stop_test.rs"

[[example]]
name = "count_test"
path = "examples/count_test.rs"

[[example]]
name = "debug_stop"
path = "examples/debug_stop.rs"

[[example]]
name = "diagnostic_walk"
path = "examples/diagnostic_walk.rs"

[[example]]
name = "improved_text_collection"
path = "examples/improved_text_collection.rs"

[[example]]
name = "search_pattern_demo"
path = "examples/search_pattern_demo.rs"

[[example]]
name = "stop_behavior_test"
path = "examples/stop_behavior_test.rs"

[[example]]
name = "tagged_demo"
path = "examples/tagged_demo.rs"

[[example]]
name = "tagged_final_demo"
path = "examples/tagged_final_demo.rs"

[[example]]
name = "text_collection_demo"
path = "examples/text_collection_demo.rs"

[[example]]
name = "walk_demo"
path = "examples/walk_demo.rs"

[features]
default = ["std"]
multithreaded = []
no_std = ["hashbrown", "thiserror", "spin"]
std = ["half/std", "chrono/std", "hex/std", "thiserror/std"]

[lib]
name = "dcbor"
path = "src/lib.rs"

[package]
authors = ["Blockchain Commons"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "encoding", "no-std"]
description = 'Deterministic CBOR ("dCBOR") for Rust.'
documentation = "https://docs.rs/dcbor"
edition = "2024"
keywords = ["encoding", "cbor", "binary", "format", "serialization"]
license = "BSD-2-Clause-Patent"
name = "dcbor"
readme = "README.md"
repository = "https://github.com/BlockchainCommons/bc-dcbor-rust"
resolver = "2"
version = "0.23.2"

[[test]]
name = "encode"
path = "tests/encode.rs"

[[test]]
name = "format"
path = "tests/format.rs"

[[test]]
name = "version-numbers"
path = "tests/version-numbers.rs"

[[test]]
name = "walk"
path = "tests/walk.rs"