From c140e5a16391676f6e1d2690e1043ff93de39a82 Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Sun, 21 Jun 2020 18:07:21 +0300 Subject: [PATCH] downloader: remove unused dependency on error-chain --- Cargo.lock | 2 -- podcasts-downloader/Cargo.toml | 1 - 2 files changed, 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 288cc61..594ef1c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -490,7 +490,6 @@ version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d371106cc88ffdfb1eabd7111e432da544f16f3e2d7bf1dfe8bf575f1df045cd" dependencies = [ - "backtrace", "version_check", ] @@ -1855,7 +1854,6 @@ dependencies = [ name = "podcasts-downloader" version = "0.1.0" dependencies = [ - "error-chain", "failure", "failure_derive", "glob", diff --git a/podcasts-downloader/Cargo.toml b/podcasts-downloader/Cargo.toml index 3778ea9..4b69082 100644 --- a/podcasts-downloader/Cargo.toml +++ b/podcasts-downloader/Cargo.toml @@ -5,7 +5,6 @@ version = "0.1.0" edition = "2018" [dependencies] -error-chain = "0.12.2" log = "0.4.8" mime_guess = "2.0.3" reqwest = "0.9.22"