1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
extern crate libc;
extern crate rvs;

mod rvsc;
mod context;
mod error;

pub use rvsc::*;
pub use error::*;

#[cfg(test)]
#[macro_use(assert_diff)]
extern crate difference;
#[cfg(test)]
extern crate tempdir;
#[cfg(test)]
mod tests;