lpkg/Cargo.toml

23 lines
535 B
TOML
Raw Normal View History

2025-09-30 16:51:03 +02:00
[package]
name = "package_management"
version = "0.1.0"
edition = "2024"
[dependencies]
2025-09-30 18:49:50 +02:00
anyhow = "1.0.100"
clap = { version = "4.5.48", features= ["derive"] }
2025-09-30 16:51:03 +02:00
console = "0.16.1"
2025-09-30 18:49:50 +02:00
crossterm = { version = "0.29.0", optional = true }
2025-09-30 16:51:03 +02:00
indicatif = "0.18.0"
md5 = "0.8.0"
rand = "0.9.2"
2025-09-30 18:49:50 +02:00
ratatui = { version = "0.29.0", optional = true }
2025-09-30 16:51:03 +02:00
reqwest = { version = "0.12.23", features = ["blocking", "json"] }
2025-09-30 17:08:26 +02:00
scraper = "0.19.0"
2025-09-30 16:51:03 +02:00
serde = { version = "1.0.228", features = ["derive"] }
2025-09-30 18:49:50 +02:00
spinners = "4.1.1"
2025-09-30 16:51:03 +02:00
2025-09-30 18:49:50 +02:00
[features]
tui = ["ratatui", "crossterm"]