Remove some redundant "extern crate" statements
This commit is contained in:
parent
0521f0ce5a
commit
03227d6aa9
2 changed files with 0 additions and 18 deletions
16
src/lib.rs
16
src/lib.rs
|
@ -29,22 +29,6 @@ extern crate serde_derive;
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate serde_plain;
|
extern crate serde_plain;
|
||||||
|
|
||||||
extern crate chrono;
|
|
||||||
extern crate diff;
|
|
||||||
extern crate futures;
|
|
||||||
extern crate futures_cpupool;
|
|
||||||
extern crate percent_encoding;
|
|
||||||
extern crate pulldown_cmark;
|
|
||||||
extern crate r2d2;
|
|
||||||
extern crate r2d2_diesel;
|
|
||||||
extern crate rand;
|
|
||||||
extern crate seahash;
|
|
||||||
extern crate serde;
|
|
||||||
extern crate serde_json;
|
|
||||||
extern crate serde_urlencoded;
|
|
||||||
extern crate slug;
|
|
||||||
extern crate titlecase;
|
|
||||||
|
|
||||||
use std::net::{IpAddr, SocketAddr};
|
use std::net::{IpAddr, SocketAddr};
|
||||||
|
|
||||||
mod assets;
|
mod assets;
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate lazy_static;
|
extern crate lazy_static;
|
||||||
extern crate clap;
|
|
||||||
extern crate sausagewiki;
|
|
||||||
|
|
||||||
use std::net::IpAddr;
|
use std::net::IpAddr;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue