d4-mpfr-sys 0.1.2

A Rust wrapper around MPFR for d4.
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    let gmp = pkg_config::probe_library("mpfr").unwrap();

    for path in gmp.include_paths {
        println!("cargo::metadata=INCLUDE={}", path.display());
    }

    for path in gmp.link_paths {
        println!("cargo::rustc-link-search=native={}", path.display());
    }
}