[INFO] updating cached repository https://github.com/NickWilsonDev/Raytracer-Rust
[INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"`
[INFO] running `"git" "rev-parse" "HEAD"`
[INFO] [stdout] 7460ff590272b724b18b2206e7b2c52e9dd2d42e
[INFO] checking NickWilsonDev/Raytracer-Rust against master#bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FNickWilsonDev%2FRaytracer-Rust" "/workspace/builds/worker-4/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-4/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/NickWilsonDev/Raytracer-Rust on toolchain bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking git repo https://github.com/NickWilsonDev/Raytracer-Rust
[INFO] finished tweaking git repo https://github.com/NickWilsonDev/Raytracer-Rust
[INFO] tweaked toml for git repo https://github.com/NickWilsonDev/Raytracer-Rust written to /workspace/builds/worker-4/source/Cargo.toml
[INFO] crate git repo https://github.com/NickWilsonDev/Raytracer-Rust already has a lockfile, it will not be regenerated
[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-4/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/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] 848b448e40f5ec437c197b4558abbd5fcfcae397356069eefcf078bbc8ef5f1b
[INFO] running `"docker" "start" "-a" "848b448e40f5ec437c197b4558abbd5fcfcae397356069eefcf078bbc8ef5f1b"`
[INFO] [stderr]     Checking num-traits v0.2.1
[INFO] [stderr]     Checking libc v0.2.37
[INFO] [stderr]     Checking either v1.4.0
[INFO] [stderr]     Checking crossbeam-epoch v0.3.0
[INFO] [stderr]     Checking crossbeam-deque v0.2.0
[INFO] [stderr]     Checking rand v0.4.2
[INFO] [stderr]     Checking num_cpus v1.8.0
[INFO] [stderr]     Checking num-integer v0.1.36
[INFO] [stderr]     Checking num-traits v0.1.43
[INFO] [stderr]     Checking enum_primitive v0.1.1
[INFO] [stderr]     Checking num-iter v0.1.35
[INFO] [stderr]     Checking num-rational v0.1.42
[INFO] [stderr]     Checking png v0.11.0
[INFO] [stderr]     Checking rayon-core v1.4.0
[INFO] [stderr]     Checking rayon v1.0.0
[INFO] [stderr]     Checking jpeg-decoder v0.1.14
[INFO] [stderr]     Checking image v0.18.0
[INFO] [stderr]     Checking raytracer v0.1.0 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Point`
[INFO] [stderr]   --> src/rendering.rs:19:21
[INFO] [stderr]    |
[INFO] [stderr] 19 |             origin: Point::zero(),
[INFO] [stderr]    |                     ^^^^^ use of undeclared type or module `Point`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Point` in this scope
[INFO] [stderr]   --> src/scene.rs:10:17
[INFO] [stderr]    |
[INFO] [stderr] 10 |     pub center: Point,
[INFO] [stderr]    |                 ^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Point` in this scope
[INFO] [stderr]  --> src/rendering.rs:4:17
[INFO] [stderr]   |
[INFO] [stderr] 4 |     pub origin: Point,
[INFO] [stderr]   |                 ^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Vector3` in this scope
[INFO] [stderr]  --> src/rendering.rs:5:20
[INFO] [stderr]   |
[INFO] [stderr] 5 |     pub direction: Vector3,
[INFO] [stderr]   |                    ^^^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Scene` in this scope
[INFO] [stderr]  --> src/rendering.rs:9:49
[INFO] [stderr]   |
[INFO] [stderr] 9 |     pub fn create_prime(x: u32, y: u32, scene: &Scene) -> Ray {
[INFO] [stderr]   |                                                 ^^^^^ not found in this scope
[INFO] [stderr]   |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]   |
[INFO] [stderr] 3 | use scene::Scene;
[INFO] [stderr]   |
[INFO] [stderr] 
[INFO] [stderr] error[E0422]: cannot find struct, variant or union type `Vector3` in this scope
[INFO] [stderr]   --> src/rendering.rs:20:24
[INFO] [stderr]    |
[INFO] [stderr] 20 |             direction: Vector3 {
[INFO] [stderr]    |                        ^^^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Sphere` in this scope
[INFO] [stderr]   --> src/rendering.rs:34:24
[INFO] [stderr]    |
[INFO] [stderr] 34 | impl Intersectable for Sphere {
[INFO] [stderr]    |                        ^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 3  | use scene::Sphere;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Vector3` in this scope
[INFO] [stderr]   --> src/rendering.rs:37:16
[INFO] [stderr]    |
[INFO] [stderr] 37 |         let l: Vector3 = self.center - ray.origin;
[INFO] [stderr]    |                ^^^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `to_rgba` in this scope
[INFO] [stderr]   --> src/lib.rs:21:39
[INFO] [stderr]    |
[INFO] [stderr] 21 |                 image.put_pixel(x, y, to_rgba(&scene.sphere.color))
[INFO] [stderr]    |                                       ^^^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0422]: cannot find struct, variant or union type `Sphere` in this scope
[INFO] [stderr]   --> src/lib.rs:36:17
[INFO] [stderr]    |
[INFO] [stderr] 36 |         sphere: Sphere {
[INFO] [stderr]    |                 ^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 8  | use scene::Sphere;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0422]: cannot find struct, variant or union type `Point` in this scope
[INFO] [stderr]   --> src/lib.rs:37:21
[INFO] [stderr]    |
[INFO] [stderr] 37 |             center: Point {
[INFO] [stderr]    |                     ^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0422]: cannot find struct, variant or union type `Color` in this scope
[INFO] [stderr]   --> src/lib.rs:43:20
[INFO] [stderr]    |
[INFO] [stderr] 43 |             color: Color {
[INFO] [stderr]    |                    ^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 8  | use scene::Color;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Point`
[INFO] [stderr]   --> src/rendering.rs:19:21
[INFO] [stderr]    |
[INFO] [stderr] 19 |             origin: Point::zero(),
[INFO] [stderr]    |                     ^^^^^ use of undeclared type or module `Point`
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Point` in this scope
[INFO] [stderr]   --> src/scene.rs:10:17
[INFO] [stderr]    |
[INFO] [stderr] 10 |     pub center: Point,
[INFO] [stderr]    |                 ^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Point` in this scope
[INFO] [stderr]  --> src/rendering.rs:4:17
[INFO] [stderr]   |
[INFO] [stderr] 4 |     pub origin: Point,
[INFO] [stderr]   |                 ^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Vector3` in this scope
[INFO] [stderr]  --> src/rendering.rs:5:20
[INFO] [stderr]   |
[INFO] [stderr] 5 |     pub direction: Vector3,
[INFO] [stderr]   |                    ^^^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Scene` in this scope
[INFO] [stderr]  --> src/rendering.rs:9:49
[INFO] [stderr]   |
[INFO] [stderr] 9 |     pub fn create_prime(x: u32, y: u32, scene: &Scene) -> Ray {
[INFO] [stderr]   |                                                 ^^^^^ not found in this scope
[INFO] [stderr]   |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]   |
[INFO] [stderr] 3 | use scene::Scene;
[INFO] [stderr]   |
[INFO] [stderr] 
[INFO] [stderr] error[E0422]: cannot find struct, variant or union type `Vector3` in this scope
[INFO] [stderr]   --> src/rendering.rs:20:24
[INFO] [stderr]    |
[INFO] [stderr] 20 |             direction: Vector3 {
[INFO] [stderr]    |                        ^^^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Sphere` in this scope
[INFO] [stderr]   --> src/rendering.rs:34:24
[INFO] [stderr]    |
[INFO] [stderr] 34 | impl Intersectable for Sphere {
[INFO] [stderr]    |                        ^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 3  | use scene::Sphere;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0412]: cannot find type `Vector3` in this scope
[INFO] [stderr]   --> src/rendering.rs:37:16
[INFO] [stderr]    |
[INFO] [stderr] 37 |         let l: Vector3 = self.center - ray.origin;
[INFO] [stderr]    |                ^^^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `to_rgba` in this scope
[INFO] [stderr]   --> src/lib.rs:21:39
[INFO] [stderr]    |
[INFO] [stderr] 21 |                 image.put_pixel(x, y, to_rgba(&scene.sphere.color))
[INFO] [stderr]    |                                       ^^^^^^^ not found in this scope
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `from_channels` found for struct `image::Rgba<_>` in the current scope
[INFO] [stderr]   --> src/lib.rs:15:23
[INFO] [stderr]    |
[INFO] [stderr] 15 |     let black = Rgba::from_channels(0, 0, 0, 0);
[INFO] [stderr]    |                       ^^^^^^^^^^^^^ function or associated item not found in `image::Rgba<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]    |
[INFO] [stderr] 8  | use image::Pixel;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `intersect` found for struct `scene::Sphere` in the current scope
[INFO] [stderr]   --> src/lib.rs:20:29
[INFO] [stderr]    |
[INFO] [stderr] 20 |             if scene.sphere.intersect(&ray) {
[INFO] [stderr]    |                             ^^^^^^^^^ method not found in `scene::Sphere`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: src/scene.rs:9:1
[INFO] [stderr]    |
[INFO] [stderr] 9  | pub struct Sphere {
[INFO] [stderr]    | ----------------- method `intersect` not found for this
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is implemented and in scope
[INFO] [stderr] note: `rendering::Intersectable` defines an item `intersect`, perhaps you need to implement it
[INFO] [stderr]   --> src/rendering.rs:30:1
[INFO] [stderr]    |
[INFO] [stderr] 30 | pub trait Intersectable {
[INFO] [stderr]    | ^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `from_channels` found for struct `image::Rgba<_>` in the current scope
[INFO] [stderr]   --> src/lib.rs:15:23
[INFO] [stderr]    |
[INFO] [stderr] 15 |     let black = Rgba::from_channels(0, 0, 0, 0);
[INFO] [stderr]    |                       ^^^^^^^^^^^^^ function or associated item not found in `image::Rgba<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is in scope
[INFO] [stderr] help: the following trait is implemented but not in scope; perhaps add a `use` for it:
[INFO] [stderr]    |
[INFO] [stderr] 8  | use image::Pixel;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 14 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0412, E0422, E0425, E0433, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0412`.
[INFO] [stderr] error[E0599]: no method named `intersect` found for struct `scene::Sphere` in the current scope
[INFO] [stderr]   --> src/lib.rs:20:29
[INFO] [stderr]    |
[INFO] [stderr] 20 |             if scene.sphere.intersect(&ray) {
[INFO] [stderr]    |                             ^^^^^^^^^ method not found in `scene::Sphere`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: src/scene.rs:9:1
[INFO] [stderr]    |
[INFO] [stderr] 9  | pub struct Sphere {
[INFO] [stderr]    | ----------------- method `intersect` not found for this
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is implemented and in scope
[INFO] [stderr] note: `rendering::Intersectable` defines an item `intersect`, perhaps you need to implement it
[INFO] [stderr]   --> src/rendering.rs:30:1
[INFO] [stderr]    |
[INFO] [stderr] 30 | pub trait Intersectable {
[INFO] [stderr]    | ^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error: could not compile `raytracer`.
[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: aborting due to 11 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0412, E0422, E0425, E0433, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0412`.
[INFO] [stderr] error: could not compile `raytracer`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "848b448e40f5ec437c197b4558abbd5fcfcae397356069eefcf078bbc8ef5f1b"`
[INFO] running `"docker" "rm" "-f" "848b448e40f5ec437c197b4558abbd5fcfcae397356069eefcf078bbc8ef5f1b"`
[INFO] [stdout] 848b448e40f5ec437c197b4558abbd5fcfcae397356069eefcf078bbc8ef5f1b
