Skip to content

Commit

Permalink
Removing an unused depency on time crate
Browse files Browse the repository at this point in the history
  • Loading branch information
Stu Small committed Oct 15, 2016
1 parent 9cb14ff commit 682f4ae
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ttl_cache"
version = "0.2.0"
version = "0.2.1"
authors = ["Stu Small <[email protected]>"]
description = "A cache that will expire values after a TTL"
repository = "https://github.com/stusmall/ttl_cache"
Expand All @@ -9,5 +9,4 @@ keywords = ["cache","ttl","expire"]
license = "MIT/Apache-2.0"

[dependencies]
time = "0.1"
linked-hash-map = "0.3"
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down

0 comments on commit 682f4ae

Please sign in to comment.