This repository has been archived on 2022-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
Szymon Walter 36f13bea2a Reformat
- `length::Length` was renamed as `size::Size` to better reflect the
 purpose
 - `sector::Size` was renamed as `sector::SectorSize`
 - lifetime names were given meaning (etc. `'vol`, `'inode`)
 - `Volume` and `Length` were changed to be generic over `S:
 SectorSize`, instead of `Idx` and now use `Address<S>` as the only
 addressing (indexing) type
2018-03-22 09:37:22 +01:00
src Reformat 2018-03-22 09:37:22 +01:00
.gitignore add project files 2018-03-18 17:41:56 +01:00
Cargo.toml add no_std as default feature 2018-03-19 13:29:22 +01:00
ext2.img enable reading the entire contents of inodes 2018-03-21 23:05:41 +01:00
LICENSE.md add README and LICENSE 2018-03-21 18:45:07 +01:00
README.md add README and LICENSE 2018-03-21 18:45:07 +01:00
rustfmt.toml add project files 2018-03-18 17:41:56 +01:00

ext2-rs

An OS and architecture independent implementation of ext2 in pure Rust.