Initial upload: gitignore-gen Rust CLI tool with 100+ templates
This commit is contained in:
39
app/gitignore-gen/Cargo.toml
Normal file
39
app/gitignore-gen/Cargo.toml
Normal file
@@ -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]
|
||||
Reference in New Issue
Block a user