From 66c0f50e87ea65c7e65358dafd229f9e4f9b5d3f Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 04:43:12 +0000 Subject: [PATCH] Initial upload: gitignore-gen Rust CLI tool with 100+ templates --- app/gitignore-gen/Cargo.toml | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 app/gitignore-gen/Cargo.toml diff --git a/app/gitignore-gen/Cargo.toml b/app/gitignore-gen/Cargo.toml new file mode 100644 index 0000000..637e90b --- /dev/null +++ b/app/gitignore-gen/Cargo.toml @@ -0,0 +1,39 @@ +[package] +name = "gitignore-gen" +version = "0.1.0" +edition = "2021" +rust-version = "1.75" +authors = ["gitignore-gen contributors"] +description = "A Rust CLI tool that generates .gitignore files from 100+ programming language/framework templates" +repository = "https://github.com/yourusername/gitignore-gen" +license = "MIT" +keywords = ["gitignore", "cli", "tui", "git"] +categories = ["command-line-utilities", "development-tools"] + +[dependencies] +clap = { version = "4.4", features = ["derive"] } +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +thiserror = "1.0" +anyhow = "1.0" +crossterm = "0.27" +lazy_static = "1.4" +regex = "1.10" +chrono = { version = "0.4", default-features = false, features = ["clock"] } +ratatui = "0.26" + +[dev-dependencies] +assert_cmd = "2.0" +predicates = "3.0" +tempfile = "3.8" + +[features] +default = [] + +[profile.release] +opt-level = 3 +lto = true +codegen-units = 1 +strip = true + +[workspace]