veo_4 0.1.1

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

/// Short product description used by examples and package index pages.
pub const fn summary() -> &'static str {
    "Veo 4 is a Veo 4 video generator workflow for text-to-video and image-to-video content."
}

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

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

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