trellis3_com 0.1.0

Minimal Rust package for Trellis 3 AI art site metadata and docs.rs indexing.
Documentation
/// Returns the official Trellis 3 website URL.
pub const fn homepage() -> &'static str {
    "https://www.trellis3.com"
}

/// Short product description used by downstream examples and tests.
pub const fn summary() -> &'static str {
    "Trellis 3 is an AI video generator for image generation and creative art 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"));
    }
}