sconfig 0.1.2

A simple config control tool support read from file and write to file
Documentation
[package]
name = "sconfig"
version = "0.1.2"
edition = "2021"
authors = ["wisarmy <wisarmy@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/wisarmy/sconfig"
description = "A simple config control tool support read from file and write to file"
keywords = ["config", "toml", "json"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
thiserror = "1.0.38"
tracing = "0.1.37"
sconfig-macros = { path = "./macros", version = "0.1.2" }
toml = "0.7.2"
toml_edit = "0.19.9"

[workspace]
members = ["macros"]