ethash-sys 0.1.3

FFI bindings to ethash c library. Actual code retrieved from ethminer source code
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate gcc;

fn main(){

    gcc::Config::new()
        .include("native")
        .file("native/sha3.c")
        .file("native/internal.c")
        .static_flag(true)
    .compile("libethash.a");
}