scraper: Remove lazy_static

This commit is contained in:
cohenarthur 2020-04-18 12:53:34 +02:00
parent 25df65d24c
commit 4534ed0237
3 changed files with 0 additions and 3 deletions

1
Cargo.lock generated
View file

@ -1227,7 +1227,6 @@ version = "0.1.0"
dependencies = [
"crossbeam",
"kuchiki",
"lazy_static",
"pretty_assertions",
"reqwest",
"structopt",

View file

@ -9,7 +9,6 @@ edition = "2018"
[dependencies]
structopt = "0.3"
crossbeam = "0.7"
lazy_static = "1.4"
reqwest = { version = "0.10", features = ["blocking"] }
pretty_assertions = "0.6"
kuchiki = "0.8"

View file

@ -1,6 +1,5 @@
use crossbeam::channel::{Receiver, Sender, TryRecvError};
use crossbeam::thread;
use lazy_static::lazy_static;
use reqwest::Url;
use std::collections::HashMap;