ext2 0.1.1

Read and write on Ext2 partitions without mount
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod tests_common;
use std::fs::File;

use tests_common::*;

#[test]
fn open() {
    create_disk(1024 * 1024);
    let ext2 = new_ext2_instance::<File>();
    dbg!(ext2);
}