Cargo.toml 688 B raw
1
[package]
2
name = "bullets"
3
version = "0.1.0"
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.3"
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
20
# Read the optimization guideline for more details: https://ratatui.rs/recipes/apps/release-your-app/#optimizations
21
[profile.release]
22
codegen-units = 1
23
lto = true
24
opt-level = "s"
25
strip = true
26
27
# The profile that 'dist' will build with
28
[profile.dist]
29
inherits = "release"
30
lto = "thin"