[package]
edition = "2024"
rust-version = "1.87"
name = "cbor-core"
version = "0.4.0"
build = false
exclude = [
".*",
"Cargo.lock",
"Dockerfile.ci",
"ci-local.sh",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CBOR::Core deterministic encoder/decoder with owned data structures"
documentation = "https://docs.rs/cbor-core"
readme = "README.md"
keywords = [
"cbor",
"encoding",
"decoding",
"serialization",
"deterministic",
]
categories = [
"encoding",
"data-structures",
]
license = "MIT"
repository = "https://github.com/mrothNET/cbor-core"
[features]
num-bigint = ["dep:num-bigint"]
[lib]
name = "cbor_core"
path = "src/lib.rs"
[dependencies.num-bigint]
version = "0.4"
optional = true