[package] name = "minicbor" version = "0.25.1" authors = ["Toralf Wittner "] license = "BlueOak-1.0.0" edition = "2021" description = "A small CBOR codec suitable for no_std environments." repository = "https://github.com/twittner/minicbor" keywords = ["cbor", "minicbor", "serialization", "encoding", "no_std"] categories = ["encoding"] build = "build.rs" [package.metadata.docs.rs] features = ["std", "derive", "half"] [features] full = ["std", "derive", "half"] alloc = ["minicbor-derive?/alloc"] std = ["alloc", "minicbor-derive?/std"] derive = ["minicbor-derive"] [dependencies] minicbor-derive = { version = "0.15.0", path = "../minicbor-derive", optional = true } half = { version = "2.4.0", default-features = false, optional = true } [dev-dependencies] minicbor = { path = ".", features = ["std", "half"] } [[bin]] name = "cbor-display" required-features = ["std", "half"]