kanidm / webauthn-rs

An implementation of webauthn components for Rustlang servers
Mozilla Public License 2.0
488 stars 80 forks source link

Pin clap to 4.4.18 (last version supporting rustc 1.70.0) #419

Closed micolous closed 7 months ago

micolous commented 7 months ago

clap 4.5.0 wants rustc 1.74, but our MSRV is still 1.70:

 error: package `clap_derive v4.5.0` cannot be built because it requires rustc 1.74 or newer, while the currently active rustc version is 1.70.0
Either upgrade to rustc 1.74 or newer, or use
cargo update -p clap_derive@4.5.0 --precise ver
where `ver` is the latest version of `clap_derive` supporting rustc 1.70.0
Error: Process completed with exit code 101.
micolous commented 7 months ago

The nightly failure appears to be deeper in our dependency tree, which will be fixed by https://github.com/tkaitchuck/aHash/issues/188