diff options
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,15 +1,24 @@ // Copyleft (ɔ) 2021-2021 The Whirlsplash Collective // SPDX-License-Identifier: GPL-3.0-only -#![feature(type_ascription, hash_set_entry, type_name_of_val)] +#![feature( + type_ascription, + hash_set_entry, + type_name_of_val, + decl_macro, + proc_macro_hygiene +)] #![warn(rust_2018_idioms)] #[macro_use] extern crate log; +#[macro_use] +extern crate rocket; pub mod cli; pub mod config; +pub mod api; pub mod db; pub mod server; pub mod utils; |