Files
WorldTeacher/rust/Cargo.toml
2025-11-04 15:28:26 +01:00

22 lines
443 B
TOML

[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"