[INFO] fetching crate radixt 0.1.0...
[INFO] testing radixt-0.1.0 against beta-2025-09-21 for beta-1.91-3
[INFO] extracting crate radixt 0.1.0 into /workspace/builds/worker-1-tc2/source
[INFO] started tweaking crates.io crate radixt 0.1.0
[INFO] finished tweaking crates.io crate radixt 0.1.0
[INFO] tweaked toml for crates.io crate radixt 0.1.0 written to /workspace/builds/worker-1-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate radixt 0.1.0 on toolchain beta-2025-09-21
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-09-21" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate radixt 0.1.0 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-09-21" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-09-21" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] bf3f2e0e5286040133d89b3b05544bdb82b8665fb96f3d8573f82bae4ecc5d96
[INFO] running `Command { std: "docker" "start" "-a" "bf3f2e0e5286040133d89b3b05544bdb82b8665fb96f3d8573f82bae4ecc5d96", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "bf3f2e0e5286040133d89b3b05544bdb82b8665fb96f3d8573f82bae4ecc5d96", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "bf3f2e0e5286040133d89b3b05544bdb82b8665fb96f3d8573f82bae4ecc5d96", kill_on_drop: false }`
[INFO] [stdout] bf3f2e0e5286040133d89b3b05544bdb82b8665fb96f3d8573f82bae4ecc5d96
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-09-21" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 61f5d89adba167761b79c7b1f4191ac47f73ab0d262a5c91ce43d9f225196931
[INFO] running `Command { std: "docker" "start" "-a" "61f5d89adba167761b79c7b1f4191ac47f73ab0d262a5c91ce43d9f225196931", kill_on_drop: false }`
[INFO] [stderr]    Compiling radixt v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/map.rs:85:17
[INFO] [stdout]    |
[INFO] [stdout] 85 |     pub fn iter(&self) -> Iter<T, MapKV<T>> {
[INFO] [stdout]    |                 ^^^^^     ^^^^^^^^^^^^^^^^^
[INFO] [stdout]    |                 |         |       |
[INFO] [stdout]    |                 |         |       the same lifetime is hidden here
[INFO] [stdout]    |                 |         the same lifetime is hidden here
[INFO] [stdout]    |                 the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 85 |     pub fn iter(&self) -> Iter<'_, T, MapKV<'_, T>> {
[INFO] [stdout]    |                                +++          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/map.rs:93:21
[INFO] [stdout]    |
[INFO] [stdout] 93 |     pub fn iter_mut(&mut self) -> IterMut<T, MapKVMut<T>> {
[INFO] [stdout]    |                     ^^^^^^^^^     ^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    |                     |             |          |
[INFO] [stdout]    |                     |             |          the same lifetime is hidden here
[INFO] [stdout]    |                     |             the same lifetime is hidden here
[INFO] [stdout]    |                     the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 93 |     pub fn iter_mut(&mut self) -> IterMut<'_, T, MapKVMut<'_, T>> {
[INFO] [stdout]    |                                           +++             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:102:40
[INFO] [stdout]     |
[INFO] [stdout] 102 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<T, MapKV<T>> {
[INFO] [stdout]     |                                        ^^^^^                ^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                        |                    |       |
[INFO] [stdout]     |                                        |                    |       the same lifetime is hidden here
[INFO] [stdout]     |                                        |                    the same lifetime is hidden here
[INFO] [stdout]     |                                        the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 102 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, T, MapKV<'_, T>> {
[INFO] [stdout]     |                                                                  +++          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:111:44
[INFO] [stdout]     |
[INFO] [stdout] 111 |     pub fn prefix_iter_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<T, MapKVMut<T>> {
[INFO] [stdout]     |                                            ^^^^^^^^^                ^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                            |                        |          |
[INFO] [stdout]     |                                            |                        |          the same lifetime is hidden here
[INFO] [stdout]     |                                            |                        the same lifetime is hidden here
[INFO] [stdout]     |                                            the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 111 |     pub fn prefix_iter_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<'_, T, MapKVMut<'_, T>> {
[INFO] [stdout]     |                                                                             +++             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:117:19
[INFO] [stdout]     |
[INFO] [stdout] 117 |     pub fn values(&self) -> Iter<T, MapV<T>> {
[INFO] [stdout]     |                   ^^^^^     ^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                   |         |       |
[INFO] [stdout]     |                   |         |       the same lifetime is hidden here
[INFO] [stdout]     |                   |         the same lifetime is hidden here
[INFO] [stdout]     |                   the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 117 |     pub fn values(&self) -> Iter<'_, T, MapV<'_, T>> {
[INFO] [stdout]     |                                  +++         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:123:23
[INFO] [stdout]     |
[INFO] [stdout] 123 |     pub fn values_mut(&mut self) -> IterMut<T, MapVMut<T>> {
[INFO] [stdout]     |                       ^^^^^^^^^     ^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                       |             |          |
[INFO] [stdout]     |                       |             |          the same lifetime is hidden here
[INFO] [stdout]     |                       |             the same lifetime is hidden here
[INFO] [stdout]     |                       the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 123 |     pub fn values_mut(&mut self) -> IterMut<'_, T, MapVMut<'_, T>> {
[INFO] [stdout]     |                                             +++            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:129:42
[INFO] [stdout]     |
[INFO] [stdout] 129 |     pub fn prefix_values<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<T, MapV<T>> {
[INFO] [stdout]     |                                          ^^^^^                ^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                          |                    |       |
[INFO] [stdout]     |                                          |                    |       the same lifetime is hidden here
[INFO] [stdout]     |                                          |                    the same lifetime is hidden here
[INFO] [stdout]     |                                          the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 129 |     pub fn prefix_values<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, T, MapV<'_, T>> {
[INFO] [stdout]     |                                                                    +++         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:135:46
[INFO] [stdout]     |
[INFO] [stdout] 135 |     pub fn prefix_values_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<T, MapVMut<T>> {
[INFO] [stdout]     |                                              ^^^^^^^^^                ^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                              |                        |          |
[INFO] [stdout]     |                                              |                        |          the same lifetime is hidden here
[INFO] [stdout]     |                                              |                        the same lifetime is hidden here
[INFO] [stdout]     |                                              the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 135 |     pub fn prefix_values_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<'_, T, MapVMut<'_, T>> {
[INFO] [stdout]     |                                                                               +++            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:141:17
[INFO] [stdout]     |
[INFO] [stdout] 141 |     pub fn keys(&self) -> Iter<T, MapK<T>> {
[INFO] [stdout]     |                 ^^^^^     ^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                 |         |       |
[INFO] [stdout]     |                 |         |       the same lifetime is hidden here
[INFO] [stdout]     |                 |         the same lifetime is hidden here
[INFO] [stdout]     |                 the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 141 |     pub fn keys(&self) -> Iter<'_, T, MapK<'_, T>> {
[INFO] [stdout]     |                                +++         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:147:40
[INFO] [stdout]     |
[INFO] [stdout] 147 |     pub fn prefix_keys<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<T, MapK<T>> {
[INFO] [stdout]     |                                        ^^^^^                ^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                        |                    |       |
[INFO] [stdout]     |                                        |                    |       the same lifetime is hidden here
[INFO] [stdout]     |                                        |                    the same lifetime is hidden here
[INFO] [stdout]     |                                        the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 147 |     pub fn prefix_keys<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, T, MapK<'_, T>> {
[INFO] [stdout]     |                                                                  +++         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:155:53
[INFO] [stdout]     |
[INFO] [stdout] 155 |     pub fn range<K: AsRef<[u8]>, B: RangeBounds<K>>(&self, bounds: B) -> Range<T, K, B> {
[INFO] [stdout]     |                                                     ^^^^^                ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                                     |
[INFO] [stdout]     |                                                     the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 155 |     pub fn range<K: AsRef<[u8]>, B: RangeBounds<K>>(&self, bounds: B) -> Range<'_, T, K, B> {
[INFO] [stdout]     |                                                                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:163:57
[INFO] [stdout]     |
[INFO] [stdout] 163 |     pub fn range_mut<K: AsRef<[u8]>, B: RangeBounds<K>>(&mut self, bounds: B) -> RangeMut<T, K, B> {
[INFO] [stdout]     |                                                         ^^^^^^^^^                ^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                                         |
[INFO] [stdout]     |                                                         the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 163 |     pub fn range_mut<K: AsRef<[u8]>, B: RangeBounds<K>>(&mut self, bounds: B) -> RangeMut<'_, T, K, B> {
[INFO] [stdout]     |                                                                                           +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/set.rs:53:17
[INFO] [stdout]    |
[INFO] [stdout] 53 |     pub fn iter(&self) -> Iter<(), MapK<()>> {
[INFO] [stdout]    |                 ^^^^^     ^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    |                 |         |        |
[INFO] [stdout]    |                 |         |        the same lifetime is hidden here
[INFO] [stdout]    |                 |         the same lifetime is hidden here
[INFO] [stdout]    |                 the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 53 |     pub fn iter(&self) -> Iter<'_, (), MapK<'_, ()>> {
[INFO] [stdout]    |                                +++          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/set.rs:59:40
[INFO] [stdout]    |
[INFO] [stdout] 59 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<(), MapK<()>> {
[INFO] [stdout]    |                                        ^^^^^                ^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    |                                        |                    |        |
[INFO] [stdout]    |                                        |                    |        the same lifetime is hidden here
[INFO] [stdout]    |                                        |                    the same lifetime is hidden here
[INFO] [stdout]    |                                        the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 59 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, (), MapK<'_, ()>> {
[INFO] [stdout]    |                                                                  +++          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.70s
[INFO] running `Command { std: "docker" "inspect" "61f5d89adba167761b79c7b1f4191ac47f73ab0d262a5c91ce43d9f225196931", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "61f5d89adba167761b79c7b1f4191ac47f73ab0d262a5c91ce43d9f225196931", kill_on_drop: false }`
[INFO] [stdout] 61f5d89adba167761b79c7b1f4191ac47f73ab0d262a5c91ce43d9f225196931
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-09-21" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 2cb05ea6d1eb59ce33f8cef99bf51c704372a894aef5433244ff78ca0ff6882c
[INFO] running `Command { std: "docker" "start" "-a" "2cb05ea6d1eb59ce33f8cef99bf51c704372a894aef5433244ff78ca0ff6882c", kill_on_drop: false }`
[INFO] [stderr]    Compiling autocfg v1.1.0
[INFO] [stderr]    Compiling libc v0.2.126
[INFO] [stderr]    Compiling serde v1.0.139
[INFO] [stderr]    Compiling crossbeam-utils v0.8.10
[INFO] [stderr]    Compiling once_cell v1.13.0
[INFO] [stderr]    Compiling proc-macro2 v1.0.40
[INFO] [stderr]    Compiling memchr v2.5.0
[INFO] [stderr]    Compiling unicode-ident v1.0.2
[INFO] [stderr]    Compiling scopeguard v1.1.0
[INFO] [stderr]    Compiling quote v1.0.20
[INFO] [stderr]    Compiling rayon-core v1.9.3
[INFO] [stderr]    Compiling either v1.7.0
[INFO] [stderr]    Compiling ryu v1.0.10
[INFO] [stderr]    Compiling syn v1.0.98
[INFO] [stderr]    Compiling serde_json v1.0.82
[INFO] [stderr]    Compiling memoffset v0.6.5
[INFO] [stderr]    Compiling crossbeam-epoch v0.9.9
[INFO] [stderr]    Compiling num-traits v0.2.15
[INFO] [stderr]    Compiling rayon v1.5.3
[INFO] [stderr]    Compiling plotters-backend v0.3.4
[INFO] [stderr]    Compiling unicode-width v0.1.9
[INFO] [stderr]    Compiling regex-automata v0.1.10
[INFO] [stderr]    Compiling getrandom v0.2.7
[INFO] [stderr]    Compiling num_cpus v1.13.1
[INFO] [stderr]    Compiling crossbeam-deque v0.8.1
[INFO] [stderr]    Compiling crossbeam-channel v0.5.5
[INFO] [stderr]    Compiling serde_derive v1.0.139
[INFO] [stderr]    Compiling itoa v1.0.2
[INFO] [stderr]    Compiling lazy_static v1.4.0
[INFO] [stderr]    Compiling plotters-svg v0.3.2
[INFO] [stderr]    Compiling rand_core v0.6.3
[INFO] [stderr]    Compiling textwrap v0.11.0
[INFO] [stderr]    Compiling csv-core v0.1.10
[INFO] [stderr]    Compiling itertools v0.10.3
[INFO] [stderr]    Compiling cast v0.3.0
[INFO] [stderr]    Compiling itoa v0.4.8
[INFO] [stderr]    Compiling half v1.8.2
[INFO] [stderr]    Compiling ppv-lite86 v0.2.16
[INFO] [stderr]    Compiling regex-syntax v0.6.27
[INFO] [stderr]    Compiling walkdir v2.3.2
[INFO] [stderr]    Compiling rand_chacha v0.3.1
[INFO] [stderr]    Compiling plotters v0.3.2
[INFO] [stderr]    Compiling clap v2.34.0
[INFO] [stderr]    Compiling criterion-plot v0.4.5
[INFO] [stderr]    Compiling atty v0.2.14
[INFO] [stderr]    Compiling oorandom v11.1.3
[INFO] [stderr]    Compiling regex v1.6.0
[INFO] [stderr]    Compiling rand v0.8.5
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/map.rs:85:17
[INFO] [stdout]    |
[INFO] [stdout] 85 |     pub fn iter(&self) -> Iter<T, MapKV<T>> {
[INFO] [stdout]    |                 ^^^^^     ^^^^^^^^^^^^^^^^^
[INFO] [stdout]    |                 |         |       |
[INFO] [stdout]    |                 |         |       the same lifetime is hidden here
[INFO] [stdout]    |                 |         the same lifetime is hidden here
[INFO] [stdout]    |                 the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 85 |     pub fn iter(&self) -> Iter<'_, T, MapKV<'_, T>> {
[INFO] [stdout]    |                                +++          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/map.rs:93:21
[INFO] [stdout]    |
[INFO] [stdout] 93 |     pub fn iter_mut(&mut self) -> IterMut<T, MapKVMut<T>> {
[INFO] [stdout]    |                     ^^^^^^^^^     ^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    |                     |             |          |
[INFO] [stdout]    |                     |             |          the same lifetime is hidden here
[INFO] [stdout]    |                     |             the same lifetime is hidden here
[INFO] [stdout]    |                     the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 93 |     pub fn iter_mut(&mut self) -> IterMut<'_, T, MapKVMut<'_, T>> {
[INFO] [stdout]    |                                           +++             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:102:40
[INFO] [stdout]     |
[INFO] [stdout] 102 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<T, MapKV<T>> {
[INFO] [stdout]     |                                        ^^^^^                ^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                        |                    |       |
[INFO] [stdout]     |                                        |                    |       the same lifetime is hidden here
[INFO] [stdout]     |                                        |                    the same lifetime is hidden here
[INFO] [stdout]     |                                        the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 102 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, T, MapKV<'_, T>> {
[INFO] [stdout]     |                                                                  +++          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:111:44
[INFO] [stdout]     |
[INFO] [stdout] 111 |     pub fn prefix_iter_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<T, MapKVMut<T>> {
[INFO] [stdout]     |                                            ^^^^^^^^^                ^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                            |                        |          |
[INFO] [stdout]     |                                            |                        |          the same lifetime is hidden here
[INFO] [stdout]     |                                            |                        the same lifetime is hidden here
[INFO] [stdout]     |                                            the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 111 |     pub fn prefix_iter_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<'_, T, MapKVMut<'_, T>> {
[INFO] [stdout]     |                                                                             +++             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:117:19
[INFO] [stdout]     |
[INFO] [stdout] 117 |     pub fn values(&self) -> Iter<T, MapV<T>> {
[INFO] [stdout]     |                   ^^^^^     ^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                   |         |       |
[INFO] [stdout]     |                   |         |       the same lifetime is hidden here
[INFO] [stdout]     |                   |         the same lifetime is hidden here
[INFO] [stdout]     |                   the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 117 |     pub fn values(&self) -> Iter<'_, T, MapV<'_, T>> {
[INFO] [stdout]     |                                  +++         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:123:23
[INFO] [stdout]     |
[INFO] [stdout] 123 |     pub fn values_mut(&mut self) -> IterMut<T, MapVMut<T>> {
[INFO] [stdout]     |                       ^^^^^^^^^     ^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                       |             |          |
[INFO] [stdout]     |                       |             |          the same lifetime is hidden here
[INFO] [stdout]     |                       |             the same lifetime is hidden here
[INFO] [stdout]     |                       the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 123 |     pub fn values_mut(&mut self) -> IterMut<'_, T, MapVMut<'_, T>> {
[INFO] [stdout]     |                                             +++            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:129:42
[INFO] [stdout]     |
[INFO] [stdout] 129 |     pub fn prefix_values<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<T, MapV<T>> {
[INFO] [stdout]     |                                          ^^^^^                ^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                          |                    |       |
[INFO] [stdout]     |                                          |                    |       the same lifetime is hidden here
[INFO] [stdout]     |                                          |                    the same lifetime is hidden here
[INFO] [stdout]     |                                          the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 129 |     pub fn prefix_values<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, T, MapV<'_, T>> {
[INFO] [stdout]     |                                                                    +++         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:135:46
[INFO] [stdout]     |
[INFO] [stdout] 135 |     pub fn prefix_values_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<T, MapVMut<T>> {
[INFO] [stdout]     |                                              ^^^^^^^^^                ^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                              |                        |          |
[INFO] [stdout]     |                                              |                        |          the same lifetime is hidden here
[INFO] [stdout]     |                                              |                        the same lifetime is hidden here
[INFO] [stdout]     |                                              the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 135 |     pub fn prefix_values_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<'_, T, MapVMut<'_, T>> {
[INFO] [stdout]     |                                                                               +++            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:141:17
[INFO] [stdout]     |
[INFO] [stdout] 141 |     pub fn keys(&self) -> Iter<T, MapK<T>> {
[INFO] [stdout]     |                 ^^^^^     ^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                 |         |       |
[INFO] [stdout]     |                 |         |       the same lifetime is hidden here
[INFO] [stdout]     |                 |         the same lifetime is hidden here
[INFO] [stdout]     |                 the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 141 |     pub fn keys(&self) -> Iter<'_, T, MapK<'_, T>> {
[INFO] [stdout]     |                                +++         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:147:40
[INFO] [stdout]     |
[INFO] [stdout] 147 |     pub fn prefix_keys<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<T, MapK<T>> {
[INFO] [stdout]     |                                        ^^^^^                ^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                        |                    |       |
[INFO] [stdout]     |                                        |                    |       the same lifetime is hidden here
[INFO] [stdout]     |                                        |                    the same lifetime is hidden here
[INFO] [stdout]     |                                        the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 147 |     pub fn prefix_keys<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, T, MapK<'_, T>> {
[INFO] [stdout]     |                                                                  +++         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:155:53
[INFO] [stdout]     |
[INFO] [stdout] 155 |     pub fn range<K: AsRef<[u8]>, B: RangeBounds<K>>(&self, bounds: B) -> Range<T, K, B> {
[INFO] [stdout]     |                                                     ^^^^^                ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                                     |
[INFO] [stdout]     |                                                     the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 155 |     pub fn range<K: AsRef<[u8]>, B: RangeBounds<K>>(&self, bounds: B) -> Range<'_, T, K, B> {
[INFO] [stdout]     |                                                                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:163:57
[INFO] [stdout]     |
[INFO] [stdout] 163 |     pub fn range_mut<K: AsRef<[u8]>, B: RangeBounds<K>>(&mut self, bounds: B) -> RangeMut<T, K, B> {
[INFO] [stdout]     |                                                         ^^^^^^^^^                ^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                                         |
[INFO] [stdout]     |                                                         the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 163 |     pub fn range_mut<K: AsRef<[u8]>, B: RangeBounds<K>>(&mut self, bounds: B) -> RangeMut<'_, T, K, B> {
[INFO] [stdout]     |                                                                                           +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/set.rs:53:17
[INFO] [stdout]    |
[INFO] [stdout] 53 |     pub fn iter(&self) -> Iter<(), MapK<()>> {
[INFO] [stdout]    |                 ^^^^^     ^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    |                 |         |        |
[INFO] [stdout]    |                 |         |        the same lifetime is hidden here
[INFO] [stdout]    |                 |         the same lifetime is hidden here
[INFO] [stdout]    |                 the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 53 |     pub fn iter(&self) -> Iter<'_, (), MapK<'_, ()>> {
[INFO] [stdout]    |                                +++          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/set.rs:59:40
[INFO] [stdout]    |
[INFO] [stdout] 59 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<(), MapK<()>> {
[INFO] [stdout]    |                                        ^^^^^                ^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    |                                        |                    |        |
[INFO] [stdout]    |                                        |                    |        the same lifetime is hidden here
[INFO] [stdout]    |                                        |                    the same lifetime is hidden here
[INFO] [stdout]    |                                        the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 59 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, (), MapK<'_, ()>> {
[INFO] [stdout]    |                                                                  +++          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling bstr v0.2.17
[INFO] [stderr]    Compiling serde_cbor v0.11.2
[INFO] [stderr]    Compiling csv v1.1.6
[INFO] [stderr]    Compiling tinytemplate v1.2.1
[INFO] [stderr]    Compiling criterion v0.3.6
[INFO] [stderr]    Compiling radixt v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/map.rs:85:17
[INFO] [stdout]    |
[INFO] [stdout] 85 |     pub fn iter(&self) -> Iter<T, MapKV<T>> {
[INFO] [stdout]    |                 ^^^^^     ^^^^^^^^^^^^^^^^^
[INFO] [stdout]    |                 |         |       |
[INFO] [stdout]    |                 |         |       the same lifetime is hidden here
[INFO] [stdout]    |                 |         the same lifetime is hidden here
[INFO] [stdout]    |                 the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 85 |     pub fn iter(&self) -> Iter<'_, T, MapKV<'_, T>> {
[INFO] [stdout]    |                                +++          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/map.rs:93:21
[INFO] [stdout]    |
[INFO] [stdout] 93 |     pub fn iter_mut(&mut self) -> IterMut<T, MapKVMut<T>> {
[INFO] [stdout]    |                     ^^^^^^^^^     ^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    |                     |             |          |
[INFO] [stdout]    |                     |             |          the same lifetime is hidden here
[INFO] [stdout]    |                     |             the same lifetime is hidden here
[INFO] [stdout]    |                     the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 93 |     pub fn iter_mut(&mut self) -> IterMut<'_, T, MapKVMut<'_, T>> {
[INFO] [stdout]    |                                           +++             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:102:40
[INFO] [stdout]     |
[INFO] [stdout] 102 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<T, MapKV<T>> {
[INFO] [stdout]     |                                        ^^^^^                ^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                        |                    |       |
[INFO] [stdout]     |                                        |                    |       the same lifetime is hidden here
[INFO] [stdout]     |                                        |                    the same lifetime is hidden here
[INFO] [stdout]     |                                        the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 102 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, T, MapKV<'_, T>> {
[INFO] [stdout]     |                                                                  +++          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:111:44
[INFO] [stdout]     |
[INFO] [stdout] 111 |     pub fn prefix_iter_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<T, MapKVMut<T>> {
[INFO] [stdout]     |                                            ^^^^^^^^^                ^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                            |                        |          |
[INFO] [stdout]     |                                            |                        |          the same lifetime is hidden here
[INFO] [stdout]     |                                            |                        the same lifetime is hidden here
[INFO] [stdout]     |                                            the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 111 |     pub fn prefix_iter_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<'_, T, MapKVMut<'_, T>> {
[INFO] [stdout]     |                                                                             +++             +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:117:19
[INFO] [stdout]     |
[INFO] [stdout] 117 |     pub fn values(&self) -> Iter<T, MapV<T>> {
[INFO] [stdout]     |                   ^^^^^     ^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                   |         |       |
[INFO] [stdout]     |                   |         |       the same lifetime is hidden here
[INFO] [stdout]     |                   |         the same lifetime is hidden here
[INFO] [stdout]     |                   the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 117 |     pub fn values(&self) -> Iter<'_, T, MapV<'_, T>> {
[INFO] [stdout]     |                                  +++         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:123:23
[INFO] [stdout]     |
[INFO] [stdout] 123 |     pub fn values_mut(&mut self) -> IterMut<T, MapVMut<T>> {
[INFO] [stdout]     |                       ^^^^^^^^^     ^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                       |             |          |
[INFO] [stdout]     |                       |             |          the same lifetime is hidden here
[INFO] [stdout]     |                       |             the same lifetime is hidden here
[INFO] [stdout]     |                       the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 123 |     pub fn values_mut(&mut self) -> IterMut<'_, T, MapVMut<'_, T>> {
[INFO] [stdout]     |                                             +++            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:129:42
[INFO] [stdout]     |
[INFO] [stdout] 129 |     pub fn prefix_values<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<T, MapV<T>> {
[INFO] [stdout]     |                                          ^^^^^                ^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                          |                    |       |
[INFO] [stdout]     |                                          |                    |       the same lifetime is hidden here
[INFO] [stdout]     |                                          |                    the same lifetime is hidden here
[INFO] [stdout]     |                                          the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 129 |     pub fn prefix_values<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, T, MapV<'_, T>> {
[INFO] [stdout]     |                                                                    +++         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:135:46
[INFO] [stdout]     |
[INFO] [stdout] 135 |     pub fn prefix_values_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<T, MapVMut<T>> {
[INFO] [stdout]     |                                              ^^^^^^^^^                ^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                              |                        |          |
[INFO] [stdout]     |                                              |                        |          the same lifetime is hidden here
[INFO] [stdout]     |                                              |                        the same lifetime is hidden here
[INFO] [stdout]     |                                              the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 135 |     pub fn prefix_values_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<'_, T, MapVMut<'_, T>> {
[INFO] [stdout]     |                                                                               +++            +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:141:17
[INFO] [stdout]     |
[INFO] [stdout] 141 |     pub fn keys(&self) -> Iter<T, MapK<T>> {
[INFO] [stdout]     |                 ^^^^^     ^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                 |         |       |
[INFO] [stdout]     |                 |         |       the same lifetime is hidden here
[INFO] [stdout]     |                 |         the same lifetime is hidden here
[INFO] [stdout]     |                 the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 141 |     pub fn keys(&self) -> Iter<'_, T, MapK<'_, T>> {
[INFO] [stdout]     |                                +++         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:147:40
[INFO] [stdout]     |
[INFO] [stdout] 147 |     pub fn prefix_keys<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<T, MapK<T>> {
[INFO] [stdout]     |                                        ^^^^^                ^^^^^^^^^^^^^^^^
[INFO] [stdout]     |                                        |                    |       |
[INFO] [stdout]     |                                        |                    |       the same lifetime is hidden here
[INFO] [stdout]     |                                        |                    the same lifetime is hidden here
[INFO] [stdout]     |                                        the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 147 |     pub fn prefix_keys<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, T, MapK<'_, T>> {
[INFO] [stdout]     |                                                                  +++         +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:155:53
[INFO] [stdout]     |
[INFO] [stdout] 155 |     pub fn range<K: AsRef<[u8]>, B: RangeBounds<K>>(&self, bounds: B) -> Range<T, K, B> {
[INFO] [stdout]     |                                                     ^^^^^                ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                                     |
[INFO] [stdout]     |                                                     the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 155 |     pub fn range<K: AsRef<[u8]>, B: RangeBounds<K>>(&self, bounds: B) -> Range<'_, T, K, B> {
[INFO] [stdout]     |                                                                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/map.rs:163:57
[INFO] [stdout]     |
[INFO] [stdout] 163 |     pub fn range_mut<K: AsRef<[u8]>, B: RangeBounds<K>>(&mut self, bounds: B) -> RangeMut<T, K, B> {
[INFO] [stdout]     |                                                         ^^^^^^^^^                ^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                                                         |
[INFO] [stdout]     |                                                         the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 163 |     pub fn range_mut<K: AsRef<[u8]>, B: RangeBounds<K>>(&mut self, bounds: B) -> RangeMut<'_, T, K, B> {
[INFO] [stdout]     |                                                                                           +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/set.rs:53:17
[INFO] [stdout]    |
[INFO] [stdout] 53 |     pub fn iter(&self) -> Iter<(), MapK<()>> {
[INFO] [stdout]    |                 ^^^^^     ^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    |                 |         |        |
[INFO] [stdout]    |                 |         |        the same lifetime is hidden here
[INFO] [stdout]    |                 |         the same lifetime is hidden here
[INFO] [stdout]    |                 the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 53 |     pub fn iter(&self) -> Iter<'_, (), MapK<'_, ()>> {
[INFO] [stdout]    |                                +++          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/set.rs:59:40
[INFO] [stdout]    |
[INFO] [stdout] 59 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<(), MapK<()>> {
[INFO] [stdout]    |                                        ^^^^^                ^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    |                                        |                    |        |
[INFO] [stdout]    |                                        |                    |        the same lifetime is hidden here
[INFO] [stdout]    |                                        |                    the same lifetime is hidden here
[INFO] [stdout]    |                                        the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 59 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, (), MapK<'_, ()>> {
[INFO] [stdout]    |                                                                  +++          +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 1m 01s
[INFO] running `Command { std: "docker" "inspect" "2cb05ea6d1eb59ce33f8cef99bf51c704372a894aef5433244ff78ca0ff6882c", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "2cb05ea6d1eb59ce33f8cef99bf51c704372a894aef5433244ff78ca0ff6882c", kill_on_drop: false }`
[INFO] [stdout] 2cb05ea6d1eb59ce33f8cef99bf51c704372a894aef5433244ff78ca0ff6882c
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-09-21" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] d4c255be1978acad013e459dade6c84700a5527f19896e803e0c5f19793707b1
[INFO] running `Command { std: "docker" "start" "-a" "d4c255be1978acad013e459dade6c84700a5527f19896e803e0c5f19793707b1", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/map.rs:85:17
[INFO] [stderr]    |
[INFO] [stderr] 85 |     pub fn iter(&self) -> Iter<T, MapKV<T>> {
[INFO] [stderr]    |                 ^^^^^     ^^^^^^^^^^^^^^^^^
[INFO] [stderr]    |                 |         |       |
[INFO] [stderr]    |                 |         |       the same lifetime is hidden here
[INFO] [stderr]    |                 |         the same lifetime is hidden here
[INFO] [stderr]    |                 the lifetime is elided here
[INFO] [stderr]    |
[INFO] [stderr]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 85 |     pub fn iter(&self) -> Iter<'_, T, MapKV<'_, T>> {
[INFO] [stderr]    |                                +++          +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/map.rs:93:21
[INFO] [stderr]    |
[INFO] [stderr] 93 |     pub fn iter_mut(&mut self) -> IterMut<T, MapKVMut<T>> {
[INFO] [stderr]    |                     ^^^^^^^^^     ^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr]    |                     |             |          |
[INFO] [stderr]    |                     |             |          the same lifetime is hidden here
[INFO] [stderr]    |                     |             the same lifetime is hidden here
[INFO] [stderr]    |                     the lifetime is elided here
[INFO] [stderr]    |
[INFO] [stderr]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 93 |     pub fn iter_mut(&mut self) -> IterMut<'_, T, MapKVMut<'_, T>> {
[INFO] [stderr]    |                                           +++             +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/map.rs:102:40
[INFO] [stderr]     |
[INFO] [stderr] 102 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<T, MapKV<T>> {
[INFO] [stderr]     |                                        ^^^^^                ^^^^^^^^^^^^^^^^^
[INFO] [stderr]     |                                        |                    |       |
[INFO] [stderr]     |                                        |                    |       the same lifetime is hidden here
[INFO] [stderr]     |                                        |                    the same lifetime is hidden here
[INFO] [stderr]     |                                        the lifetime is elided here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 102 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, T, MapKV<'_, T>> {
[INFO] [stderr]     |                                                                  +++          +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/map.rs:111:44
[INFO] [stderr]     |
[INFO] [stderr] 111 |     pub fn prefix_iter_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<T, MapKVMut<T>> {
[INFO] [stderr]     |                                            ^^^^^^^^^                ^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr]     |                                            |                        |          |
[INFO] [stderr]     |                                            |                        |          the same lifetime is hidden here
[INFO] [stderr]     |                                            |                        the same lifetime is hidden here
[INFO] [stderr]     |                                            the lifetime is elided here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 111 |     pub fn prefix_iter_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<'_, T, MapKVMut<'_, T>> {
[INFO] [stderr]     |                                                                             +++             +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/map.rs:117:19
[INFO] [stderr]     |
[INFO] [stderr] 117 |     pub fn values(&self) -> Iter<T, MapV<T>> {
[INFO] [stderr]     |                   ^^^^^     ^^^^^^^^^^^^^^^^
[INFO] [stderr]     |                   |         |       |
[INFO] [stderr]     |                   |         |       the same lifetime is hidden here
[INFO] [stderr]     |                   |         the same lifetime is hidden here
[INFO] [stderr]     |                   the lifetime is elided here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 117 |     pub fn values(&self) -> Iter<'_, T, MapV<'_, T>> {
[INFO] [stderr]     |                                  +++         +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/map.rs:123:23
[INFO] [stderr]     |
[INFO] [stderr] 123 |     pub fn values_mut(&mut self) -> IterMut<T, MapVMut<T>> {
[INFO] [stderr]     |                       ^^^^^^^^^     ^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr]     |                       |             |          |
[INFO] [stderr]     |                       |             |          the same lifetime is hidden here
[INFO] [stderr]     |                       |             the same lifetime is hidden here
[INFO] [stderr]     |                       the lifetime is elided here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 123 |     pub fn values_mut(&mut self) -> IterMut<'_, T, MapVMut<'_, T>> {
[INFO] [stderr]     |                                             +++            +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/map.rs:129:42
[INFO] [stderr]     |
[INFO] [stderr] 129 |     pub fn prefix_values<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<T, MapV<T>> {
[INFO] [stderr]     |                                          ^^^^^                ^^^^^^^^^^^^^^^^
[INFO] [stderr]     |                                          |                    |       |
[INFO] [stderr]     |                                          |                    |       the same lifetime is hidden here
[INFO] [stderr]     |                                          |                    the same lifetime is hidden here
[INFO] [stderr]     |                                          the lifetime is elided here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 129 |     pub fn prefix_values<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, T, MapV<'_, T>> {
[INFO] [stderr]     |                                                                    +++         +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/map.rs:135:46
[INFO] [stderr]     |
[INFO] [stderr] 135 |     pub fn prefix_values_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<T, MapVMut<T>> {
[INFO] [stderr]     |                                              ^^^^^^^^^                ^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr]     |                                              |                        |          |
[INFO] [stderr]     |                                              |                        |          the same lifetime is hidden here
[INFO] [stderr]     |                                              |                        the same lifetime is hidden here
[INFO] [stderr]     |                                              the lifetime is elided here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 135 |     pub fn prefix_values_mut<K: AsRef<[u8]>>(&mut self, prefix: K) -> IterMut<'_, T, MapVMut<'_, T>> {
[INFO] [stderr]     |                                                                               +++            +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/map.rs:141:17
[INFO] [stderr]     |
[INFO] [stderr] 141 |     pub fn keys(&self) -> Iter<T, MapK<T>> {
[INFO] [stderr]     |                 ^^^^^     ^^^^^^^^^^^^^^^^
[INFO] [stderr]     |                 |         |       |
[INFO] [stderr]     |                 |         |       the same lifetime is hidden here
[INFO] [stderr]     |                 |         the same lifetime is hidden here
[INFO] [stderr]     |                 the lifetime is elided here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 141 |     pub fn keys(&self) -> Iter<'_, T, MapK<'_, T>> {
[INFO] [stderr]     |                                +++         +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/map.rs:147:40
[INFO] [stderr]     |
[INFO] [stderr] 147 |     pub fn prefix_keys<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<T, MapK<T>> {
[INFO] [stderr]     |                                        ^^^^^                ^^^^^^^^^^^^^^^^
[INFO] [stderr]     |                                        |                    |       |
[INFO] [stderr]     |                                        |                    |       the same lifetime is hidden here
[INFO] [stderr]     |                                        |                    the same lifetime is hidden here
[INFO] [stderr]     |                                        the lifetime is elided here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 147 |     pub fn prefix_keys<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, T, MapK<'_, T>> {
[INFO] [stderr]     |                                                                  +++         +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/map.rs:155:53
[INFO] [stderr]     |
[INFO] [stderr] 155 |     pub fn range<K: AsRef<[u8]>, B: RangeBounds<K>>(&self, bounds: B) -> Range<T, K, B> {
[INFO] [stderr]     |                                                     ^^^^^                ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]     |                                                     |
[INFO] [stderr]     |                                                     the lifetime is elided here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 155 |     pub fn range<K: AsRef<[u8]>, B: RangeBounds<K>>(&self, bounds: B) -> Range<'_, T, K, B> {
[INFO] [stderr]     |                                                                                +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/map.rs:163:57
[INFO] [stderr]     |
[INFO] [stderr] 163 |     pub fn range_mut<K: AsRef<[u8]>, B: RangeBounds<K>>(&mut self, bounds: B) -> RangeMut<T, K, B> {
[INFO] [stderr]     |                                                         ^^^^^^^^^                ^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]     |                                                         |
[INFO] [stderr]     |                                                         the lifetime is elided here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 163 |     pub fn range_mut<K: AsRef<[u8]>, B: RangeBounds<K>>(&mut self, bounds: B) -> RangeMut<'_, T, K, B> {
[INFO] [stderr]     |                                                                                           +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/set.rs:53:17
[INFO] [stderr]    |
[INFO] [stderr] 53 |     pub fn iter(&self) -> Iter<(), MapK<()>> {
[INFO] [stderr]    |                 ^^^^^     ^^^^^^^^^^^^^^^^^^
[INFO] [stderr]    |                 |         |        |
[INFO] [stderr]    |                 |         |        the same lifetime is hidden here
[INFO] [stderr]    |                 |         the same lifetime is hidden here
[INFO] [stderr]    |                 the lifetime is elided here
[INFO] [stderr]    |
[INFO] [stderr]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 53 |     pub fn iter(&self) -> Iter<'_, (), MapK<'_, ()>> {
[INFO] [stderr]    |                                +++          +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/set.rs:59:40
[INFO] [stderr]    |
[INFO] [stderr] 59 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<(), MapK<()>> {
[INFO] [stderr]    |                                        ^^^^^                ^^^^^^^^^^^^^^^^^^
[INFO] [stderr]    |                                        |                    |        |
[INFO] [stderr]    |                                        |                    |        the same lifetime is hidden here
[INFO] [stderr]    |                                        |                    the same lifetime is hidden here
[INFO] [stderr]    |                                        the lifetime is elided here
[INFO] [stderr]    |
[INFO] [stderr]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 59 |     pub fn prefix_iter<K: AsRef<[u8]>>(&self, prefix: K) -> Iter<'_, (), MapK<'_, ()>> {
[INFO] [stderr]    |                                                                  +++          +++
[INFO] [stderr] 
[INFO] [stderr] warning: `radixt` (lib) generated 14 warnings (run `cargo fix --lib -p radixt` to apply 14 suggestions)
[INFO] [stderr] warning: `radixt` (lib test) generated 14 warnings (14 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.17s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/radixt-e762c135a6604e79)
[INFO] [stdout] 
[INFO] [stdout] running 52 tests
[INFO] [stderr] 
[INFO] [stderr] thread 'map::tests::test_insert_and_get' (19) panicked at src/node.rs:114:18:
[INFO] [stderr] unsafe precondition(s) violated: slice::from_raw_parts requires the pointer to be aligned and non-null, and the total size of the slice not to exceed `isize::MAX`
[INFO] [stderr] 
[INFO] [stderr] This indicates a bug in the program. This Undefined Behavior check is optional, and cannot be relied on for safety.
[INFO] [stderr] stack backtrace:
[INFO] [stderr]    0:     0x6012024a2752 - std::backtrace_rs::backtrace::libunwind::trace::hcab59e1e990fdc24
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
[INFO] [stderr]    1:     0x6012024a2752 - std::backtrace_rs::backtrace::trace_unsynchronized::he24cc57f3d2f47b7
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
[INFO] [stderr]    2:     0x6012024a2752 - std::sys::backtrace::_print_fmt::hf8d65ede198eeb54
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/sys/backtrace.rs:66:9
[INFO] [stderr]    3:     0x6012024a2752 - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::h67edf0e4d33c343c
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/sys/backtrace.rs:39:26
[INFO] [stderr]    4:     0x6012024b2acf - core::fmt::rt::Argument::fmt::hef94184842aeafdd
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/core/src/fmt/rt.rs:173:76
[INFO] [stderr]    5:     0x6012024b2acf - core::fmt::write::hcf0c66b48a8fa606
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/core/src/fmt/mod.rs:1468:25
[INFO] [stderr]    6:     0x60120246fa21 - std::io::default_write_fmt::h1ecb8c7cfa7da481
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/io/mod.rs:639:11
[INFO] [stderr]    7:     0x60120246fa21 - std::io::Write::write_fmt::h051fe4a9e4fdbf48
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/io/mod.rs:1954:13
[INFO] [stderr]    8:     0x60120247bd22 - std::sys::backtrace::BacktraceLock::print::h07e5435aa717b414
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/sys/backtrace.rs:42:9
[INFO] [stderr]    9:     0x60120248086f - std::panicking::default_hook::{{closure}}::h91001850288db5f7
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/panicking.rs:301:27
[INFO] [stderr]   10:     0x6012024806c9 - std::panicking::default_hook::h2346dbb704ef5512
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/panicking.rs:328:9
[INFO] [stderr]   11:     0x6012024412ce - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h18383b2e29377420
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/alloc/src/boxed.rs:1999:9
[INFO] [stderr]   12:     0x6012024412ce - test::test_main_with_exit_callback::{{closure}}::h272d7ef99aef06dc
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/test/src/lib.rs:145:21
[INFO] [stderr]   13:     0x601202480f2f - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h6dba6e441651a0d1
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/alloc/src/boxed.rs:1999:9
[INFO] [stderr]   14:     0x601202480f2f - std::panicking::panic_with_hook::hd2b063a6090d23a4
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/panicking.rs:842:13
[INFO] [stderr]   15:     0x601202480d56 - std::panicking::panic_handler::{{closure}}::he666d95f139a333e
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/panicking.rs:700:13
[INFO] [stderr]   16:     0x60120247be59 - std::sys::backtrace::__rust_end_short_backtrace::h631ad224854ebee5
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/sys/backtrace.rs:174:18
[INFO] [stderr]   17:     0x60120246419d - __rustc[1d67440d6e82e4f]::rust_begin_unwind
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/panicking.rs:698:5
[INFO] [stderr]   18:     0x6012024ba1cd - core::panicking::panic_nounwind_fmt::runtime::hf619e8fd73995337
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/core/src/panicking.rs:117:22
[INFO] [stderr]   19:     0x6012024ba1cd - core::panicking::panic_nounwind_fmt::hc177e1bd7a48be0d
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/core/src/intrinsics/mod.rs:2435:9
[INFO] [stderr]   20:     0x60120241c8c9 - core::slice::raw::from_raw_parts::precondition_check::hdabf753826f46092
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/core/src/ub_checks.rs:72:21
[INFO] [stderr]   21:     0x60120241c4f7 - core::slice::raw::from_raw_parts::h651ee92c7605e91d
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/core/src/ub_checks.rs:77:17
[INFO] [stderr]   22:     0x60120235aa21 - radixt::node::Node<T>::children::h011043dc11c25aa4
[INFO] [stderr]                                at /opt/rustwide/workdir/src/node.rs:114:18
[INFO] [stderr]   23:     0x60120235aa21 - radixt::node::Node<T>::insert::hb1c9c821c0c29865
[INFO] [stderr]                                at /opt/rustwide/workdir/src/node.rs:139:66
[INFO] [stderr]   24:     0x6012023cdc14 - radixt::map::RadixMap<T>::insert::hb8cac14e2e6de755
[INFO] [stderr]                                at /opt/rustwide/workdir/src/map.rs:49:29
[INFO] [stderr]   25:     0x6012023cdc14 - radixt::map::tests::test_insert_and_get::h252961c111a7b01c
[INFO] [stderr]                                at /opt/rustwide/workdir/src/map.rs:257:11
[INFO] [stderr]   26:     0x6012023cf117 - radixt::map::tests::test_insert_and_get::{{closure}}::hdfbb3d05e74ca8b7
[INFO] [stderr]                                at /opt/rustwide/workdir/src/map.rs:253:29
[INFO] [stderr]   27:     0x601202414066 - core::ops::function::FnOnce::call_once::h42df1ce2ede665d8
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/core/src/ops/function.rs:250:5
[INFO] [stderr]   28:     0x60120244108b - core::ops::function::FnOnce::call_once::h70887edf07a630ba
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/core/src/ops/function.rs:250:5
[INFO] [stderr]   29:     0x60120244108b - test::__rust_begin_short_backtrace::h27763c4cbbdb8601
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/test/src/lib.rs:663:18
[INFO] [stderr]   30:     0x601202456cf5 - test::run_test_in_process::{{closure}}::h4dc8bc6d5e3924d3
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/test/src/lib.rs:686:74
[INFO] [stderr]   31:     0x601202456cf5 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h75905e8ffe81974f
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/core/src/panic/unwind_safe.rs:274:9
[INFO] [stderr]   32:     0x601202456cf5 - std::panicking::catch_unwind::do_call::h0bc60366ba66eba5
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/panicking.rs:590:40
[INFO] [stderr]   33:     0x601202456cf5 - std::panicking::catch_unwind::hae1ec7bf94407afa
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/panicking.rs:553:19
[INFO] [stderr]   34:     0x601202456cf5 - std::panic::catch_unwind::h0f4ff4773d84d3cd
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/panic.rs:359:14
[INFO] [stderr]   35:     0x601202456cf5 - test::run_test_in_process::h03fbc77ae48b3f10
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/test/src/lib.rs:686:27
[INFO] [stderr]   36:     0x601202456cf5 - test::run_test::{{closure}}::h83476a9c453dc4d3
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/test/src/lib.rs:607:43
[INFO] [stderr]   37:     0x60120242d4e4 - test::run_test::{{closure}}::h515482ad1e7fe7de
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/test/src/lib.rs:637:41
[INFO] [stderr]   38:     0x60120242d4e4 - std::sys::backtrace::__rust_begin_short_backtrace::hed09f6ac5fe9d647
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/sys/backtrace.rs:158:18
[INFO] [stderr]   39:     0x601202430daa - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h988e2cd969319888
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/thread/mod.rs:559:17
[INFO] [stderr]   40:     0x601202430daa - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::hd70e28dc46ec20be
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/core/src/panic/unwind_safe.rs:274:9
[INFO] [stderr]   41:     0x601202430daa - std::panicking::catch_unwind::do_call::hdc29e11311eb7655
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/panicking.rs:590:40
[INFO] [stderr]   42:     0x601202430daa - std::panicking::catch_unwind::h9e402d6a96fef41c
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/panicking.rs:553:19
[INFO] [stderr]   43:     0x601202430daa - std::panic::catch_unwind::h9213c0c54aec70e0
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/panic.rs:359:14
[INFO] [stderr]   44:     0x601202430daa - std::thread::Builder::spawn_unchecked_::{{closure}}::h6262965869ed2b87
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/thread/mod.rs:557:30
[INFO] [stderr]   45:     0x601202430daa - core::ops::function::FnOnce::call_once{{vtable.shim}}::h05c05ed02619e462
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/core/src/ops/function.rs:250:5
[INFO] [stderr]   46:     0x601202476fbf - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::h2044e71c41d3958a
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/alloc/src/boxed.rs:1985:9
[INFO] [stderr]   47:     0x601202476fbf - std::sys::thread::unix::Thread::new::thread_start::hf277835320aa8e5a
[INFO] [stderr]                                at /rustc/bb624dcb4c8ab987e10c0808d92d76f3b84dd117/library/std/src/sys/thread/unix.rs:126:17
[INFO] [stderr]   48:     0x7c433981faa4 - <unknown>
[INFO] [stderr]   49:     0x7c43398aca34 - clone
[INFO] [stderr]   50:                0x0 - <unknown>
[INFO] [stderr] thread caused non-unwinding panic. aborting.
[INFO] [stderr] error: test failed, to rerun pass `--lib`
[INFO] [stderr] 
[INFO] [stderr] Caused by:
[INFO] [stderr]   process didn't exit successfully: `/opt/rustwide/target/debug/deps/radixt-e762c135a6604e79` (signal: 6, SIGABRT: process abort signal)
[INFO] running `Command { std: "docker" "inspect" "d4c255be1978acad013e459dade6c84700a5527f19896e803e0c5f19793707b1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "d4c255be1978acad013e459dade6c84700a5527f19896e803e0c5f19793707b1", kill_on_drop: false }`
[INFO] [stdout] d4c255be1978acad013e459dade6c84700a5527f19896e803e0c5f19793707b1
