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
14
error[E0599]: no method named `cli_run_with_async` found for struct `MySvc` in the current scope
  --> tests/fixtures/no_async_missing_cli_run_with_async.rs:16:9
   |
 4 | struct MySvc;
   | ------------ method `cli_run_with_async` not found for this struct
...
16 |     svc.cli_run_with_async(["my-svc", "run"]).await.unwrap();
   |         ^^^^^^^^^^^^^^^^^^
   |
help: there is a method `cli_run_with` with a similar name
   |
16 -     svc.cli_run_with_async(["my-svc", "run"]).await.unwrap();
16 +     svc.cli_run_with(["my-svc", "run"]).await.unwrap();
   |