packard/Cargo.toml
dependabot[bot] e091e03d5a
Bump the dev-dependencies group with 2 updates (#5)
Bumps the dev-dependencies group with 2 updates: [clap](https://github.com/clap-rs/clap) and [rss](https://github.com/rust-syndication/rss).


Updates `clap` from 4.5.28 to 4.5.29
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.28...clap_complete-v4.5.29)

Updates `rss` from 2.0.11 to 2.0.12
- [Release notes](https://github.com/rust-syndication/rss/releases)
- [Changelog](https://github.com/rust-syndication/rss/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-syndication/rss/compare/2.0.11...2.0.12)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: rss
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-02-17 12:44:14 +00:00

29 lines
617 B
TOML

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