summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorWeicao-CatilGrass <1992414357@qq.com>2026-05-24 03:13:00 +0800
committerWeicao-CatilGrass <1992414357@qq.com>2026-05-24 03:13:00 +0800
commit289aa96f02f99bb724013e473725760a86ba6190 (patch)
treecaa818e0fbb66a778b5ad4af61588dfd8b9a3f0f /Cargo.toml
Initialize Rust project with Cargo and implement memory management CLI
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..ddb4f21
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,20 @@
+[package]
+name = "memm"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies.mingling]
+version = "0.1.8"
+features = [
+ "dispatch_tree",
+ "parser",
+ "general_renderer",
+]
+
+[dependencies.serde]
+version = "1.0.228"
+features = ["derive"]
+
+[dependencies]
+just_fmt = "0.1.2"
+dirs = "6.0.0"