veo_3_5 0.1.1

Minimal Rust package for Veo 3.5 tool page metadata and docs.rs indexing.
Documentation
/// Returns the official Veo 3.5 website URL.
pub const fn homepage() -> &'static str {
    "https://www.voe35.com"
}

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

#[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"));
    }
}