packard/Cargo.toml

30 lines
617 B
TOML
Raw Permalink Normal View History

2025-01-13 17:34:24 +00:00
[package]
name = "packard"
2025-03-08 16:59:37 +00:00
version = "0.0.4"
2025-01-13 17:34:24 +00:00
edition = "2021"
description = "A terminal based feed checker."
authors = ["Troy Lusty <hello@troylusty.com>"]
[dependencies]
2025-05-05 21:49:42 +01:00
chrono = "0.4.41"
clap = { version = "4.5.37", features = ["derive"] }
reqwest = "0.12.15"
rss = "2.0.12"
2025-05-05 21:49:42 +01:00
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }
toml = "0.8.22"
2025-01-13 17:34:24 +00:00
xdg = "2.5.2"
futures = "0.3.31"
indicatif = "0.17.11"
2025-05-05 21:49:42 +01:00
anyhow = "1.0.98"
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"