Initial commit

This commit is contained in:
2025-11-04 15:40:02 +01:00
commit 3658b090e0
42 changed files with 5429 additions and 0 deletions

21
rust/Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "gitreposetup"
version = "0.1.0"
edition = "2021"
description = "A tool to initialize and configure git repositories with licenses and workflows"
[[bin]]
name = "gitreposetup"
path = "src/main.rs"
[[bin]]
name = "grs"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
git2 = "0.19"
html-escape = "0.2"
chrono = "0.4"