[package]
name = "shellcaster"
version = "2.0.0"
authors = ["Jeff Hughes <jeff.hughes@gmail.com>"]
edition = "2021"
license = "GPL-3.0-or-later"
description = "A terminal-based podcast manager to subscribe to and play podcasts."
keywords = ["podcast", "terminal", "TUI", "curses"]
categories = ["multimedia::audio", "command-line-interface"]
homepage = "https://github.com/jeff-hughes/shellcaster"
repository = "https://github.com/jeff-hughes/shellcaster"
documentation = "https://github.com/jeff-hughes/shellcaster"
readme = "README.md"
[dependencies]
crossterm = "0.23.0"
rss = "2.0.0"
rusqlite = "0.26.3"
ureq = "2.4.0"
native-tls = { version = "0.2.8", optional = true }
clap = { version = "3.1.2", features = ["cargo", "env"] }
toml = "0.5.8"
anyhow = "1.0.55"
serde = { version = "1.0.136", features = ["derive"] }
chrono = "0.4.19"
lazy_static = "1.4.0"
regex = "1.5.4"
sanitize-filename = "0.3.0"
shellexpand = "2.1.0"
dirs = { package = "dirs-next", version = "2.0.0" }
opml = "1.1.3"
ahash = "0.7.6"
nohash-hasher = "0.2.0"
unicode-segmentation = "1.8.0"
textwrap = "0.14.2"
escaper = "0.1.1"
rfc822_sanitizer = "0.3.6"
semver = "1.0.6"
[features]
default = ["native_certs"]
sqlite_bundled = ["rusqlite/bundled"]
native_tls = ["native-tls", "ureq/native-tls"]
native_certs = ["ureq/native-certs"]