Actually I have a monolithic actix projet. And more my project becomes bigger and more the time to compile is long.
Do you know if it's possible to add routes throw dynamics libraries (I'm on linux) ? Or better : a dynamic library that add routes to the actix App ?
Well. I don't find any solution. The execution falls in a Segfault, maybe because of the necessity to use async in the external function. It's problematic in the long term because a web project may have a lot of code.
Maybe the use of a non-async web framework allow me to use dynamic library... I will try !