add: tool to delete all accounts that except allow listed

This commit is contained in:
Charles
2025-09-13 23:12:56 -07:00
commit 65459610d8
5 changed files with 2202 additions and 0 deletions

17
Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "gitea-tools"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.99"
clap = { version = "4.5.47", features = ["derive"] }
dialoguer = "0.12.0"
env_logger = "0.11.8"
lazy_static = "1.5.0"
log = "0.4.28"
reqwest = { version = "0.12.23", features=["json"]}
serde = { version = "1.0.220", features = ["derive"] }
serde_json = "1.0.144"
tokio = { version = "1.47.1", features = ["full"] }
tokio-task-pool = { version = "0.1.5", features = ["log"] }