# 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 = "tinyklv" version = "0.0.1-alpha.1" authors = ["Arpad Voros "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "The simplest Key-Length-Value (KLV) framework in Rust" documentation = "https://docs.rs/tinyklv" readme = "README.md" keywords = [ "klv", "tlv", "parsing", "decode", "encode", ] categories = [ "encoding", "parsing", "development-tools", ] license = "MIT" repository = "https://github.com/arpadav/tinyklv" [profile.dev] opt-level = 0 [profile.release] opt-level = 3 lto = true codegen-units = 1 panic = "abort" strip = true [lib] name = "tinyklv" path = "src/lib.rs" [[test]] name = "archive" path = "tests/archive.rs" [[test]] name = "macro_examples" path = "tests/macro_examples.rs" [[test]] name = "readme_example" path = "tests/readme_example.rs" [dependencies.ascii] version = "1.1" optional = true [dependencies.chrono] version = "0.4" optional = true [dependencies.num-traits] version = "0.2" [dependencies.paste] version = "1.0" [dependencies.tinyklv-common] version = "0.0.1-alpha.1" [dependencies.tinyklv-impl] version = "0.0.1-alpha.1" [dependencies.winnow] version = "0.6" [features] default = [] full = [ "chrono", "ascii", ]