wan2_5_app 0.1.0

Minimal Rust package for Wan2.5 AI platform site metadata and docs.rs indexing.
Documentation
/// Returns the official Wan2.5 website URL.
pub const fn homepage() -> &'static str {
    "https://www.wan2-5.app"
}

/// Short product description used by downstream examples and tests.
pub const fn summary() -> &'static str {
    "Wan2.5 is an AI platform for discovery and workflow reference use cases."
}

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

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

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