1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/nix-rust/src/lib.rs

11 lines
208 B
Rust
Raw Normal View History

2019-09-10 15:55:32 -04:00
mod error;
mod foreign;
mod tarfile;
2019-03-27 09:12:20 -04:00
2019-09-10 15:55:32 -04:00
pub use error::Error;
2019-03-27 09:12:20 -04:00
#[no_mangle]
2019-09-10 15:55:32 -04:00
pub extern "C" fn unpack_tarfile(source: foreign::Source, dest_dir: &str) {
tarfile::unpack_tarfile(source, dest_dir).unwrap();
2019-03-27 09:12:20 -04:00
}