mime-rs 0.3.0

A text processing framework, inspired by Emacs lisp and keyboard macros.
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    println!("cargo:rerun-if-changed=src/ffi.rs");

    cxx_build::bridge("mime-rs/ffi.rs")
        .includes(["c++/vendor/immer", "c++/include"])
        .file("c++/src/lib/mime.cc")
        .warnings(false)
        .flag_if_supported("-std=c++17")
        .opt_level(3)
        .compile("mime");
}