summaryrefslogtreecommitdiffstats
path: root/nix-rust/src/lib.rs
blob: 9935cd27a14fbb99628107536ccc44c858a0c572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#[macro_use]
extern crate lazy_static;

#[cfg(test)]
#[macro_use]
extern crate assert_matches;

#[cfg(test)]
#[macro_use]
extern crate proptest;

#[cfg(not(test))]
mod c;
mod error;
mod foreign;
#[cfg(unused)]
mod nar;
mod store;
mod util;

pub use error::Error;