From f148315303cb8a07c1d7c54bb03446ebf2c41fcc Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 12:20:52 +0000 Subject: [PATCH] Initial upload: Auto Commit Message Generator with CI/CD workflow --- Cargo.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..7a6f876 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "auto-commit" +version = "0.1.0" +edition = "2021" +description = "A Rust CLI tool that analyzes git staged changes and generates conventional commit messages" +authors = ["Auto Commit Contributors"] + +[dependencies] +clap = { version = "4.4", features = ["derive"] } +dialoguer = "0.11" +anyhow = "1.0" +colored = "2.1" + +[dev-dependencies] + +[profile.release] +opt-level = 3 +lto = true