aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2020-10-29 23:50:10 -0700
committerFuwn <[email protected]>2020-10-29 23:50:10 -0700
commitc20c9a59a1d487286116809856497fa089781659 (patch)
tree9be2c51c61ec355df471d1d6fc3b809d354e64c4 /src/lib.rs
parentfeat, annotate, chore (desc) (diff)
downloaddep-core-next-c20c9a59a1d487286116809856497fa089781659.tar.xz
dep-core-next-c20c9a59a1d487286116809856497fa089781659.zip
feat, chore, doc
feat: - implement rocket webserver (switch to rust nightly) - implement basic voice handling (outdated as i will probably be adding lavalink soon) chore: - specify rust toolchain in `rust-toolchain` file. - tidy up code a tiny bit doc: - add cc enviroment variables to file for future reference. - thicken readme.md (useless tbh)
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 0970dcf..ec43ea4 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,10 +1,12 @@
#![recursion_limit = "128"]
#![allow(proc_macro_derive_resolution_fallback)]
+// #![feature(decl_macro)]
#[macro_use] extern crate diesel;
#[macro_use] extern crate lazy_static;
#[macro_use] extern crate log;
#[macro_use] extern crate serde_derive;
+// #[macro_use] extern crate rocket;
extern crate serenity;
extern crate chrono;
extern crate forecast;
@@ -22,6 +24,7 @@ extern crate sysinfo;
extern crate threadpool;
extern crate typemap;
extern crate urbandictionary;
+// extern crate rocket_contrib;
pub mod macros;
pub mod core;