[INFO] updating cached repository https://github.com/NickWilsonDev/Raytracer-Rust [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/big/crater/work/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] testing NickWilsonDev/Raytracer-Rust against 1.38.0 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2FNickWilsonDev%2FRaytracer-Rust" "work/builds/worker-7/source"` [INFO] [stderr] Cloning into 'work/builds/worker-7/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/NickWilsonDev/Raytracer-Rust on toolchain 1.38.0 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "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 work/builds/worker-7/source/Cargo.toml [INFO] crate git repo https://github.com/NickWilsonDev/Raytracer-Rust already has a lockfile, it will not be regenerated [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-7/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-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" "+1.38.0" "build" "--frozen"` [INFO] [stdout] 216a3acfa7aec8881252635647546c43898c38fd0dc4af5911a48353d7ad2a95 [INFO] running `"docker" "start" "-a" "216a3acfa7aec8881252635647546c43898c38fd0dc4af5911a48353d7ad2a95"` [INFO] [stderr] Compiling libc v0.2.37 [INFO] [stderr] Compiling crossbeam-epoch v0.3.0 [INFO] [stderr] Compiling num-integer v0.1.36 [INFO] [stderr] Compiling deflate v0.7.17 [INFO] [stderr] Compiling enum_primitive v0.1.1 [INFO] [stderr] Compiling num-iter v0.1.35 [INFO] [stderr] Compiling num-rational v0.1.42 [INFO] [stderr] Compiling crossbeam-deque v0.2.0 [INFO] [stderr] Compiling num_cpus v1.8.0 [INFO] [stderr] Compiling rand v0.4.2 [INFO] [stderr] Compiling png v0.11.0 [INFO] [stderr] Compiling rayon-core v1.4.0 [INFO] [stderr] Compiling rayon v1.0.0 [INFO] [stderr] Compiling jpeg-decoder v0.1.14 [INFO] [stderr] Compiling image v0.18.0 [INFO] [stderr] Compiling 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] 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] 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 type `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 type `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] | ^^^^^^^^^ [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: the following trait defines an item `intersect`, perhaps you need to implement it: [INFO] [stderr] candidate #1: `rendering::Intersectable` [INFO] [stderr] [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] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "216a3acfa7aec8881252635647546c43898c38fd0dc4af5911a48353d7ad2a95"` [INFO] running `"docker" "rm" "-f" "216a3acfa7aec8881252635647546c43898c38fd0dc4af5911a48353d7ad2a95"` [INFO] [stdout] 216a3acfa7aec8881252635647546c43898c38fd0dc4af5911a48353d7ad2a95