cargo rustc --release -- -C target-cpu=native --emit link=Anura-331743E1
Compiling anura v0.2.0 (/tmp/tmpq11ibt1m/Anura/Anura-tmp)
Compiling arrayvec v0.7.6
error[E0658]: `let...else` statements are unstable
--> src/uci.rs:113:9
|
113 | / let Some(first_token) = command_split.next() else {
114 | | return CommandTypes::Empty;
115 | | };
| |__________^
|
= 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:315:21
|
315 | / let Ok(value) = command_sections[i].parse::<i128>() else {
316 | | eprintln!("Invalid {} '{}'", token, command_sections[i]);
317 | | return;
318 | | };
| |______________________^
|
= 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