Initial commit

This commit is contained in:
2025-11-04 15:28:26 +01:00
parent 184395c287
commit b4832a19db
41 changed files with 5361 additions and 214 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"