├── .github ├── FUNDING.yml └── workflows │ └── rust.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE.Apache-2.0 ├── LICENSE.MIT ├── README.md ├── download.sh ├── src ├── lib.rs └── linux.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/gptman/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/gptman/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/gptman/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/gptman/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.Apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/gptman/HEAD/LICENSE.Apache-2.0 -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/gptman/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/gptman/HEAD/README.md -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/gptman/HEAD/download.sh -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/gptman/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/linux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/gptman/HEAD/src/linux.rs -------------------------------------------------------------------------------- /tests/fixtures/disk1.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/gptman/HEAD/tests/fixtures/disk1.img -------------------------------------------------------------------------------- /tests/fixtures/disk2.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-disk-partition-management/gptman/HEAD/tests/fixtures/disk2.img --------------------------------------------------------------------------------