server-less 0.6.0

Composable derive macros for common Rust patterns
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
error: unknown argument `invalid_arg`
       Valid arguments: prefix, openapi, name, description, version, homepage, debug, trace
       Examples:
       - #[http(prefix = "/api/v1")]
       - #[http(openapi = false)]
       - #[http(name = "My API", description = "Does the thing")]
       - #[http(debug = true)]

       Related: #[serve] (multi-protocol), #[openapi] (standalone API docs), #[server] (blessed preset)
 --> tests/fixtures/invalid_http_arg.rs:5:8
  |
5 | #[http(invalid_arg = true)]
  |        ^^^^^^^^^^^