mirror of
https://gitlab.com/news-flash/article_scraper.git
synced 2025-07-07 16:15:32 +02:00
remove old dependency
This commit is contained in:
parent
b76bb7eea7
commit
5beb25a575
2 changed files with 3 additions and 3 deletions
|
@ -11,7 +11,6 @@ url = "1.7"
|
||||||
regex = "1.0"
|
regex = "1.0"
|
||||||
encoding_rs = "0.8"
|
encoding_rs = "0.8"
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
htmlescape = "0.3"
|
|
||||||
base64 = "0.9"
|
base64 = "0.9"
|
||||||
image = "0.19"
|
image = "0.19"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
|
@ -5,7 +5,6 @@ extern crate reqwest;
|
||||||
extern crate url;
|
extern crate url;
|
||||||
extern crate regex;
|
extern crate regex;
|
||||||
extern crate encoding_rs;
|
extern crate encoding_rs;
|
||||||
extern crate htmlescape;
|
|
||||||
extern crate base64;
|
extern crate base64;
|
||||||
extern crate image;
|
extern crate image;
|
||||||
extern crate chrono;
|
extern crate chrono;
|
||||||
|
@ -35,7 +34,9 @@ use config::{
|
||||||
GrabberConfig,
|
GrabberConfig,
|
||||||
ConfigCollection
|
ConfigCollection
|
||||||
};
|
};
|
||||||
use encoding_rs::*;
|
use encoding_rs::{
|
||||||
|
Encoding,
|
||||||
|
};
|
||||||
use chrono::NaiveDateTime;
|
use chrono::NaiveDateTime;
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
use images::ImageDownloader;
|
use images::ImageDownloader;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue