pst-rs 0.0.1

Crates.io reservation for the existing PST-RS Outlook PST/OST toolkit.
Documentation
//! Crates.io reservation package for the existing PST-RS project.
//!
//! PST-RS already exists as a Rust toolkit for Microsoft Outlook PST/OST files.
//! This `0.0.1` crate does **not** expose the real library surface yet.
//!
//! The full project is being prepared for public crates.io packaging, including
//! package-boundary cleanup, artifact exclusion, and API-surface review.

/// Returns the current crates.io package status.
#[must_use]
pub const fn status() -> &'static str {
    "pst-rs crates.io reservation"
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn status_identifies_reservation_package() {
        assert_eq!(status(), "pst-rs crates.io reservation");
    }
}