[package]
edition = "2024"
rust-version = "1.88"
name = "tomlproc"
version = "0.1.0"
authors = ["Mark Karpeles <mark@shells.com>"]
build = false
exclude = ["tools"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A self-contained TOML 1.0.0 parser and serializer with no external dependencies"
readme = "README.md"
keywords = [
"toml",
"parser",
"config",
"serialization",
]
categories = [
"parser-implementations",
"config",
"encoding",
]
license = "MIT"
repository = "https://github.com/KarpelesLab/tomlproc"
[lib]
name = "tomlproc"
path = "src/lib.rs"
[[test]]
name = "fuzz"
path = "tests/fuzz.rs"
[[test]]
name = "invalid"
path = "tests/invalid.rs"
[[test]]
name = "readme"
path = "tests/readme.rs"
[[test]]
name = "serialize"
path = "tests/serialize.rs"
[[test]]
name = "valid"
path = "tests/valid.rs"
[dependencies]