//! Partition-table probe (GPT/MBR) and filesystem-magic sniffer over any
//! random-access block source.
//!
//! See the crate-level [`README`](https://github.com/antimatter-studios/rust-partitions)
//! for design and scope.
//!
//! Block-device abstractions come from
//! [`fs_core`](https://github.com/antimatter-studios/rust-fs-core); this
//! crate re-exports the bits most consumers will use so callers can `use
//! partitions::BlockRead;` without an extra dependency line.
pub use ;
pub use ;
pub use ;
pub use ;
// Re-export the core block-device pieces so consumers don't have to depend
// on fs-core directly for the common cases. SliceReader / OwnedSlice
// originally lived here but moved to fs-core in v0.2 — they're generic
// block-layer types, not partition-specific. Re-exported to keep
// existing `partitions::SliceReader` callers working.
pub use ;