moduvex 0.1.0

Moduvex — Structured backend framework for Rust. Structure before scale.
Documentation

Moduvex

Structure before scale. A structured backend framework for Rust with a custom async runtime, zero 3rd-party async dependencies.

This umbrella crate re-exports all Moduvex sub-crates for convenience. Use feature flags to include only what you need.

use moduvex::prelude::*;

#[moduvex::main]
async fn main() {
    Moduvex::new().run().await;
}