Nix/nix-rust/src/lib.rs

10 lines
114 B
Rust
Raw Normal View History

#![feature(await_macro, async_await)]
2019-09-15 23:09:30 +02:00
mod c;
2019-09-10 21:55:32 +02:00
mod error;
mod foreign;
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;