rtb-cli 0.6.0

Rust Tool Base — CLI application scaffolding, clap integration, and built-in commands.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
error[E0599]: no method named `build` found for struct `ApplicationBuilder<HasMetadata, NoVersion>` in the current scope
 --> tests/trybuild/builder_requires_version.rs:9:10
  |
7 |       let _ = Application::builder()
  |  _____________-
8 | |         .metadata(ToolMetadata::builder().name("x").summary("y").build())
9 | |         .build();
  | |         -^^^^^ method not found in `ApplicationBuilder<HasMetadata, NoVersion>`
  | |_________|
  |
  |
  = note: the method was found for `ApplicationBuilder<HasMetadata, HasVersion>`