-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (30 loc) · 1006 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "ta-rss"
version = "0.1.0"
authors = ["Matthias Buttgereit <[email protected]>"]
license = "MIT"
edition = "2021"
[dependencies]
anyhow = "1.0"
atom_syndication = "0.12"
chrono = "0.4"
clap = { version = "4.5", features = ["derive"] }
crossterm = { version = "0.28", features = ["event-stream"] }
futures = "0.3"
html_parser = "0.7"
image = "0.25"
open = "5.3"
ratatui = "0.28"
ratatui-image = { version = "1.0", features = ["crossterm"] }
reqwest = { version = "0.12", features = ["blocking"] }
rss = { version = "2.0", features = ["atom", "atom_syndication"] }
rustc-hash = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.39", features = ["full"] }
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
panic = "abort" # Don't unwind the stack when panicking.
codegen-units = 1 # No parallel codegen units.
lto = true # Optimize at link time.