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
Compiling proc-macro2 v1.0.101
Compiling unicode-ident v1.0.19
Compiling utf8parse v0.2.2
Compiling anstyle v1.0.11
Compiling libc v0.2.175
Compiling anstyle-query v1.1.4
Compiling is_terminal_polyfill v1.70.1
Compiling colorchoice v1.0.4
Compiling clap_lex v0.7.5
Compiling anyhow v1.0.100
Compiling strsim v0.11.1
Compiling heck v0.5.0
Compiling byteorder v1.5.0
Compiling windows-link v0.2.0
Compiling twox-hash v2.1.2
Compiling viridithas v19.0.0 (/tmp/tmpibhksad8/Viridithas/Viridithas-tmp)
Compiling arrayvec v0.7.6
Compiling anstyle-parse v0.2.7
Compiling windows-sys v0.61.0
Compiling ruzstd v0.8.1
Compiling anstream v0.6.20
Compiling fxhash v0.2.1
Compiling clap_builder v4.5.48
Compiling quote v1.0.40
Compiling syn v2.0.106
Compiling memmap2 v0.9.8
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