[package]
edition = "2021"
rust-version = "1.75"
name = "bootsmith-disk"
version = "1.0.0"
authors = ["John Appleby <johnmichaelappleby@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Raw device access for bootsmith. macOS impl; Linux/BSD planned."
readme = false
license = "MIT"
repository = "https://github.com/jma24/bootsmith"
[lib]
name = "bootsmith_disk"
path = "src/lib.rs"
[[example]]
name = "probe"
path = "examples/probe.rs"
[dependencies.bootsmith-core]
version = "1.0.0"
[dependencies.thiserror]
version = "1"
[dependencies.tracing]
version = "0.1"
[target.'cfg(target_os = "macos")'.dependencies.nix]
version = "0.27"
features = [
"fs",
"ioctl",
"mount",
]
[target.'cfg(target_os = "macos")'.dependencies.plist]
version = "1.6"
[target.'cfg(target_os = "macos")'.dependencies.serde]
version = "1"
features = ["derive"]