diff options
| -rw-r--r-- | CHANGELOG | 3 | ||||
| -rw-r--r-- | Cargo.toml | 10 | ||||
| -rw-r--r-- | podcast | 20 | 
3 files changed, 28 insertions, 5 deletions
| @@ -1,3 +1,6 @@ +0.5.9 +- Update remaining dependencies +  0.5.8  - Update regex crate to 1.0 @@ -1,6 +1,6 @@  [package]  name = "podcast" -version = "0.5.8" +version = "0.5.9"  authors = ["Nathan Jaremko <njaremko@gmail.com>"]  description = "A command line podcast manager"  license = "GPL-3.0" @@ -19,15 +19,15 @@ name = "podcast"  [dependencies]  chrono = { version = "0.4", features = ["serde"] } -clap = "2.28" +clap = "2.31"  error-chain = "0.11"  lazy_static = "1.0" -rayon = "0.9" +rayon = "1.0"  regex = "1.0"  reqwest = "0.8" -rss = {version = "1.2", features = ["from_url"] } +rss = {version = "1.5", features = ["from_url"] }  serde = "1.0"  serde_derive = "1.0"  serde_json = "1.0" -yaml-rust = "0.3" +yaml-rust = "0.4"  toml = "0.4" @@ -0,0 +1,20 @@ +.\" Manpage for podcast. +.\" Contact njaremko@gmail.com to correct errors or typos. +.TH PODCAST 1 "17 May 2018" "1.0" "podcast man page" +.SH NAME +podcast \- podcast manager +.SH SYNOPSIS +podcast [--help] [-v | --version] <command> +.SH DESCRIPTION +podcast is a command line podcast manager + +It handles all the basics. It can subscribe to rss feeds, download and play podcasts, and slightly more. +.SH OPTIONS +--help +\t \t Prints the synopsis and a list of the most commonly used commands. +.SH SEE ALSO + +.SH BUGS +No known bugs. +.SH AUTHOR +Nathan Jaremko (njaremko@gmail.com)
\ No newline at end of file | 
