mirror of
https://github.com/Skallwar/suckit.git
synced 2026-09-10 07:16:19 -04:00
scraper: Remove lazy_static
This commit is contained in:
parent
25df65d24c
commit
4534ed0237
1
Cargo.lock
generated
1
Cargo.lock
generated
|
|
@ -1227,7 +1227,6 @@ version = "0.1.0"
|
|||
dependencies = [
|
||||
"crossbeam",
|
||||
"kuchiki",
|
||||
"lazy_static",
|
||||
"pretty_assertions",
|
||||
"reqwest",
|
||||
"structopt",
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue