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
10
11
12
13
error: handler parameters must be simple identifiers
 --> tests/ui/invalid_parameter_pattern.rs:9:22
  |
9 |     fn broken(&self, (value, _other): (String, String)) -> Response {
  |                      ^^^^^^^^^^^^^^^

warning: unused imports: `Response` and `get`
 --> tests/ui/invalid_parameter_pattern.rs:1:20
  |
1 | use vantus::{Response, controller, get};
  |                    ^^^^^^^^              ^^^
  |
  = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default