vantus 0.2.0

Macro-first async Rust web platform with typed extraction, DI, and configuration binding.
Documentation
1
2
3
4
5
6
7
8
9
# Quick Start

1. Create a module with `#[module]`.
2. Register services in `configure_services`.
3. Add route methods with `#[vantus::get]` / `#[vantus::post]`.
4. Mount the module with `HostBuilder`.
5. Build and run the host on `tokio`.

See [../examples/macro_controller.rs](../examples/macro_controller.rs) for a minimal runnable example.