• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "configparser"
3version = "3.0.4"
4authors = ["QEDK <qedk.en@gmail.com>"]
5edition = "2021"
6description = "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."
7homepage = "https://github.com/QEDK/configparser-rs"
8repository = "https://github.com/QEDK/configparser-rs"
9documentation = "https://docs.rs/configparser"
10readme = "README.md"
11license = "MIT OR LGPL-3.0-or-later"
12keywords = ["config", "ini", "settings", "configuration", "parser"]
13categories = ["config", "encoding", "parser-implementations"]
14
15[badges]
16maintenance = { status = "actively-developed" }
17
18[dependencies]
19indexmap = { version = "2.1.0", optional = true }
20tokio = { version = "1.35.1", optional = true, features = ["fs"] }
21
22[dev-dependencies]
23tokio = { version = "1.35.1", features = ["fs", "macros", "rt-multi-thread"] }
24
25[features]
26async-std = ["tokio"]
27