[INFO] updating cached repository https://github.com/schteve/advent2019_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] 5188bdc6cfd9700be11b5a53d13fc572f3ac53bb [INFO] testing schteve/advent2019_rust against 1.44.0 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fschteve%2Fadvent2019_rust" "/workspace/builds/worker-9/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-9/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/schteve/advent2019_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/schteve/advent2019_rust [INFO] finished tweaking git repo https://github.com/schteve/advent2019_rust [INFO] tweaked toml for git repo https://github.com/schteve/advent2019_rust written to /workspace/builds/worker-9/source/Cargo.toml [INFO] crate git repo https://github.com/schteve/advent2019_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-9/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-9/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] 9513a735b1143ae25fd49d8d51309c6eea0ca2fb370f98924e46068d1b444fed [INFO] running `"docker" "start" "-a" "9513a735b1143ae25fd49d8d51309c6eea0ca2fb370f98924e46068d1b444fed"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling syn v1.0.21 [INFO] [stderr] Compiling aoc-runner v0.3.0 [INFO] [stderr] Compiling proc-macro2 v1.0.12 [INFO] [stderr] Compiling serde_json v1.0.53 [INFO] [stderr] Compiling quote v1.0.5 [INFO] [stderr] Compiling serde_derive v1.0.110 [INFO] [stderr] Compiling aoc-runner-internal v0.1.0 [INFO] [stderr] Compiling aoc-runner-derive v0.3.0 [INFO] [stderr] Compiling advent2019_rust v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error: proc macro panicked [INFO] [stderr] --> src/lib.rs:58:1 [INFO] [stderr] | [INFO] [stderr] 58 | aoc_lib! { year = 2019 } [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: message: failed to write infos from lib: Os { code: 30, kind: Other, message: "Read-only file system" } [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_01_part1.rs:29:1 [INFO] [stderr] | [INFO] [stderr] 29 | #[aoc(day1, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_01_part2.rs:33:1 [INFO] [stderr] | [INFO] [stderr] 33 | #[aoc(day1, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_02_part1.rs:94:1 [INFO] [stderr] | [INFO] [stderr] 94 | #[aoc(day2, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_02_part2.rs:72:1 [INFO] [stderr] | [INFO] [stderr] 72 | #[aoc(day2, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_03_part1.rs:104:1 [INFO] [stderr] | [INFO] [stderr] 104 | #[aoc(day3, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_03_part2.rs:90:1 [INFO] [stderr] | [INFO] [stderr] 90 | #[aoc(day3, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_04_part1.rs:59:1 [INFO] [stderr] | [INFO] [stderr] 59 | #[aoc(day4, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_04_part2.rs:65:1 [INFO] [stderr] | [INFO] [stderr] 65 | #[aoc(day4, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_05_part1.rs:182:1 [INFO] [stderr] | [INFO] [stderr] 182 | #[aoc(day5, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_05_part2.rs:249:1 [INFO] [stderr] | [INFO] [stderr] 249 | #[aoc(day5, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_06_part1.rs:125:1 [INFO] [stderr] | [INFO] [stderr] 125 | #[aoc(day6, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_06_part2.rs:154:1 [INFO] [stderr] | [INFO] [stderr] 154 | #[aoc(day6, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_07_part1.rs:308:1 [INFO] [stderr] | [INFO] [stderr] 308 | #[aoc(day7, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_07_part2.rs:309:1 [INFO] [stderr] | [INFO] [stderr] 309 | #[aoc(day7, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_08_part1.rs:116:1 [INFO] [stderr] | [INFO] [stderr] 116 | #[aoc(day8, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_08_part2.rs:131:1 [INFO] [stderr] | [INFO] [stderr] 131 | #[aoc(day8, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_09_part1.rs:324:1 [INFO] [stderr] | [INFO] [stderr] 324 | #[aoc(day9, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_09_part2.rs:298:1 [INFO] [stderr] | [INFO] [stderr] 298 | #[aoc(day9, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_10_part1.rs:178:1 [INFO] [stderr] | [INFO] [stderr] 178 | #[aoc(day10, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_10_part2.rs:177:1 [INFO] [stderr] | [INFO] [stderr] 177 | #[aoc(day10, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_11_part1.rs:528:1 [INFO] [stderr] | [INFO] [stderr] 528 | #[aoc(day11, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_11_part2.rs:477:1 [INFO] [stderr] | [INFO] [stderr] 477 | #[aoc(day11, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_12_part1.rs:285:1 [INFO] [stderr] | [INFO] [stderr] 285 | #[aoc(day12, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_12_part2.rs:159:1 [INFO] [stderr] | [INFO] [stderr] 159 | #[aoc(day12, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_13_part1.rs:411:1 [INFO] [stderr] | [INFO] [stderr] 411 | #[aoc(day13, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_13_part2.rs:486:1 [INFO] [stderr] | [INFO] [stderr] 486 | #[aoc(day13, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_14_part1.rs:247:1 [INFO] [stderr] | [INFO] [stderr] 247 | #[aoc(day14, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_14_part2.rs:209:1 [INFO] [stderr] | [INFO] [stderr] 209 | #[aoc(day14, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_15_part1.rs:584:1 [INFO] [stderr] | [INFO] [stderr] 584 | #[aoc(day15, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_15_part2.rs:591:1 [INFO] [stderr] | [INFO] [stderr] 591 | #[aoc(day15, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_16_part1.rs:126:1 [INFO] [stderr] | [INFO] [stderr] 126 | #[aoc(day16, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_16_part2.rs:66:1 [INFO] [stderr] | [INFO] [stderr] 66 | #[aoc(day16, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_17_part1.rs:493:1 [INFO] [stderr] | [INFO] [stderr] 493 | #[aoc(day17, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_17_part2.rs:755:1 [INFO] [stderr] | [INFO] [stderr] 755 | #[aoc(day17, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_18_part1.rs:532:1 [INFO] [stderr] | [INFO] [stderr] 532 | #[aoc(day18, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_18_part2.rs:627:1 [INFO] [stderr] | [INFO] [stderr] 627 | #[aoc(day18, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_19_part1.rs:436:1 [INFO] [stderr] | [INFO] [stderr] 436 | #[aoc(day19, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_19_part2.rs:507:1 [INFO] [stderr] | [INFO] [stderr] 507 | #[aoc(day19, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_20_part1.rs:365:1 [INFO] [stderr] | [INFO] [stderr] 365 | #[aoc(day20, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_20_part2.rs:474:1 [INFO] [stderr] | [INFO] [stderr] 474 | #[aoc(day20, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_21_part1.rs:442:1 [INFO] [stderr] | [INFO] [stderr] 442 | #[aoc(day21, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_21_part2.rs:374:1 [INFO] [stderr] | [INFO] [stderr] 374 | #[aoc(day21, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_22_part1.rs:247:1 [INFO] [stderr] | [INFO] [stderr] 247 | #[aoc(day22, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_22_part2.rs:320:1 [INFO] [stderr] | [INFO] [stderr] 320 | #[aoc(day22, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_23_part1.rs:406:1 [INFO] [stderr] | [INFO] [stderr] 406 | #[aoc(day23, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_23_part2.rs:432:1 [INFO] [stderr] | [INFO] [stderr] 432 | #[aoc(day23, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_24_part1.rs:175:1 [INFO] [stderr] | [INFO] [stderr] 175 | #[aoc(day24, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_24_part2.rs:380:1 [INFO] [stderr] | [INFO] [stderr] 380 | #[aoc(day24, part2)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `crate` [INFO] [stderr] --> src/day_25_part1.rs:407:1 [INFO] [stderr] | [INFO] [stderr] 407 | #[aoc(day25, part1)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ no `Factory` in the root [INFO] [stderr] | [INFO] [stderr] = note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: aborting due to 50 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0432`. [INFO] [stderr] error: could not compile `advent2019_rust`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "9513a735b1143ae25fd49d8d51309c6eea0ca2fb370f98924e46068d1b444fed"` [INFO] running `"docker" "rm" "-f" "9513a735b1143ae25fd49d8d51309c6eea0ca2fb370f98924e46068d1b444fed"` [INFO] [stdout] 9513a735b1143ae25fd49d8d51309c6eea0ca2fb370f98924e46068d1b444fed