[package] name = "gpt" version = "4.0.0" description = "A pure-Rust library to work with GPT partition tables." documentation = "https://docs.rs/gpt" authors = [ "Chris Ober ", "Chris Holcombe ", "Luca Bruno ", "Sören Meier ", ] license = "MIT" repository = "https://github.com/Quyzi/gpt" edition = "2021" rust-version = "1.65" exclude = ["tests/fixtures", "tests/gpt-real-disk.rs"] [features] # enable logging via the log crate log = ["dep:log"] # enable logging via the tracing crate tracing = ["dep:tracing"] [dependencies] bitflags = "2.0" crc = "3.0" log = { version = "0.4.18", optional = true } tracing = { version = "0.1.30", optional = true } uuid = { version = "1.3.4", features = ["v4"] } simple-bytes = "0.2.13" [dev-dependencies] tempfile = "3.0"