mergecode 0.0.2

Crates.io entrypoint for the existing MergeCode project.
Documentation
//! Crates.io entrypoint for the existing MergeCode project.
//!
//! MergeCode already exists. This crate currently provides a minimal public
//! package surface while the broader workspace is consolidated from many
//! microcrates into a smaller crate surface with focused SRP modules.
//!
//! The public API is intentionally minimal until that packaging work is ready.

/// Returns the current packaging status.
#[must_use]
pub const fn status() -> &'static str {
    "mergecode packaging entrypoint"
}

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

    #[test]
    fn status_identifies_packaging_entrypoint() {
        assert_eq!(status(), "mergecode packaging entrypoint");
    }
}