[INFO] crate layout2d 0.1.2 is already in cache
[INFO] checking layout2d-0.1.2 against master#bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc for pr-70917
[INFO] extracting crate layout2d 0.1.2 into /workspace/builds/worker-0/source
[INFO] validating manifest of crates.io crate layout2d 0.1.2 on toolchain bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking crates.io crate layout2d 0.1.2
[INFO] finished tweaking crates.io crate layout2d 0.1.2
[INFO] tweaked toml for crates.io crate layout2d 0.1.2 written to /workspace/builds/worker-0/source/Cargo.toml
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/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=forbid" "-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" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "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] 6323ecceef65a55e3999e9c23573b4d2b96289a793086ba0456c2740aeb5b690
[INFO] running `"docker" "start" "-a" "6323ecceef65a55e3999e9c23573b4d2b96289a793086ba0456c2740aeb5b690"`
[INFO] [stderr]     Checking layout2d v0.1.2 (/opt/rustwide/workdir)
[INFO] [stderr] error: use of unstable library feature 'test': `bench` is a part of custom test frameworks which are unstable
[INFO] [stderr]    --> src/rect.rs:166:3
[INFO] [stderr]     |
[INFO] [stderr] 166 | #[bench]
[INFO] [stderr]     |   ^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = note: `#[deny(soft_unstable)]` on by default
[INFO] [stderr]     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
[INFO] [stderr]     = note: for more information, see issue #64266 <https://github.com/rust-lang/rust/issues/64266>
[INFO] [stderr] 
[INFO] [stderr] error: use of unstable library feature 'test': `bench` is a part of custom test frameworks which are unstable
[INFO] [stderr]    --> src/rect.rs:177:3
[INFO] [stderr]     |
[INFO] [stderr] 177 | #[bench]
[INFO] [stderr]     |   ^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
[INFO] [stderr]     = note: for more information, see issue #64266 <https://github.com/rust-lang/rust/issues/64266>
[INFO] [stderr] 
[INFO] [stderr] error: use of unstable library feature 'test': `bench` is a part of custom test frameworks which are unstable
[INFO] [stderr]    --> src/ui_screen.rs:176:3
[INFO] [stderr]     |
[INFO] [stderr] 176 | #[bench]
[INFO] [stderr]     |   ^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
[INFO] [stderr]     = note: for more information, see issue #64266 <https://github.com/rust-lang/rust/issues/64266>
[INFO] [stderr] 
[INFO] [stderr] warning: the item `Clone` is imported redundantly
[INFO] [stderr]   --> src/ui_screen.rs:74:9
[INFO] [stderr]    |
[INFO] [stderr] 74 |     use std::clone::Clone;
[INFO] [stderr]    |         ^^^^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(unused_imports)]` on by default
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `input`
[INFO] [stderr]    --> src/ui_screen.rs:181:9
[INFO] [stderr]     |
[INFO] [stderr] 181 |     use input;
[INFO] [stderr]     |         ^^^^^ no `input` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `test`
[INFO] [stderr]    --> src/rect.rs:167:32
[INFO] [stderr]     |
[INFO] [stderr] 167 | fn bench_rotate_center(b: &mut test::Bencher) {
[INFO] [stderr]     |                                ^^^^ use of undeclared type or module `test`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `DebugColor`
[INFO] [stderr]    --> src/rect.rs:168:63
[INFO] [stderr]     |
[INFO] [stderr] 168 |     let mut rect = Rect::new(200.0, 400.0, 400.0, 600.0, 0.0, DebugColor::yellow());
[INFO] [stderr]     |                                                               ^^^^^^^^^^ use of undeclared type or module `DebugColor`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `test`
[INFO] [stderr]    --> src/rect.rs:178:28
[INFO] [stderr]     |
[INFO] [stderr] 178 | fn bench_translate(b: &mut test::Bencher) {
[INFO] [stderr]     |                            ^^^^ use of undeclared type or module `test`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `DebugColor`
[INFO] [stderr]    --> src/rect.rs:179:63
[INFO] [stderr]     |
[INFO] [stderr] 179 |     let mut rect = Rect::new(200.0, 400.0, 400.0, 600.0, 0.0, DebugColor::yellow());
[INFO] [stderr]     |                                                               ^^^^^^^^^^ use of undeclared type or module `DebugColor`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `test`
[INFO] [stderr]    --> src/ui_screen.rs:177:42
[INFO] [stderr]     |
[INFO] [stderr] 177 | fn bench_ui_screen_layout_simple(b: &mut test::Bencher) {
[INFO] [stderr]     |                                          ^^^^ use of undeclared type or module `test`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `DebugColor`
[INFO] [stderr]    --> src/ui_screen.rs:194:36
[INFO] [stderr]     |
[INFO] [stderr] 194 |             FlexDirection::Column, DebugColor::green()));
[INFO] [stderr]     |                                    ^^^^^^^^^^ use of undeclared type or module `DebugColor`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `DebugColor`
[INFO] [stderr]    --> src/ui_screen.rs:199:29
[INFO] [stderr]     |
[INFO] [stderr] 199 |         FlexDirection::Row, DebugColor::blue()));
[INFO] [stderr]     |                             ^^^^^^^^^^ use of undeclared type or module `DebugColor`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `DebugColor`
[INFO] [stderr]    --> src/ui_screen.rs:204:40
[INFO] [stderr]     |
[INFO] [stderr] 204 |                 FlexDirection::Column, DebugColor::red()));
[INFO] [stderr]     |                                        ^^^^^^^^^^ use of undeclared type or module `DebugColor`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `DebugColor`
[INFO] [stderr]    --> src/ui_screen.rs:209:40
[INFO] [stderr]     |
[INFO] [stderr] 209 |                 FlexDirection::Column, DebugColor::blue()));
[INFO] [stderr]     |                                        ^^^^^^^^^^ use of undeclared type or module `DebugColor`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `glium`
[INFO] [stderr]    --> src/ui_screen.rs:218:25
[INFO] [stderr]     |
[INFO] [stderr] 218 |             let event = glium::glutin::Event::Resized(rand::random::<u32>(), rand::random::<u32>());
[INFO] [stderr]     |                         ^^^^^ use of undeclared type or module `glium`
[INFO] [stderr] 
[INFO] [stderr] error: use of unstable library feature 'test': `bench` is a part of custom test frameworks which are unstable
[INFO] [stderr]    --> src/rect.rs:166:3
[INFO] [stderr]     |
[INFO] [stderr] 166 | #[bench]
[INFO] [stderr]     |   ^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = note: `#[deny(soft_unstable)]` on by default
[INFO] [stderr]     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
[INFO] [stderr]     = note: for more information, see issue #64266 <https://github.com/rust-lang/rust/issues/64266>
[INFO] [stderr] 
[INFO] [stderr] error: use of unstable library feature 'test': `bench` is a part of custom test frameworks which are unstable
[INFO] [stderr]    --> src/rect.rs:177:3
[INFO] [stderr]     |
[INFO] [stderr] 177 | #[bench]
[INFO] [stderr]     |   ^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
[INFO] [stderr]     = note: for more information, see issue #64266 <https://github.com/rust-lang/rust/issues/64266>
[INFO] [stderr] 
[INFO] [stderr] error: use of unstable library feature 'test': `bench` is a part of custom test frameworks which are unstable
[INFO] [stderr]    --> src/ui_screen.rs:176:3
[INFO] [stderr]     |
[INFO] [stderr] 176 | #[bench]
[INFO] [stderr]     |   ^^^^^
[INFO] [stderr]     |
[INFO] [stderr]     = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
[INFO] [stderr]     = note: for more information, see issue #64266 <https://github.com/rust-lang/rust/issues/64266>
[INFO] [stderr] 
[INFO] [stderr] warning: the item `Clone` is imported redundantly
[INFO] [stderr]   --> src/ui_screen.rs:74:9
[INFO] [stderr]    |
[INFO] [stderr] 74 |     use std::clone::Clone;
[INFO] [stderr]    |         ^^^^^^^^^^^^^^^^^
[INFO] [stderr]    |
[INFO] [stderr]    = note: `#[warn(unused_imports)]` on by default
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 3 previous errors
[INFO] [stderr] 
[INFO] [stderr] error: could not compile `layout2d`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stderr] error[E0061]: this function takes 3 arguments but 2 arguments were supplied
[INFO] [stderr]    --> src/ui_screen.rs:188:25
[INFO] [stderr]     |
[INFO] [stderr] 19  | /     pub fn new(initial_width: f32, initial_height: f32, data: NodeData<T>)
[INFO] [stderr] 20  | |     -> Self
[INFO] [stderr] 21  | |     {
[INFO] [stderr] 22  | |         Self {
[INFO] [stderr] 23  | |             root: NodeRef::new(Rect::new(0.0, initial_height, 0.0, initial_width, 0.0, data))
[INFO] [stderr] 24  | |         }
[INFO] [stderr] 25  | |     }
[INFO] [stderr]     | |_____- defined here
[INFO] [stderr] ...
[INFO] [stderr] 188 |       let mut ui_screen = UiScreen::new(INITIAL_WIDTH, INITIAL_HEIGHT)
[INFO] [stderr]     |                           ^^^^^^^^^^^^^ -------------  -------------- supplied 2 arguments
[INFO] [stderr]     |                           |
[INFO] [stderr]     |                           expected 3 arguments
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]    --> src/ui_screen.rs:214:27
[INFO] [stderr]     |
[INFO] [stderr] 214 |     ui_screen.root.append(top_bar_wrapper);
[INFO] [stderr]     |                           ^^^^^^^^^^^^^^^ expected struct `rect::Rect`, found struct `node_data::NodeData`
[INFO] [stderr]     |
[INFO] [stderr]     = note: expected struct `rctree::NodeRef<rect::Rect<_>>`
[INFO] [stderr]                found struct `rctree::NodeRef<node_data::NodeData<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0308]: mismatched types
[INFO] [stderr]    --> src/ui_screen.rs:215:27
[INFO] [stderr]     |
[INFO] [stderr] 215 |     ui_screen.root.append(explorer_wrapper);
[INFO] [stderr]     |                           ^^^^^^^^^^^^^^^^ expected struct `rect::Rect`, found struct `node_data::NodeData`
[INFO] [stderr]     |
[INFO] [stderr]     = note: expected struct `rctree::NodeRef<rect::Rect<_>>`
[INFO] [stderr]                found struct `rctree::NodeRef<node_data::NodeData<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0061]: this function takes 2 arguments but 0 arguments were supplied
[INFO] [stderr]    --> src/ui_screen.rs:220:31
[INFO] [stderr]     |
[INFO] [stderr] 37  | /     pub fn into_rectangles(&mut self, root_width: f32, root_height: f32)
[INFO] [stderr] 38  | |     -> Vec<Rect<T>>
[INFO] [stderr] 39  | |     {
[INFO] [stderr] 40  | |         self.root.borrow_mut().data.width = Some(root_width);
[INFO] [stderr] ...   |
[INFO] [stderr] 56  | |                              &mut cur_offset_width, &mut cur_offset_height)
[INFO] [stderr] 57  | |     }
[INFO] [stderr]     | |_____- defined here
[INFO] [stderr] ...
[INFO] [stderr] 220 |               let _ = ui_screen.into_rectangles();
[INFO] [stderr]     |                                 ^^^^^^^^^^^^^^^- supplied 0 arguments
[INFO] [stderr]     |                                 |
[INFO] [stderr]     |                                 expected 2 arguments
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 18 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0061, E0308, E0432, E0433.
[INFO] [stderr] For more information about an error, try `rustc --explain E0061`.
[INFO] [stderr] error: could not compile `layout2d`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "6323ecceef65a55e3999e9c23573b4d2b96289a793086ba0456c2740aeb5b690"`
[INFO] running `"docker" "rm" "-f" "6323ecceef65a55e3999e9c23573b4d2b96289a793086ba0456c2740aeb5b690"`
[INFO] [stdout] 6323ecceef65a55e3999e9c23573b4d2b96289a793086ba0456c2740aeb5b690
