>>105655477>Should I also switch from sqlx to diesel?idk, never used sqlx. I like Diesel because its basically a transcription of SQL to Rust syntax, does not feel very much like an actual ORM. I have not had any issues with joins. Diesel is also not async, hence you must use something like Deadpool for async connection pooling, but I actually like this because it is more obvious in its workings to my brain.