minicbor 2.2.0

A small CBOR codec suitable for no_std environments.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "minicbor"
version = "2.2.0"
authors = ["Toralf Wittner <tw@dtex.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small CBOR codec suitable for no_std environments."
readme = "README.md"
keywords = [
    "cbor",
    "minicbor",
    "serialization",
    "encoding",
    "no_std",
]
categories = ["encoding"]
license = "BlueOak-1.0.0"
repository = "https://github.com/twittner/minicbor"
resolver = "2"

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

[features]
alloc = []
derive = ["minicbor-derive"]
full = [
    "std",
    "derive",
    "half",
]
std = ["alloc"]

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

[[bin]]
name = "cbor-display"
path = "src/bin/cbor-display.rs"
required-features = [
    "std",
    "half",
]

[dependencies.half]
version = "2.4.0"
optional = true
default-features = false

[dependencies.minicbor-derive]
version = "0.19.0"
optional = true

[dev-dependencies]