slippy-cli 0.1.0

AI Linter for Rust projects
struct Product {
    id: ProductType,
    year_published: i64,
    book_summary: Option<String>,
    apple_color: Option<AppleColor>,
}

enum ProductType {
    Book,
    Magazine,
    Newspaper,
    Apple,
}

enum AppleColor {
    Red,
    Green,
    Yellow,
}