1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#![allow(non_camel_case_types)]
#![feature(plugin)]
#![plugin(error_def)]

#[macro_use] extern crate newtype_derive;

/// A couple of binary types defined without macros for illustration purposes.
pub mod binary_static;
/// Macros for generating binary finite field types.
pub mod binary_fields;
/// Macros for generating n-ary finite field types.
pub mod fields;
/// Custom error for finite field arithmetic arrors.
pub mod error;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
    }
}