mg/Cargo.toml

17 lines
327 B
TOML
Raw Permalink Normal View History

2025-02-03 22:05:56 +01:00
[package]
name = "mg"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.95"
2025-02-04 09:07:59 +01:00
clap = { version = "4.5.27", features = ["derive", "string"] }
flate2 = "1.0.35"
hex = "0.4.3"
2025-02-06 08:18:57 +01:00
nom = "8.0.0"
2025-02-11 22:18:32 +01:00
reqwest = "0.12.12"
2025-02-04 22:03:26 +01:00
sha1 = "0.10.6"
2025-02-04 09:07:59 +01:00
thiserror = "2.0.11"
2025-02-11 22:18:32 +01:00
tokio = { version = "1.43.0", features = ["full"] }
2025-02-06 22:34:14 +01:00
walkdir = "2.5.0"