From 289aa96f02f99bb724013e473725760a86ba6190 Mon Sep 17 00:00:00 2001 From: Weicao-CatilGrass <1992414357@qq.com> Date: Sun, 24 May 2026 03:13:00 +0800 Subject: Initialize Rust project with Cargo and implement memory management CLI --- Cargo.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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" -- cgit