mir-rs 0.3.0

FFI bindings to MIR Project (https://github.com/vnmakarov/mir)
Documentation
1
2
3
4
5
6
7
8
fn main() {
    println!("cargo::rerun-if-changed=build.rs");

    cc::Build::new()
        .std("c11")
        .file("./mirrs_trampoline.c")
        .compile("mirrs_trampoline");
}