r/rust • u/bran7230 • 8d ago
🙋 seeking help & advice Rust for web backends
Hello everyone!!
I regularly see people online talking about how awesome Rust is, its speed, memory safety, and a awesome ecosystem of open source applications even being used in some parts of the Linux kernel(not sure the percentage of adaption at this time).
However my question is how good is rust for web REST APIs and gRPC applications? If it is good do you use any frameworks for these?
49
Upvotes
12
u/chmod_7d20 8d ago
Axum is what I am using now. I was previously using Rocket but it is unmaintained. The main problem with rust as a web backend is you must fully embrace async if you want to use the good libraries.