rands 0.8.8

Random number generators and other randomness functionality.
1
2
3
4
5
6
7
8
9
10
fn main() {
    let root_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();
    let src_dir = format!("{}/src", root_dir);
    println!("cargo:rustc-link-search=native={}", src_dir);

    #[cfg(target_os = "macos")]
    println!("cargo:rustc-link-lib=static=merr");
    #[cfg(target_os = "linux")]
    println!("cargo:rustc-flags=-L {} -llerr", src_dir);
}