nos-cli 0.1.0

A terminal-based RSS feed reader for NOS.nl news
[package]
name = "nos-cli"
version = "0.1.0"
edition = "2021"
description = "A terminal-based RSS feed reader for NOS.nl news"
readme = "README.md"
homepage = "https://github.com/thijmen-nos/nos-cli"
repository = "https://github.com/thijmen-nos/nos-cli"
license = "MIT OR Apache-2.0"
keywords = ["rss", "news", "terminal", "tui", "nos"]
categories = ["command-line-utilities", "multimedia"]
authors = ["NOS CLI Team"]
exclude = [
    "target/*",
    ".git/*",
    ".gitignore",
]

[[bin]]
name = "nos-cli"
path = "src/main.rs"

[dependencies]
color-eyre = "0.6.5"
crossterm = "0.29.0"
ratatui = "0.29.0"
reqwest = { version = "0.12.22", features = ["stream"] }
rss = "2.0.12"
tokio = { version = "1.47.0", features = ["full"] }
ratatui-image = { version = "8.0.1", features = ["crossterm"] }
regex = "1.10.2"
image = "0.25.6"
scraper = "0.20.0"
html2text = "0.12.4"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
dashmap = "5.5"
open = "5.0"

[dev-dependencies]
tokio-test = "0.4"
mockito = "1.4"
tempfile = "3.8"