zonfig 0.1.0

A small dynamic configuration loader with file watching and hot reload support.
Documentation
[package]
name = "zonfig"
version = "0.1.0"
edition = "2024"
authors = ["zero<zero9501@outlook.com>"]
description = "A small dynamic configuration loader with file watching and hot reload support."
documentation = "https://docs.rs/zonfig"
homepage = "https://github.com/zlx2019/zonfig"
repository = "https://github.com/zlx2019/zonfig"
readme = "README.md"
license = "MIT"
keywords = ["config", "configuration", "hot-reload", "watch", "serde"]
categories = ["config"]

[dependencies]
arc-swap = "1"
notify = "8.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9.34"
thiserror = "2"
tokio = { version = "1", features = ["macros", "rt", "sync", "time"] }
toml = "1.1.2"

[dev-dependencies]
tempfile = "3"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "sync", "time"] }