aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2020-10-30 12:58:50 -0700
committerFuwn <[email protected]>2020-10-30 12:58:50 -0700
commit3ca642734629b108ece241ea9644f5ed1ee339cb (patch)
tree515fc5c33c62eb4ab970f3d3e5bb7f40ff417df1 /src/lib.rs
parentchore: change cc env vars file type, (md -> txt) (diff)
downloaddep-core-next-3ca642734629b108ece241ea9644f5ed1ee339cb.tar.xz
dep-core-next-3ca642734629b108ece241ea9644f5ed1ee339cb.zip
feat (desc)
feat: - add `Procfile` and `app.json` to "prep" for heroku (probably not going to go to heroku though). - implement a plugin system and enable `random_hi` plugin. - move webserver to seperate location
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index ec43ea4..3ec9c47 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,12 +1,11 @@
#![recursion_limit = "128"]
#![allow(proc_macro_derive_resolution_fallback)]
-// #![feature(decl_macro)]
+#![feature(decl_macro, async_closure)]
#[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;
@@ -25,11 +24,13 @@ extern crate threadpool;
extern crate typemap;
extern crate urbandictionary;
// extern crate rocket_contrib;
+// extern crate tokio;
pub mod macros;
pub mod core;
pub mod db;
pub mod modules;
+// pub mod webserver;
pub mod wisp; // Client
pub use crate::wisp::WispClient;