configparser 3.2.0

A simple configuration parsing utility with no dependencies that allows you to parse INI and ini-style syntax. You can use this to write Rust programs which can be customized by end users easily.
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"
name = "configparser"
version = "3.2.0"
authors = ["QEDK <hi@qedk.xyz>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple configuration parsing utility with no dependencies that allows you to parse INI and ini-style syntax. You can use this to write Rust programs which can be customized by end users easily."
homepage = "https://github.com/QEDK/configparser-rs"
documentation = "https://docs.rs/configparser"
readme = "README.md"
keywords = [
    "config",
    "ini",
    "settings",
    "configuration",
    "parser",
]
categories = [
    "config",
    "encoding",
    "parser-implementations",
]
license = "MIT OR LGPL-3.0-or-later"
repository = "https://github.com/QEDK/configparser-rs"

[badges.maintenance]
status = "actively-developed"

[features]
serde = [
    "dep:serde",
    "indexmap/serde",
]

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

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

[dependencies.indexmap]
version = "^2.14.0"
optional = true

[dependencies.serde]
version = "^1.0.228"
optional = true

[dependencies.tokio]
version = "^1.52.3"
features = ["fs"]
optional = true

[dev-dependencies.serde_json]
version = "^1.0.150"

[dev-dependencies.tokio]
version = "^1.52.3"
features = [
    "fs",
    "macros",
    "rt-multi-thread",
]