diff options
| author | Fuwn <[email protected]> | 2020-10-29 23:50:10 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-10-29 23:50:10 -0700 |
| commit | c20c9a59a1d487286116809856497fa089781659 (patch) | |
| tree | 9be2c51c61ec355df471d1d6fc3b809d354e64c4 /src/lib.rs | |
| parent | feat, annotate, chore (desc) (diff) | |
| download | dep-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.rs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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; |