libmcl-sys 0.1.0

This system crate provides Rulst language bindings to the Minos Compute Library (MCL)
1
2
3
4
5
6
7
8
9
10
use libmcl_sys::*;

#[test]
fn init() {
    unsafe{
        assert_eq!(mcl_init(1, MCL_NULL.into()), 0);

        assert_eq!(mcl_finit(), 0);
    }
}