cargo-setupx 0.1.0

Rust-based CLI and library that automates the initial setup of new Rust projects with modular configuration packs
Documentation
[default]
extend-ignore-re = [
  # Technical terms and identifiers
  "([A-Z][a-z]*){2,}", # CamelCase
  "[a-z]+_[a-z]+",     # snake_case variables
]

[default.extend-words]
# Add your project-specific terms here
utoipa = "utoipa"
axum = "axum"
sqlx = "sqlx"
chrono = "chrono"
tokio = "tokio"
rustls = "rustls"

# Technical terms
anonymization = "anonymization"
anonymize = "anonymize"
anonymized = "anonymized"

[files]
extend-exclude = ["target/", "Cargo.lock", "*.log", ".git/"]