From a57a8389a76cdbba3b9fc79c2d521d2beb2751cb Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 11 Apr 2026 20:59:52 +0800 Subject: Add project branding and update README structure - Add project icon and badges to README - Update crate description to "The Rust CLI Framework" - Add table of contents and improve section organization - Move guide.txt to resources directory and update version reference - Add example-completion Cargo.lock for new example - Remove unused main.rs file --- src/guide.txt | 12 ------------ src/main.rs | 3 --- 2 files changed, 15 deletions(-) delete mode 100644 src/guide.txt delete mode 100644 src/main.rs (limited to 'src') diff --git a/src/guide.txt b/src/guide.txt deleted file mode 100644 index 1cac233..0000000 --- a/src/guide.txt +++ /dev/null @@ -1,12 +0,0 @@ - ┌────────────────────────────────────┐ - │ Mingling │ - │ The Rust CLI Framework │ - │ │ - │ USE: │ - │ Run command in your project │ - │ > cargo add mingling │ - │ │ - │ Or add this to your Cargo.toml │ - │ > mingling = "0.1.4" │ - │ │ - └────────────────────────────────────┘ diff --git a/src/main.rs b/src/main.rs deleted file mode 100644 index ed3de5b..0000000 --- a/src/main.rs +++ /dev/null @@ -1,3 +0,0 @@ -fn main() { - println!("{}", include_str!("./guide.txt").trim_end_matches("\n")); -} -- cgit