minicbor 0.25.1

A small CBOR codec suitable for no_std environments.
Documentation
[[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."
edition = "2021"
keywords = ["cbor", "minicbor", "serialization", "encoding", "no_std"]
license = "BlueOak-1.0.0"
name = "minicbor"
readme = "README.md"
repository = "https://github.com/twittner/minicbor"
version = "0.25.1"

[package.metadata.docs.rs]
features = ["std", "derive", "half"]