pst_rs/lib.rs
1//! Crates.io reservation package for the existing PST-RS project.
2//!
3//! PST-RS already exists as a Rust toolkit for Microsoft Outlook PST/OST files.
4//! This `0.0.1` crate does **not** expose the real library surface yet.
5//!
6//! The full project is being prepared for public crates.io packaging, including
7//! package-boundary cleanup, artifact exclusion, and API-surface review.
8
9/// Returns the current crates.io package status.
10#[must_use]
11pub const fn status() -> &'static str {
12 "pst-rs crates.io reservation"
13}
14
15#[cfg(test)]
16mod tests {
17 use super::*;
18
19 #[test]
20 fn status_identifies_reservation_package() {
21 assert_eq!(status(), "pst-rs crates.io reservation");
22 }
23}