cha-core 1.0.5

Core analysis engine for Cha — pluggable code smell detection
Documentation
1
2
3
4
5
6
7
8
fn main() {
    let src = "../wit/plugin.wit";
    println!("cargo:rerun-if-changed={src}");
    if std::path::Path::new(src).exists() {
        std::fs::create_dir_all("wit").unwrap();
        std::fs::copy(src, "wit/plugin.wit").unwrap();
    }
}