aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 83b33818d8f0d5f12c465932aa0fe66911623ac8 (plain)
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
[package]
name = "podcast"
edition = "2018"
version = "0.12.0"
authors = ["Nathan Jaremko <njaremko@gmail.com>"]
description = "A command line podcast manager"
license = "GPL-3.0"
readme = "README.md"
keywords = ["audio", "cli", "podcast", "music"]
repository = "https://github.com/njaremko/podcast"
categories = ["command-line-utilities"]

[badges]
travis-ci = { repository = "njaremko/podcast" }

[[bin]]
bench = false
path = "src/main.rs"
name = "podcast"

[dependencies]
chrono = { version = "0.4", features = ["serde"] }
clap = "2.33"
dirs = "2.0"
failure = "0.1"
lazy_static = "1.3"
rayon = "1.1"
regex = "1.1"
reqwest = "0.9"
rss = {version = "1.8", features = ["from_url"] }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_yaml = "0.8"
toml = "0.5"
percent-encoding = "1"