Update a few dependencies (#40)
All checks were successful
continuous-integration/drone/push Build is passing

Unable to update rustls for now (`actix-web` depends on a too old version of `rustls`)

Reviewed-on: #40
This commit is contained in:
2023-04-11 12:37:48 +00:00
parent a3052e08e7
commit e7d5bac8db
3 changed files with 362 additions and 242 deletions

View File

@ -55,7 +55,7 @@ impl CustomCertClientVerifier {
let parsed_crl = pem::parse(crl_file)
.map_err(|e| encpasulate_error(e, "Failed to decode CRL file!"))?;
Some(parsed_crl.contents)
Some(parsed_crl.into_contents())
} else {
None
};