1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
//! Miscellaneous Rust utilities
//!
//! [Repository](https://github.com/spearman/rs-utils)

#![cfg_attr(test, feature(plugin))]
#![cfg_attr(test, plugin(quickcheck_macros))]

#![feature(custom_attribute)]

#[macro_use] extern crate lazy_static;

extern crate generic_array;
extern crate typenum;

#[cfg(test)] extern crate quickcheck;

pub mod array;
pub mod file;
pub mod numeric;
pub mod process;