feed-reader 0.1.3

A simple RSS/Atom feed reader for the terminal
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "feed-reader"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple RSS/Atom feed reader for the terminal"
readme = "README.md"
keywords = [
    "rss",
    "atom",
    "feed",
    "tui",
    "cli",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/yujixr/feed"

[lib]
name = "feed"
path = "src/lib.rs"

[[bin]]
name = "feed"
path = "src/main.rs"

[[test]]
name = "article_store_test"
path = "tests/article_store_test.rs"

[[test]]
name = "article_test"
path = "tests/article_test.rs"

[[test]]
name = "cache_test"
path = "tests/cache_test.rs"

[[test]]
name = "cli_test"
path = "tests/cli_test.rs"

[[test]]
name = "config_test"
path = "tests/config_test.rs"

[[test]]
name = "display_test"
path = "tests/display_test.rs"

[[test]]
name = "feed_source_test"
path = "tests/feed_source_test.rs"

[[test]]
name = "tui_app_test"
path = "tests/tui_app_test.rs"

[[test]]
name = "tui_keybindings_test"
path = "tests/tui_keybindings_test.rs"

[dependencies.anyhow]
version = "1"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.crossterm]
version = "0.29"

[dependencies.encoding_rs]
version = "0.8.35"

[dependencies.etcetera]
version = "0.11"

[dependencies.feed-rs]
version = "2.3"

[dependencies.futures]
version = "0.3"

[dependencies.html2text]
version = "0.16"

[dependencies.open]
version = "5"

[dependencies.ratatui]
version = "0.30"

[dependencies.readability]
version = "0.1"
package = "readability-rust"

[dependencies.reqwest]
version = "0.13"
features = [
    "rustls",
    "gzip",
    "brotli",
]
default-features = false

[dependencies.scraper]
version = "0.25"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.serde_norway]
version = "0.9"

[dependencies.sha2]
version = "0.10"

[dependencies.terminal_size]
version = "0.4"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "sync",
]

[dependencies.unicode-width]
version = "0.2"

[dependencies.url]
version = "2"

[dev-dependencies.tempfile]
version = "3"