blob: ec4f208050e7f12f14826f48374a78fac9f72b82 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
use mingling::build::analyze_and_build_type_mapping;
pub mod pre;
fn main() {
// Perform path analysis and build type mapping table
analyze_and_build_type_mapping().ok();
// Generate lint registry
pre::gen_mod_file().unwrap();
pre::gen_lint_registry().unwrap();
}
|