Remove extern crate imports not needed anymore in Rust 2018 [ci skip]

This commit is contained in:
timvisee 2019-03-06 22:21:15 +01:00
parent b3ffbc3b35
commit 0ac37fb8fd
No known key found for this signature in database
GPG key ID: B8DB720BC383E172

View file

@ -1,22 +1,14 @@
extern crate chbs;
extern crate chrono;
#[macro_use] #[macro_use]
extern crate clap; extern crate clap;
#[macro_use] #[macro_use]
extern crate derive_builder; extern crate derive_builder;
#[macro_use] #[macro_use]
extern crate failure; extern crate failure;
extern crate ffsend_api;
#[macro_use] #[macro_use]
extern crate lazy_static; extern crate lazy_static;
extern crate openssl_probe;
extern crate prettytable;
extern crate rpassword;
extern crate serde;
#[cfg(feature = "history")] #[cfg(feature = "history")]
#[macro_use] #[macro_use]
extern crate serde_derive; extern crate serde_derive;
extern crate tempfile;
mod action; mod action;
#[cfg(feature = "archive")] #[cfg(feature = "archive")]