libmcl-sys 0.1.2-rc3

This system crate provides Rust language bindings to the Minos Compute Library (MCL)
Documentation
1
2
3
4
5
6
7
8
9
#include <minos_sched.h>
#include <minos_sched_internal.h>

/*
We separate the scheduler internals into a library so that we can easily construct both C and Rust mcl_sched versions
*/
int main(int argc, char *argv[]) {
    return mcl_initiate_scheduler(argc, argv);
}