aboutsummaryrefslogtreecommitdiff
path: root/nix-rust/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'nix-rust/src/lib.rs')
-rw-r--r--nix-rust/src/lib.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/nix-rust/src/lib.rs b/nix-rust/src/lib.rs
index 2dbe6a217..635c00aff 100644
--- a/nix-rust/src/lib.rs
+++ b/nix-rust/src/lib.rs
@@ -1,5 +1,16 @@
#![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;