-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (45 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
48 lines (45 loc) · 1.39 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "rss-tui"
version = "0.7.0"
authors = ["github/shalloran"]
edition = "2024"
license = "AGPL-3.0-or-later"
description = "A TUI RSS/Atom reader with vim-like controls and a local-first, offline-first focus. Fork of ckampfe/russ with additional features."
readme = "README.md"
repository = "https://github.com/shalloran/rss-tui"
homepage = "https://github.com/shalloran/rss-tui"
documentation = "https://github.com/shalloran/rss-tui"
keywords = ["rss", "tui", "reader", "feed", "terminal"]
categories = ["command-line-utilities", "multimedia"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
atom_syndication = { version = "0.12", default-features = false }
chrono = { version = "0.4", default-features = false, features = [
"clock",
"std",
] }
clap = { version = "4", features = ["derive"] }
copypasta = "0.10"
crossterm = "0.29"
diligent-date-parser = "0.1"
directories = "6"
html2text = "0.15"
html-escape = "0.2.13"
num_cpus = "1.16"
opml = "1.1"
quick-xml = { version = "0.36", features = ["encoding"] }
r2d2 = "0.8"
r2d2_sqlite = "0.31"
rss = { version = "2.0", default-features = false }
rusqlite = { version = "0.37", features = ["bundled", "chrono"] }
ratatui = "0.29"
ureq = "2.12"
urlencoding = "2.1"
webbrowser = "1"
wsl = "0.1"
url = "2"
unicode-width = "0.2"
[profile.release]
codegen-units = 1
lto = true