Package Details: pam_rssh 1.1.0-2

Git Clone URL: https://aur.archlinux.org/pam_rssh.git (read-only, click to copy)
Package Base: pam_rssh
Description: A PAM module that provides ssh-agent based authentication
Upstream URL: https://github.com/z4yx/pam_rssh
Keywords: agent pam ssh ssh-agent sudo yubikey
Licenses: MIT
Submitter: peelz
Maintainer: peelz
Last Packager: peelz
Votes: 1
Popularity: 0.004540
First Submitted: 2024-03-29 20:28 (UTC)
Last Updated: 2024-11-26 02:17 (UTC)

Dependencies (4)

Required by (0)

Sources (2)

Latest Comments

peelz commented on 2024-11-26 02:19 (UTC)

Thanks for reporting. Apparently it's due to a regression in Rust's stdlib: https://github.com/rust-lang/rust/issues/125319

I pushed an update. Let me know if it works for you.

rmsc commented on 2024-11-25 17:48 (UTC)

Failing to build here:

(...)
  Compiling time v0.3.20
(...)
error[E0282]: type annotations needed for `Box<_>`
  --> /home/renato/.cargo/registry/src/index.crates.io-6f17d22bba15001f/time-0.3.20/src/format_description/parse/mod.rs:83:9
   |
83 |     let items = format_items
   |         ^^^^^
...
86 |     Ok(items.into())
   |              ---- type must be known at this point
   |
help: consider giving `items` an explicit type, where the placeholders `_` are specified
   |
83 |     let items: Box<_> = format_items
   |              ++++++++

For more information about this error, try `rustc --explain E0282`.
error: could not compile `time` (lib) due to 1 previous error
(...)