[INFO] crate zero_sum 1.2.0 is already in cache [INFO] checking zero_sum-1.2.0 against nightly-2019-10-27 for pr-65897 [INFO] extracting crate zero_sum 1.2.0 into /workspace/builds/worker-10/source [INFO] validating manifest of crates.io crate zero_sum 1.2.0 on toolchain nightly-2019-10-27 [INFO] running `"/workspace/cargo-home/bin/cargo" "+nightly-2019-10-27" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking crates.io crate zero_sum 1.2.0 [INFO] finished tweaking crates.io crate zero_sum 1.2.0 [INFO] tweaked toml for crates.io crate zero_sum 1.2.0 written to /workspace/builds/worker-10/source/Cargo.toml [INFO] running `"/workspace/cargo-home/bin/cargo" "+nightly-2019-10-27" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/workspace/cargo-home/bin/cargo" "+nightly-2019-10-27" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-10/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=allow" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+nightly-2019-10-27" "check" "--frozen" "--all" "--all-targets"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] e73f8fed9422b463d16eb1ea99d470f9bdddc28ec9dcf2b42914fce33fc874ff [INFO] running `"docker" "start" "-a" "e73f8fed9422b463d16eb1ea99d470f9bdddc28ec9dcf2b42914fce33fc874ff"` [INFO] [stderr] Checking zero_sum v1.2.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0433]: failed to resolve: could not find `impls` in `zero_sum` [INFO] [stderr] --> examples/tic_tac_toe.rs:25:15 [INFO] [stderr] | [INFO] [stderr] 25 | use zero_sum::impls::tic_tac_toe::*; [INFO] [stderr] | ^^^^^ could not find `impls` in `zero_sum` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Board` [INFO] [stderr] --> examples/tic_tac_toe.rs:32:25 [INFO] [stderr] | [INFO] [stderr] 32 | let mut board = Board::new(); [INFO] [stderr] | ^^^^^ use of undeclared type or module `Board` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Resolution` [INFO] [stderr] --> examples/tic_tac_toe.rs:48:22 [INFO] [stderr] | [INFO] [stderr] 48 | Some(Resolution::Win(mark)) => { [INFO] [stderr] | ^^^^^^^^^^ use of undeclared type or module `Resolution` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Resolution` [INFO] [stderr] --> examples/tic_tac_toe.rs:52:22 [INFO] [stderr] | [INFO] [stderr] 52 | Some(Resolution::CatsGame) => { [INFO] [stderr] | ^^^^^^^^^^ use of undeclared type or module `Resolution` [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `Evaluator` in this scope [INFO] [stderr] --> examples/tic_tac_toe.rs:33:25 [INFO] [stderr] | [INFO] [stderr] 33 | let evaluator = Evaluator; [INFO] [stderr] | ^^^^^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0422]: cannot find struct, variant or union type `Ply` in this scope [INFO] [stderr] --> examples/tic_tac_toe.rs:80:17 [INFO] [stderr] | [INFO] [stderr] 80 | Ply { [INFO] [stderr] | ^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0603]: module `pvsearch` is private [INFO] [stderr] --> examples/tic_tac_toe.rs:34:50 [INFO] [stderr] | [INFO] [stderr] 34 | let mut ai = zero_sum::analysis::search::pvsearch::PvSearch::new(evaluator); [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0609]: no field `principal_variation` on type `std::boxed::Box<(dyn zero_sum::analysis::search::Analysis + 'static)>` [INFO] [stderr] --> examples/tic_tac_toe.rs:87:41 [INFO] [stderr] | [INFO] [stderr] 87 | ai.search(&board, None).principal_variation[0].clone() [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ unknown field [INFO] [stderr] [INFO] [stderr] error: aborting due to 8 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0422, E0425, E0433, E0603, E0609. [INFO] [stderr] For more information about an error, try `rustc --explain E0422`. [INFO] [stderr] error[E0433]: failed to resolve: could not find `impls` in `zero_sum` [INFO] [stderr] --> examples/tak_opening.rs:23:15 [INFO] [stderr] | [INFO] [stderr] 23 | use zero_sum::impls::tak::*; [INFO] [stderr] | ^^^^^ could not find `impls` in `zero_sum` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `State` [INFO] [stderr] --> examples/tak_opening.rs:26:17 [INFO] [stderr] | [INFO] [stderr] 26 | let state = State::new(5); [INFO] [stderr] | ^^^^^ use of undeclared type or module `State` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `evaluator` [INFO] [stderr] --> examples/tak_opening.rs:27:21 [INFO] [stderr] | [INFO] [stderr] 27 | let evaluator = evaluator::StaticEvaluator; [INFO] [stderr] | ^^^^^^^^^ use of undeclared type or module `evaluator` [INFO] [stderr] [INFO] [stderr] error: could not compile `zero_sum`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: aborting due to 3 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0433`. [INFO] [stderr] error: could not compile `zero_sum`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "e73f8fed9422b463d16eb1ea99d470f9bdddc28ec9dcf2b42914fce33fc874ff"` [INFO] running `"docker" "rm" "-f" "e73f8fed9422b463d16eb1ea99d470f9bdddc28ec9dcf2b42914fce33fc874ff"` [INFO] [stdout] e73f8fed9422b463d16eb1ea99d470f9bdddc28ec9dcf2b42914fce33fc874ff