File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ pub async fn create_client(options: &HttpOptions) -> anyhow::Result<reqwest::Cli
87
87
88
88
for cert in & options. additional_root_certificates {
89
89
log:: info!( "Adding additional root certificate: {}" , cert. display( ) ) ;
90
- let cert = std:: fs:: read ( & cert)
90
+ let cert = std:: fs:: read ( cert)
91
91
. with_context ( || format ! ( "Reading certificate: {}" , cert. display( ) ) ) ?;
92
92
let certs = reqwest:: tls:: Certificate :: from_pem_bundle ( & cert) ?;
93
93
for cert in certs {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ pub struct OrNone<'a, T>(pub &'a Option<T>)
7
7
where
8
8
T : Display ;
9
9
10
- impl < ' a , T > Display for OrNone < ' a , T >
10
+ impl < T > Display for OrNone < ' _ , T >
11
11
where
12
12
T : Display ,
13
13
{
You can’t perform that action at this time.
0 commit comments