This repository has been archived on 2022-02-08. You can view files and clone it, but cannot push or open issues/pull-requests.
Go to file
Szymon Walter 85ddcd522c Remove old non-thread-safe ext2 implementation
Old implementation is now considered legacy. Thread-safety is now
enforced for any non-trivial operations. All trivial operations are
available on the regular `Ext2` struct found in `fs` module.
`Synced<Ext2>` is now the only way to go.
2018-03-22 11:23:58 +01:00
src Remove old non-thread-safe ext2 implementation 2018-03-22 11:23:58 +01:00
.gitignore add project files 2018-03-18 17:41:56 +01:00
Cargo.toml Add Thread-safe version of the ext2 implementation 2018-03-22 11:07:33 +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
ext2.img enable reading the entire contents of inodes 2018-03-21 23:05:41 +01:00
rustfmt.toml add project files 2018-03-18 17:41:56 +01:00

README.md

ext2-rs

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