mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-05-19 09:40:22 -07:00
Remove lazy_static from globset
This commit is contained in:
parent
22cb644eb6
commit
d825648b86
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -106,7 +106,6 @@ version = "0.1.3"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"aho-corasick 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"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)",
|
"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)",
|
"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)",
|
"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)",
|
"regex 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -21,7 +21,6 @@ bench = false
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
aho-corasick = "0.6.0"
|
aho-corasick = "0.6.0"
|
||||||
fnv = "1.0"
|
fnv = "1.0"
|
||||||
lazy_static = "0.2"
|
|
||||||
log = "0.3"
|
log = "0.3"
|
||||||
memchr = "1"
|
memchr = "1"
|
||||||
regex = "0.2.1"
|
regex = "0.2.1"
|
||||||
|
@ -101,8 +101,6 @@ or to enable case insensitive matching.
|
|||||||
extern crate aho_corasick;
|
extern crate aho_corasick;
|
||||||
extern crate fnv;
|
extern crate fnv;
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate lazy_static;
|
|
||||||
#[macro_use]
|
|
||||||
extern crate log;
|
extern crate log;
|
||||||
extern crate memchr;
|
extern crate memchr;
|
||||||
extern crate regex;
|
extern crate regex;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user