MCPcopy Create free account
hub / github.com/Nariod/RustPacker / main

Function main

src/main.rs:15–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

13use std::io;
14
15fn main() -> io::Result<()> {
16 let order = arg_parser::parse_args();
17 let output_folder_path = puzzle::assemble(order.clone());
18 compiler::compile(&output_folder_path);
19
20 tools::process_output(&order, &output_folder_path)?;
21 tools::rename_source_binary(&order, &output_folder_path)?;
22
23 Ok(())
24}

Callers

nothing calls this directly

Calls 5

parse_argsFunction · 0.85
assembleFunction · 0.85
compileFunction · 0.85
process_outputFunction · 0.85
rename_source_binaryFunction · 0.85

Tested by

no test coverage detected