style: remove extra explicit lifetime
This commit is contained in:
parent
220a4a3316
commit
04ebac7d6c
1 changed files with 2 additions and 2 deletions
|
@ -4,9 +4,9 @@ use crate::{
|
||||||
LibError,
|
LibError,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub async fn dane<'d>(
|
pub async fn dane(
|
||||||
dns: &DnsClient,
|
dns: &DnsClient,
|
||||||
cert: &CertificateDer<'d>,
|
cert: &CertificateDer<'_>,
|
||||||
host: &str,
|
host: &str,
|
||||||
port: u16,
|
port: u16,
|
||||||
) -> Result<CertFingerprint, LibError> {
|
) -> Result<CertFingerprint, LibError> {
|
||||||
|
|
Loading…
Reference in a new issue