sigstore / sigstore-rs

An experimental Rust crate for sigstore
https://sigstore.github.io/sigstore-rs/sigstore/
Apache License 2.0
167 stars 51 forks source link

Audit for unwraps and replace with more descriptive error handling #116

Open lkatalin opened 2 years ago

lkatalin commented 2 years ago

Find examples of unwrap() and replace with more descriptive error handling.

greyspectrum commented 2 years ago

I can take this one.

tarcieri commented 2 years ago

FYI: clippy can lint for these: clippy::unwrap_used.

You might also consider clippy::panic and/or clippy::panic_in_result_fn