forked from jeff-hughes/shellcaster
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (42 loc) · 1.39 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "hullcaster"
version = "0.1.2"
authors = ["gilcu3"]
edition = "2021"
license = "GPL-3.0-or-later"
description = "A terminal-based podcast manager to subscribe to and play podcasts with gpodder sync support."
keywords = ["podcast", "terminal", "TUI", "curses", "gpodder"]
categories = ["multimedia::audio", "command-line-interface"]
homepage = "https://github.com/gilcu3/hullcaster"
repository = "https://github.com/gilcu3/hullcaster"
documentation = "https://github.com/gilcu3/hullcaster"
readme = "README.md"
[dependencies]
crossterm = "0.28.1"
rss = "2.0.9"
rusqlite = { version = "0.32.0", features = ["bundled"] }
ureq = { version = "2.10.1", features = ["cookies", "native-certs"] }
native-tls = { version = "0.2.12", optional = true }
clap = { version = "4.5.20", features = ["cargo", "env"] }
toml = "0.8.19"
anyhow = "1.0.92"
serde = { version = "1.0.214", features = ["derive"] }
chrono = "0.4.38"
regex = "1.11.1"
sanitize-filename = "0.5.0"
shellexpand = "3.1.0"
dirs = { package = "dirs-next", version = "2.0.0" }
opml = "1.1.6"
ahash = "0.8.11"
nohash-hasher = "0.2.0"
unicode-segmentation = "1.12.0"
textwrap = "0.16.1"
escaper = "0.1.1"
rfc822_sanitizer = "0.3.6"
semver = "1.0.23"
base64 = "0.22.1"
serde_json = {version = "1.0.132"}
log = "0.4.22"
simplelog = {version = "0.12.2", features = ["local-offset"]}
symphonia = { version = "0.5.4", features = ["mp3"] }
once_cell = "1.20.2"