summaryrefslogtreecommitdiff
path: root/crates/utils/cfg_file/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'crates/utils/cfg_file/Cargo.toml')
-rw-r--r--crates/utils/cfg_file/Cargo.toml17
1 files changed, 17 insertions, 0 deletions
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"