packard/Cargo.toml

30 lines
617 B
TOML
Raw Normal View History

2025-01-13 17:34:24 +00:00
[package]
name = "packard"
2025-01-30 22:27:43 +00:00
version = "0.0.3"
2025-01-13 17:34:24 +00:00
edition = "2021"
description = "A terminal based feed checker."
authors = ["Troy Lusty <hello@troylusty.com>"]
[dependencies]
chrono = "0.4.39"
clap = { version = "4.5.28", features = ["derive"] }
2025-01-13 17:34:24 +00:00
reqwest = "0.12.12"
rss = "2.0.11"
serde = { version = "1.0.217", features = ["derive"] }
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
toml = "0.8.20"
2025-01-13 17:34:24 +00:00
xdg = "2.5.2"
futures = "0.3.31"
indicatif = "0.17.11"
2025-01-16 21:21:51 +00:00
anyhow = "1.0.95"
2025-01-13 17:34:24 +00:00
[profile.dev]
opt-level = 0
[profile.release]
opt-level = "z"
strip = true
codegen-units = 1
lto = true
panic = "abort"