cargo rustc --release -- -C target-cpu=native --emit link=Viridithas-260F8550-6A2476C9
    Updating crates.io index
     Locking 118 packages to latest Rust 1.90.0 compatible versions
 Downloading crates ...
  Downloaded windows-link v0.2.0
  Downloaded clap v4.5.48
  Downloaded twox-hash v2.1.2
  Downloaded clap_builder v4.5.48
  Downloaded ruzstd v0.8.1
  Downloaded windows-sys v0.61.0
   Compiling proc-macro2 v1.0.101
   Compiling unicode-ident v1.0.19
   Compiling utf8parse v0.2.2
   Compiling is_terminal_polyfill v1.70.1
   Compiling libc v0.2.175
   Compiling colorchoice v1.0.4
   Compiling anstyle-query v1.1.4
   Compiling anstyle v1.0.11
   Compiling heck v0.5.0
   Compiling strsim v0.11.1
   Compiling clap_lex v0.7.5
   Compiling anyhow v1.0.100
   Compiling twox-hash v2.1.2
   Compiling windows-link v0.2.0
   Compiling byteorder v1.5.0
   Compiling viridithas v19.0.0 (/tmp/tmpx6ogp1gp/Viridithas/Viridithas-tmp)
   Compiling arrayvec v0.7.6
   Compiling windows-sys v0.61.0
   Compiling anstyle-parse v0.2.7
   Compiling ruzstd v0.8.1
   Compiling fxhash v0.2.1
   Compiling anstream v0.6.20
   Compiling clap_builder v4.5.48
   Compiling quote v1.0.40
   Compiling memmap2 v0.9.8
   Compiling syn v2.0.106
   Compiling clap_derive v4.5.47
   Compiling clap v4.5.48
error[E0412]: cannot find type `StreamingDecoder` in crate `ruzstd`
   --> src/nnue/network.rs:675:42
    |
675 |         type ZstdDecoder<R, D> = ruzstd::StreamingDecoder<R, D>;
    |                                          ^^^^^^^^^^^^^^^^ not found in `ruzstd`
    |
help: consider importing this struct
    |
  1 + use ruzstd::decoding::StreamingDecoder;
    |
help: if you import `StreamingDecoder`, refer to it directly
    |
675 -         type ZstdDecoder<R, D> = ruzstd::StreamingDecoder<R, D>;
675 +         type ZstdDecoder<R, D> = StreamingDecoder<R, D>;
    |

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