[package]
edition = "2024"
name = "mbrkit"
version = "1.0.0"
authors = ["Poseidon <18646154381@163.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI for building, inspecting, extracting, and verifying MBR-backed disk images"
homepage = "https://github.com/Poseidon-fan/linux-0.11-rs/tree/main/mbrkit"
documentation = "https://docs.rs/mbrkit"
readme = "README.md"
keywords = [
"mbr",
"disk-image",
"partition",
"cli",
"boot",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "MIT"
repository = "https://github.com/Poseidon-fan/linux-0.11-rs"
[lib]
name = "mbrkit"
path = "src/lib.rs"
[[bin]]
name = "mbrkit"
path = "src/main.rs"
[[test]]
name = "extract"
path = "tests/extract.rs"
[[test]]
name = "inspect"
path = "tests/inspect.rs"
[[test]]
name = "pack"
path = "tests/pack.rs"
[[test]]
name = "verify"
path = "tests/verify.rs"
[[test]]
name = "workflow"
path = "tests/workflow.rs"
[dependencies.clap]
version = "4.5.40"
features = ["derive"]
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.toml]
version = "1.0.6"
[dev-dependencies.tempfile]
version = "3.20.0"