packard/Cargo.toml
2025-05-05 21:49:42 +01:00

29 lines
617 B
TOML

[package]
name = "packard"
version = "0.0.4"
edition = "2021"
description = "A terminal based feed checker."
authors = ["Troy Lusty <hello@troylusty.com>"]
[dependencies]
chrono = "0.4.41"
clap = { version = "4.5.37", features = ["derive"] }
reqwest = "0.12.15"
rss = "2.0.12"
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }
toml = "0.8.22"
xdg = "2.5.2"
futures = "0.3.31"
indicatif = "0.17.11"
anyhow = "1.0.98"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = "z"
strip = true
codegen-units = 1
lto = true
panic = "abort"