From bb5b15b5abba1caf0fa8d8861c118cd73edf76d0 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 12 Sep 2025 00:34:17 +0800 Subject: Add Crate `cfg_file` .../utils/cfg_file .../cfg_file/cfg_file_derive .../cfg_file/cfg_file_example --- crates/utils/cfg_file/Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 crates/utils/cfg_file/Cargo.toml (limited to 'crates/utils/cfg_file/Cargo.toml') diff --git a/crates/utils/cfg_file/Cargo.toml b/crates/utils/cfg_file/Cargo.toml new file mode 100644 index 0000000..9d9a6b8 --- /dev/null +++ b/crates/utils/cfg_file/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "cfg_file" +edition = "2024" +version.workspace = true + +[dependencies] + +# Async +tokio = { version = "1.46.1", features = ["full"] } +async-trait = "0.1.88" + +# Serialization +serde = { version = "1.0.219", features = ["derive"] } +serde_yaml = "0.9.34" +serde_json = "1.0.140" +ron = "0.11.0" +toml = "0.9.0" -- cgit