# 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" rust-version = "1.68" name = "tomling" version = "0.1.0" authors = ["Zeeshan Ali Khan "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A simple TOML parser" readme = "README.md" keywords = [ "toml", "parser", "deserializer", "serde", "no-std", ] categories = [ "parsing", "parser-implementations", "no-std", ] license = "MIT" repository = "https://github.com/zeenix/tomling" [lib] name = "tomling" path = "src/lib.rs" [[test]] name = "simple" path = "tests/simple.rs" [[test]] name = "tokio" path = "tests/tokio.rs" [[test]] name = "zbus" path = "tests/zbus.rs" [dependencies.serde] version = "1.0.215" features = [ "derive", "alloc", ] optional = true default-features = false [dependencies.winnow] version = "0.6.20" features = ["alloc"] default-features = false [features] cargo-toml = ["serde"] default = [ "serde", "cargo-toml", "simd", "std", ] simd = ["winnow/simd"] std = [ "winnow/std", "serde?/std", ]