1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2021"
14name = "configparser"
15version = "3.0.4"
16authors = ["QEDK <[email protected]>"]
17description = "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."
18homepage = "https://github.com/QEDK/configparser-rs"
19documentation = "https://docs.rs/configparser"
20readme = "README.md"
21keywords = [
22    "config",
23    "ini",
24    "settings",
25    "configuration",
26    "parser",
27]
28categories = [
29    "config",
30    "encoding",
31    "parser-implementations",
32]
33license = "MIT OR LGPL-3.0-or-later"
34repository = "https://github.com/QEDK/configparser-rs"
35
36[dependencies.indexmap]
37version = "2.1.0"
38optional = true
39
40[dependencies.tokio]
41version = "1.35.1"
42features = ["fs"]
43optional = true
44
45[dev-dependencies.tokio]
46version = "1.35.1"
47features = [
48    "fs",
49    "macros",
50    "rt-multi-thread",
51]
52
53[features]
54async-std = ["tokio"]
55
56[badges.maintenance]
57status = "actively-developed"
58