digifirma 0.1.1

Italian CIE P7M parser and signature checker
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// update build.rs file as:
extern crate cc;

fn main() {
    //println!("cargo:rustc-link-search=all=src"); // works like "rustc -L src ..."
    //println!("cargo:rustc-link-lib=dylib=doubler.o"); // works like "rustc -l doubler.o"

    cc::Build::new()
        .file("src/fix_store.c")
        .include("/usr/local/opt/openssl/include")
        .compile("libfixstore.a");
}