tomlini 0.1.0

SAX TOML/INI parser and editor. Zero-dependency, no footguns.
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.85"
name = "tomlini"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SAX TOML/INI parser and editor. Zero-dependency, no footguns."
documentation = "https://docs.rs/tomlini"
readme = "README.md"
keywords = [
    "toml",
    "ini",
    "parser",
    "editor",
    "no-std",
]
categories = [
    "config",
    "parser-implementations",
    "text-editors",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mcunha/tomlini"

[features]
alloc = []
default = ["std"]
std = ["alloc"]

[lib]
name = "tomlini"
path = "src/lib.rs"

[[example]]
name = "basic-edit"
path = "examples/basic-edit.rs"

[[example]]
name = "batch-migrate"
path = "examples/batch-migrate.rs"

[[example]]
name = "containers"
path = "examples/containers.rs"

[[example]]
name = "ini-edit"
path = "examples/ini-edit.rs"

[[example]]
name = "pont-fmt"
path = "examples/pont-fmt.rs"

[[example]]
name = "validation"
path = "examples/validation.rs"

[[test]]
name = "coverage"
path = "tests/coverage.rs"

[[test]]
name = "edit_tests"
path = "tests/edit_tests.rs"

[[test]]
name = "editor_negative"
path = "tests/editor_negative.rs"

[[test]]
name = "editor_tests"
path = "tests/editor_tests.rs"

[[test]]
name = "footgun_immunity"
path = "tests/footgun_immunity.rs"

[[test]]
name = "proptest"
path = "tests/proptest.rs"

[[test]]
name = "proptest_errors"
path = "tests/proptest_errors.rs"

[[test]]
name = "validation_tests"
path = "tests/validation_tests.rs"

[dev-dependencies.proptest]
version = "1.11.0"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg()"]