Bump MSRV to 1.81 (#582)
This is required due to the `hybrid-array` crate, which has become a transitive dependency of the majority of our dependencies and will be required in the very near future.
This commit is contained in:
+3
-4
@@ -96,10 +96,9 @@ impl MsRoots {
|
||||
}
|
||||
}
|
||||
|
||||
MsRoots::new(&data).map(Some).map_err(|e| {
|
||||
error!("error parsing msroots: {:?}", e);
|
||||
e
|
||||
})
|
||||
MsRoots::new(&data)
|
||||
.map(Some)
|
||||
.inspect_err(|e| error!("error parsing msroots: {:?}", e))
|
||||
}
|
||||
|
||||
/// Write `msroots` file to YubiKey
|
||||
|
||||
Reference in New Issue
Block a user