cpp_regexp 0.6.1

cpp std::regex
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    cxx_build::bridge("src/lib.rs") // returns a cc::Build
        .file("src/regex.cc")
        .flag_if_supported("-std=c++14")
        .compile("cpp_regexp");

    println!("cargo:rerun-if-changed=src/lib.rs");
    println!("cargo:rerun-if-changed=src/regex.cc");
    println!("cargo:rerun-if-changed=include/regex.hpp");
}