[INFO] updating cached repository https://github.com/thealchemist17/rust-todo22
[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] 546e62e4bbdf82a4c8d93f058d95b540723fd70e
[INFO] checking thealchemist17/rust-todo22 against master#bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fthealchemist17%2Frust-todo22" "/workspace/builds/worker-5/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-5/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/thealchemist17/rust-todo22 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/thealchemist17/rust-todo22
[INFO] finished tweaking git repo https://github.com/thealchemist17/rust-todo22
[INFO] tweaked toml for git repo https://github.com/thealchemist17/rust-todo22 written to /workspace/builds/worker-5/source/Cargo.toml
[INFO] crate git repo https://github.com/thealchemist17/rust-todo22 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-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/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] [stdout] f3a508c086e6f72d57325ea87afa6ede844e039663d3312f422857bb2ee09239
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] running `"docker" "start" "-a" "f3a508c086e6f72d57325ea87afa6ede844e039663d3312f422857bb2ee09239"`
[INFO] [stderr]    Compiling winapi v0.3.7
[INFO] [stderr]     Checking num-integer v0.1.41
[INFO] [stderr]     Checking cgmath v0.16.1
[INFO] [stderr]    Compiling serde_derive v1.0.98
[INFO] [stderr]     Checking chrono v0.4.7
[INFO] [stderr]     Checking winconsole v0.10.0
[INFO] [stderr]     Checking colored v1.8.0
[INFO] [stderr]     Checking serde v1.0.98
[INFO] [stderr]     Checking serde_json v1.0.40
[INFO] [stderr]     Checking escargot v0.4.0
[INFO] [stderr]     Checking rust-todo22 v0.1.0 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0583]: file not found for module `todo`
[INFO] [stderr]  --> src/main.rs:1:1
[INFO] [stderr]   |
[INFO] [stderr] 1 | mod todo;
[INFO] [stderr]   | ^^^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = help: to create the module `todo`, create file "src/todo.rs"
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `todo::Data`
[INFO] [stderr]  --> src/main.rs:8:5
[INFO] [stderr]   |
[INFO] [stderr] 8 | use todo::Data;
[INFO] [stderr]   |     ^^^^^^^^^^ no `Data` in `todo`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: could not find `Priority` in `todo`
[INFO] [stderr]    --> src/main.rs:109:35
[INFO] [stderr]     |
[INFO] [stderr] 109 |             let mut value = todo::Priority::MEDIUM;
[INFO] [stderr]     |                                   ^^^^^^^^ could not find `Priority` in `todo`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: could not find `Priority` in `todo`
[INFO] [stderr]    --> src/main.rs:111:42
[INFO] [stderr]     |
[INFO] [stderr] 111 |                 "HIGH" => (value = todo::Priority::HIGH),
[INFO] [stderr]     |                                          ^^^^^^^^ could not find `Priority` in `todo`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: could not find `Priority` in `todo`
[INFO] [stderr]    --> src/main.rs:112:44
[INFO] [stderr]     |
[INFO] [stderr] 112 |                 "MEDIUM" => (value = todo::Priority::MEDIUM),
[INFO] [stderr]     |                                            ^^^^^^^^ could not find `Priority` in `todo`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: could not find `Priority` in `todo`
[INFO] [stderr]    --> src/main.rs:113:41
[INFO] [stderr]     |
[INFO] [stderr] 113 |                 "LOW" => (value = todo::Priority::LOW),
[INFO] [stderr]     |                                         ^^^^^^^^ could not find `Priority` in `todo`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: could not find `State` in `todo`
[INFO] [stderr]    --> src/main.rs:122:35
[INFO] [stderr]     |
[INFO] [stderr] 122 |             let mut value = todo::State::TODO;
[INFO] [stderr]     |                                   ^^^^^ could not find `State` in `todo`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: could not find `State` in `todo`
[INFO] [stderr]    --> src/main.rs:124:42
[INFO] [stderr]     |
[INFO] [stderr] 124 |                 "TODO" => (value = todo::State::TODO),
[INFO] [stderr]     |                                          ^^^^^ could not find `State` in `todo`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: could not find `State` in `todo`
[INFO] [stderr]    --> src/main.rs:125:46
[INFO] [stderr]     |
[INFO] [stderr] 125 |                 "PROGRESS" => (value = todo::State::PROGRESS),
[INFO] [stderr]     |                                              ^^^^^ could not find `State` in `todo`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: could not find `State` in `todo`
[INFO] [stderr]    --> src/main.rs:126:42
[INFO] [stderr]     |
[INFO] [stderr] 126 |                 "DONE" => (value = todo::State::DONE),
[INFO] [stderr]     |                                          ^^^^^ could not find `State` in `todo`
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 10 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0432, E0433, E0583.
[INFO] [stderr] For more information about an error, try `rustc --explain E0432`.
[INFO] [stderr] error: could not compile `rust-todo22`.
[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" "f3a508c086e6f72d57325ea87afa6ede844e039663d3312f422857bb2ee09239"`
[INFO] running `"docker" "rm" "-f" "f3a508c086e6f72d57325ea87afa6ede844e039663d3312f422857bb2ee09239"`
[INFO] [stdout] f3a508c086e6f72d57325ea87afa6ede844e039663d3312f422857bb2ee09239
