Downloading network hobbes-31.nnue
curl -L -o hobbes.nnue https://github.com/kelseyde/hobbes-networks/releases/download/hobbes-31/hobbes-31.nnue
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0

 25 18.7M   25 4815k    0     0  7096k      0  0:00:02 --:--:--  0:00:02 7096k
100 18.7M  100 18.7M    0     0  22.3M      0 --:--:-- --:--:-- --:--:-- 87.8M
cargo rustc --release -p hobbes-chess-engine --jobs 256 -- -C target-cpu=native -C link-arg=-Wl,--as-needed -C link-arg=-Wl,--gc-sections --emit link=Hobbes-D08369D3
   Compiling libc v0.2.174
   Compiling getrandom v0.3.3
   Compiling zerocopy v0.8.26
   Compiling cfg-if v1.0.1
   Compiling arrayvec v0.7.4
   Compiling rand_core v0.9.3
   Compiling ppv-lite86 v0.2.21
   Compiling rand_chacha v0.9.0
   Compiling rand v0.9.2
   Compiling hobbes-chess-engine v0.1.0 (/tmp/tmp4l2uioau/Hobbes/Hobbes-tmp)
error[E0433]: failed to resolve: could not find `cuckoo` in `board`
   --> src/board.rs:464:46
    |
464 |                 let mut slot = crate::board::cuckoo::Cuckoo::h1(diff);
    |                                              ^^^^^^ could not find `cuckoo` in `board`

error[E0433]: failed to resolve: could not find `cuckoo` in `board`
   --> src/board.rs:465:42
    |
465 |                 let keys = crate::board::cuckoo::Cuckoo::keys();
    |                                          ^^^^^^ could not find `cuckoo` in `board`

error[E0433]: failed to resolve: could not find `cuckoo` in `board`
   --> src/board.rs:466:62
    |
466 |                 if diff != keys[slot] { slot = crate::board::cuckoo::Cuckoo::h2(diff); }
    |                                                              ^^^^^^ could not find `cuckoo` in `board`

error[E0433]: failed to resolve: could not find `cuckoo` in `board`
   --> src/board.rs:468:44
    |
468 |                     let mv = crate::board::cuckoo::Cuckoo::moves()[slot];
    |                                            ^^^^^^ could not find `cuckoo` in `board`

For more information about this error, try `rustc --explain E0433`.
error: could not compile `hobbes-chess-engine` (bin "hobbes-chess-engine") due to 4 previous errors
make: *** [Makefile:29: openbench] Error 101