program_tools 0.2.0

Rust script runner — compile and execute Rust files as scripts with output capture.
Documentation
1
2
3
4
5
6
7
8
9
10
//! CLI entry point: `program_tools run [OPTIONS] <TARGET>`.

#[ cfg( not( feature = "enabled" ) ) ]
fn main() {}

#[ cfg( feature = "enabled" ) ]
fn main()
{
  program_tools ::run_cli();
}