ethash-sys 0.1.1

FFI bindings to ethash c library. Actual code retrieved from : https://github.com/ethereum-mining/ethminer
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");
}