nix-super/nix-rust/src/lib.rs

20 lines
230 B
Rust
Raw Normal View History

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