-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
26 lines (22 loc) · 985 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "configparser"
version = "3.1.0"
authors = ["QEDK <qedk.en@gmail.com>"]
edition = "2021"
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"
repository = "https://github.com/QEDK/configparser-rs"
documentation = "https://docs.rs/configparser"
readme = "README.md"
license = "MIT OR LGPL-3.0-or-later"
keywords = ["config", "ini", "settings", "configuration", "parser"]
categories = ["config", "encoding", "parser-implementations"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
indexmap = { version = "2.2.6", optional = true }
tokio = { version = "1.38.0", optional = true, features = ["fs"] }
[dev-dependencies]
tokio = { version = "1.38.0", features = ["fs", "macros", "rt-multi-thread"] }
[features]
async-std = ["tokio"]