rustygetdata 0.1.0

A Rust Wrapper for the GetData Library - Used to access, read, write, and work with Dirfiles.
Documentation
1
2
3
4
5
6
// build.rs for the rustygetdata crate
fn main() {
    println!("cargo:rustc-link-lib=getdata"); // Link against the libgetdata library
    println!("cargo:rustc-link-search=/usr/lib"); // Ensure the library path is searched
    println!("cargo:include=/usr/include"); // Include the directory for headers
}