diff options
| author | Jokler <jokler.contact@gmail.com> | 2019-12-07 20:43:44 +0100 |
|---|---|---|
| committer | Jokler <jokler.contact@gmail.com> | 2019-12-07 20:43:44 +0100 |
| commit | fc622ed40c866de5d6dfe3a8015d261ad2246c61 (patch) | |
| tree | 47c55aefed6fc5f642d21dd02a301c1a03049bc3 /src/lib.rs | |
| parent | c7ea1433942bee14be096f39c67136801039263f (diff) | |
| download | frippy-fc622ed40c866de5d6dfe3a8015d261ad2246c61.tar.gz frippy-fc622ed40c866de5d6dfe3a8015d261ad2246c61.zip | |
Remove 'extern crate' lines
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 29 |
1 files changed, 1 insertions, 28 deletions
@@ -28,34 +28,6 @@ //! Frippy uses the [log](https://docs.rs/log) crate so you can log events //! which might be of interest. -#[cfg(feature = "mysql")] -#[macro_use] -extern crate diesel; -#[cfg(feature = "mysql")] -extern crate r2d2; -#[cfg(feature = "mysql")] -extern crate r2d2_diesel; - -#[macro_use] -extern crate failure; -#[macro_use] -extern crate frippy_derive; -#[macro_use] -extern crate lazy_static; -#[macro_use] -extern crate log; - -extern crate antidote; -extern crate chrono; -extern crate circular_queue; -extern crate humantime; -extern crate irc; -extern crate rand; -extern crate regex; -extern crate reqwest; -extern crate serde_json; -extern crate time; - pub mod error; pub mod plugin; pub mod plugins; @@ -65,6 +37,7 @@ use crate::plugin::*; use crate::error::*; use failure::ResultExt; +use log::{debug, error, info}; pub use irc::client::data::Config; use irc::client::ext::ClientExt; |
