[INFO] crate adi 0.13.0-pre2 is already in cache [INFO] checking adi-0.13.0-pre2 against beta-2019-10-27 for pr-65897 [INFO] extracting crate adi 0.13.0-pre2 into /workspace/builds/worker-7/source [INFO] validating manifest of crates.io crate adi 0.13.0-pre2 on toolchain beta-2019-10-27 [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2019-10-27" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking crates.io crate adi 0.13.0-pre2 [INFO] finished tweaking crates.io crate adi 0.13.0-pre2 [INFO] tweaked toml for crates.io crate adi 0.13.0-pre2 written to /workspace/builds/worker-7/source/Cargo.toml [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2019-10-27" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2019-10-27" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/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" "+beta-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] e547d837631207f1b05842277fa7dd769b73227ff2a7990ea3682e328d7b1fbc [INFO] running `"docker" "start" "-a" "e547d837631207f1b05842277fa7dd769b73227ff2a7990ea3682e328d7b1fbc"` [INFO] [stderr] Checking afi v0.8.0-pre0 [INFO] [stderr] Checking inflate v0.3.4 [INFO] [stderr] Compiling cgmath v0.16.1 [INFO] [stderr] Checking png v0.10.0 [INFO] [stderr] Checking footile v0.2.0 [INFO] [stderr] Checking fonterator v0.3.0 [INFO] [stderr] Checking barg v0.0.3 [INFO] [stderr] Checking ami v0.13.0 [INFO] [stderr] Checking adi v0.13.0-pre2 (/opt/rustwide/workdir) [INFO] [stderr] error[E0432]: unresolved imports `adi::screen::Event`, `adi::screen::Runner` [INFO] [stderr] --> examples/screen_fps.rs:6:24 [INFO] [stderr] | [INFO] [stderr] 6 | use adi::screen::{App, Event, Runner}; [INFO] [stderr] | ^^^^^ ^^^^^^ no `Runner` in `screen` [INFO] [stderr] | | [INFO] [stderr] | no `Event` in `screen` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved imports `adi::screen::Event`, `adi::screen::Runner` [INFO] [stderr] --> examples/screen_texture.rs:6:24 [INFO] [stderr] | [INFO] [stderr] 6 | use adi::screen::{App, Event, Runner}; [INFO] [stderr] | ^^^^^ ^^^^^^ no `Runner` in `screen` [INFO] [stderr] | | [INFO] [stderr] | no `Event` in `screen` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `SurfaceInfo` [INFO] [stderr] --> examples/screen_fps.rs:25:22 [INFO] [stderr] | [INFO] [stderr] 25 | surface: SurfaceInfo::new(Size(0, 0), None), [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `SurfaceInfo` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Font` [INFO] [stderr] --> examples/screen_fps.rs:26:19 [INFO] [stderr] | [INFO] [stderr] 26 | font: Font::new(FONT).expect("Failed to load font!"), [INFO] [stderr] | ^^^^ use of undeclared type or module `Font` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `SurfaceInfo` [INFO] [stderr] --> examples/screen_fps.rs:41:35 [INFO] [stderr] | [INFO] [stderr] 41 | ctx.surface = SurfaceInfo::new(Size(w, h), Some(app.pitch())); [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `SurfaceInfo` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `LinkSurface` [INFO] [stderr] --> examples/screen_fps.rs:52:39 [INFO] [stderr] | [INFO] [stderr] 52 | let mut surface = LinkSurface::new(&mut ctx.surface, pixel_buffer); [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `LinkSurface` [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `SurfaceInfo` in this scope [INFO] [stderr] --> examples/screen_fps.rs:15:18 [INFO] [stderr] | [INFO] [stderr] 15 | pub surface: SurfaceInfo, [INFO] [stderr] | ^^^^^^^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Font` in this scope [INFO] [stderr] --> examples/screen_fps.rs:17:15 [INFO] [stderr] | [INFO] [stderr] 17 | pub font: Font<'static>, [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `FONT` in this scope [INFO] [stderr] --> examples/screen_fps.rs:26:29 [INFO] [stderr] | [INFO] [stderr] 26 | font: Font::new(FONT).expect("Failed to load font!"), [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `main` in module `adi::screen` [INFO] [stderr] --> examples/screen_fps.rs:70:18 [INFO] [stderr] | [INFO] [stderr] 70 | adi::screen::main(mode) [INFO] [stderr] | ^^^^ not found in `adi::screen` [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 6 | use crate::main; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved imports `adi::screen::Event`, `adi::screen::Runner` [INFO] [stderr] --> examples/screen_blank.rs:8:24 [INFO] [stderr] | [INFO] [stderr] 8 | use adi::screen::{App, Event, Runner}; [INFO] [stderr] | ^^^^^ ^^^^^^ no `Runner` in `screen` [INFO] [stderr] | | [INFO] [stderr] | no `Event` in `screen` [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `main` in module `adi::screen` [INFO] [stderr] --> examples/screen_blank.rs:19:18 [INFO] [stderr] | [INFO] [stderr] 19 | adi::screen::main(mode) [INFO] [stderr] | ^^^^ not found in `adi::screen` [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 8 | use crate::main; [INFO] [stderr] | [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `SurfaceInfo` [INFO] [stderr] --> examples/screen_texture.rs:28:22 [INFO] [stderr] | [INFO] [stderr] 28 | surface: SurfaceInfo::new(Size(0, 0), None), [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `SurfaceInfo` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Font` [INFO] [stderr] --> examples/screen_texture.rs:29:19 [INFO] [stderr] | [INFO] [stderr] 29 | font: Font::new(FONT).expect("Failed to load font!"), [INFO] [stderr] | ^^^^ use of undeclared type or module `Font` [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `SurfaceInfo` [INFO] [stderr] --> examples/screen_texture.rs:43:31 [INFO] [stderr] | [INFO] [stderr] 43 | ctx.surface = SurfaceInfo::new(Size(w, h), Some(app.pitch())); [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `SurfaceInfo` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `LinkSurface` [INFO] [stderr] --> examples/screen_texture.rs:62:35 [INFO] [stderr] | [INFO] [stderr] 62 | let mut surface = LinkSurface::new(&mut ctx.surface, pixel_buffer); [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `LinkSurface` [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `SurfaceInfo` in this scope [INFO] [stderr] --> examples/screen_texture.rs:15:18 [INFO] [stderr] | [INFO] [stderr] 15 | pub surface: SurfaceInfo, [INFO] [stderr] | ^^^^^^^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Font` in this scope [INFO] [stderr] --> examples/screen_texture.rs:17:15 [INFO] [stderr] | [INFO] [stderr] 17 | pub font: Font<'static>, [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `FONT` in this scope [INFO] [stderr] --> examples/screen_texture.rs:29:29 [INFO] [stderr] | [INFO] [stderr] 29 | font: Font::new(FONT).expect("Failed to load font!"), [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `main` in module `adi::screen` [INFO] [stderr] --> examples/screen_texture.rs:97:18 [INFO] [stderr] | [INFO] [stderr] 97 | adi::screen::main(mode) [INFO] [stderr] | ^^^^ not found in `adi::screen` [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 6 | use crate::main; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `stop` found for type `&mut adi::screen::App` in the current scope [INFO] [stderr] --> examples/screen_fps.rs:34:28 [INFO] [stderr] | [INFO] [stderr] 34 | Event::Exit => app.stop(), [INFO] [stderr] | ^^^^ method not found in `&mut adi::screen::App` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved imports `adi::screen::Event`, `adi::screen::Runner` [INFO] [stderr] --> examples/screen_circle.rs:6:24 [INFO] [stderr] | [INFO] [stderr] 6 | use adi::screen::{App, Event, Runner}; [INFO] [stderr] | ^^^^^ ^^^^^^ no `Runner` in `screen` [INFO] [stderr] | | [INFO] [stderr] | no `Event` in `screen` [INFO] [stderr] [INFO] [stderr] error: aborting due to 10 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0412, E0425, E0432, E0433, E0599. [INFO] [stderr] For more information about an error, try `rustc --explain E0412`. [INFO] [stderr] error[E0599]: no method named `stop` found for type `&mut adi::screen::App` in the current scope [INFO] [stderr] --> examples/screen_blank.rs:13:28 [INFO] [stderr] | [INFO] [stderr] 13 | Event::Exit => app.stop(), [INFO] [stderr] | ^^^^ method not found in `&mut adi::screen::App` [INFO] [stderr] [INFO] [stderr] error: aborting due to 3 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0425, E0432, E0599. [INFO] [stderr] For more information about an error, try `rustc --explain E0425`. [INFO] [stderr] error: could not compile `adi`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: could not compile `adi`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Font` [INFO] [stderr] --> examples/input.rs:31:19 [INFO] [stderr] | [INFO] [stderr] 31 | font: Font::new(FONT).expect("Failed to load font!"), [INFO] [stderr] | ^^^^ use of undeclared type or module `Font` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `SurfaceInfo` [INFO] [stderr] --> examples/screen_circle.rs:28:22 [INFO] [stderr] | [INFO] [stderr] 28 | surface: SurfaceInfo::new(Size(0, 0), None), [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `SurfaceInfo` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Font` [INFO] [stderr] --> examples/screen_circle.rs:29:19 [INFO] [stderr] | [INFO] [stderr] 29 | font: Font::new(FONT).expect("Failed to load font!"), [INFO] [stderr] | ^^^^ use of undeclared type or module `Font` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `SurfaceInfo` [INFO] [stderr] --> examples/screen_circle.rs:43:31 [INFO] [stderr] | [INFO] [stderr] 43 | ctx.surface = SurfaceInfo::new(Size(w, h), Some(app.pitch())); [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `SurfaceInfo` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `LinkSurface` [INFO] [stderr] --> examples/screen_circle.rs:62:35 [INFO] [stderr] | [INFO] [stderr] 62 | let mut surface = LinkSurface::new(&mut ctx.surface, pixel_buffer); [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `LinkSurface` [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Font` in this scope [INFO] [stderr] --> examples/input.rs:18:15 [INFO] [stderr] | [INFO] [stderr] 18 | font: Font<'static>, [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `FONT` in this scope [INFO] [stderr] --> examples/input.rs:31:29 [INFO] [stderr] | [INFO] [stderr] 31 | font: Font::new(FONT).expect("Failed to load font!"), [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `stop` found for type `&mut adi::screen::App` in the current scope [INFO] [stderr] --> examples/screen_texture.rs:38:28 [INFO] [stderr] | [INFO] [stderr] 38 | Event::Exit => app.stop(), [INFO] [stderr] | ^^^^ method not found in `&mut adi::screen::App` [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `SurfaceInfo` in this scope [INFO] [stderr] --> examples/screen_circle.rs:15:18 [INFO] [stderr] | [INFO] [stderr] 15 | pub surface: SurfaceInfo, [INFO] [stderr] | ^^^^^^^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Font` in this scope [INFO] [stderr] --> examples/screen_circle.rs:17:15 [INFO] [stderr] | [INFO] [stderr] 17 | pub font: Font<'static>, [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `FONT` in this scope [INFO] [stderr] --> examples/screen_circle.rs:29:29 [INFO] [stderr] | [INFO] [stderr] 29 | font: Font::new(FONT).expect("Failed to load font!"), [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `main` in module `adi::screen` [INFO] [stderr] --> examples/screen_circle.rs:88:18 [INFO] [stderr] | [INFO] [stderr] 88 | adi::screen::main(mode) [INFO] [stderr] | ^^^^ not found in `adi::screen` [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 6 | use crate::main; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 2 parameters but 3 parameters were supplied [INFO] [stderr] --> examples/screen_texture.rs:77:25 [INFO] [stderr] | [INFO] [stderr] 77 | Move(0.75, 0.75, 0.0), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ expected 2 parameters [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 2 parameters but 3 parameters were supplied [INFO] [stderr] --> examples/screen_texture.rs:78:25 [INFO] [stderr] | [INFO] [stderr] 78 | Line(0.25, 0.75, 0.0), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ expected 2 parameters [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 2 parameters but 3 parameters were supplied [INFO] [stderr] --> examples/screen_texture.rs:79:25 [INFO] [stderr] | [INFO] [stderr] 79 | Line(0.25, 0.25, 0.0), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ expected 2 parameters [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 2 parameters but 3 parameters were supplied [INFO] [stderr] --> examples/screen_texture.rs:80:25 [INFO] [stderr] | [INFO] [stderr] 80 | Line(0.75, 0.25, 0.0), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ expected 2 parameters [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 2 parameters but 3 parameters were supplied [INFO] [stderr] --> examples/screen_texture.rs:81:25 [INFO] [stderr] | [INFO] [stderr] 81 | Line(0.75, 0.75, 0.0), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ expected 2 parameters [INFO] [stderr] [INFO] [stderr] error: aborting due to 15 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0061, E0412, E0425, E0432, E0433, E0599. [INFO] [stderr] For more information about an error, try `rustc --explain E0061`. [INFO] [stderr] error: could not compile `adi`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: aborting due to 3 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0412, E0425, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0412`. [INFO] [stderr] error[E0599]: no method named `stop` found for type `&mut adi::screen::App` in the current scope [INFO] [stderr] --> examples/screen_circle.rs:38:28 [INFO] [stderr] | [INFO] [stderr] 38 | Event::Exit => app.stop(), [INFO] [stderr] | ^^^^ method not found in `&mut adi::screen::App` [INFO] [stderr] [INFO] [stderr] error: could not compile `adi`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0061]: this function takes 2 parameters but 3 parameters were supplied [INFO] [stderr] --> examples/screen_circle.rs:68:25 [INFO] [stderr] | [INFO] [stderr] 68 | Move(0.25, 0.5, 0.0), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ expected 2 parameters [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 4 parameters but 6 parameters were supplied [INFO] [stderr] --> examples/screen_circle.rs:69:25 [INFO] [stderr] | [INFO] [stderr] 69 | Quad(0.25, 0.75, 0.0, 0.5, 0.75, 0.0), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 4 parameters [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 4 parameters but 6 parameters were supplied [INFO] [stderr] --> examples/screen_circle.rs:70:25 [INFO] [stderr] | [INFO] [stderr] 70 | Quad(0.75, 0.75, 0.0, 0.75, 0.5, 0.0), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 4 parameters [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 4 parameters but 6 parameters were supplied [INFO] [stderr] --> examples/screen_circle.rs:71:25 [INFO] [stderr] | [INFO] [stderr] 71 | Quad(0.75, 0.25, 0.0, 0.5, 0.25, 0.0), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 4 parameters [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 4 parameters but 6 parameters were supplied [INFO] [stderr] --> examples/screen_circle.rs:72:25 [INFO] [stderr] | [INFO] [stderr] 72 | Quad(0.25, 0.25, 0.0, 0.25, 0.5, 0.0), [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected 4 parameters [INFO] [stderr] [INFO] [stderr] error: aborting due to 15 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0061, E0412, E0425, E0432, E0433, E0599. [INFO] [stderr] For more information about an error, try `rustc --explain E0061`. [INFO] [stderr] error: could not compile `adi`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "e547d837631207f1b05842277fa7dd769b73227ff2a7990ea3682e328d7b1fbc"` [INFO] running `"docker" "rm" "-f" "e547d837631207f1b05842277fa7dd769b73227ff2a7990ea3682e328d7b1fbc"` [INFO] [stdout] e547d837631207f1b05842277fa7dd769b73227ff2a7990ea3682e328d7b1fbc