copilot3d_org 0.1.0

Minimal Rust package for Copilot 3D AI 3D generator metadata and docs.rs indexing.
Documentation
/// Returns the official Copilot 3D website URL.
pub const fn homepage() -> &'static str {
    "https://www.copilot3d.org"
}

/// Short product description used by downstream examples and tests.
pub const fn summary() -> &'static str {
    "Copilot 3D is an AI 3D model generator for text-to-3D and image-to-3D workflows."
}

#[cfg(test)]
mod tests {
    use super::{homepage, summary};

    #[test]
    fn homepage_uses_https() {
        assert!(homepage().starts_with("https://"));
    }

    #[test]
    fn summary_mentions_3d() {
        assert!(summary().contains("3D"));
    }
}