aboutsummaryrefslogtreecommitdiff
path: root/nix-rust/src/lib.rs
blob: 635c00affb98e758ef389fa0f832f338d51782c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![feature(await_macro, async_await)]

#[macro_use]
extern crate lazy_static;

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

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

mod c;
mod error;
mod foreign;
mod store;
mod util;

pub use error::Error;