hailuo_2_5 0.1.0

Minimal Rust package for Hailuo 2.5 tool page metadata and docs.rs indexing.
Documentation
/// Returns the official Hailuo 2.5 website URL.
pub const fn homepage() -> &'static str {
    "https://www.seedance2ai.app/tools/hailuo-2-5"
}

/// Short product description used by downstream examples and tests.
pub const fn summary() -> &'static str {
    "Hailuo 2.5 is an AI image generator for prompt-based and image editing workflows."
}

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

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

    #[test]
    fn summary_mentions_image() {
        assert!(summary().contains("image"));
    }
}