fontconfig 0.3.0

Safe, higher-level wrapper around the Fontconfig library
Documentation
1
2
3
4
5
6
7
fn main() {
    println!("cargo:rerun-if-env-changed=RUST_FONTCONFIG_DLOPEN");
    let dlopen = std::env::var_os("RUST_FONTCONFIG_DLOPEN").is_some();
    if dlopen {
        println!("cargo:rustc-cfg=feature=\"dlopen\"");
    }
}