[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] testing NickWilsonDev/Raytracer-Rust against 1.44.0 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FNickWilsonDev%2FRaytracer-Rust" "/workspace/builds/worker-14/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-14/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/NickWilsonDev/Raytracer-Rust on toolchain 1.44.0 [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.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 /workspace/builds/worker-14/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" "+1.44.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-14/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-14/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=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.44.0" "build" "--frozen"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 5e0ec0d274933615cfdf40ee23d4a18ec4cd224b5a10fe632fc4bf9ee103e27b [INFO] running `"docker" "start" "-a" "5e0ec0d274933615cfdf40ee23d4a18ec4cd224b5a10fe632fc4bf9ee103e27b"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling num-traits v0.2.1 [INFO] [stderr] Compiling libc v0.2.37 [INFO] [stderr] Compiling rayon-core v1.4.0 [INFO] [stderr] Compiling byteorder v1.2.1 [INFO] [stderr] Compiling either v1.4.0 [INFO] [stderr] Compiling color_quant v1.0.0 [INFO] [stderr] Compiling arrayvec v0.4.7 [INFO] [stderr] Compiling crossbeam-utils v0.2.2 [INFO] [stderr] Compiling gif v0.9.2 [INFO] [stderr] Compiling deflate v0.7.17 [INFO] [stderr] Compiling crossbeam-epoch v0.3.0 [INFO] [stderr] Compiling num_cpus v1.8.0 [INFO] [stderr] Compiling rand v0.4.2 [INFO] [stderr] Compiling crossbeam-deque v0.2.0 [INFO] [stderr] Compiling num-integer v0.1.36 [INFO] [stderr] Compiling num-traits v0.1.43 [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 png v0.11.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] | [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: 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] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "5e0ec0d274933615cfdf40ee23d4a18ec4cd224b5a10fe632fc4bf9ee103e27b"` [INFO] running `"docker" "rm" "-f" "5e0ec0d274933615cfdf40ee23d4a18ec4cd224b5a10fe632fc4bf9ee103e27b"` [INFO] [stdout] 5e0ec0d274933615cfdf40ee23d4a18ec4cd224b5a10fe632fc4bf9ee103e27b