I'm trying to update the EasyBuild easyconfig for SKA2 to version 0.5.0.
After finalising the crates list, I see this error:
Compiling ska v0.5.0 (/dev/shm/SKA2/0.5.0/GCCcore-13.3.0/easybuild_vendor/ska-0.5.0)
error[E0658]: use of unstable library feature `unsigned_is_multiple_of`
--> src/ska_dict.rs:118:28
|
118 | if !iter_reads.is_multiple_of(step) {
| ^^^^^^^^^^^^^^
|
= note: see issue #128101 <https://github.com/rust-lang/rust/issues/128101> for more information
Looking at the upstream issue, it seems that you're using a feature merged in Rust 1.87 so that is the minimum requirement when building from source - is that correct?
I'm trying to update the EasyBuild easyconfig for
SKA2to version0.5.0.After finalising the crates list, I see this error:
Looking at the upstream issue, it seems that you're using a feature merged in Rust
1.87so that is the minimum requirement when building from source - is that correct?