summaryrefslogtreecommitdiff
path: root/legacy_utils/cfg_file/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-11 15:34:47 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-11 15:34:47 +0800
commit8b38e22525adcafecd8b50daf041a1dc2d672d0b (patch)
treeb5c012dbbdd6975f405105b778d0ba9354a21233 /legacy_utils/cfg_file/Cargo.toml
parente49128388e3b2f73523d82bf7f16fa1eae019c37 (diff)
Replace cfg_file with new config system
Diffstat (limited to 'legacy_utils/cfg_file/Cargo.toml')
-rw-r--r--legacy_utils/cfg_file/Cargo.toml23
1 files changed, 23 insertions, 0 deletions
diff --git a/legacy_utils/cfg_file/Cargo.toml b/legacy_utils/cfg_file/Cargo.toml
new file mode 100644
index 0000000..0685329
--- /dev/null
+++ b/legacy_utils/cfg_file/Cargo.toml
@@ -0,0 +1,23 @@
+[package]
+name = "cfg_file"
+edition = "2024"
+version.workspace = true
+
+[features]
+default = ["derive"]
+derive = []
+
+[dependencies]
+cfg_file_derive = { path = "cfg_file_derive" }
+
+# Async
+tokio = { version = "1.48.0", features = ["full"] }
+async-trait = "0.1.89"
+
+# Serialization
+serde = { version = "1.0.228", features = ["derive"] }
+serde_yaml = "0.9.34"
+serde_json = "1.0.145"
+ron = "0.11.0"
+toml = "0.9.8"
+bincode2 = "2.0.1"