The rouille crate helps you to create a microservice with a simple routing declaration using the route! macro. This framework provides a synchronous API and every request is processed by a thread from a pool.
Rouille
Creating a microservice
Let's write a microservice for user registration using the Rouille framework. It allows users to create an account and authorize the use of other microservices. We can start by creating a server instance.
Bootstrapping a server
The Rouille framework is very simple to use. It contains start_server functions that expect...