Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/RustyMft.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..dafa329
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,16 @@
+#[macro_use] extern crate serde_derive;
+#[macro_use] extern crate serde_json;
+#[macro_use] extern crate bitflags;
+#[macro_use] extern crate log;
+extern crate seek_bufread;
+extern crate byteorder;
+extern crate rwinstructs;
+extern crate encoding;
+extern crate serde;
+pub mod errors;
+pub mod utils;
+pub mod mft;
+pub mod entry;
+pub mod attribute;
+pub mod attr_x10;
+pub mod attr_x30;