dev_api
A set of pre-configured modules for Rust web APIs. Currently in early stage development.
Purpose
We want to open source how we do backend development in Rust and offer a fast and simple way to get started writing web APIs without locking you in into another custom framework.
Example
Note: given how early stage this project is, the example is not complete. You need to install actix-web and create your own configs and dependencies that you want to inject into app_data.
async
Please look at the source code for more information. src/http.rs
will show how we setup the server app.
When it works, you can verify it by going to localhost:8080
in your browser. You should get back an empty 200 success response in your network tab.