cargo rustc --release -- -C target-cpu=native --emit link=Anura-064A0514
   Compiling arrayvec v0.7.6
   Compiling anura v0.2.0 (/tmp/tmpjsjwoip0/Anura/Anura-tmp)
error[E0658]: `let...else` statements are unstable
   --> src/uci.rs:107:9
    |
107 | /         let Some(first_token) = command_split.next() else {
108 | |             return CommandTypes::Empty;
109 | |         };
    | |__________^
    |
    = note: see issue #87335 <https://github.com/rust-lang/rust/issues/87335> for more information

error[E0658]: `let...else` statements are unstable
   --> src/uci.rs:287:21
    |
287 | /                     let Ok(value) = command_sections[i].parse::<i128>() else {
288 | |                         eprintln!("Invalid {} '{}'", token, command_sections[i]);
289 | |                         return;
290 | |                     };
    | |______________________^
    |
    = note: see issue #87335 <https://github.com/rust-lang/rust/issues/87335> for more information

For more information about this error, try `rustc --explain E0658`.
error: could not compile `anura` due to 2 previous errors
make: *** [makefile:9: all] Error 101