Package Details: conserve 23.11.0-1

Git Clone URL: https://aur.archlinux.org/conserve.git (read-only, click to copy)
Package Base: conserve
Description: Robust portable backup tool written in Rust
Upstream URL: https://github.com/sourcefrog/conserve
Keywords: archive backup
Licenses: GPL2
Submitter: orhun
Maintainer: orhun
Last Packager: orhun
Votes: 0
Popularity: 0.000000
First Submitted: 2020-09-17 13:58 (UTC)
Last Updated: 2023-11-04 08:02 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

JP-Ellis commented on 2021-02-16 05:29 (UTC)

Thanks for the fix!

orhun commented on 2021-02-16 01:39 (UTC) (edited on 2021-02-16 01:40 (UTC) by orhun)

@JP-Ellis

Hmm, it seems like it's using nightly features indeed:

error[E0554]: `#![feature]` may not be used on the stable release channel
  --> /build/.cargo/registry/src/github.com-1ecc6299db9ec823/blake2-rfc-0.2.18/src/lib.rs:19:31
   |
19 | #![cfg_attr(feature = "simd", feature(platform_intrinsics, repr_simd))]
   |                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error[E0554]: `#![feature]` may not be used on the stable release channel
  --> /build/.cargo/registry/src/github.com-1ecc6299db9ec823/blake2-rfc-0.2.18/src/lib.rs:20:35
   |
20 | #![cfg_attr(feature = "simd_opt", feature(cfg_target_feature))]
   |                                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^

error[E0554]: `#![feature]` may not be used on the stable release channel
  --> /build/.cargo/registry/src/github.com-1ecc6299db9ec823/blake2-rfc-0.2.18/src/lib.rs:21:35
   |
21 | #![cfg_attr(feature = "simd_asm", feature(asm))]
   |                                   ^^^^^^^^^^^^

Fixed with -2

JP-Ellis commented on 2021-02-15 00:38 (UTC)

Should the PKGBUILD use --all-features?

Specifically, this enables the blake2-rfc/simd_asm feature which is a nightly-only feature, and thus is not compatible with non-nightly version of Rust.