From 6981a3544a5f7002977a1bdab4511b810886d5e9 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 19:59:18 +0000 Subject: [PATCH] Initial commit: git-issue-commit CLI tool --- Cargo.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3729f68 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "git-issue-commit" +version = "0.1.0" +edition = "2021" +description = "A CLI tool that parses GitHub/GitLab issue URLs and generates conventional commit messages" +authors = ["git-issue-commit contributors"] + +[dependencies] +clap = { version = "4.4", features = ["derive"] } +reqwest = { version = "0.11", features = ["json"] } +anyhow = "1.0" +thiserror = "1.0" +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +regex = "1.10" +tokio = { version = "1.0", features = ["full"] } + +[dev-dependencies] +assert_cmd = "2.0"