msoffice_crypt 0.1.1

msoffice-crypt bindings for the Rust programming language.
Documentation
1
2
3
4
5
6
7
8
use std::path::Path;
use std::env;
fn main() {
    let dir = env::var("CARGO_MANIFEST_DIR").unwrap();
    //println!("cargo:rustc-link-search=native=./lib");
    println!("cargo:rustc-link-lib=dylib=msoc");
    println!("cargo:rustc-link-search=native={}",Path::new(&dir).join("lib").display());
}