[INFO] fetching crate netsnmp-sys-nocrypto 0.1.3...
[INFO] testing netsnmp-sys-nocrypto-0.1.3 against 1.90.0 for beta-1.91-3
[INFO] extracting crate netsnmp-sys-nocrypto 0.1.3 into /workspace/builds/worker-4-tc1/source
[INFO] started tweaking crates.io crate netsnmp-sys-nocrypto 0.1.3
[INFO] finished tweaking crates.io crate netsnmp-sys-nocrypto 0.1.3
[INFO] tweaked toml for crates.io crate netsnmp-sys-nocrypto 0.1.3 written to /workspace/builds/worker-4-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate netsnmp-sys-nocrypto 0.1.3 on toolchain 1.90.0
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr]     Updating crates.io index
[INFO] [stderr]      Locking 1 package to latest compatible version
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr] warning: no edition set: defaulting to the 2015 edition while the latest is 2024
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] 04b6eefd532c75f83899d23052245407b54f4562c2bec3ceaa2421656c2c3975
[INFO] running `Command { std: "docker" "start" "-a" "04b6eefd532c75f83899d23052245407b54f4562c2bec3ceaa2421656c2c3975", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "04b6eefd532c75f83899d23052245407b54f4562c2bec3ceaa2421656c2c3975", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "04b6eefd532c75f83899d23052245407b54f4562c2bec3ceaa2421656c2c3975", kill_on_drop: false }`
[INFO] [stdout] 04b6eefd532c75f83899d23052245407b54f4562c2bec3ceaa2421656c2c3975
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 2b56733e30d1d76467ac43e36eeeecc866ac00724761fedbbba0ad747d476bfe
[INFO] running `Command { std: "docker" "start" "-a" "2b56733e30d1d76467ac43e36eeeecc866ac00724761fedbbba0ad747d476bfe", kill_on_drop: false }`
[INFO] [stderr] warning: no edition set: defaulting to the 2015 edition while the latest is 2024
[INFO] [stderr]    Compiling netsnmp-sys-nocrypto v0.1.3 (/opt/rustwide/workdir)
[INFO] [stdout] warning: for loop over a `Result`. This is more readably written as an `if let` statement
[INFO] [stdout]  --> build.rs:4:19
[INFO] [stdout]   |
[INFO] [stdout] 4 |     for output in Command::new("net-snmp-config").arg("--libdir").output() {
[INFO] [stdout]   |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(for_loops_over_fallibles)]` on by default
[INFO] [stdout] help: to check pattern in a loop use `while let`
[INFO] [stdout]   |
[INFO] [stdout] 4 -     for output in Command::new("net-snmp-config").arg("--libdir").output() {
[INFO] [stdout] 4 +     while let Ok(output) = Command::new("net-snmp-config").arg("--libdir").output() {
[INFO] [stdout]   |
[INFO] [stdout] help: consider using `if let` to clear intent
[INFO] [stdout]   |
[INFO] [stdout] 4 -     for output in Command::new("net-snmp-config").arg("--libdir").output() {
[INFO] [stdout] 4 +     if let Ok(output) = Command::new("net-snmp-config").arg("--libdir").output() {
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: for loop over a `Result`. This is more readably written as an `if let` statement
[INFO] [stdout]  --> build.rs:6:25
[INFO] [stdout]   |
[INFO] [stdout] 6 |             for path in String::from_utf8(output.stdout) {
[INFO] [stdout]   |                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout] help: to check pattern in a loop use `while let`
[INFO] [stdout]   |
[INFO] [stdout] 6 -             for path in String::from_utf8(output.stdout) {
[INFO] [stdout] 6 +             while let Ok(path) = String::from_utf8(output.stdout) {
[INFO] [stdout]   |
[INFO] [stdout] help: consider using `if let` to clear intent
[INFO] [stdout]   |
[INFO] [stdout] 6 -             for path in String::from_utf8(output.stdout) {
[INFO] [stdout] 6 +             if let Ok(path) = String::from_utf8(output.stdout) {
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]   --> src/lib.rs:38:49
[INFO] [stdout]    |
[INFO] [stdout] 38 | pub const SNMP_NOSUCHOBJECT:     raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x0);
[INFO] [stdout]    |                                                 ^                                 ^
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(unused_parens)]` on by default
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 38 - pub const SNMP_NOSUCHOBJECT:     raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x0);
[INFO] [stdout] 38 + pub const SNMP_NOSUCHOBJECT:     raw::c_uchar = ASN_CONTEXT | ASN_PRIMITIVE | 0x0;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]   --> src/lib.rs:39:49
[INFO] [stdout]    |
[INFO] [stdout] 39 | pub const SNMP_NOSUCHINSTANCE:   raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x1);
[INFO] [stdout]    |                                                 ^                                 ^
[INFO] [stdout]    |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 39 - pub const SNMP_NOSUCHINSTANCE:   raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x1);
[INFO] [stdout] 39 + pub const SNMP_NOSUCHINSTANCE:   raw::c_uchar = ASN_CONTEXT | ASN_PRIMITIVE | 0x1;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]   --> src/lib.rs:40:49
[INFO] [stdout]    |
[INFO] [stdout] 40 | pub const SNMP_ENDOFMIBVIEW:     raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x2);
[INFO] [stdout]    |                                                 ^                                 ^
[INFO] [stdout]    |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 40 - pub const SNMP_ENDOFMIBVIEW:     raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x2);
[INFO] [stdout] 40 + pub const SNMP_ENDOFMIBVIEW:     raw::c_uchar = ASN_CONTEXT | ASN_PRIMITIVE | 0x2;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:149:44
[INFO] [stdout]     |
[INFO] [stdout] 149 | pub const ASN_IPADDRESS:    raw::c_uchar = (ASN_APPLICATION |  0);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 149 - pub const ASN_IPADDRESS:    raw::c_uchar = (ASN_APPLICATION |  0);
[INFO] [stdout] 149 + pub const ASN_IPADDRESS:    raw::c_uchar = ASN_APPLICATION |  0;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:150:44
[INFO] [stdout]     |
[INFO] [stdout] 150 | pub const ASN_COUNTER:      raw::c_uchar = (ASN_APPLICATION |  1);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 150 - pub const ASN_COUNTER:      raw::c_uchar = (ASN_APPLICATION |  1);
[INFO] [stdout] 150 + pub const ASN_COUNTER:      raw::c_uchar = ASN_APPLICATION |  1;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:151:44
[INFO] [stdout]     |
[INFO] [stdout] 151 | pub const ASN_GAUGE:        raw::c_uchar = (ASN_APPLICATION |  2);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 151 - pub const ASN_GAUGE:        raw::c_uchar = (ASN_APPLICATION |  2);
[INFO] [stdout] 151 + pub const ASN_GAUGE:        raw::c_uchar = ASN_APPLICATION |  2;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:152:44
[INFO] [stdout]     |
[INFO] [stdout] 152 | pub const ASN_UNSIGNED:     raw::c_uchar = (ASN_APPLICATION |  2); // RFC 1902 - same as GAUGE
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 152 - pub const ASN_UNSIGNED:     raw::c_uchar = (ASN_APPLICATION |  2); // RFC 1902 - same as GAUGE
[INFO] [stdout] 152 + pub const ASN_UNSIGNED:     raw::c_uchar = ASN_APPLICATION |  2; // RFC 1902 - same as GAUGE
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:153:44
[INFO] [stdout]     |
[INFO] [stdout] 153 | pub const ASN_TIMETICKS:    raw::c_uchar = (ASN_APPLICATION |  3);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 153 - pub const ASN_TIMETICKS:    raw::c_uchar = (ASN_APPLICATION |  3);
[INFO] [stdout] 153 + pub const ASN_TIMETICKS:    raw::c_uchar = ASN_APPLICATION |  3;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:154:44
[INFO] [stdout]     |
[INFO] [stdout] 154 | pub const ASN_OPAQUE:       raw::c_uchar = (ASN_APPLICATION |  4); // changed so no conflict with other includes
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 154 - pub const ASN_OPAQUE:       raw::c_uchar = (ASN_APPLICATION |  4); // changed so no conflict with other includes
[INFO] [stdout] 154 + pub const ASN_OPAQUE:       raw::c_uchar = ASN_APPLICATION |  4; // changed so no conflict with other includes
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:155:44
[INFO] [stdout]     |
[INFO] [stdout] 155 | pub const ASN_NSAP:         raw::c_uchar = (ASN_APPLICATION |  5); // historic - don't use
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 155 - pub const ASN_NSAP:         raw::c_uchar = (ASN_APPLICATION |  5); // historic - don't use
[INFO] [stdout] 155 + pub const ASN_NSAP:         raw::c_uchar = ASN_APPLICATION |  5; // historic - don't use
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:156:44
[INFO] [stdout]     |
[INFO] [stdout] 156 | pub const ASN_COUNTER64:    raw::c_uchar = (ASN_APPLICATION |  6);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 156 - pub const ASN_COUNTER64:    raw::c_uchar = (ASN_APPLICATION |  6);
[INFO] [stdout] 156 + pub const ASN_COUNTER64:    raw::c_uchar = ASN_APPLICATION |  6;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:157:44
[INFO] [stdout]     |
[INFO] [stdout] 157 | pub const ASN_UINTEGER:     raw::c_uchar = (ASN_APPLICATION |  7); // historic - don't use
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 157 - pub const ASN_UINTEGER:     raw::c_uchar = (ASN_APPLICATION |  7); // historic - don't use
[INFO] [stdout] 157 + pub const ASN_UINTEGER:     raw::c_uchar = ASN_APPLICATION |  7; // historic - don't use
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:158:44
[INFO] [stdout]     |
[INFO] [stdout] 158 | pub const ASN_FLOAT:        raw::c_uchar = (ASN_APPLICATION |  8);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 158 - pub const ASN_FLOAT:        raw::c_uchar = (ASN_APPLICATION |  8);
[INFO] [stdout] 158 + pub const ASN_FLOAT:        raw::c_uchar = ASN_APPLICATION |  8;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:159:44
[INFO] [stdout]     |
[INFO] [stdout] 159 | pub const ASN_DOUBLE:       raw::c_uchar = (ASN_APPLICATION |  9);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 159 - pub const ASN_DOUBLE:       raw::c_uchar = (ASN_APPLICATION |  9);
[INFO] [stdout] 159 + pub const ASN_DOUBLE:       raw::c_uchar = ASN_APPLICATION |  9;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:160:44
[INFO] [stdout]     |
[INFO] [stdout] 160 | pub const ASN_INTEGER64:    raw::c_uchar = (ASN_APPLICATION | 10);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 160 - pub const ASN_INTEGER64:    raw::c_uchar = (ASN_APPLICATION | 10);
[INFO] [stdout] 160 + pub const ASN_INTEGER64:    raw::c_uchar = ASN_APPLICATION | 10;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:161:44
[INFO] [stdout]     |
[INFO] [stdout] 161 | pub const ASN_UNSIGNED64:   raw::c_uchar = (ASN_APPLICATION | 11);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 161 - pub const ASN_UNSIGNED64:   raw::c_uchar = (ASN_APPLICATION | 11);
[INFO] [stdout] 161 + pub const ASN_UNSIGNED64:   raw::c_uchar = ASN_APPLICATION | 11;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred
[INFO] [stdout]  --> src/lib.rs:5:23
[INFO] [stdout]   |
[INFO] [stdout] 5 | use std::sync::{Once, ONCE_INIT};
[INFO] [stdout]   |                       ^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(deprecated)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred
[INFO] [stdout]    --> src/lib.rs:251:22
[INFO] [stdout]     |
[INFO] [stdout] 251 |     static INIT: Once = ONCE_INIT;
[INFO] [stdout]     |                         ^^^^^^^^^
[INFO] [stdout]     |
[INFO] [stdout] help: replace the use of the deprecated constant
[INFO] [stdout]     |
[INFO] [stdout] 251 -     static INIT: Once = ONCE_INIT;
[INFO] [stdout] 251 +     static INIT: Once = Once::new();
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.95s
[INFO] running `Command { std: "docker" "inspect" "2b56733e30d1d76467ac43e36eeeecc866ac00724761fedbbba0ad747d476bfe", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "2b56733e30d1d76467ac43e36eeeecc866ac00724761fedbbba0ad747d476bfe", kill_on_drop: false }`
[INFO] [stdout] 2b56733e30d1d76467ac43e36eeeecc866ac00724761fedbbba0ad747d476bfe
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 6328551a9aab2f02d1a8fde758cd6f4ba1a7e0b1d1dadbf7ebaa8901fdfc6621
[INFO] running `Command { std: "docker" "start" "-a" "6328551a9aab2f02d1a8fde758cd6f4ba1a7e0b1d1dadbf7ebaa8901fdfc6621", kill_on_drop: false }`
[INFO] [stderr] warning: no edition set: defaulting to the 2015 edition while the latest is 2024
[INFO] [stdout] warning: for loop over a `Result`. This is more readably written as an `if let` statement
[INFO] [stdout]  --> build.rs:4:19
[INFO] [stdout]   |
[INFO] [stdout] 4 |     for output in Command::new("net-snmp-config").arg("--libdir").output() {
[INFO] [stdout]   |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(for_loops_over_fallibles)]` on by default
[INFO] [stdout] help: to check pattern in a loop use `while let`
[INFO] [stdout]   |
[INFO] [stdout] 4 -     for output in Command::new("net-snmp-config").arg("--libdir").output() {
[INFO] [stdout] 4 +     while let Ok(output) = Command::new("net-snmp-config").arg("--libdir").output() {
[INFO] [stdout]   |
[INFO] [stdout] help: consider using `if let` to clear intent
[INFO] [stdout]   |
[INFO] [stdout] 4 -     for output in Command::new("net-snmp-config").arg("--libdir").output() {
[INFO] [stdout] 4 +     if let Ok(output) = Command::new("net-snmp-config").arg("--libdir").output() {
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: for loop over a `Result`. This is more readably written as an `if let` statement
[INFO] [stdout]  --> build.rs:6:25
[INFO] [stdout]   |
[INFO] [stdout] 6 |             for path in String::from_utf8(output.stdout) {
[INFO] [stdout]   |                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout] help: to check pattern in a loop use `while let`
[INFO] [stdout]   |
[INFO] [stdout] 6 -             for path in String::from_utf8(output.stdout) {
[INFO] [stdout] 6 +             while let Ok(path) = String::from_utf8(output.stdout) {
[INFO] [stdout]   |
[INFO] [stdout] help: consider using `if let` to clear intent
[INFO] [stdout]   |
[INFO] [stdout] 6 -             for path in String::from_utf8(output.stdout) {
[INFO] [stdout] 6 +             if let Ok(path) = String::from_utf8(output.stdout) {
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]   --> src/lib.rs:38:49
[INFO] [stdout]    |
[INFO] [stdout] 38 | pub const SNMP_NOSUCHOBJECT:     raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x0);
[INFO] [stdout]    |                                                 ^                                 ^
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(unused_parens)]` on by default
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 38 - pub const SNMP_NOSUCHOBJECT:     raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x0);
[INFO] [stdout] 38 + pub const SNMP_NOSUCHOBJECT:     raw::c_uchar = ASN_CONTEXT | ASN_PRIMITIVE | 0x0;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]   --> src/lib.rs:39:49
[INFO] [stdout]    |
[INFO] [stdout] 39 | pub const SNMP_NOSUCHINSTANCE:   raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x1);
[INFO] [stdout]    |                                                 ^                                 ^
[INFO] [stdout]    |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 39 - pub const SNMP_NOSUCHINSTANCE:   raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x1);
[INFO] [stdout] 39 + pub const SNMP_NOSUCHINSTANCE:   raw::c_uchar = ASN_CONTEXT | ASN_PRIMITIVE | 0x1;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]   --> src/lib.rs:40:49
[INFO] [stdout]    |
[INFO] [stdout] 40 | pub const SNMP_ENDOFMIBVIEW:     raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x2);
[INFO] [stdout]    |                                                 ^                                 ^
[INFO] [stdout]    |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 40 - pub const SNMP_ENDOFMIBVIEW:     raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x2);
[INFO] [stdout] 40 + pub const SNMP_ENDOFMIBVIEW:     raw::c_uchar = ASN_CONTEXT | ASN_PRIMITIVE | 0x2;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:149:44
[INFO] [stdout]     |
[INFO] [stdout] 149 | pub const ASN_IPADDRESS:    raw::c_uchar = (ASN_APPLICATION |  0);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 149 - pub const ASN_IPADDRESS:    raw::c_uchar = (ASN_APPLICATION |  0);
[INFO] [stdout] 149 + pub const ASN_IPADDRESS:    raw::c_uchar = ASN_APPLICATION |  0;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:150:44
[INFO] [stdout]     |
[INFO] [stdout] 150 | pub const ASN_COUNTER:      raw::c_uchar = (ASN_APPLICATION |  1);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 150 - pub const ASN_COUNTER:      raw::c_uchar = (ASN_APPLICATION |  1);
[INFO] [stdout] 150 + pub const ASN_COUNTER:      raw::c_uchar = ASN_APPLICATION |  1;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:151:44
[INFO] [stdout]     |
[INFO] [stdout] 151 | pub const ASN_GAUGE:        raw::c_uchar = (ASN_APPLICATION |  2);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 151 - pub const ASN_GAUGE:        raw::c_uchar = (ASN_APPLICATION |  2);
[INFO] [stdout] 151 + pub const ASN_GAUGE:        raw::c_uchar = ASN_APPLICATION |  2;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:152:44
[INFO] [stdout]     |
[INFO] [stdout] 152 | pub const ASN_UNSIGNED:     raw::c_uchar = (ASN_APPLICATION |  2); // RFC 1902 - same as GAUGE
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 152 - pub const ASN_UNSIGNED:     raw::c_uchar = (ASN_APPLICATION |  2); // RFC 1902 - same as GAUGE
[INFO] [stdout] 152 + pub const ASN_UNSIGNED:     raw::c_uchar = ASN_APPLICATION |  2; // RFC 1902 - same as GAUGE
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:153:44
[INFO] [stdout]     |
[INFO] [stdout] 153 | pub const ASN_TIMETICKS:    raw::c_uchar = (ASN_APPLICATION |  3);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 153 - pub const ASN_TIMETICKS:    raw::c_uchar = (ASN_APPLICATION |  3);
[INFO] [stdout] 153 + pub const ASN_TIMETICKS:    raw::c_uchar = ASN_APPLICATION |  3;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:154:44
[INFO] [stdout]     |
[INFO] [stdout] 154 | pub const ASN_OPAQUE:       raw::c_uchar = (ASN_APPLICATION |  4); // changed so no conflict with other includes
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 154 - pub const ASN_OPAQUE:       raw::c_uchar = (ASN_APPLICATION |  4); // changed so no conflict with other includes
[INFO] [stdout] 154 + pub const ASN_OPAQUE:       raw::c_uchar = ASN_APPLICATION |  4; // changed so no conflict with other includes
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:155:44
[INFO] [stdout]     |
[INFO] [stdout] 155 | pub const ASN_NSAP:         raw::c_uchar = (ASN_APPLICATION |  5); // historic - don't use
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 155 - pub const ASN_NSAP:         raw::c_uchar = (ASN_APPLICATION |  5); // historic - don't use
[INFO] [stdout] 155 + pub const ASN_NSAP:         raw::c_uchar = ASN_APPLICATION |  5; // historic - don't use
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:156:44
[INFO] [stdout]     |
[INFO] [stdout] 156 | pub const ASN_COUNTER64:    raw::c_uchar = (ASN_APPLICATION |  6);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 156 - pub const ASN_COUNTER64:    raw::c_uchar = (ASN_APPLICATION |  6);
[INFO] [stdout] 156 + pub const ASN_COUNTER64:    raw::c_uchar = ASN_APPLICATION |  6;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:157:44
[INFO] [stdout]     |
[INFO] [stdout] 157 | pub const ASN_UINTEGER:     raw::c_uchar = (ASN_APPLICATION |  7); // historic - don't use
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 157 - pub const ASN_UINTEGER:     raw::c_uchar = (ASN_APPLICATION |  7); // historic - don't use
[INFO] [stdout] 157 + pub const ASN_UINTEGER:     raw::c_uchar = ASN_APPLICATION |  7; // historic - don't use
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling netsnmp-sys-nocrypto v0.1.3 (/opt/rustwide/workdir)
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:158:44
[INFO] [stdout]     |
[INFO] [stdout] 158 | pub const ASN_FLOAT:        raw::c_uchar = (ASN_APPLICATION |  8);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 158 - pub const ASN_FLOAT:        raw::c_uchar = (ASN_APPLICATION |  8);
[INFO] [stdout] 158 + pub const ASN_FLOAT:        raw::c_uchar = ASN_APPLICATION |  8;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:159:44
[INFO] [stdout]     |
[INFO] [stdout] 159 | pub const ASN_DOUBLE:       raw::c_uchar = (ASN_APPLICATION |  9);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 159 - pub const ASN_DOUBLE:       raw::c_uchar = (ASN_APPLICATION |  9);
[INFO] [stdout] 159 + pub const ASN_DOUBLE:       raw::c_uchar = ASN_APPLICATION |  9;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:160:44
[INFO] [stdout]     |
[INFO] [stdout] 160 | pub const ASN_INTEGER64:    raw::c_uchar = (ASN_APPLICATION | 10);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 160 - pub const ASN_INTEGER64:    raw::c_uchar = (ASN_APPLICATION | 10);
[INFO] [stdout] 160 + pub const ASN_INTEGER64:    raw::c_uchar = ASN_APPLICATION | 10;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:161:44
[INFO] [stdout]     |
[INFO] [stdout] 161 | pub const ASN_UNSIGNED64:   raw::c_uchar = (ASN_APPLICATION | 11);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 161 - pub const ASN_UNSIGNED64:   raw::c_uchar = (ASN_APPLICATION | 11);
[INFO] [stdout] 161 + pub const ASN_UNSIGNED64:   raw::c_uchar = ASN_APPLICATION | 11;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred
[INFO] [stdout]  --> src/lib.rs:5:23
[INFO] [stdout]   |
[INFO] [stdout] 5 | use std::sync::{Once, ONCE_INIT};
[INFO] [stdout]   |                       ^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(deprecated)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred
[INFO] [stdout]    --> src/lib.rs:251:22
[INFO] [stdout]     |
[INFO] [stdout] 251 |     static INIT: Once = ONCE_INIT;
[INFO] [stdout]     |                         ^^^^^^^^^
[INFO] [stdout]     |
[INFO] [stdout] help: replace the use of the deprecated constant
[INFO] [stdout]     |
[INFO] [stdout] 251 -     static INIT: Once = ONCE_INIT;
[INFO] [stdout] 251 +     static INIT: Once = Once::new();
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]   --> src/lib.rs:38:49
[INFO] [stdout]    |
[INFO] [stdout] 38 | pub const SNMP_NOSUCHOBJECT:     raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x0);
[INFO] [stdout]    |                                                 ^                                 ^
[INFO] [stdout]    |
[INFO] [stdout]    = note: `#[warn(unused_parens)]` on by default
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 38 - pub const SNMP_NOSUCHOBJECT:     raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x0);
[INFO] [stdout] 38 + pub const SNMP_NOSUCHOBJECT:     raw::c_uchar = ASN_CONTEXT | ASN_PRIMITIVE | 0x0;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]   --> src/lib.rs:39:49
[INFO] [stdout]    |
[INFO] [stdout] 39 | pub const SNMP_NOSUCHINSTANCE:   raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x1);
[INFO] [stdout]    |                                                 ^                                 ^
[INFO] [stdout]    |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 39 - pub const SNMP_NOSUCHINSTANCE:   raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x1);
[INFO] [stdout] 39 + pub const SNMP_NOSUCHINSTANCE:   raw::c_uchar = ASN_CONTEXT | ASN_PRIMITIVE | 0x1;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]   --> src/lib.rs:40:49
[INFO] [stdout]    |
[INFO] [stdout] 40 | pub const SNMP_ENDOFMIBVIEW:     raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x2);
[INFO] [stdout]    |                                                 ^                                 ^
[INFO] [stdout]    |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 40 - pub const SNMP_ENDOFMIBVIEW:     raw::c_uchar = (ASN_CONTEXT | ASN_PRIMITIVE | 0x2);
[INFO] [stdout] 40 + pub const SNMP_ENDOFMIBVIEW:     raw::c_uchar = ASN_CONTEXT | ASN_PRIMITIVE | 0x2;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:149:44
[INFO] [stdout]     |
[INFO] [stdout] 149 | pub const ASN_IPADDRESS:    raw::c_uchar = (ASN_APPLICATION |  0);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 149 - pub const ASN_IPADDRESS:    raw::c_uchar = (ASN_APPLICATION |  0);
[INFO] [stdout] 149 + pub const ASN_IPADDRESS:    raw::c_uchar = ASN_APPLICATION |  0;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:150:44
[INFO] [stdout]     |
[INFO] [stdout] 150 | pub const ASN_COUNTER:      raw::c_uchar = (ASN_APPLICATION |  1);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 150 - pub const ASN_COUNTER:      raw::c_uchar = (ASN_APPLICATION |  1);
[INFO] [stdout] 150 + pub const ASN_COUNTER:      raw::c_uchar = ASN_APPLICATION |  1;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:151:44
[INFO] [stdout]     |
[INFO] [stdout] 151 | pub const ASN_GAUGE:        raw::c_uchar = (ASN_APPLICATION |  2);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 151 - pub const ASN_GAUGE:        raw::c_uchar = (ASN_APPLICATION |  2);
[INFO] [stdout] 151 + pub const ASN_GAUGE:        raw::c_uchar = ASN_APPLICATION |  2;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:152:44
[INFO] [stdout]     |
[INFO] [stdout] 152 | pub const ASN_UNSIGNED:     raw::c_uchar = (ASN_APPLICATION |  2); // RFC 1902 - same as GAUGE
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 152 - pub const ASN_UNSIGNED:     raw::c_uchar = (ASN_APPLICATION |  2); // RFC 1902 - same as GAUGE
[INFO] [stdout] 152 + pub const ASN_UNSIGNED:     raw::c_uchar = ASN_APPLICATION |  2; // RFC 1902 - same as GAUGE
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:153:44
[INFO] [stdout]     |
[INFO] [stdout] 153 | pub const ASN_TIMETICKS:    raw::c_uchar = (ASN_APPLICATION |  3);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 153 - pub const ASN_TIMETICKS:    raw::c_uchar = (ASN_APPLICATION |  3);
[INFO] [stdout] 153 + pub const ASN_TIMETICKS:    raw::c_uchar = ASN_APPLICATION |  3;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:154:44
[INFO] [stdout]     |
[INFO] [stdout] 154 | pub const ASN_OPAQUE:       raw::c_uchar = (ASN_APPLICATION |  4); // changed so no conflict with other includes
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 154 - pub const ASN_OPAQUE:       raw::c_uchar = (ASN_APPLICATION |  4); // changed so no conflict with other includes
[INFO] [stdout] 154 + pub const ASN_OPAQUE:       raw::c_uchar = ASN_APPLICATION |  4; // changed so no conflict with other includes
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:155:44
[INFO] [stdout]     |
[INFO] [stdout] 155 | pub const ASN_NSAP:         raw::c_uchar = (ASN_APPLICATION |  5); // historic - don't use
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 155 - pub const ASN_NSAP:         raw::c_uchar = (ASN_APPLICATION |  5); // historic - don't use
[INFO] [stdout] 155 + pub const ASN_NSAP:         raw::c_uchar = ASN_APPLICATION |  5; // historic - don't use
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:156:44
[INFO] [stdout]     |
[INFO] [stdout] 156 | pub const ASN_COUNTER64:    raw::c_uchar = (ASN_APPLICATION |  6);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 156 - pub const ASN_COUNTER64:    raw::c_uchar = (ASN_APPLICATION |  6);
[INFO] [stdout] 156 + pub const ASN_COUNTER64:    raw::c_uchar = ASN_APPLICATION |  6;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:157:44
[INFO] [stdout]     |
[INFO] [stdout] 157 | pub const ASN_UINTEGER:     raw::c_uchar = (ASN_APPLICATION |  7); // historic - don't use
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 157 - pub const ASN_UINTEGER:     raw::c_uchar = (ASN_APPLICATION |  7); // historic - don't use
[INFO] [stdout] 157 + pub const ASN_UINTEGER:     raw::c_uchar = ASN_APPLICATION |  7; // historic - don't use
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:158:44
[INFO] [stdout]     |
[INFO] [stdout] 158 | pub const ASN_FLOAT:        raw::c_uchar = (ASN_APPLICATION |  8);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 158 - pub const ASN_FLOAT:        raw::c_uchar = (ASN_APPLICATION |  8);
[INFO] [stdout] 158 + pub const ASN_FLOAT:        raw::c_uchar = ASN_APPLICATION |  8;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:159:44
[INFO] [stdout]     |
[INFO] [stdout] 159 | pub const ASN_DOUBLE:       raw::c_uchar = (ASN_APPLICATION |  9);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 159 - pub const ASN_DOUBLE:       raw::c_uchar = (ASN_APPLICATION |  9);
[INFO] [stdout] 159 + pub const ASN_DOUBLE:       raw::c_uchar = ASN_APPLICATION |  9;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:160:44
[INFO] [stdout]     |
[INFO] [stdout] 160 | pub const ASN_INTEGER64:    raw::c_uchar = (ASN_APPLICATION | 10);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 160 - pub const ASN_INTEGER64:    raw::c_uchar = (ASN_APPLICATION | 10);
[INFO] [stdout] 160 + pub const ASN_INTEGER64:    raw::c_uchar = ASN_APPLICATION | 10;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around assigned value
[INFO] [stdout]    --> src/lib.rs:161:44
[INFO] [stdout]     |
[INFO] [stdout] 161 | pub const ASN_UNSIGNED64:   raw::c_uchar = (ASN_APPLICATION | 11);
[INFO] [stdout]     |                                            ^                    ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 161 - pub const ASN_UNSIGNED64:   raw::c_uchar = (ASN_APPLICATION | 11);
[INFO] [stdout] 161 + pub const ASN_UNSIGNED64:   raw::c_uchar = ASN_APPLICATION | 11;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred
[INFO] [stdout]  --> src/lib.rs:5:23
[INFO] [stdout]   |
[INFO] [stdout] 5 | use std::sync::{Once, ONCE_INIT};
[INFO] [stdout]   |                       ^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(deprecated)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred
[INFO] [stdout]    --> src/lib.rs:251:22
[INFO] [stdout]     |
[INFO] [stdout] 251 |     static INIT: Once = ONCE_INIT;
[INFO] [stdout]     |                         ^^^^^^^^^
[INFO] [stdout]     |
[INFO] [stdout] help: replace the use of the deprecated constant
[INFO] [stdout]     |
[INFO] [stdout] 251 -     static INIT: Once = ONCE_INIT;
[INFO] [stdout] 251 +     static INIT: Once = Once::new();
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: linking with `cc` failed: exit status: 1
[INFO] [stdout]   |
[INFO] [stdout]   = note:  "cc" "-m64" "/tmp/rustcSdU7E4/symbols.o" "<2 object files omitted>" "-Wl,--as-needed" "-Wl,-Bdynamic" "-lnetsnmp" "-Wl,-Bstatic" "<sysroot>/lib/rustlib/x86_64-unknown-linux-gnu/lib/{libtest-*,libgetopts-*,libunicode_width-*,librustc_std_workspace_std-*}.rlib" "/opt/rustwide/target/debug/deps/liblibc-08aef465eb552f81.rlib" "<sysroot>/lib/rustlib/x86_64-unknown-linux-gnu/lib/{libstd-*,libpanic_unwind-*,libobject-*,libmemchr-*,libaddr2line-*,libgimli-*,librustc_demangle-*,libstd_detect-*,libhashbrown-*,librustc_std_workspace_alloc-*,libminiz_oxide-*,libadler2-*,libunwind-*,libcfg_if-*,liblibc-*,librustc_std_workspace_core-*,liballoc-*,libcore-*,libcompiler_builtins-*}.rlib" "-Wl,-Bdynamic" "-lgcc_s" "-lutil" "-lrt" "-lpthread" "-lm" "-ldl" "-lc" "-L" "/tmp/rustcSdU7E4/raw-dylibs" "-B<sysroot>/lib/rustlib/x86_64-unknown-linux-gnu/bin/gcc-ld" "-fuse-ld=lld" "-Wl,--eh-frame-hdr" "-Wl,-z,noexecstack" "-L" "<sysroot>/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-o" "/opt/rustwide/target/debug/deps/netsnmp_sys_nocrypto-75de0070960f58ff" "-Wl,--gc-sections" "-pie" "-Wl,-z,relro,-z,now" "-nodefaultlibs"
[INFO] [stdout]   = note: some arguments are omitted. use `--verbose` to show all linker arguments
[INFO] [stdout]   = note: rust-lld: error: unable to find library -lnetsnmp
[INFO] [stdout]           collect2: error: ld returned 1 exit status
[INFO] [stdout]           
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `netsnmp-sys-nocrypto` (lib test) due to 1 previous error; 18 warnings emitted
[INFO] running `Command { std: "docker" "inspect" "6328551a9aab2f02d1a8fde758cd6f4ba1a7e0b1d1dadbf7ebaa8901fdfc6621", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "6328551a9aab2f02d1a8fde758cd6f4ba1a7e0b1d1dadbf7ebaa8901fdfc6621", kill_on_drop: false }`
[INFO] [stdout] 6328551a9aab2f02d1a8fde758cd6f4ba1a7e0b1d1dadbf7ebaa8901fdfc6621
