[INFO] fetching crate mutcrab 0.1.1...
[INFO] testing mutcrab-0.1.1 against beta-2025-10-28 for beta-1.92-2
[INFO] extracting crate mutcrab 0.1.1 into /workspace/builds/worker-3-tc2/source
[INFO] started tweaking crates.io crate mutcrab 0.1.1
[INFO] removed 0 missing tests
[INFO] finished tweaking crates.io crate mutcrab 0.1.1
[INFO] tweaked toml for crates.io crate mutcrab 0.1.1 written to /workspace/builds/worker-3-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate mutcrab 0.1.1 on toolchain beta-2025-10-28
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-10-28" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate mutcrab 0.1.1 already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-10-28" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr]     Blocking waiting for file lock on package cache
[INFO] [stderr]     Blocking waiting for file lock on package cache
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc2/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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] b1dc6243fab129edab1b11d7d8f377c6834ef1c06326f79eabb0c4cc9c45a44d
[INFO] running `Command { std: "docker" "start" "-a" "b1dc6243fab129edab1b11d7d8f377c6834ef1c06326f79eabb0c4cc9c45a44d", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "b1dc6243fab129edab1b11d7d8f377c6834ef1c06326f79eabb0c4cc9c45a44d", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "b1dc6243fab129edab1b11d7d8f377c6834ef1c06326f79eabb0c4cc9c45a44d", kill_on_drop: false }`
[INFO] [stdout] b1dc6243fab129edab1b11d7d8f377c6834ef1c06326f79eabb0c4cc9c45a44d
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc2/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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 34889337e2999bb58408da9354ea685593025b80e6cc48118b4bc6668da29123
[INFO] running `Command { std: "docker" "start" "-a" "34889337e2999bb58408da9354ea685593025b80e6cc48118b4bc6668da29123", kill_on_drop: false }`
[INFO] [stderr]    Compiling mutcrab v0.1.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: fields `edgeMap` and `rootMap` are never read
[INFO] [stdout]  --> src/mutcrab/collection/graph/immutable_graph.rs:8:5
[INFO] [stdout]   |
[INFO] [stdout] 6 | pub struct ImmutableGraph<N> {
[INFO] [stdout]   |            -------------- fields in this struct
[INFO] [stdout] 7 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stdout] 8 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stdout]   |     ^^^^^^^
[INFO] [stdout] 9 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stdout]   |     ^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: fields `index`, `nodeMap`, `edgeMap`, and `rootMap` are never read
[INFO] [stdout]   --> src/mutcrab/collection/graph/immutable_graph.rs:31:5
[INFO] [stdout]    |
[INFO] [stdout] 30 | pub struct Builder<N> {
[INFO] [stdout]    |            ------- fields in this struct
[INFO] [stdout] 31 |     index: u32,
[INFO] [stdout]    |     ^^^^^
[INFO] [stdout] 32 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stdout]    |     ^^^^^^^
[INFO] [stdout] 33 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stdout]    |     ^^^^^^^
[INFO] [stdout] 34 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stdout]    |     ^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: methods `add_node`, `add_edge`, and `build` are never used
[INFO] [stdout]   --> src/mutcrab/collection/graph/immutable_graph.rs:49:8
[INFO] [stdout]    |
[INFO] [stdout] 37 | / impl <N> Builder<N>
[INFO] [stdout] 38 | | where
[INFO] [stdout] 39 | |     N: Eq + Hash
[INFO] [stdout]    | |________________- methods in this implementation
[INFO] [stdout] ...
[INFO] [stdout] 49 |       fn add_node(&mut self, value: N) -> NodeIndex<N>
[INFO] [stdout]    |          ^^^^^^^^
[INFO] [stdout] ...
[INFO] [stdout] 69 |       fn add_edge(&mut self, src: NodeIndex<N>, dst: NodeIndex<N>) -> &mut Builder<N> {
[INFO] [stdout]    |          ^^^^^^^^
[INFO] [stdout] ...
[INFO] [stdout] 83 |       fn build(self) -> ImmutableGraph<N> {
[INFO] [stdout]    |          ^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `nodeMap` should have a snake case name
[INFO] [stdout]  --> src/mutcrab/collection/graph/immutable_graph.rs:7:5
[INFO] [stdout]   |
[INFO] [stdout] 7 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stdout]   |     ^^^^^^^ help: convert the identifier to snake case: `node_map`
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(non_snake_case)]` (part of `#[warn(nonstandard_style)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `edgeMap` should have a snake case name
[INFO] [stdout]  --> src/mutcrab/collection/graph/immutable_graph.rs:8:5
[INFO] [stdout]   |
[INFO] [stdout] 8 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stdout]   |     ^^^^^^^ help: convert the identifier to snake case: `edge_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `rootMap` should have a snake case name
[INFO] [stdout]  --> src/mutcrab/collection/graph/immutable_graph.rs:9:5
[INFO] [stdout]   |
[INFO] [stdout] 9 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stdout]   |     ^^^^^^^ help: convert the identifier to snake case: `root_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `nodeMap` should have a snake case name
[INFO] [stdout]   --> src/mutcrab/collection/graph/immutable_graph.rs:32:5
[INFO] [stdout]    |
[INFO] [stdout] 32 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stdout]    |     ^^^^^^^ help: convert the identifier to snake case: `node_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `edgeMap` should have a snake case name
[INFO] [stdout]   --> src/mutcrab/collection/graph/immutable_graph.rs:33:5
[INFO] [stdout]    |
[INFO] [stdout] 33 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stdout]    |     ^^^^^^^ help: convert the identifier to snake case: `edge_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `rootMap` should have a snake case name
[INFO] [stdout]   --> src/mutcrab/collection/graph/immutable_graph.rs:34:5
[INFO] [stdout]    |
[INFO] [stdout] 34 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stdout]    |     ^^^^^^^ help: convert the identifier to snake case: `root_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.46s
[INFO] running `Command { std: "docker" "inspect" "34889337e2999bb58408da9354ea685593025b80e6cc48118b4bc6668da29123", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "34889337e2999bb58408da9354ea685593025b80e6cc48118b4bc6668da29123", kill_on_drop: false }`
[INFO] [stdout] 34889337e2999bb58408da9354ea685593025b80e6cc48118b4bc6668da29123
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc2/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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 4a7163c188e2edd74e366f779ce16dac3801b177d9b90e63682b7e1bfe81f704
[INFO] running `Command { std: "docker" "start" "-a" "4a7163c188e2edd74e366f779ce16dac3801b177d9b90e63682b7e1bfe81f704", kill_on_drop: false }`
[INFO] [stderr]    Compiling mutcrab v0.1.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: fields `edgeMap` and `rootMap` are never read
[INFO] [stdout]  --> src/mutcrab/collection/graph/immutable_graph.rs:8:5
[INFO] [stdout]   |
[INFO] [stdout] 6 | pub struct ImmutableGraph<N> {
[INFO] [stdout]   |            -------------- fields in this struct
[INFO] [stdout] 7 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stdout] 8 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stdout]   |     ^^^^^^^
[INFO] [stdout] 9 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stdout]   |     ^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: fields `index`, `nodeMap`, `edgeMap`, and `rootMap` are never read
[INFO] [stdout]   --> src/mutcrab/collection/graph/immutable_graph.rs:31:5
[INFO] [stdout]    |
[INFO] [stdout] 30 | pub struct Builder<N> {
[INFO] [stdout]    |            ------- fields in this struct
[INFO] [stdout] 31 |     index: u32,
[INFO] [stdout]    |     ^^^^^
[INFO] [stdout] 32 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stdout]    |     ^^^^^^^
[INFO] [stdout] 33 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stdout]    |     ^^^^^^^
[INFO] [stdout] 34 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stdout]    |     ^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: methods `add_node`, `add_edge`, and `build` are never used
[INFO] [stdout]   --> src/mutcrab/collection/graph/immutable_graph.rs:49:8
[INFO] [stdout]    |
[INFO] [stdout] 37 | / impl <N> Builder<N>
[INFO] [stdout] 38 | | where
[INFO] [stdout] 39 | |     N: Eq + Hash
[INFO] [stdout]    | |________________- methods in this implementation
[INFO] [stdout] ...
[INFO] [stdout] 49 |       fn add_node(&mut self, value: N) -> NodeIndex<N>
[INFO] [stdout]    |          ^^^^^^^^
[INFO] [stdout] ...
[INFO] [stdout] 69 |       fn add_edge(&mut self, src: NodeIndex<N>, dst: NodeIndex<N>) -> &mut Builder<N> {
[INFO] [stdout]    |          ^^^^^^^^
[INFO] [stdout] ...
[INFO] [stdout] 83 |       fn build(self) -> ImmutableGraph<N> {
[INFO] [stdout]    |          ^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `nodeMap` should have a snake case name
[INFO] [stdout]  --> src/mutcrab/collection/graph/immutable_graph.rs:7:5
[INFO] [stdout]   |
[INFO] [stdout] 7 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stdout]   |     ^^^^^^^ help: convert the identifier to snake case: `node_map`
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(non_snake_case)]` (part of `#[warn(nonstandard_style)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `edgeMap` should have a snake case name
[INFO] [stdout]  --> src/mutcrab/collection/graph/immutable_graph.rs:8:5
[INFO] [stdout]   |
[INFO] [stdout] 8 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stdout]   |     ^^^^^^^ help: convert the identifier to snake case: `edge_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `rootMap` should have a snake case name
[INFO] [stdout]  --> src/mutcrab/collection/graph/immutable_graph.rs:9:5
[INFO] [stdout]   |
[INFO] [stdout] 9 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stdout]   |     ^^^^^^^ help: convert the identifier to snake case: `root_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `nodeMap` should have a snake case name
[INFO] [stdout]   --> src/mutcrab/collection/graph/immutable_graph.rs:32:5
[INFO] [stdout]    |
[INFO] [stdout] 32 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stdout]    |     ^^^^^^^ help: convert the identifier to snake case: `node_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `edgeMap` should have a snake case name
[INFO] [stdout]   --> src/mutcrab/collection/graph/immutable_graph.rs:33:5
[INFO] [stdout]    |
[INFO] [stdout] 33 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stdout]    |     ^^^^^^^ help: convert the identifier to snake case: `edge_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `rootMap` should have a snake case name
[INFO] [stdout]   --> src/mutcrab/collection/graph/immutable_graph.rs:34:5
[INFO] [stdout]    |
[INFO] [stdout] 34 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stdout]    |     ^^^^^^^ help: convert the identifier to snake case: `root_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: function `mut_readwrite_test` is never used
[INFO] [stdout]    --> src/mutcrab/collection/list/lock_free_queue.rs:218:8
[INFO] [stdout]     |
[INFO] [stdout] 218 |     fn mut_readwrite_test() {
[INFO] [stdout]     |        ^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |
[INFO] [stdout] note: the lint level is defined here
[INFO] [stdout]    --> src/mutcrab/collection/list/lock_free_queue.rs:217:12
[INFO] [stdout]     |
[INFO] [stdout] 217 |     #[warn(dead_code)]
[INFO] [stdout]     |            ^^^^^^^^^
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: fields `edgeMap` and `rootMap` are never read
[INFO] [stdout]  --> src/mutcrab/collection/graph/immutable_graph.rs:8:5
[INFO] [stdout]   |
[INFO] [stdout] 6 | pub struct ImmutableGraph<N> {
[INFO] [stdout]   |            -------------- fields in this struct
[INFO] [stdout] 7 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stdout] 8 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stdout]   |     ^^^^^^^
[INFO] [stdout] 9 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stdout]   |     ^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `nodeMap` should have a snake case name
[INFO] [stdout]  --> src/mutcrab/collection/graph/immutable_graph.rs:7:5
[INFO] [stdout]   |
[INFO] [stdout] 7 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stdout]   |     ^^^^^^^ help: convert the identifier to snake case: `node_map`
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(non_snake_case)]` (part of `#[warn(nonstandard_style)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `edgeMap` should have a snake case name
[INFO] [stdout]  --> src/mutcrab/collection/graph/immutable_graph.rs:8:5
[INFO] [stdout]   |
[INFO] [stdout] 8 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stdout]   |     ^^^^^^^ help: convert the identifier to snake case: `edge_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `rootMap` should have a snake case name
[INFO] [stdout]  --> src/mutcrab/collection/graph/immutable_graph.rs:9:5
[INFO] [stdout]   |
[INFO] [stdout] 9 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stdout]   |     ^^^^^^^ help: convert the identifier to snake case: `root_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `nodeMap` should have a snake case name
[INFO] [stdout]   --> src/mutcrab/collection/graph/immutable_graph.rs:32:5
[INFO] [stdout]    |
[INFO] [stdout] 32 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stdout]    |     ^^^^^^^ help: convert the identifier to snake case: `node_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `edgeMap` should have a snake case name
[INFO] [stdout]   --> src/mutcrab/collection/graph/immutable_graph.rs:33:5
[INFO] [stdout]    |
[INFO] [stdout] 33 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stdout]    |     ^^^^^^^ help: convert the identifier to snake case: `edge_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: structure field `rootMap` should have a snake case name
[INFO] [stdout]   --> src/mutcrab/collection/graph/immutable_graph.rs:34:5
[INFO] [stdout]    |
[INFO] [stdout] 34 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stdout]    |     ^^^^^^^ help: convert the identifier to snake case: `root_map`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 1.28s
[INFO] running `Command { std: "docker" "inspect" "4a7163c188e2edd74e366f779ce16dac3801b177d9b90e63682b7e1bfe81f704", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "4a7163c188e2edd74e366f779ce16dac3801b177d9b90e63682b7e1bfe81f704", kill_on_drop: false }`
[INFO] [stdout] 4a7163c188e2edd74e366f779ce16dac3801b177d9b90e63682b7e1bfe81f704
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc2/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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] 5ae31917c79facd98fe8edfe62b9ad0e554da4a48a4d61a9aeab6f8134471c46
[INFO] running `Command { std: "docker" "start" "-a" "5ae31917c79facd98fe8edfe62b9ad0e554da4a48a4d61a9aeab6f8134471c46", kill_on_drop: false }`
[INFO] [stderr] warning: fields `edgeMap` and `rootMap` are never read
[INFO] [stderr]  --> src/mutcrab/collection/graph/immutable_graph.rs:8:5
[INFO] [stderr]   |
[INFO] [stderr] 6 | pub struct ImmutableGraph<N> {
[INFO] [stderr]   |            -------------- fields in this struct
[INFO] [stderr] 7 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stderr] 8 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stderr]   |     ^^^^^^^
[INFO] [stderr] 9 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stderr]   |     ^^^^^^^
[INFO] [stderr]   |
[INFO] [stderr]   = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
[INFO] [stderr] 
[INFO] [stderr] warning: fields `index`, `nodeMap`, `edgeMap`, and `rootMap` are never read
[INFO] [stderr]   --> src/mutcrab/collection/graph/immutable_graph.rs:31:5
[INFO] [stderr]    |
[INFO] [stderr] 30 | pub struct Builder<N> {
[INFO] [stderr]    |            ------- fields in this struct
[INFO] [stderr] 31 |     index: u32,
[INFO] [stderr]    |     ^^^^^
[INFO] [stderr] 32 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stderr]    |     ^^^^^^^
[INFO] [stderr] 33 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stderr]    |     ^^^^^^^
[INFO] [stderr] 34 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stderr]    |     ^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] warning: methods `add_node`, `add_edge`, and `build` are never used
[INFO] [stderr]   --> src/mutcrab/collection/graph/immutable_graph.rs:49:8
[INFO] [stderr]    |
[INFO] [stderr] 37 | / impl <N> Builder<N>
[INFO] [stderr] 38 | | where
[INFO] [stderr] 39 | |     N: Eq + Hash
[INFO] [stderr]    | |________________- methods in this implementation
[INFO] [stderr] ...
[INFO] [stderr] 49 |       fn add_node(&mut self, value: N) -> NodeIndex<N>
[INFO] [stderr]    |          ^^^^^^^^
[INFO] [stderr] ...
[INFO] [stderr] 69 |       fn add_edge(&mut self, src: NodeIndex<N>, dst: NodeIndex<N>) -> &mut Builder<N> {
[INFO] [stderr]    |          ^^^^^^^^
[INFO] [stderr] ...
[INFO] [stderr] 83 |       fn build(self) -> ImmutableGraph<N> {
[INFO] [stderr]    |          ^^^^^
[INFO] [stderr] 
[INFO] [stderr] warning: structure field `nodeMap` should have a snake case name
[INFO] [stderr]  --> src/mutcrab/collection/graph/immutable_graph.rs:7:5
[INFO] [stderr]   |
[INFO] [stderr] 7 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stderr]   |     ^^^^^^^ help: convert the identifier to snake case: `node_map`
[INFO] [stderr]   |
[INFO] [stderr]   = note: `#[warn(non_snake_case)]` (part of `#[warn(nonstandard_style)]`) on by default
[INFO] [stderr] 
[INFO] [stderr] warning: structure field `edgeMap` should have a snake case name
[INFO] [stderr]  --> src/mutcrab/collection/graph/immutable_graph.rs:8:5
[INFO] [stderr]   |
[INFO] [stderr] 8 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stderr]   |     ^^^^^^^ help: convert the identifier to snake case: `edge_map`
[INFO] [stderr] 
[INFO] [stderr] warning: structure field `rootMap` should have a snake case name
[INFO] [stderr]  --> src/mutcrab/collection/graph/immutable_graph.rs:9:5
[INFO] [stderr]   |
[INFO] [stderr] 9 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stderr]   |     ^^^^^^^ help: convert the identifier to snake case: `root_map`
[INFO] [stderr] 
[INFO] [stderr] warning: structure field `nodeMap` should have a snake case name
[INFO] [stderr]   --> src/mutcrab/collection/graph/immutable_graph.rs:32:5
[INFO] [stderr]    |
[INFO] [stderr] 32 |     nodeMap: HashMap<N, NodeIndex<N>>,
[INFO] [stderr]    |     ^^^^^^^ help: convert the identifier to snake case: `node_map`
[INFO] [stderr] 
[INFO] [stderr] warning: structure field `edgeMap` should have a snake case name
[INFO] [stderr]   --> src/mutcrab/collection/graph/immutable_graph.rs:33:5
[INFO] [stderr]    |
[INFO] [stderr] 33 |     edgeMap: HashMap<NodeIndex<N>, LinkedList<NodeIndex<N>>>,
[INFO] [stderr]    |     ^^^^^^^ help: convert the identifier to snake case: `edge_map`
[INFO] [stderr] 
[INFO] [stderr] warning: structure field `rootMap` should have a snake case name
[INFO] [stderr]   --> src/mutcrab/collection/graph/immutable_graph.rs:34:5
[INFO] [stderr]    |
[INFO] [stderr] 34 |     rootMap: HashMap<NodeIndex<N>, bool>
[INFO] [stderr]    |     ^^^^^^^ help: convert the identifier to snake case: `root_map`
[INFO] [stderr] 
[INFO] [stderr] warning: `mutcrab` (lib) generated 9 warnings
[INFO] [stderr] warning: function `mut_readwrite_test` is never used
[INFO] [stderr]    --> src/mutcrab/collection/list/lock_free_queue.rs:218:8
[INFO] [stderr]     |
[INFO] [stderr] 218 |     fn mut_readwrite_test() {
[INFO] [stderr]     |        ^^^^^^^^^^^^^^^^^^
[INFO] [stderr]     |
[INFO] [stderr] note: the lint level is defined here
[INFO] [stderr]    --> src/mutcrab/collection/list/lock_free_queue.rs:217:12
[INFO] [stderr]     |
[INFO] [stderr] 217 |     #[warn(dead_code)]
[INFO] [stderr]     |            ^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] warning: `mutcrab` (lib test) generated 8 warnings (7 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.05s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/mutcrab-0ca792d14230f3e5)
[INFO] [stdout] 
[INFO] [stdout] running 3 tests
[INFO] [stdout] test mutcrab::collection::graph::immutable_graph::test1 ... ok
[INFO] [stdout] test mutcrab::collection::list::lock_free_queue::tests::single_readwrite_test ... ok
[INFO] [stdout] test mutcrab::collection::list::lock_free_queue::tests::mut_write_and_single_read_test ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.15s
[INFO] [stdout] 
[INFO] [stderr]      Running tests/hashmap_test.rs (/opt/rustwide/target/debug/deps/hashmap_test-a3970bbdd76cb797)
[INFO] [stdout] 
[INFO] [stdout] running 6 tests
[INFO] [stdout] test hashmap_test ... ok
[INFO] [stdout] test entry_insert_test ... ok
[INFO] [stdout] test entry_get_test ... ok
[INFO] [stdout] test my_map2_test ... ok
[INFO] [stdout] test remove_test ... ok
[INFO] [stderr]      Running tests/linked_blocking_queue_test.rs (/opt/rustwide/target/debug/deps/linked_blocking_queue_test-c0d7a8697a1b27a5)
[INFO] [stdout] test map_iterator_test ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 6 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.03s
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] running 5 tests
[INFO] [stdout] test test_push_more_than_capacity ... ok
[INFO] [stdout] test test_push_take_basic ... ok
[INFO] [stdout] test bench_mark_test ... ok
[INFO] [stdout] test test_take_on_empty_queue ... ok
[INFO] [stderr]      Running tests/linkedlist_test.rs (/opt/rustwide/target/debug/deps/linkedlist_test-7b2336ed459ad888)
[INFO] [stdout] test single_read_write_test ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.14s
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] running 6 tests
[INFO] [stdout] test foreach_test ... ok
[INFO] [stdout] test iter_test ... ok
[INFO] [stdout] test queue_test ... ok
[INFO] [stdout] test peek_test ... ok
[INFO] [stdout] test stack_test ... ok
[INFO] [stdout] test remove_test ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 6 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stderr]      Running tests/safe_box_hashmap_test.rs (/opt/rustwide/target/debug/deps/safe_box_hashmap_test-78e48923791cb46e)
[INFO] [stdout] 
[INFO] [stdout] running 2 tests
[INFO] [stdout] test my_map_test ... ok
[INFO] [stdout] test std_map_test ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stderr]    Doc-tests mutcrab
[INFO] [stdout] 
[INFO] [stdout] running 0 tests
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "5ae31917c79facd98fe8edfe62b9ad0e554da4a48a4d61a9aeab6f8134471c46", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "5ae31917c79facd98fe8edfe62b9ad0e554da4a48a4d61a9aeab6f8134471c46", kill_on_drop: false }`
[INFO] [stdout] 5ae31917c79facd98fe8edfe62b9ad0e554da4a48a4d61a9aeab6f8134471c46
