-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (63 loc) 路 1.57 KB
/
Copy pathCargo.toml
File metadata and controls
78 lines (63 loc) 路 1.57 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "feedo"
version = "1.1.31"
edition = "2024"
rust-version = "1.85"
authors = ["Ricardo Dantas"]
description = "A stunning terminal RSS reader - like Reeder, but for your terminal 馃悤"
license = "GPL-3.0-or-later"
repository = "https://github.com/ricardodantas/feedo"
homepage = "https://github.com/ricardodantas/feedo"
keywords = ["rss", "tui", "terminal", "reader", "feed"]
categories = ["command-line-utilities"]
readme = "README.md"
[dependencies]
# Async runtime
tokio = { version = "1.49", features = ["full"] }
# TUI
ratatui = "0.30"
ratatui-themes = "0.1.6"
crossterm = "0.29"
# RSS/Atom parsing
feed-rs = "2.3"
# HTTP client
reqwest = { version = "0.13", default-features = false, features = ["rustls", "charset", "form", "json"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# XML for OPML
quick-xml = { version = "0.39", features = ["serialize"] }
# Error handling
thiserror = "2.0"
color-eyre = "0.6"
# Utilities
chrono = { version = "0.4", features = ["serde"] }
directories = "6.0"
open = "5.3"
regex-lite = "0.1"
unicode-width = "0.2"
textwrap = "0.16"
html-escape = "0.2"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
urlencoding = "2.1.3"
arboard = "3.6.1"
# Encryption for credential storage
aes-gcm = "0.10"
base64 = "0.22"
[dev-dependencies]
tokio-test = "0.4"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.dev]
opt-level = 0
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
all = "warn"
pedantic = "warn"
nursery = "warn"