mergecode 0.0.1

Placeholder crate for the future MergeCode project.
Documentation
//! Placeholder crate for the future MergeCode project.
//!
//! This crate currently reserves the `mergecode` package name on crates.io.
//! The public API is intentionally minimal and may change before the first
//! functional release.

/// Returns the placeholder crate status.
///
/// This function exists only so the initial crate has a tiny, documented API.
#[must_use]
pub const fn status() -> &'static str {
    "mergecode placeholder crate"
}

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

    #[test]
    fn status_identifies_placeholder() {
        assert_eq!(status(), "mergecode placeholder crate");
    }
}