Rustvello — A distributed task library for Rust.
Rustvello provides a framework for defining, routing, and executing distributed tasks, inspired by the pynenc Python library.
Quick Start
use *;
async
Rustvello — A distributed task library for Rust.
Rustvello provides a framework for defining, routing, and executing distributed tasks, inspired by the pynenc Python library.
use rustvello::prelude::*;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
// Create app with the builder (in-memory backends by default)
let mut app = Rustvello::builder()
.app_id("my-app")
.build().await?;
Ok(())
}