global: crates cleanup

This commit is contained in:
nym21
2025-02-24 00:25:58 +01:00
parent 8acbcc548c
commit 2f93fd7c36
21 changed files with 138 additions and 67 deletions
+35
View File
@@ -0,0 +1,35 @@
#[cfg(feature = "computer")]
pub mod computer {
#[doc(inline)]
pub use brk_computer::*;
}
#[cfg(feature = "fetcher")]
pub mod fetcher {
#[doc(inline)]
pub use brk_fetcher::*;
}
#[cfg(feature = "indexer")]
pub mod indexer {
#[doc(inline)]
pub use brk_indexer::*;
}
#[cfg(feature = "logger")]
pub mod logger {
#[doc(inline)]
pub use brk_logger::*;
}
#[cfg(feature = "parser")]
pub mod parser {
#[doc(inline)]
pub use brk_parser::*;
}
#[cfg(feature = "server")]
pub mod server {
#[doc(inline)]
pub use brk_server::*;
}