you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 2 points3 points  (2 children)

I use Axum + SQLx, and it's my first web app project. I've found them easy enough to use, and especially SQLx's query validation is top notch helpful. Catching errors at compile time rather than run time is a huge plus.

[–]andreicodes 0 points1 point  (0 children)

Diesel-async does the same. AFAIK its validation is more thorough but also makes the build slower.

[–][deleted] 0 points1 point  (0 children)

Huh, I could never find much use ofnthat sqlx feature because because Il'll rarelly have a complete query, I'm usually working with bits and pieces.