[[bin]]
name = "cbor-display"
path = "src/bin/cbor-display.rs"
required-features = ["std", "half"]
[dependencies.half]
default-features = false
optional = true
version = "2.4.0"
[dependencies.minicbor-derive]
optional = true
version = "0.15.0"
[dev-dependencies]
[features]
alloc = ["minicbor-derive?/alloc"]
derive = ["minicbor-derive"]
full = ["std", "derive", "half"]
std = ["alloc", "minicbor-derive?/std"]
[lib]
name = "minicbor"
path = "src/lib.rs"
[package]
authors = ["Toralf Wittner <tw@dtex.org>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = "build.rs"
categories = ["encoding"]
description = "A small CBOR codec suitable for no_std environments."
documentation = "https://twittner.gitlab.io/minicbor/minicbor/"
edition = "2021"
keywords = ["cbor", "serialization", "encoding", "binary", "no_std"]
license = "BlueOak-1.0.0"
name = "minicbor"
readme = "README.md"
repository = "https://gitlab.com/twittner/minicbor"
version = "0.24.3"
[package.metadata.docs.rs]
features = ["std", "derive", "half"]