[INFO] updating cached repository https://github.com/zokier/arpmasqd
[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] f6c4a13366d9a07cd7f698e7f81bdd84c688d2fa
[INFO] checking zokier/arpmasqd against master#209b2be09fcaff937480d1fbbe8b31646e361c7a for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fzokier%2Farpmasqd" "/workspace/builds/worker-13/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-13/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/zokier/arpmasqd on toolchain 209b2be09fcaff937480d1fbbe8b31646e361c7a
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking git repo https://github.com/zokier/arpmasqd
[INFO] finished tweaking git repo https://github.com/zokier/arpmasqd
[INFO] tweaked toml for git repo https://github.com/zokier/arpmasqd written to /workspace/builds/worker-13/source/Cargo.toml
[INFO] crate git repo https://github.com/zokier/arpmasqd already has a lockfile, it will not be regenerated
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] [stderr] error: the lock file /workspace/builds/worker-13/source/Cargo.lock needs to be updated but --locked was passed to prevent this
[INFO] [stderr] If you want to try to generate the lock file without accessing the network, use the --offline flag.
[INFO] the lockfile is outdated, regenerating it
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-13/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-13/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" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "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] 94c38252c3c5b07f413106a15f885c36f1c56fba7af778a2e94d749f75624f98
[INFO] running `"docker" "start" "-a" "94c38252c3c5b07f413106a15f885c36f1c56fba7af778a2e94d749f75624f98"`
[INFO] [stderr]    Compiling nom v5.1.1
[INFO] [stderr]    Compiling lexical-core v0.6.7
[INFO] [stderr]     Checking errno v0.2.5
[INFO] [stderr]     Checking arpmasqd v0.1.0 (/opt/rustwide/workdir)
[INFO] [stderr] error: cannot find macro `chain` in this scope
[INFO] [stderr]    --> src/main.rs:262:47
[INFO] [stderr]     |
[INFO] [stderr] 262 | named!(arp_packet_parser(&[u8]) -> ArpPacket, chain!(
[INFO] [stderr]     |                                               ^^^^^
[INFO] [stderr] 
[INFO] [stderr] error: cannot find macro `chain` in this scope
[INFO] [stderr]    --> src/main.rs:304:50
[INFO] [stderr]     |
[INFO] [stderr] 304 | named!(eth_frame_parser(&[u8]) -> EthernetFrame, chain!(
[INFO] [stderr]     |                                                  ^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: could not find `ErrorKind` in `nom`
[INFO] [stderr]    --> src/main.rs:296:57
[INFO] [stderr]     |
[INFO] [stderr] 296 |                 nom::IResult::Error(nom::Err::Code(nom::ErrorKind::Custom(1)))
[INFO] [stderr]     |                                                         ^^^^^^^^^ could not find `ErrorKind` in `nom`
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `be_u16` in crate `nom`
[INFO] [stderr]    --> src/main.rs:288:16
[INFO] [stderr]     |
[INFO] [stderr] 288 |     match nom::be_u16(input) {
[INFO] [stderr]     |                ^^^^^^ not found in `nom`
[INFO] [stderr]     |
[INFO] [stderr] help: possible candidates are found in other modules, you can import them into scope
[INFO] [stderr]     |
[INFO] [stderr] 10  | use nom::number::complete::be_u16;
[INFO] [stderr]     |
[INFO] [stderr] 10  | use nom::number::streaming::be_u16;
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead
[INFO] [stderr]    --> src/main.rs:236:19
[INFO] [stderr]     |
[INFO] [stderr] 236 |     let ifindex = try!(ifindex_from_ifname(&iface, listen_socket));
[INFO] [stderr]     |                   ^^^
[INFO] [stderr]     |
[INFO] [stderr]     = note: `#[warn(deprecated)]` on by default
[INFO] [stderr] 
[INFO] [stderr] error: cannot find macro `chain` in this scope
[INFO] [stderr]    --> src/main.rs:262:47
[INFO] [stderr]     |
[INFO] [stderr] 262 | named!(arp_packet_parser(&[u8]) -> ArpPacket, chain!(
[INFO] [stderr]     |                                               ^^^^^
[INFO] [stderr] 
[INFO] [stderr] error: cannot find macro `chain` in this scope
[INFO] [stderr]    --> src/main.rs:304:50
[INFO] [stderr]     |
[INFO] [stderr] 304 | named!(eth_frame_parser(&[u8]) -> EthernetFrame, chain!(
[INFO] [stderr]     |                                                  ^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: could not find `ErrorKind` in `nom`
[INFO] [stderr]    --> src/main.rs:296:57
[INFO] [stderr]     |
[INFO] [stderr] 296 |                 nom::IResult::Error(nom::Err::Code(nom::ErrorKind::Custom(1)))
[INFO] [stderr]     |                                                         ^^^^^^^^^ could not find `ErrorKind` in `nom`
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `be_u16` in crate `nom`
[INFO] [stderr]    --> src/main.rs:288:16
[INFO] [stderr]     |
[INFO] [stderr] 288 |     match nom::be_u16(input) {
[INFO] [stderr]     |                ^^^^^^ not found in `nom`
[INFO] [stderr]     |
[INFO] [stderr] help: possible candidates are found in other modules, you can import them into scope
[INFO] [stderr]     |
[INFO] [stderr] 10  | use nom::number::complete::be_u16;
[INFO] [stderr]     |
[INFO] [stderr] 10  | use nom::number::streaming::be_u16;
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead
[INFO] [stderr]    --> src/main.rs:236:19
[INFO] [stderr]     |
[INFO] [stderr] 236 |     let ifindex = try!(ifindex_from_ifname(&iface, listen_socket));
[INFO] [stderr]     |                   ^^^
[INFO] [stderr]     |
[INFO] [stderr]     = note: `#[warn(deprecated)]` on by default
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Done` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:289:23
[INFO] [stderr]     |
[INFO] [stderr] 289 |         nom::IResult::Done(i,tysize) => {
[INFO] [stderr]     |                       ^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Error` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:299:23
[INFO] [stderr]     |
[INFO] [stderr] 299 |         nom::IResult::Error(err) => nom::IResult::Error(err),
[INFO] [stderr]     |                       ^^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Incomplete` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:300:23
[INFO] [stderr]     |
[INFO] [stderr] 300 |         nom::IResult::Incomplete(need) => nom::IResult::Incomplete(need)
[INFO] [stderr]     |                       ^^^^^^^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Done` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:291:31
[INFO] [stderr]     |
[INFO] [stderr] 291 |                 nom::IResult::Done(i,EthernetTypeSize::Type(EtherType::Arp))
[INFO] [stderr]     |                               ^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Done` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:293:31
[INFO] [stderr]     |
[INFO] [stderr] 293 |                 nom::IResult::Done(i,EthernetTypeSize::Size(tysize))
[INFO] [stderr]     |                               ^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Error` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:296:31
[INFO] [stderr]     |
[INFO] [stderr] 296 |                 nom::IResult::Error(nom::Err::Code(nom::ErrorKind::Custom(1)))
[INFO] [stderr]     |                               ^^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Code` found for enum `nom::Err<_>` in the current scope
[INFO] [stderr]    --> src/main.rs:296:47
[INFO] [stderr]     |
[INFO] [stderr] 296 |                 nom::IResult::Error(nom::Err::Code(nom::ErrorKind::Custom(1)))
[INFO] [stderr]     |                                               ^^^^ variant or associated item not found in `nom::Err<_>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Error` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:299:51
[INFO] [stderr]     |
[INFO] [stderr] 299 |         nom::IResult::Error(err) => nom::IResult::Error(err),
[INFO] [stderr]     |                                                   ^^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Incomplete` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:300:57
[INFO] [stderr]     |
[INFO] [stderr] 300 |         nom::IResult::Incomplete(need) => nom::IResult::Incomplete(need)
[INFO] [stderr]     |                                                         ^^^^^^^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Done` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:433:31
[INFO] [stderr]     |
[INFO] [stderr] 433 |                 nom::IResult::Done(_i, frame) => handle_arp_packet(&frame, &link_info),
[INFO] [stderr]     |                               ^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Error` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:434:31
[INFO] [stderr]     |
[INFO] [stderr] 434 |                 nom::IResult::Error(err) => println!("Parser error: {:?}", err),
[INFO] [stderr]     |                               ^^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Incomplete` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:435:31
[INFO] [stderr]     |
[INFO] [stderr] 435 |                 nom::IResult::Incomplete(needed) => println!("Parser incomplete: {:?}", needed)
[INFO] [stderr]     |                               ^^^^^^^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Done` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:289:23
[INFO] [stderr]     |
[INFO] [stderr] 289 |         nom::IResult::Done(i,tysize) => {
[INFO] [stderr]     |                       ^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Error` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:299:23
[INFO] [stderr]     |
[INFO] [stderr] 299 |         nom::IResult::Error(err) => nom::IResult::Error(err),
[INFO] [stderr]     |                       ^^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Incomplete` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:300:23
[INFO] [stderr]     |
[INFO] [stderr] 300 |         nom::IResult::Incomplete(need) => nom::IResult::Incomplete(need)
[INFO] [stderr]     |                       ^^^^^^^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Done` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:291:31
[INFO] [stderr]     |
[INFO] [stderr] 291 |                 nom::IResult::Done(i,EthernetTypeSize::Type(EtherType::Arp))
[INFO] [stderr]     |                               ^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Done` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:293:31
[INFO] [stderr]     |
[INFO] [stderr] 293 |                 nom::IResult::Done(i,EthernetTypeSize::Size(tysize))
[INFO] [stderr]     |                               ^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Error` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:296:31
[INFO] [stderr]     |
[INFO] [stderr] 296 |                 nom::IResult::Error(nom::Err::Code(nom::ErrorKind::Custom(1)))
[INFO] [stderr]     |                               ^^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Code` found for enum `nom::Err<_>` in the current scope
[INFO] [stderr]    --> src/main.rs:296:47
[INFO] [stderr]     |
[INFO] [stderr] 296 |                 nom::IResult::Error(nom::Err::Code(nom::ErrorKind::Custom(1)))
[INFO] [stderr]     |                                               ^^^^ variant or associated item not found in `nom::Err<_>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Error` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:299:51
[INFO] [stderr]     |
[INFO] [stderr] 299 |         nom::IResult::Error(err) => nom::IResult::Error(err),
[INFO] [stderr]     |                                                   ^^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Incomplete` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:300:57
[INFO] [stderr]     |
[INFO] [stderr] 300 |         nom::IResult::Incomplete(need) => nom::IResult::Incomplete(need)
[INFO] [stderr]     |                                                         ^^^^^^^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Done` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:433:31
[INFO] [stderr]     |
[INFO] [stderr] 433 |                 nom::IResult::Done(_i, frame) => handle_arp_packet(&frame, &link_info),
[INFO] [stderr]     |                               ^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Error` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:434:31
[INFO] [stderr]     |
[INFO] [stderr] 434 |                 nom::IResult::Error(err) => println!("Parser error: {:?}", err),
[INFO] [stderr]     |                               ^^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no variant or associated item named `Incomplete` found for enum `std::result::Result<(_, _), nom::Err<_>>` in the current scope
[INFO] [stderr]    --> src/main.rs:435:31
[INFO] [stderr]     |
[INFO] [stderr] 435 |                 nom::IResult::Incomplete(needed) => println!("Parser incomplete: {:?}", needed)
[INFO] [stderr]     |                               ^^^^^^^^^^ variant or associated item not found in `std::result::Result<(_, _), nom::Err<_>>`
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 16 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0425, E0433, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0425`.
[INFO] [stderr] error: could not compile `arpmasqd`.
[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 16 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0425, E0433, E0599.
[INFO] [stderr] For more information about an error, try `rustc --explain E0425`.
[INFO] [stderr] error: could not compile `arpmasqd`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "94c38252c3c5b07f413106a15f885c36f1c56fba7af778a2e94d749f75624f98"`
[INFO] running `"docker" "rm" "-f" "94c38252c3c5b07f413106a15f885c36f1c56fba7af778a2e94d749f75624f98"`
[INFO] [stdout] 94c38252c3c5b07f413106a15f885c36f1c56fba7af778a2e94d749f75624f98
