# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "cbor_enhanced" version = "0.1.1" authors = ["Christian Loehnert"] description = "Cbor de/serialization library making use of lifetimes to support zero copy deserialization.\nSeveral iana tags are supported but need to be activated via feature flags.\n" homepage = "https://github.com/krampenschiesser/cbor_enhanced" documentation = "https://docs.rs/cbor_enhanced" readme = "readme.md" keywords = ["cbor", "binary", "serialization", "deserialization"] categories = ["parser-implementations", "parsing"] license = "MIT OR Apache-2.0" repository = "https://github.com/krampenschiesser/cbor_enhanced" [[test]] name = "test_vectors" required-features = ["iana_all_tags"] [dependencies.bytes] version = "1.0.0" [dependencies.cbor_enhanced_derive_protocol] version = "0.1" optional = true [dependencies.chrono] version = "0.4.19" optional = true [dependencies.failure] version = "0.1.8" [dependencies.half] version = "1.6.0" optional = true [dependencies.mime] version = "0.3.16" optional = true [dependencies.nom] version = "6.0.1" features = ["std"] default-features = false [dependencies.num-bigint] version = "0.3.1" optional = true [dependencies.num-traits] version = "0.2.14" optional = true [dependencies.regex] version = "1.4.2" optional = true [dependencies.safe-transmute] version = "0.11.0" optional = true [dependencies.uuid] version = "0.8.1" features = ["v4"] optional = true [dev-dependencies.float-cmp] version = "0.8.0" [features] default = [] iana_all_tags = ["iana_std", "iana_chrono", "iana_bigint", "iana_uuid", "iana_mime", "iana_geo"] iana_bigint = ["num-bigint", "num-traits"] iana_chrono = ["chrono"] iana_geo = ["num-traits"] iana_mime = ["mime"] iana_numbers = ["half"] iana_regex = ["regex"] iana_std = ["safe-transmute"] iana_uuid = ["uuid"] protocol_derive = ["cbor_enhanced_derive_protocol"]