m4ri_rust/lib.rs
1#![cfg_attr(feature = "system_alloc", feature(alloc_system))]
2//! Fast binary matrix operations
3//! Interfaces the M4RI library and provides friendly abstractions
4extern crate libc;
5#[cfg_attr(test, macro_use)]
6extern crate vob;
7
8#[cfg(feature = "system_alloc")]
9extern crate alloc_system;
10
11extern crate rand;
12
13#[cfg(feature = "serde")]
14#[macro_use]
15extern crate serde;
16#[cfg(test)]
17#[cfg(feature = "serde")]
18extern crate serde_json;
19
20extern crate m4ri_sys as ffi;
21
22pub mod friendly;