From ff1f8f3b0dbfdf5abfcb03db56bdf83637e630b6 Mon Sep 17 00:00:00 2001 From: Nathan Jaremko Date: Thu, 20 Jun 2019 09:52:54 -0400 Subject: Support stable --- CHANGELOG | 3 +++ Cargo.toml | 8 ++++---- src/main.rs | 2 -- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 64a8c88..3cdeb6b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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. diff --git a/Cargo.toml b/Cargo.toml index 241316a..83b3381 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "podcast" edition = "2018" -version = "0.11.0" +version = "0.12.0" authors = ["Nathan Jaremko "] 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; -- cgit v1.2.3