finitefields 0.1.0

Perform algebraic operations between integers over a finite field
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate cc;

fn main() {
    //println!("cargo:rustc-link-lib=stdc++");
    //println!("cargo:rustc-link-lib=gcc");

    cc::Build::new().file("src/mul_mod.c")
        .opt_level(3)
        .flag("-Wall")
        .flag("-ffast-math")
        .compile("libmulmod.a");
    
}