From 6d2ebc40fb4f261ef2accf0df836fdc46caca208 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Sun, 29 Jan 2017 19:02:50 -0600 Subject: [PATCH] Cleanup the unused md5 crate. --- Cargo.toml | 2 -- src/main.rs | 1 - 2 files changed, 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8a29ce2..3c963be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,11 +7,9 @@ repository = "https://github.com/zaphar/runwhen" readme = "README.md" keywords = ["file", "watcher", "command-line", "trigger"] license = "Apache-2.0" -license-file = "LICENSE.txt" [dependencies] clap = "~2.19.0" humantime = "~1.0.0" notify = "~3.0.0" -md5 = "~0.3.2" subprocess = "~0.1.7" diff --git a/src/main.rs b/src/main.rs index 46a3e2a..7d1c473 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,7 +15,6 @@ #[macro_use] extern crate clap; extern crate humantime; -extern crate md5; extern crate notify; extern crate subprocess;