From 682f4ae9e683d6395cd29c2be4af52c9f9c0dec9 Mon Sep 17 00:00:00 2001 From: Stu Small Date: Sat, 15 Oct 2016 10:16:32 -0600 Subject: [PATCH] Removing an unused depency on time crate --- Cargo.toml | 3 +-- src/lib.rs | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index be96460..c300882 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ttl_cache" -version = "0.2.0" +version = "0.2.1" authors = ["Stu Small "] description = "A cache that will expire values after a TTL" repository = "https://github.com/stusmall/ttl_cache" @@ -9,5 +9,4 @@ keywords = ["cache","ttl","expire"] license = "MIT/Apache-2.0" [dependencies] -time = "0.1" linked-hash-map = "0.3" diff --git a/src/lib.rs b/src/lib.rs index 27ad97e..986db8b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,6 @@ //! invalid and will not be returned. extern crate linked_hash_map; -extern crate time; use linked_hash_map::LinkedHashMap; use std::time::{Duration, Instant};