/home/adam/code/OpenBench/Client/Networks/14056267 already exists
CODA_EVALFILE=/home/adam/code/OpenBench/Client/Networks/14056267 cargo rustc --release --features embedded-net -- --emit link=Coda-E885332C-14056267
   Compiling proc-macro2 v1.0.106
   Compiling unicode-ident v1.0.24
   Compiling quote v1.0.45
   Compiling autocfg v1.5.0
   Compiling utf8parse v0.2.2
   Compiling anstyle v1.0.14
   Compiling colorchoice v1.0.5
   Compiling thiserror v2.0.18
   Compiling once_cell v1.21.4
   Compiling libc v0.2.183
   Compiling anstyle-query v1.1.5
   Compiling is_terminal_polyfill v1.70.2
   Compiling arrayvec v0.7.6
   Compiling clap_lex v1.1.0
   Compiling heck v0.5.0
   Compiling strsim v0.11.1
   Compiling bitflags v2.11.0
   Compiling pin-project-lite v0.2.17
   Compiling rustc-hash v2.1.1
   Compiling byteorder v1.5.0
   Compiling anstyle-parse v1.0.0
   Compiling tracing-core v0.1.36
   Compiling anstream v1.0.0
   Compiling num-traits v0.2.19
   Compiling clap_builder v4.6.0
   Compiling syn v2.0.117
   Compiling btoi v0.5.0
   Compiling shakmaty v0.30.0
   Compiling tracing-attributes v0.1.31
   Compiling thiserror-impl v2.0.18
   Compiling clap_derive v4.6.0
   Compiling tracing v0.1.44
   Compiling sfbinpack v0.6.2
   Compiling clap v4.6.0
   Compiling shakmaty-syzygy v0.28.0
   Compiling coda v0.1.0 (/tmp/tmpa304_m92/Coda/Coda-tmp)
error[E0384]: cannot assign twice to immutable variable `_ponder_depth_flag`
   --> src/uci.rs:151:17
    |
 15 |     let _ponder_depth_flag = info.ponder_depth.clone(); // reserved for future depth-...
    |         ------------------ first assignment to `_ponder_depth_flag`
...
151 |                 _ponder_depth_flag = search_info.ponder_depth.clone();
    |                 ^^^^^^^^^^^^^^^^^^ cannot assign twice to immutable variable
    |
help: consider making this binding mutable
    |
 15 |     let mut _ponder_depth_flag = info.ponder_depth.clone(); // reserved for future depth-aware budget
    |         +++

For more information about this error, try `rustc --explain E0384`.
error: could not compile `coda` (bin "coda") due to 1 previous error
make: *** [Makefile:33: rule] Error 101