| 1 | [package] |
| 2 | name = "bullets" |
| 3 | version = "0.1.2" |
| 4 | description = "Minimal RSS TUI" |
| 5 | authors = ["Steve <contact@stevedylan.dev>"] |
| 6 | license = "MIT" |
| 7 | edition = "2024" |
| 8 | repository = "https://github.com/stevedylandev/bullets" |
| 9 | homepage = "https://github.com/stevedylandev/bullets" |
| 10 | |
| 11 | [dependencies] |
| 12 | color-eyre = "0.6.5" |
| 13 | ureq = "3" |
| 14 | crossterm = "0.29.0" |
| 15 | feedparser-rs = "0.5.3" |
| 16 | open = "5" |
| 17 | chrono = "0.4" |
| 18 | ratatui = "0.30.0" |
| 19 | textwrap = "0.16" |
| 20 | |
| 21 | # Read the optimization guideline for more details: https://ratatui.rs/recipes/apps/release-your-app/#optimizations |
| 22 | [profile.release] |
| 23 | codegen-units = 1 |
| 24 | lto = true |
| 25 | opt-level = "s" |
| 26 | strip = true |
| 27 | |
| 28 | # The profile that 'dist' will build with |
| 29 | [profile.dist] |
| 30 | inherits = "release" |
| 31 | lto = "thin" |