diff options
| author | Nathan Jaremko | 2019-06-20 09:52:54 -0400 |
|---|---|---|
| committer | Nathan Jaremko | 2019-06-20 09:52:54 -0400 |
| commit | ff1f8f3b0dbfdf5abfcb03db56bdf83637e630b6 (patch) | |
| tree | 75cf1a6871848c88ec0e3b9898bfcf64e051173f | |
| parent | 750fc36a40c194b97624d48d88fd3f22a5f5d7e0 (diff) | |
| download | podcast-ff1f8f3b0dbfdf5abfcb03db56bdf83637e630b6.tar.bz2 | |
Support stable0.12.0
| -rw-r--r-- | CHANGELOG | 3 | ||||
| -rw-r--r-- | Cargo.toml | 8 | ||||
| -rw-r--r-- | src/main.rs | 2 |
3 files changed, 7 insertions, 6 deletions
@@ -1,3 +1,6 @@ +0.12.0 +- Remove nightly only features, works on stable now. + 0.11.0 - Add podcast search support. Podcast index is a work in progress, but I'm working on it. @@ -1,7 +1,7 @@ [package] name = "podcast" edition = "2018" -version = "0.11.0" +version = "0.12.0" authors = ["Nathan Jaremko <njaremko@gmail.com>"] description = "A command line podcast manager" license = "GPL-3.0" @@ -21,13 +21,13 @@ name = "podcast" [dependencies] chrono = { version = "0.4", features = ["serde"] } clap = "2.33" -dirs = "1.0" +dirs = "2.0" failure = "0.1" lazy_static = "1.3" -rayon = "1.0" +rayon = "1.1" regex = "1.1" reqwest = "0.9" -rss = {version = "1.7", features = ["from_url"] } +rss = {version = "1.8", features = ["from_url"] } serde = "1.0" serde_derive = "1.0" serde_json = "1.0" diff --git a/src/main.rs b/src/main.rs index 08fa545..f7d6fe8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,3 @@ -#![feature(impl_trait_in_bindings)] - extern crate chrono; extern crate clap; extern crate dirs; |
