Directory Structure
Directory structure:
└── jobala-tinyfs/
├── README.md
├── Cargo.toml
├── CHANGELOG.md
├── LICENSE
├── Makefile
├── .rustfmt.toml
├── design/
│ ├── fs_init.md
│ ├── ls.md
│ ├── mkdir.md
│ ├── mkfs.md
│ ├── stat.md
│ └── tinyfs.md
├── src/
│ ├── main.rs
│ ├── mkfs.rs
│ └── tiny/
│ ├── bitmap.rs
│ ├── constants.rs
│ ├── directory.rs
│ ├── fs.rs
│ ├── fs_extensions.rs
│ ├── inode.rs
│ ├── mod.rs
│ └── superblock.rs
└── .github/
├── pull_request_template.md
└── workflows/
└── release-please.yml