Compiling omp-spt v0.2.0 (C:\Users\decid\Documents\projects\omp-spt\tools\omp-spt) error[E0061]: this function takes 0 arguments but 2 arguments were supplied --> src\echo_commune_omp.rs:673:32 | 673 | println!("{}", no_transcript_delta(&id, &session_id)); | ^^^^^^^^^^^^^^^^^^^ --- ----------- unexpected argument #2 of type `&std::string::String` | | | unexpected argument #1 of type `&std::string::String` | note: function defined here --> src\echo_commune_omp.rs:148:4 | 148 | fn no_transcript_delta() -> &'static str { | ^^^^^^^^^^^^^^^^^^^ help: remove the extra arguments | 673 - println!("{}", no_transcript_delta(&id, &session_id)); 673 + println!("{}", no_transcript_delta()); | error[E0061]: this function takes 4 arguments but 3 arguments were supplied --> src\echo_commune_omp.rs:704:13 | 704 | configure_turn(&mut cmd, system_path, user_path); | ^^^^^^^^^^^^^^---------------------------------- argument #4 of type `&Path` is missing | note: function defined here --> src\echo_commune_omp.rs:389:4 | 389 | fn configure_turn( | ^^^^^^^^^^^^^^ ... 393 | workspace: &Path, | ---------------- help: provide the argument | 704 | configure_turn(&mut cmd, system_path, user_path, /* &Path */); | +++++++++++++ warning: variable does not need to be mutable --> src\echo_commune_omp.rs:298:13 | 298 | let mut builder = std::fs::DirBuilder::new(); | ----^^^^^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default For more information about this error, try `rustc --explain E0061`. warning: `omp-spt` (bin "omp-spt") generated 1 warning error: could not compile `omp-spt` (bin "omp-spt") due to 2 previous errors; 1 warning emitted