ryzz icon indicating copy to clipboard operation
ryzz copied to clipboard

Sqlite automatic migrations and query builder all in one

Results 7 ryzz issues
Sort by recently updated
recently updated
newest added

Having to type out every row is a bummer. The .rows() fn will return a Vec and allow you to drive your queries from sql without having to have a...

Title pretty much says it

It would be sweet to pre-specify ranges of values that can be used to validate the struct prior to entry. For example this would be 🔥 ```rs #[table("shiny_apps")] struct ShinyAppRow...

Implementing the default trait for a struct with the ryzz attribute macro results in a conflicting trait implementation. ```rs #[table("shiny_apps")] struct ShinyAppRow { #[ryzz(pk)] id: String, name: String, slug: Option,...

I'd like to be able to use an enum to specify a field. Ideally, I can be able to have an enum that I can use then that would get...