[package]
edition = "2024"
name = "rwconfig"
version = "1.0.0"
authors = ["YONGQI <betterhyq@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read/write config files with get/set and dirty-tracking; save() writes all changes at once"
homepage = "https://github.com/betterhyq/rwconfig"
readme = "README.md"
keywords = [
"config",
"json",
"yaml",
"toml",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/betterhyq/rwconfig.git"
[lib]
name = "rwconfig"
path = "src/lib.rs"
[[bin]]
name = "rwconfig"
path = "src/main.rs"
[dependencies.c12-parser]
version = "1.0.1"
[dependencies.env_logger]
version = "0.11"
[dependencies.log]
version = "0.4.29"
[dependencies.serde_json]
version = "1.0"