geph5-client 0.2.16

Geph5 client
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    #[cfg(all(feature = "windivert", windows))]
    {
        let dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();
        println!(
            "cargo:rustc-link-search=native={}",
            std::path::Path::new(&dir).join("windows-lib").display()
        );
        println!("cargo:rustc-link-lib=WinDivert");
    }
}