runbox 1.5.1

CLI for scaffolding container runner integration files
Documentation
1
2
3
4
5
6
7
8
9
10
//! `crb` alias binary entry point.
//!
//! Thin wrapper — identical to the `runbox` binary.
//! This separate file gives Cargo a unique compilation unit per `[[bin]]`
//! target, eliminating the "same file in multiple targets" warning.

fn main()
{
  runbox::run_cli();
}