Nix/nix-rust/src/lib.rs

21 lines
250 B
Rust
Raw Normal View History

2019-09-17 00:18:17 +02:00
#[macro_use]
extern crate lazy_static;
#[cfg(test)]
#[macro_use]
extern crate assert_matches;
#[cfg(test)]
#[macro_use]
extern crate proptest;
2019-12-15 10:47:59 +01:00
#[cfg(not(test))]
2019-09-15 23:09:30 +02:00
mod c;
2019-09-10 21:55:32 +02:00
mod error;
#[cfg(unused)]
2019-09-18 00:31:51 +02:00
mod nar;
mod store;
2019-09-15 23:09:30 +02:00
mod util;
2019-03-27 14:12:20 +01:00
2019-09-10 21:55:32 +02:00
pub use error::Error;