rswappalyzer_engine/
lib.rs1#![forbid(unsafe_code)] #![warn(unused_imports)] #![warn(unused_variables)] #[cfg(feature = "full-meta")]
9pub const FULL_META_ENABLED: bool = true;
10
11#[cfg(not(feature = "full-meta"))]
13pub const FULL_META_ENABLED: bool = false;
14
15pub mod core;
17pub mod indexer;
19pub mod processor;
21pub mod automation;
23pub mod pruner;
25pub mod source;
27pub mod regex_filter;
29pub mod cleaner;
31pub mod error;
33pub mod utils;
35
36pub use core::*;
38pub use indexer::*;
39pub use processor::*;
40pub use pruner::*;
41pub use utils::*;
42pub use error::*;
43pub use automation::*;