# 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 = "2021" name = "minicbor" version = "0.25.1" authors = ["Toralf Wittner "] build = "build.rs" 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" [package.metadata.docs.rs] features = [ "std", "derive", "half", ] [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.15.0" optional = true [dev-dependencies] [features] alloc = ["minicbor-derive?/alloc"] derive = ["minicbor-derive"] full = [ "std", "derive", "half", ] std = [ "alloc", "minicbor-derive?/std", ]