aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorNathan Jaremko2018-11-19 10:36:42 -0500
committerNathan Jaremko2018-11-19 10:36:42 -0500
commit118b36cbf32024f16ab7db4f1ad0b1a29b7592f5 (patch)
treef4d4b40f20ec10ec3526bdf239a1995e6830ac36 /Cargo.toml
parent714e8ded029907c1d8639121a3d171344808a5d5 (diff)
downloadpodcast-118b36cbf32024f16ab7db4f1ad0b1a29b7592f5.tar.bz2
Upgrade to rust 2018
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml14
1 files changed, 8 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index cb9cebe..8ccf3e3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,7 @@
[package]
name = "podcast"
-version = "0.5.10"
+edition = "2018"
+version = "0.6.0"
authors = ["Nathan Jaremko <njaremko@gmail.com>"]
description = "A command line podcast manager"
license = "GPL-3.0"
@@ -19,13 +20,14 @@ name = "podcast"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
-clap = "2.31"
-error-chain = "0.11"
-lazy_static = "1.0"
+clap = "2.32"
+dirs = "1.0"
+error-chain = "0.12"
+lazy_static = "1.2"
rayon = "1.0"
regex = "1.0"
-reqwest = "0.8"
-rss = {version = "1.5", features = ["from_url"] }
+reqwest = "0.9"
+rss = {version = "1.6", features = ["from_url"] }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"