# 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 = "2018" name = "minicbor-ser" version = "0.2.0" authors = ["oh-wind"] description = "A simple implementation of serde for minicbor" readme = "README.md" keywords = [ "cbor", "serde", "minicbor", "binary", ] license = "MIT" repository = "https://github.com/oh-wind/minicbor-ser" [package.metadata.docs.rs] features = ["std"] [dependencies.minicbor] version = "~0.18" features = ["alloc"] [dependencies.serde] version = "1.0.*" default-features = false [dev-dependencies.serde] version = "1.0.*" features = ["derive"] default-features = false [features] alloc = [ "serde/alloc", "minicbor/alloc", ] default = ["std"] std = [ "serde/std", "minicbor/std", "alloc", ]