-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (45 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
50 lines (45 loc) · 1.24 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
[package]
name = "feedtui"
version = "0.1.3"
edition = "2021"
description = "A configurable terminal dashboard for stocks, news, sports, and social feeds with a virtual pet companion"
authors = ["malchal"]
license = "MIT"
repository = "https://github.com/muk2/feedtui"
homepage = "https://github.com/muk2/feedtui"
readme = "README.md"
keywords = ["tui", "dashboard", "terminal", "rss", "stocks"]
categories = ["command-line-utilities"]
[lib]
name = "feedtui"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "feedtui"
path = "src/main.rs"
[features]
python = ["pyo3"]
[dependencies]
pyo3 = { version = "0.22", features = ["extension-module"], optional = true }
ratatui = "0.29"
crossterm = "0.28"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.10"
jiff = { version = "0.1", features = ["serde"] }
dirs = "5"
feed-rs = "2"
anyhow = "1"
clap = { version = "4", features = ["derive"] }
async-trait = "0.1"
futures = "0.3"
urlencoding = "2"
open = "5"
textwrap = "0.16"
scraper = "0.22"
image = "0.25"
[dev-dependencies]
tempfile = "3"