-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
31 lines (29 loc) · 873 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
[package]
name = "cliflux"
authors = [
"Spencer Williams <spencerwi@gmail.com>"
]
description = "A terminal-ui (TUI) client for the Miniflux RSS reader"
readme = "README.md"
repository = "https://github.com/spencerwi/cliflux"
license = "MIT"
keywords = [
"tui", "terminal_ui", "miniflux", "rss", "cli"
]
version = "1.5.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
directories = "4.0.1"
futures = "0.3.26"
html2text = { version = "0.5.0", features = ["ansi_colours"] }
open = "3.2.0"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0.152", features = ["std", "derive"] }
serde_json = "1.0.93"
stringreader = "0.1.1"
tokio = { version = "1", features = ["full"] }
toml = "0.7.2"
tui-realm-stdlib = "1.3.2"
tuirealm = "1.9.2"
unicode-segmentation = "1.10.1"