[package]
edition = "2021"
rust-version = "1.75"
name = "mkmsbr"
version = "1.0.1"
authors = ["John Appleby <johnmichaelappleby@gmail.com>"]
build = "build.rs"
exclude = [
"boot-asm/**/*.bin",
"tests/real_content/**",
".claude/**",
"docs/USBWIN_NTLDR_FINDINGS_2026_05_19.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Clean-room library + CLI for Microsoft-compatible MBR and FAT32/NTFS boot records."
readme = "README.md"
keywords = [
"boot",
"mbr",
"fat32",
"ntfs",
"windows",
]
categories = [
"filesystem",
"command-line-utilities",
"os::windows-apis",
]
license = "MIT"
repository = "https://github.com/jma24/mkmsbr"
[features]
compare-mssys = []
default = ["embed-boot-asm"]
embed-boot-asm = []
[lib]
name = "mkmsbr"
path = "src/lib.rs"
[[bin]]
name = "mkmsbr"
path = "src/bin/mkmsbr.rs"
required-features = ["embed-boot-asm"]
[[test]]
name = "byte_diff_vs_mssys"
path = "tests/byte_diff_vs_mssys.rs"
[[test]]
name = "layer1_oracle"
path = "tests/layer1_oracle.rs"
[[test]]
name = "qemu_mbr"
path = "tests/qemu_mbr.rs"
[[test]]
name = "qemu_ntfs_pbr"
path = "tests/qemu_ntfs_pbr.rs"
[[test]]
name = "qemu_pbr"
path = "tests/qemu_pbr.rs"
[[test]]
name = "qemu_pbr_real"
path = "tests/qemu_pbr_real.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.thiserror]
version = "1"