Skip to content

fix(deps): update rust crate generator to 0.8 #550

fix(deps): update rust crate generator to 0.8

fix(deps): update rust crate generator to 0.8 #550

Triggered via push May 5, 2024 11:22
Status Failure
Total duration 1m 16s
Artifacts

build.yml

on: push
Formatting
23s
Formatting
Lint (Stable)
40s
Lint (Stable)
Lint (Nightly)
38s
Lint (Nightly)
Cargo Check (Stable)
1m 1s
Cargo Check (Stable)
Cargo Check (Nightly)
1m 8s
Cargo Check (Nightly)
Run Tests (Stable, no crate features enabled that require unstable Rust)
53s
Run Tests (Stable, no crate features enabled that require unstable Rust)
Run Tests (Nightly, all features enabled)
43s
Run Tests (Nightly, all features enabled)
Fit to window
Zoom out
Zoom in

Annotations

49 errors and 2 warnings
borrowed data escapes outside of method: src/common/generate_within_unsorted_iter.rs#L66
error[E0521]: borrowed data escapes outside of method --> src/common/generate_within_unsorted_iter.rs:66:33 | 39 | &'a self, | -------- `self` is a reference that is only valid in the method body ... 44 | mut gen_scope: Scope<'a, (), NearestNeighbour<A, T>>, | ------------- `gen_scope` declared here, outside of the method body ... 66 | gen_scope = self.within_unsorted_iter_recurse::<D>( | _________________________________^ 67 | | query, 68 | | radius, 69 | | closer_node_idx, ... | 73 | | rd, 74 | | ); | | ^ | | | | |_____________________`self` escapes the method body here | argument requires that `'a` must outlive `'static` | ::: src/float/query/within_unsorted_iter.rs:55:9 | 55 | 'a, | -- lifetime `'a` defined here ... 65 | / generate_float_within_unsorted_iter!( 66 | | "use std::fs::File; 67 | | use memmap::MmapOptions; 68 | | 69 | | let mmap = unsafe { MmapOptions::new().map(&File::open(\"./examples/float-doctest-tree.rkyv\").unwrap()).unwrap() }; 70 | | let tree = unsafe { rkyv::archived_root::<KdTree<f64, 3>>(&mmap) };" 71 | | ); | |_______- in this macro invocation | = note: requirement occurs because of the type `generator::Scope<'_, '_, (), nearest_neighbour::NearestNeighbour<A, T>>`, which makes the generic argument `'_` invariant = note: the struct `generator::Scope<'scope, 'a, A, T>` is invariant over the parameter `'scope` = help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance = note: this error originates in the macro `generate_within_unsorted_iter` which comes from the expansion of the macro `generate_float_within_unsorted_iter` (in Nightly builds, run with -Z macro-backtrace for more info)
borrowed data escapes outside of method: src/common/generate_within_unsorted_iter.rs#L20
error[E0521]: borrowed data escapes outside of method --> src/common/generate_within_unsorted_iter.rs:20:25 | 9 | &'a self, | -------- `self` is a reference that is only valid in the method body ... 20 | / self.within_unsorted_iter_recurse::<D>( 21 | | query, 22 | | dist, 23 | | self.root_index, ... | 27 | | A::zero(), 28 | | ); | | ^ | | | | |_________________________`self` escapes the method body here | argument requires that `'a` must outlive `'static` | ::: src/float/query/within_unsorted_iter.rs:55:9 | 55 | 'a, | -- lifetime `'a` defined here ... 65 | / generate_float_within_unsorted_iter!( 66 | | "use std::fs::File; 67 | | use memmap::MmapOptions; 68 | | 69 | | let mmap = unsafe { MmapOptions::new().map(&File::open(\"./examples/float-doctest-tree.rkyv\").unwrap()).unwrap() }; 70 | | let tree = unsafe { rkyv::archived_root::<KdTree<f64, 3>>(&mmap) };" 71 | | ); | |_____- in this macro invocation | = note: this error originates in the macro `generate_within_unsorted_iter` which comes from the expansion of the macro `generate_float_within_unsorted_iter` (in Nightly builds, run with -Z macro-backtrace for more info)
borrowed data escapes outside of method: src/common/generate_within_unsorted_iter.rs#L66
error[E0521]: borrowed data escapes outside of method --> src/common/generate_within_unsorted_iter.rs:66:33 | 39 | &'a self, | -------- `self` is a reference that is only valid in the method body ... 44 | mut gen_scope: Scope<'a, (), NearestNeighbour<A, T>>, | ------------- `gen_scope` declared here, outside of the method body ... 66 | gen_scope = self.within_unsorted_iter_recurse::<D>( | _________________________________^ | |_________________________________| | | 67 | | query, 68 | | radius, 69 | | closer_node_idx, ... | 73 | | rd, 74 | | ); | | ^ | |_____________________| | |_____________________`self` escapes the method body here | argument requires that `'a` must outlive `'static` | ::: src/float/query/within_unsorted_iter.rs:38:6 | 38 | impl<'a, A: Axis, T: Content, const K: usize, const B: usize, IDX: Index<T = IDX>> | -- lifetime `'a` defined here ... 43 | / generate_float_within_unsorted_iter!( 44 | | " 45 | | let mut tree: KdTree<f64, 3> = KdTree::new(); 46 | | tree.add(&[1.0, 2.0, 5.0], 100); 47 | | tree.add(&[2.0, 3.0, 6.0], 101);" 48 | | ); | |_____- in this macro invocation | = note: requirement occurs because of the type `generator::Scope<'_, '_, (), nearest_neighbour::NearestNeighbour<A, T>>`, which makes the generic argument `'_` invariant = note: the struct `generator::Scope<'scope, 'a, A, T>` is invariant over the parameter `'scope` = help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance = note: this error originates in the macro `generate_within_unsorted_iter` which comes from the expansion of the macro `generate_float_within_unsorted_iter` (in Nightly builds, run with -Z macro-backtrace for more info)
borrowed data escapes outside of method: src/common/generate_within_unsorted_iter.rs#L20
error[E0521]: borrowed data escapes outside of method --> src/common/generate_within_unsorted_iter.rs:20:25 | 9 | &'a self, | -------- `self` is a reference that is only valid in the method body ... 20 | / self.within_unsorted_iter_recurse::<D>( 21 | | query, 22 | | dist, 23 | | self.root_index, ... | 27 | | A::zero(), 28 | | ); | | ^ | | | | |_________________________`self` escapes the method body here | argument requires that `'a` must outlive `'static` | ::: src/float/query/within_unsorted_iter.rs:38:6 | 38 | impl<'a, A: Axis, T: Content, const K: usize, const B: usize, IDX: Index<T = IDX>> | -- lifetime `'a` defined here ... 43 | / generate_float_within_unsorted_iter!( 44 | | " 45 | | let mut tree: KdTree<f64, 3> = KdTree::new(); 46 | | tree.add(&[1.0, 2.0, 5.0], 100); 47 | | tree.add(&[2.0, 3.0, 6.0], 101);" 48 | | ); | |_____- in this macro invocation | = note: this error originates in the macro `generate_within_unsorted_iter` which comes from the expansion of the macro `generate_float_within_unsorted_iter` (in Nightly builds, run with -Z macro-backtrace for more info)
borrowed data escapes outside of method: src/common/generate_within_unsorted_iter.rs#L66
error[E0521]: borrowed data escapes outside of method --> src/common/generate_within_unsorted_iter.rs:66:33 | 39 | &'a self, | -------- `self` is a reference that is only valid in the method body ... 44 | mut gen_scope: Scope<'a, (), NearestNeighbour<A, T>>, | ------------- `gen_scope` declared here, outside of the method body ... 66 | gen_scope = self.within_unsorted_iter_recurse::<D>( | _________________________________^ | |_________________________________| | | 67 | | query, 68 | | radius, 69 | | closer_node_idx, ... | 73 | | rd, 74 | | ); | | ^ | |_____________________| | |_____________________`self` escapes the method body here | argument requires that `'a` must outlive `'static` | ::: src/fixed/query/within_unsorted_iter.rs:13:6 | 13 | impl<'a, A: Axis, T: Content, const K: usize, const B: usize, IDX: Index<T = IDX>> | -- lifetime `'a` defined here ... 18 | / generate_within_unsorted_iter!( 19 | | (r#"Finds all elements within `dist` of `query`, using the specified 20 | | distance metric function. 21 | | ... | 46 | | ```"#) 47 | | ); | |_____- in this macro invocation | = note: requirement occurs because of the type `generator::Scope<'_, '_, (), nearest_neighbour::NearestNeighbour<A, T>>`, which makes the generic argument `'_` invariant = note: the struct `generator::Scope<'scope, 'a, A, T>` is invariant over the parameter `'scope` = help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance = note: this error originates in the macro `generate_within_unsorted_iter` (in Nightly builds, run with -Z macro-backtrace for more info)
borrowed data escapes outside of method: src/common/generate_within_unsorted_iter.rs#L20
error[E0521]: borrowed data escapes outside of method --> src/common/generate_within_unsorted_iter.rs:20:25 | 9 | &'a self, | -------- `self` is a reference that is only valid in the method body ... 20 | / self.within_unsorted_iter_recurse::<D>( 21 | | query, 22 | | dist, 23 | | self.root_index, ... | 27 | | A::zero(), 28 | | ); | | ^ | | | | |_________________________`self` escapes the method body here | argument requires that `'a` must outlive `'static` | ::: src/fixed/query/within_unsorted_iter.rs:13:6 | 13 | impl<'a, A: Axis, T: Content, const K: usize, const B: usize, IDX: Index<T = IDX>> | -- lifetime `'a` defined here ... 18 | / generate_within_unsorted_iter!( 19 | | (r#"Finds all elements within `dist` of `query`, using the specified 20 | | distance metric function. 21 | | ... | 46 | | ```"#) 47 | | ); | |_______- in this macro invocation | = note: this error originates in the macro `generate_within_unsorted_iter` (in Nightly builds, run with -Z macro-backtrace for more info)
struct takes 2 lifetime arguments but 1 lifetime argument was supplied: src/common/generate_within_unsorted_iter.rs#L44
error[E0107]: struct takes 2 lifetime arguments but 1 lifetime argument was supplied --> src/common/generate_within_unsorted_iter.rs:44:32 | 44 | mut gen_scope: Scope<'a, (), NearestNeighbour<A, T>>, | ^^^^^ -- supplied 1 lifetime argument | | | expected 2 lifetime arguments | ::: src/float/query/within_unsorted_iter.rs:65:5 | 65 | / generate_float_within_unsorted_iter!( 66 | | "use std::fs::File; 67 | | use memmap::MmapOptions; 68 | | 69 | | let mmap = unsafe { MmapOptions::new().map(&File::open(\"./examples/float-doctest-tree.rkyv\").unwrap()).unwrap() }; 70 | | let tree = unsafe { rkyv::archived_root::<KdTree<f64, 3>>(&mmap) };" 71 | | ); | |_____- in this macro invocation | note: struct defined here, with 2 lifetime parameters: `'scope`, `'a` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/generator-0.8.1/src/scope.rs:16:12 | 16 | pub struct Scope<'scope, 'a, A, T> { | ^^^^^ ------ -- = note: this error originates in the macro `generate_within_unsorted_iter` which comes from the expansion of the macro `generate_float_within_unsorted_iter` (in Nightly builds, run with -Z macro-backtrace for more info) help: add missing lifetime argument | 44 | mut gen_scope: Scope<'a, 'a, (), NearestNeighbour<A, T>>, | ++++
struct takes 2 lifetime arguments but 1 lifetime argument was supplied: src/common/generate_within_unsorted_iter.rs#L44
error[E0107]: struct takes 2 lifetime arguments but 1 lifetime argument was supplied --> src/common/generate_within_unsorted_iter.rs:44:32 | 44 | mut gen_scope: Scope<'a, (), NearestNeighbour<A, T>>, | ^^^^^ -- supplied 1 lifetime argument | | | expected 2 lifetime arguments | ::: src/float/query/within_unsorted_iter.rs:43:5 | 43 | / generate_float_within_unsorted_iter!( 44 | | " 45 | | let mut tree: KdTree<f64, 3> = KdTree::new(); 46 | | tree.add(&[1.0, 2.0, 5.0], 100); 47 | | tree.add(&[2.0, 3.0, 6.0], 101);" 48 | | ); | |_____- in this macro invocation | note: struct defined here, with 2 lifetime parameters: `'scope`, `'a` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/generator-0.8.1/src/scope.rs:16:12 | 16 | pub struct Scope<'scope, 'a, A, T> { | ^^^^^ ------ -- = note: this error originates in the macro `generate_within_unsorted_iter` which comes from the expansion of the macro `generate_float_within_unsorted_iter` (in Nightly builds, run with -Z macro-backtrace for more info) help: add missing lifetime argument | 44 | mut gen_scope: Scope<'a, 'a, (), NearestNeighbour<A, T>>, | ++++
struct takes 2 lifetime arguments but 1 lifetime argument was supplied: src/common/generate_within_unsorted_iter.rs#L44
error[E0107]: struct takes 2 lifetime arguments but 1 lifetime argument was supplied --> src/common/generate_within_unsorted_iter.rs:44:32 | 44 | mut gen_scope: Scope<'a, (), NearestNeighbour<A, T>>, | ^^^^^ -- supplied 1 lifetime argument | | | expected 2 lifetime arguments | ::: src/fixed/query/within_unsorted_iter.rs:18:5 | 18 | / generate_within_unsorted_iter!( 19 | | (r#"Finds all elements within `dist` of `query`, using the specified 20 | | distance metric function. 21 | | ... | 46 | | ```"#) 47 | | ); | |_____- in this macro invocation | note: struct defined here, with 2 lifetime parameters: `'scope`, `'a` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/generator-0.8.1/src/scope.rs:16:12 | 16 | pub struct Scope<'scope, 'a, A, T> { | ^^^^^ ------ -- = note: this error originates in the macro `generate_within_unsorted_iter` (in Nightly builds, run with -Z macro-backtrace for more info) help: add missing lifetime argument | 44 | mut gen_scope: Scope<'a, 'a, (), NearestNeighbour<A, T>>, | ++++
bound is defined in more than one place: src/test_utils.rs#L314
error: bound is defined in more than one place --> src/test_utils.rs:314:5 | 314 | A: Axis, | ^ ... 323 | A: BestFromDists<T, B>, | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#multiple_bound_locations
bound is defined in more than one place: src/test_utils.rs#L133
error: bound is defined in more than one place --> src/test_utils.rs:133:45 | 133 | pub fn build_populated_tree_immutable_float<A: Axis, T: Content, const K: usize, const B: usize>( | ^ ... 141 | A: BestFromDists<T, B>, | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#multiple_bound_locations = note: `-D clippy::multiple-bound-locations` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::multiple_bound_locations)]`
struct takes 2 lifetime arguments but 1 lifetime argument was supplied: src/common/generate_within_unsorted_iter.rs#L44
error[E0107]: struct takes 2 lifetime arguments but 1 lifetime argument was supplied --> src/common/generate_within_unsorted_iter.rs:44:32 | 44 | mut gen_scope: Scope<'a, (), NearestNeighbour<A, T>>, | ^^^^^ -- supplied 1 lifetime argument | | | expected 2 lifetime arguments | ::: src/float/query/within_unsorted_iter.rs:65:5 | 65 | / generate_float_within_unsorted_iter!( 66 | | "use std::fs::File; 67 | | use memmap::MmapOptions; ... | 70 | | let tree = unsafe { rkyv::archived_root::<KdTree<f64, 3>>(&mmap) };" 71 | | ); | |_____- in this macro invocation | note: struct defined here, with 2 lifetime parameters: `'scope`, `'a` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/generator-0.8.1/src/scope.rs:16:12 | 16 | pub struct Scope<'scope, 'a, A, T> { | ^^^^^ ------ -- = note: this error originates in the macro `generate_within_unsorted_iter` which comes from the expansion of the macro `generate_float_within_unsorted_iter` (in Nightly builds, run with -Z macro-backtrace for more info) help: add missing lifetime argument | 44 | mut gen_scope: Scope<'a, 'a, (), NearestNeighbour<A, T>>, | ++++
struct takes 2 lifetime arguments but 1 lifetime argument was supplied: src/common/generate_within_unsorted_iter.rs#L44
error[E0107]: struct takes 2 lifetime arguments but 1 lifetime argument was supplied --> src/common/generate_within_unsorted_iter.rs:44:32 | 44 | mut gen_scope: Scope<'a, (), NearestNeighbour<A, T>>, | ^^^^^ -- supplied 1 lifetime argument | | | expected 2 lifetime arguments | ::: src/float/query/within_unsorted_iter.rs:43:5 | 43 | / generate_float_within_unsorted_iter!( 44 | | " 45 | | let mut tree: KdTree<f64, 3> = KdTree::new(); 46 | | tree.add(&[1.0, 2.0, 5.0], 100); 47 | | tree.add(&[2.0, 3.0, 6.0], 101);" 48 | | ); | |_____- in this macro invocation | note: struct defined here, with 2 lifetime parameters: `'scope`, `'a` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/generator-0.8.1/src/scope.rs:16:12 | 16 | pub struct Scope<'scope, 'a, A, T> { | ^^^^^ ------ -- = note: this error originates in the macro `generate_within_unsorted_iter` which comes from the expansion of the macro `generate_float_within_unsorted_iter` (in Nightly builds, run with -Z macro-backtrace for more info) help: add missing lifetime argument | 44 | mut gen_scope: Scope<'a, 'a, (), NearestNeighbour<A, T>>, | ++++
struct takes 2 lifetime arguments but 1 lifetime argument was supplied: src/common/generate_within_unsorted_iter.rs#L44
error[E0107]: struct takes 2 lifetime arguments but 1 lifetime argument was supplied --> src/common/generate_within_unsorted_iter.rs:44:32 | 44 | mut gen_scope: Scope<'a, (), NearestNeighbour<A, T>>, | ^^^^^ -- supplied 1 lifetime argument | | | expected 2 lifetime arguments | ::: src/fixed/query/within_unsorted_iter.rs:18:5 | 18 | / generate_within_unsorted_iter!( 19 | | (r#"Finds all elements within `dist` of `query`, using the specified 20 | | distance metric function. ... | 46 | | ```"#) 47 | | ); | |_____- in this macro invocation | note: struct defined here, with 2 lifetime parameters: `'scope`, `'a` --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/generator-0.8.1/src/scope.rs:16:12 | 16 | pub struct Scope<'scope, 'a, A, T> { | ^^^^^ ------ -- = note: this error originates in the macro `generate_within_unsorted_iter` (in Nightly builds, run with -Z macro-backtrace for more info) help: add missing lifetime argument | 44 | mut gen_scope: Scope<'a, 'a, (), NearestNeighbour<A, T>>, | ++++
bound is defined in more than one place: src/test_utils.rs#L314
error: bound is defined in more than one place --> src/test_utils.rs:314:5 | 314 | A: Axis, | ^ ... 323 | A: BestFromDists<T, B>, | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#multiple_bound_locations
bound is defined in more than one place: src/test_utils.rs#L133
error: bound is defined in more than one place --> src/test_utils.rs:133:45 | 133 | pub fn build_populated_tree_immutable_float<A: Axis, T: Content, const K: usize, const B: usize>( | ^ ... 141 | A: BestFromDists<T, B>, | ^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#multiple_bound_locations = note: `-D clippy::multiple-bound-locations` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::multiple_bound_locations)]`
unexpected `cfg` condition value: `unreliable_select_nth_unstable`: src/immutable/float/kdtree.rs#L427
error: unexpected `cfg` condition value: `unreliable_select_nth_unstable` --> src/immutable/float/kdtree.rs:427:11 | 427 | #[cfg(feature = "unreliable_select_nth_unstable")] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: expected values for `feature` are: `default`, `f16`, `global_allocate`, `half`, `immutable`, `rand`, `rand_chacha`, `rayon`, `rkyv`, `serde`, `serde_derive`, `serde_with`, `serialize`, `serialize_rkyv`, `simd`, `test_utils`, `tracing`, `tracing-subscriber` = help: consider adding `unreliable_select_nth_unstable` as a feature in `Cargo.toml` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration
unexpected `cfg` condition value: `unreliable_select_nth_unstable`: src/immutable/float/kdtree.rs#L390
error: unexpected `cfg` condition value: `unreliable_select_nth_unstable` --> src/immutable/float/kdtree.rs:390:15 | 390 | #[cfg(not(feature = "unreliable_select_nth_unstable"))] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: expected values for `feature` are: `default`, `f16`, `global_allocate`, `half`, `immutable`, `rand`, `rand_chacha`, `rayon`, `rkyv`, `serde`, `serde_derive`, `serde_with`, `serialize`, `serialize_rkyv`, `simd`, `test_utils`, `tracing`, `tracing-subscriber` = help: consider adding `unreliable_select_nth_unstable` as a feature in `Cargo.toml` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration
unexpected `cfg` condition name: `doc_cfg`: src/lib.rs#L89
error: unexpected `cfg` condition name: `doc_cfg` --> src/lib.rs:89:12 | 89 | #[cfg_attr(doc_cfg, doc(cfg(feature = "serialize")))] | ^^^^^^^ | = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, `windows` = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration = note: `-D unexpected-cfgs` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unexpected_cfgs)]`
Lint (Nightly)
Clippy had exited with the 101 exit code: Updating crates.io index Locking 180 packages to latest compatible versions Adding ahash v0.7.8 (latest: v0.8.11) Adding anes v0.1.6 (latest: v0.2.0) Adding hashbrown v0.12.3 (latest: v0.14.5) Adding indexmap v1.9.3 (latest: v2.2.6) Adding itertools v0.10.5 (latest: v0.12.1) Adding nu-ansi-term v0.46.0 (latest: v0.50.0) Adding ptr_meta v0.1.4 (latest: v0.2.0) Adding ptr_meta_derive v0.1.4 (latest: v0.2.0) Adding radium v0.7.0 (latest: v1.1.0) Adding strsim v0.10.0 (latest: v0.11.1) Adding syn v1.0.109 (latest: v2.0.60) Adding wasi v0.11.0+wasi-snapshot-preview1 (latest: v0.13.0+wasi-0.2.0) Adding windows v0.54.0 (latest: v0.56.0) Adding windows-core v0.52.0 (latest: v0.56.0) Adding windows-core v0.54.0 (latest: v0.56.0) Adding windows-sys v0.48.0 (latest: v0.52.0) Adding windows-targets v0.48.5 (latest: v0.52.5) Adding windows_aarch64_gnullvm v0.48.5 (latest: v0.52.5) Adding windows_aarch64_msvc v0.48.5 (latest: v0.52.5) Adding windows_i686_gnu v0.48.5 (latest: v0.52.5) Adding windows_i686_msvc v0.48.5 (latest: v0.52.5) Adding windows_x86_64_gnu v0.48.5 (latest: v0.52.5) Adding windows_x86_64_gnullvm v0.48.5 (latest: v0.52.5) Adding windows_x86_64_msvc v0.48.5 (latest: v0.52.5) Adding wyz v0.5.1 (latest: v0.6.1) Downloading crates ... Downloaded darling_macro v0.20.8 Downloaded bytemuck v1.15.0 Downloaded autocfg v1.3.0 Downloaded crossbeam-epoch v0.9.18 Downloaded cfg-if v1.0.0 Downloaded crossbeam-deque v0.8.5 Downloaded ahash v0.7.8 Downloaded darling_core v0.20.8 Downloaded darling v0.20.8 Downloaded chrono v0.4.38 Downloaded bitvec v1.0.1 Downloaded sorted-vec v0.8.3 Downloaded unicode-ident v1.0.12 Downloaded serde_json v1.0.116 Downloaded tracing-attributes v0.1.27 Downloaded wyz v0.5.1 Downloaded syn v1.0.109 Downloaded rayon v1.10.0 Downloaded fixed v1.27.0 Downloaded libc v0.2.154 Downloaded version_check v0.9.4 Downloaded ubyte v0.10.4 Downloaded typenum v1.17.0 Downloaded tracing-subscriber v0.3.18 Downloaded tracing-log v0.2.0 Downloaded tracing-core v0.1.32 Downloaded tracing v0.1.40 Downloaded tinyvec v1.6.0 Downloaded time-macros v0.2.18 Downloaded time v0.3.36 Downloaded thread_local v1.1.8 Downloaded tap v1.0.1 Downloaded syn v2.0.60 Downloaded strsim v0.10.0 Downloaded smallvec v1.13.2 Downloaded sharded-slab v0.1.7 Downloaded serde_with_macros v3.8.1 Downloaded serde_with v3.8.1 Downloaded serde v1.0.200 Downloaded rustversion v1.0.15 Downloaded rkyv_derive v0.7.44 Downloaded rkyv v0.7.44 Downloaded rayon-core v1.12.1 Downloaded rand_core v0.6.4 Downloaded rand_chac
Lint (Stable)
Clippy had exited with the 101 exit code: Updating crates.io index Downloading crates ... Downloaded bytemuck v1.15.0 Downloaded crossbeam-utils v0.8.19 Downloaded crossbeam-epoch v0.9.18 Downloaded chrono v0.4.38 Downloaded nu-ansi-term v0.46.0 Downloaded rand_chacha v0.3.1 Downloaded serde_derive v1.0.200 Downloaded rustversion v1.0.15 Downloaded seahash v4.1.0 Downloaded tinyvec_macros v0.1.1 Downloaded ubyte v0.10.4 Downloaded wyz v0.5.1 Downloaded unicode-ident v1.0.12 Downloaded tracing v0.1.40 Downloaded tracing-subscriber v0.3.18 Downloaded syn v2.0.60 Downloaded syn v1.0.109 Downloaded libc v0.2.154 Downloaded time v0.3.36 Downloaded serde_with v3.8.1 Downloaded fixed v1.27.0 Downloaded typenum v1.17.0 Downloaded tracing-core v0.1.32 Downloaded serde_with_macros v3.8.1 Downloaded serde v1.0.200 Downloaded rayon-core v1.12.1 Downloaded rayon v1.10.0 Downloaded version_check v0.9.4 Downloaded tracing-log v0.2.0 Downloaded thread_local v1.1.8 Downloaded strsim v0.10.0 Downloaded sorted-vec v0.8.3 Downloaded smallvec v1.13.2 Downloaded sharded-slab v0.1.7 Downloaded tracing-attributes v0.1.27 Downloaded tinyvec v1.6.0 Downloaded time-macros v0.2.18 Downloaded time-core v0.1.2 Downloaded tap v1.0.1 Downloaded serde_json v1.0.116 Downloaded init_with v1.1.0 Downloaded ryu v1.0.17 Downloaded rkyv v0.7.44 Downloaded rand v0.8.5 Downloaded proc-macro2 v1.0.81 Downloaded indexmap v2.2.6 Downloaded darling_core v0.20.8 Downloaded rkyv_derive v0.7.44 Downloaded pin-project-lite v0.2.14 Downloaded overload v0.1.1 Downloaded once_cell v1.19.0 Downloaded libm v0.2.8 Downloaded getrandom v0.2.14 Downloaded divrem v1.0.0 Downloaded rand_core v0.6.4 Downloaded ptr_meta v0.1.4 Downloaded ordered-float v4.2.0 Downloaded num-conv v0.1.0 Downloaded lazy_static v1.4.0 Downloaded indexmap v1.9.3 Downloaded iana-time-zone v0.1.60 Downloaded hex v0.4.3 Downloaded hashbrown v0.14.5 Downloaded hashbrown v0.12.3 Downloaded half v2.4.1 Downloaded generator v0.8.1 Downloaded equivalent v1.0.1 Downloaded elapsed v0.1.2 Downloaded either v1.11.0 Downloaded radium v0.7.0 Downloaded quote v1.0.36 Downloaded ptr_meta_derive v0.1.4 Downloaded ppv-lite86 v0.2.17 Downloaded powerfmt v0.2.0 Downloaded num-traits v0.2.19 Downloaded log v0.4.21 Downloaded ident_case v1.0.1 Downloaded funty v2.0.0 Downloaded fnv v1.0.7 Downloaded deranged v0.3.11 Downloaded darling_macro v0.20.8 Downloaded darling v0.20.8 Downloaded itoa v1.0.11 Downloaded itertools v0.12.1 Downloaded doc-comment v0.3.3 Downloaded bitvec v1.0.1 Downloaded crossbeam-deque v0.8.5 Downloaded cfg-if v1.0.0 Downloaded cc v1.0.96 Downloaded base64 v0.22.1 Downloaded az v1.2.1 Downloaded autocfg v1.3.0 �[32
Run Tests (Nightly, all features enabled): src/common/generate_within_unsorted_iter.rs#L44
struct takes 2 lifetime arguments but 1 lifetime argument was supplied
Run Tests (Nightly, all features enabled): src/common/generate_within_unsorted_iter.rs#L44
struct takes 2 lifetime arguments but 1 lifetime argument was supplied
Run Tests (Nightly, all features enabled): src/common/generate_within_unsorted_iter.rs#L44
struct takes 2 lifetime arguments but 1 lifetime argument was supplied
Run Tests (Nightly, all features enabled)
Process completed with exit code 101.
Run Tests (Stable, no crate features enabled that require unstable Rust): src/common/generate_within_unsorted_iter.rs#L44
struct takes 2 lifetime arguments but 1 lifetime argument was supplied
Run Tests (Stable, no crate features enabled that require unstable Rust): src/common/generate_within_unsorted_iter.rs#L44
struct takes 2 lifetime arguments but 1 lifetime argument was supplied
Run Tests (Stable, no crate features enabled that require unstable Rust): src/common/generate_within_unsorted_iter.rs#L44
struct takes 2 lifetime arguments but 1 lifetime argument was supplied
Run Tests (Stable, no crate features enabled that require unstable Rust)
Process completed with exit code 101.
Cargo Check (Stable): src/common/generate_within_unsorted_iter.rs#L44
struct takes 2 lifetime arguments but 1 lifetime argument was supplied
Cargo Check (Stable): src/common/generate_within_unsorted_iter.rs#L44
struct takes 2 lifetime arguments but 1 lifetime argument was supplied
Cargo Check (Stable): src/common/generate_within_unsorted_iter.rs#L20
borrowed data escapes outside of method
Cargo Check (Stable): src/common/generate_within_unsorted_iter.rs#L66
borrowed data escapes outside of method
Cargo Check (Stable): src/common/generate_within_unsorted_iter.rs#L20
borrowed data escapes outside of method
Cargo Check (Stable): src/common/generate_within_unsorted_iter.rs#L66
borrowed data escapes outside of method
Cargo Check (Stable)
Process completed with exit code 1.
Cargo Check (Nightly): src/lib.rs#L89
unexpected `cfg` condition name: `doc_cfg`
Cargo Check (Nightly): src/immutable/float/kdtree.rs#L390
unexpected `cfg` condition value: `unreliable_select_nth_unstable`
Cargo Check (Nightly): src/immutable/float/kdtree.rs#L427
unexpected `cfg` condition value: `unreliable_select_nth_unstable`
Cargo Check (Nightly): src/common/generate_within_unsorted_iter.rs#L44
struct takes 2 lifetime arguments but 1 lifetime argument was supplied
Cargo Check (Nightly): src/common/generate_within_unsorted_iter.rs#L44
struct takes 2 lifetime arguments but 1 lifetime argument was supplied
Cargo Check (Nightly): src/common/generate_within_unsorted_iter.rs#L44
struct takes 2 lifetime arguments but 1 lifetime argument was supplied
Cargo Check (Nightly)
Process completed with exit code 1.
Run Tests (Nightly, all features enabled): src/immutable/float/kdtree.rs#L390
unexpected `cfg` condition value: `unreliable_select_nth_unstable`
Run Tests (Nightly, all features enabled): src/immutable/float/kdtree.rs#L427
unexpected `cfg` condition value: `unreliable_select_nth_unstable`