pueue-sync 0.1.0

Placeholder crate for future Pueue synchronization tooling.
Documentation
//! Placeholder library for the future `pueue-sync` crate.

/// Returns the package name for this placeholder crate.
#[must_use]
pub const fn package_name() -> &'static str {
    env!("CARGO_PKG_NAME")
}

/// Returns the current placeholder status message.
#[must_use]
pub const fn status() -> &'static str {
    "pueue-sync is reserved for future Pueue synchronization tooling."
}

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

    #[test]
    fn exposes_placeholder_metadata() {
        assert_eq!(package_name(), "pueue-sync");
        assert!(status().contains("reserved"));
    }
}