[INFO] cloning repository https://github.com/MattSzymonski/Rust-Hybrid-ECS
[INFO] running `Command { std: "git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/MattSzymonski/Rust-Hybrid-ECS" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FMattSzymonski%2FRust-Hybrid-ECS", kill_on_drop: false }`
[INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FMattSzymonski%2FRust-Hybrid-ECS'...
[INFO] running `Command { std: "git" "rev-parse" "HEAD", kill_on_drop: false }`
[INFO] [stdout] 38c1b0f602b483d2326aac062befd3f21ead2a73
[INFO] testing MattSzymonski/Rust-Hybrid-ECS against 1.98.0-beta.1 for beta-1.98-1
[INFO] running `Command { std: "git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FMattSzymonski%2FRust-Hybrid-ECS" "/workspace/builds/worker-2-tc2/source", kill_on_drop: false }`
[INFO] [stderr] Cloning into '/workspace/builds/worker-2-tc2/source'...
[INFO] [stderr] done.
[INFO] started tweaking git repo https://github.com/MattSzymonski/Rust-Hybrid-ECS
[INFO] finished tweaking git repo https://github.com/MattSzymonski/Rust-Hybrid-ECS
[INFO] tweaked toml for git repo https://github.com/MattSzymonski/Rust-Hybrid-ECS written to /workspace/builds/worker-2-tc2/source/Cargo.toml
[INFO] validating manifest of git repo https://github.com/MattSzymonski/Rust-Hybrid-ECS on toolchain 1.98.0-beta.1
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.98.0-beta.1" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate git repo https://github.com/MattSzymonski/Rust-Hybrid-ECS already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.98.0-beta.1" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/target:/opt/rustwide/target:rw,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" "-m" "1610612736" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:3d5ced03c013a94a2f102a4510f48a6e9184255caf5fd8244f58017bde7f5210" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] 496854dbb0e22460fa9ef74f3d028f01e85522855b5aebddda4e7f18fc04e5c0
[INFO] running `Command { std: "docker" "start" "496854dbb0e22460fa9ef74f3d028f01e85522855b5aebddda4e7f18fc04e5c0", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "496854dbb0e22460fa9ef74f3d028f01e85522855b5aebddda4e7f18fc04e5c0", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-w" "/opt/rustwide/workdir" "--user" "0:0" "496854dbb0e22460fa9ef74f3d028f01e85522855b5aebddda4e7f18fc04e5c0" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.1" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "496854dbb0e22460fa9ef74f3d028f01e85522855b5aebddda4e7f18fc04e5c0", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-w" "/opt/rustwide/workdir" "--user" "0:0" "496854dbb0e22460fa9ef74f3d028f01e85522855b5aebddda4e7f18fc04e5c0" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.1" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stderr]    Compiling smallvec v1.15.1
[INFO] [stderr]    Compiling parking_lot_core v0.9.12
[INFO] [stderr]    Compiling parking_lot v0.12.5
[INFO] [stderr]    Compiling ecs_hybrid v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: unused import: `Transform`
[INFO] [stdout]  --> src/game_object.rs:3:44
[INFO] [stdout]   |
[INFO] [stdout] 3 | use crate::{command_buffer::CommandBuffer, Transform};
[INFO] [stdout]   |                                            ^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: methods `get_all` and `get_many_mut` are never used
[INFO] [stdout]   --> src/ecs_core.rs:41:12
[INFO] [stdout]    |
[INFO] [stdout] 19 | impl<T: 'static> TypedStorage<T> {
[INFO] [stdout]    | -------------------------------- methods in this implementation
[INFO] [stdout] ...
[INFO] [stdout] 41 |     pub fn get_all(&self, entity: u64) -> Vec<T>
[INFO] [stdout]    |            ^^^^^^^
[INFO] [stdout] ...
[INFO] [stdout] 62 |     pub unsafe fn get_many_mut<const N: usize>(
[INFO] [stdout]    |                   ^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 1.79s
[INFO] running `Command { std: "docker" "inspect" "496854dbb0e22460fa9ef74f3d028f01e85522855b5aebddda4e7f18fc04e5c0", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-w" "/opt/rustwide/workdir" "--user" "0:0" "496854dbb0e22460fa9ef74f3d028f01e85522855b5aebddda4e7f18fc04e5c0" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.1" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] warning: unused import: `Transform`
[INFO] [stdout]  --> src/game_object.rs:3:44
[INFO] [stdout]   |
[INFO] [stdout] 3 | use crate::{command_buffer::CommandBuffer, Transform};
[INFO] [stdout]   |                                            ^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: methods `get_all` and `get_many_mut` are never used
[INFO] [stdout]   --> src/ecs_core.rs:41:12
[INFO] [stdout]    |
[INFO] [stdout] 19 | impl<T: 'static> TypedStorage<T> {
[INFO] [stdout]    | -------------------------------- methods in this implementation
[INFO] [stdout] ...
[INFO] [stdout] 41 |     pub fn get_all(&self, entity: u64) -> Vec<T>
[INFO] [stdout]    |            ^^^^^^^
[INFO] [stdout] ...
[INFO] [stdout] 62 |     pub unsafe fn get_many_mut<const N: usize>(
[INFO] [stdout]    |                   ^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling ecs_hybrid v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: unused import: `Transform`
[INFO] [stdout]  --> src/game_object.rs:3:44
[INFO] [stdout]   |
[INFO] [stdout] 3 | use crate::{command_buffer::CommandBuffer, Transform};
[INFO] [stdout]   |                                            ^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused import: `parking_lot::MappedRwLockReadGuard`
[INFO] [stdout]  --> examples/stress_test_unity_style.rs:3:5
[INFO] [stdout]   |
[INFO] [stdout] 3 | use parking_lot::MappedRwLockReadGuard;
[INFO] [stdout]   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: methods `get_all` and `get_many_mut` are never used
[INFO] [stdout]   --> src/ecs_core.rs:41:12
[INFO] [stdout]    |
[INFO] [stdout] 19 | impl<T: 'static> TypedStorage<T> {
[INFO] [stdout]    | -------------------------------- methods in this implementation
[INFO] [stdout] ...
[INFO] [stdout] 41 |     pub fn get_all(&self, entity: u64) -> Vec<T>
[INFO] [stdout]    |            ^^^^^^^
[INFO] [stdout] ...
[INFO] [stdout] 62 |     pub unsafe fn get_many_mut<const N: usize>(
[INFO] [stdout]    |                   ^^^^^^^^^^^^
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 1.19s
[INFO] running `Command { std: "docker" "inspect" "496854dbb0e22460fa9ef74f3d028f01e85522855b5aebddda4e7f18fc04e5c0", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-w" "/opt/rustwide/workdir" "--user" "0:0" "496854dbb0e22460fa9ef74f3d028f01e85522855b5aebddda4e7f18fc04e5c0" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.1" "test" "--frozen", kill_on_drop: false }`
[INFO] [stderr] warning: unused import: `Transform`
[INFO] [stderr]  --> src/game_object.rs:3:44
[INFO] [stderr]   |
[INFO] [stderr] 3 | use crate::{command_buffer::CommandBuffer, Transform};
[INFO] [stderr]   |                                            ^^^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
[INFO] [stderr] 
[INFO] [stderr] warning: methods `get_all` and `get_many_mut` are never used
[INFO] [stderr]   --> src/ecs_core.rs:41:12
[INFO] [stderr]    |
[INFO] [stderr] 19 | impl<T: 'static> TypedStorage<T> {
[INFO] [stderr]    | -------------------------------- methods in this implementation
[INFO] [stderr] ...
[INFO] [stderr] 41 |     pub fn get_all(&self, entity: u64) -> Vec<T>
[INFO] [stderr]    |            ^^^^^^^
[INFO] [stderr] ...
[INFO] [stderr] 62 |     pub unsafe fn get_many_mut<const N: usize>(
[INFO] [stderr]    |                   ^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stderr] 
[INFO] [stderr] warning: `ecs_hybrid` (lib) generated 2 warnings (run `cargo fix --lib -p ecs_hybrid` to apply 1 suggestion)
[INFO] [stderr] warning: `ecs_hybrid` (lib test) generated 2 warnings (2 duplicates)
[INFO] [stderr] warning: unused import: `parking_lot::MappedRwLockReadGuard`
[INFO] [stderr]  --> examples/stress_test_unity_style.rs:3:5
[INFO] [stderr]   |
[INFO] [stderr] 3 | use parking_lot::MappedRwLockReadGuard;
[INFO] [stderr]   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
[INFO] [stderr] 
[INFO] [stderr] warning: `ecs_hybrid` (example "stress_test_unity_style") generated 1 warning (run `cargo fix --example "stress_test_unity_style" -p ecs_hybrid` to apply 1 suggestion)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.06s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/ecs_hybrid-1e693871800d864b)
[INFO] [stdout] 
[INFO] [stdout] running 0 tests
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stderr]      Running unittests src/main.rs (/opt/rustwide/target/debug/deps/ecs_hybrid-e785c5e17d2c7027)
[INFO] [stdout] 
[INFO] [stdout] running 0 tests
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stderr]    Doc-tests ecs_hybrid
[INFO] [stdout] 
[INFO] [stdout] running 2 tests
[INFO] [stdout] test src/game_object.rs - game_object::Entity::add_component (line 158) ... FAILED
[INFO] [stdout] test src/game_object.rs - game_object::Entity::add_component_deferred (line 170) ... FAILED
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout] 
[INFO] [stdout] ---- src/game_object.rs - game_object::Entity::add_component (line 158) stdout ----
[INFO] [stdout] error[E0425]: cannot find value `entity` in this scope
[INFO] [stdout]    --> src/game_object.rs:159:1
[INFO] [stdout]     |
[INFO] [stdout] 159 | entity.add_component(Transform::new(0.0, 0.0, 0.0));
[INFO] [stdout]     | ^^^^^^ not found in this scope
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find type `Transform` in this scope
[INFO] [stdout]    --> src/game_object.rs:159:22
[INFO] [stdout]     |
[INFO] [stdout] 159 | entity.add_component(Transform::new(0.0, 0.0, 0.0));
[INFO] [stdout]     |                      ^^^^^^^^^ use of undeclared type `Transform`
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 2 previous errors
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0425, E0433.
[INFO] [stdout] For more information about an error, try `rustc --explain E0425`.
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] ---- src/game_object.rs - game_object::Entity::add_component_deferred (line 170) stdout ----
[INFO] [stdout] error[E0425]: cannot find value `entity` in this scope
[INFO] [stdout]    --> src/game_object.rs:171:1
[INFO] [stdout]     |
[INFO] [stdout] 171 | entity.add_component_deferred(Transform::new(0.0, 0.0, 0.0));
[INFO] [stdout]     | ^^^^^^ not found in this scope
[INFO] [stdout] 
[INFO] [stdout] error[E0425]: cannot find value `scene` in this scope
[INFO] [stdout]    --> src/game_object.rs:173:1
[INFO] [stdout]     |
[INFO] [stdout] 173 | scene.apply_commands();
[INFO] [stdout]     | ^^^^^ not found in this scope
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find type `Transform` in this scope
[INFO] [stdout]    --> src/game_object.rs:171:31
[INFO] [stdout]     |
[INFO] [stdout] 171 | entity.add_component_deferred(Transform::new(0.0, 0.0, 0.0));
[INFO] [stdout]     |                               ^^^^^^^^^ use of undeclared type `Transform`
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 3 previous errors
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0425, E0433.
[INFO] [stdout] For more information about an error, try `rustc --explain E0425`.
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout]     src/game_object.rs - game_object::Entity::add_component (line 158)
[INFO] [stdout]     src/game_object.rs - game_object::Entity::add_component_deferred (line 170)
[INFO] [stdout] 
[INFO] [stdout] test result: FAILED. 0 passed; 2 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.13s
[INFO] [stdout] 
[INFO] [stderr] error: doctest failed, to rerun pass `--doc`
[INFO] running `Command { std: "docker" "inspect" "496854dbb0e22460fa9ef74f3d028f01e85522855b5aebddda4e7f18fc04e5c0", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "496854dbb0e22460fa9ef74f3d028f01e85522855b5aebddda4e7f18fc04e5c0", kill_on_drop: false }`
[INFO] [stdout] 496854dbb0e22460fa9ef74f3d028f01e85522855b5aebddda4e7f18fc04e5c0
