aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-17 10:16:42 +0000
committerFuwn <[email protected]>2021-05-17 10:16:42 +0000
commit1b482ab22031ab9a895b2567ba10a2e553752303 (patch)
treedb4874c46b25655ba7c94b0ab435fdb0d681af55 /src/lib.rs
parentrefactor(global): whirl_config modulized (diff)
downloadwhirl-1b482ab22031ab9a895b2567ba10a2e553752303.tar.xz
whirl-1b482ab22031ab9a895b2567ba10a2e553752303.zip
refactor(global): even more modules becoming crates
I did multiple checks and **yes**, everything still works perfectly fine.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/lib.rs b/src/lib.rs
deleted file mode 100644
index 527647b..0000000
--- a/src/lib.rs
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
-// SPDX-License-Identifier: GPL-3.0-only
-
-#![feature(
- type_ascription,
- hash_set_entry,
- type_name_of_val,
- decl_macro,
- proc_macro_hygiene
-)]
-#![warn(rust_2018_idioms)]
-#![recursion_limit = "128"]
-
-#[macro_use]
-extern crate log;
-#[macro_use]
-extern crate diesel;
-#[macro_use]
-extern crate serde_derive;
-#[macro_use]
-extern crate async_trait;
-#[macro_use]
-extern crate simple_error;
-
-pub mod cli;
-pub mod prompt;
-pub mod subs;
-
-pub mod api;
-pub mod db;
-pub mod server;
-pub mod utils;