summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2017-02-12 15:37:50 -0500
committerAndrew Gallant <jamslam@gmail.com>2017-02-12 15:37:50 -0500
commitd825648b8624ee83a066230e4551d69767477d36 (patch)
tree5e2df5331e0fb0e7ae97da0b20b803dffeeafa33
parent22cb644eb6fc7872c1a0e5e084791b87382014b4 (diff)
Remove lazy_static from globset
-rw-r--r--Cargo.lock1
-rw-r--r--globset/Cargo.toml1
-rw-r--r--globset/src/lib.rs2
3 files changed, 0 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b0d13752..dccf8299 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -106,7 +106,6 @@ version = "0.1.3"
dependencies = [
"aho-corasick 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
"fnv 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
- "lazy_static 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/globset/Cargo.toml b/globset/Cargo.toml
index 5f1fc95a..bd29ce42 100644
--- a/globset/Cargo.toml
+++ b/globset/Cargo.toml
@@ -21,7 +21,6 @@ bench = false
[dependencies]
aho-corasick = "0.6.0"
fnv = "1.0"
-lazy_static = "0.2"
log = "0.3"
memchr = "1"
regex = "0.2.1"
diff --git a/globset/src/lib.rs b/globset/src/lib.rs
index ae6a9e5d..ea118c73 100644
--- a/globset/src/lib.rs
+++ b/globset/src/lib.rs
@@ -101,8 +101,6 @@ or to enable case insensitive matching.
extern crate aho_corasick;
extern crate fnv;
#[macro_use]
-extern crate lazy_static;
-#[macro_use]
extern crate log;
extern crate memchr;
extern crate regex;