willbe 0.41.1

Utility to publish multi-crate and multi-workspace environments and maintain their consistency.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Demonstrates the willbe programmatic API by invoking the help command.
//!
//! Run with:
//! ```bash
//! cargo run --example willbe_trivial
//! ```

fn main()
{
  // Pass the program name as the first arg (skipped internally) then the command.
  let args = vec!
  [
    "willbe".to_string(), // argv[0] — program name, skipped by run()
    ".help".to_string(),  // list all available willbe commands
  ];

  willbe ::run( args ).expect( "help command must succeed" );
}