├── .github ├── FUNDING.yml └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE.Apache-2.0 ├── LICENSE.MIT ├── README.md ├── src └── lib.rs └── tests └── fixtures ├── disk1.img └── disk2.img /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: cecton 2 | -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/mbrman/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/mbrman/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.Apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/mbrman/HEAD/LICENSE.Apache-2.0 -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/mbrman/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/mbrman/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/mbrman/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/fixtures/disk1.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/mbrman/HEAD/tests/fixtures/disk1.img -------------------------------------------------------------------------------- /tests/fixtures/disk2.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/mbrman/HEAD/tests/fixtures/disk2.img --------------------------------------------------------------------------------