We launched RustAPI v0.1.410 🚀
by•
Our Production Baseline release for building production-ready Rust services faster.
What’s new in this release:
one-call production defaults
built-in /health, /ready, /live probes
session management
rate limiting strategies
new CLI bench + observability commands
improved multipart streaming
new real-world Auth / CRUD / Jobs / Streaming examples
10+ cookbook recipes
The goal is simple: help Rust teams go from prototype to production with less setup and more confidence.
Example:
use rustapi_rs::prelude::*;
#[tokio::main]
async fn main() {
RustApi::new()
.production_defaults("my-service")
.run("0.0.0.0:3000")
.await;
}Would love your feedback on:
DX
production readiness
what examples/integrations you want next
#rust #webdev #opensource #backend #api
3 views


Replies