HACKER Q&A
📣 1oooqooq

What's your rust web application stack you use in production today?


What's your rust web application stack you use in production today?


  👤 ra0x3 Accepted Answer ✓
- Web: Axum

- Data: SQLx (no ORM, just raw queries)

- Production: Docker

Zero to Production[1] covers some of the Rust web basics pretty thorougly

1. https://www.zero2prod.com/index.html?country_code=US


👤 skimdesk
For a very simple API, warp [1].

[1]: https://github.com/seanmonstar/warp


👤 deciduously
Just hyper.

👤 eYrKEC2
Actix web and diesel.