tomlproc 0.1.0

A self-contained TOML 1.0.0 parser and serializer with no external dependencies
Documentation
# 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 = "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]