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
error: unknown argument `nonexistent_attr`

       Valid arguments: name, version, description, homepage, global, defaults, no_sync, no_async, description_prefix, manual, input_schema, output_schema

       Example: #[cli(name = "my-app", description = "My CLI tool")]
       Bare flags: #[cli(no_sync)] or #[cli(no_async)]

       Related: #[program] preset (CLI + markdown docs), #[markdown] (standalone docs)
 --> tests/fixtures/invalid_cli_attribute.rs:7:7
  |
7 | #[cli(nonexistent_attr = "val")]
  |       ^^^^^^^^^^^^^^^^