diff options
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,4 +1,4 @@ -#![recursion_limit = "128"] +#![recursion_limit = "128"] // 256 #![allow(proc_macro_derive_resolution_fallback)] #![feature(decl_macro, async_closure)] @@ -6,6 +6,7 @@ #[macro_use] extern crate lazy_static; #[macro_use] extern crate log; #[macro_use] extern crate serde_derive; + extern crate serenity; extern crate chrono; extern crate forecast; @@ -25,12 +26,14 @@ extern crate typemap; extern crate urbandictionary; // extern crate rocket_contrib; // extern crate tokio; +// extern crate lavalink_rs; pub mod macros; +pub mod modules; + pub mod core; pub mod db; -pub mod modules; // pub mod webserver; -pub mod wisp; // Client +pub mod wisp; // The Client pub use crate::wisp::WispClient; |