Skip to content

Commit

Permalink
refactor: simplify base64 engine import in rrsig_rdata.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
joalopez1206 authored and FranciscaOrtegaG committed Oct 9, 2024
1 parent b98d75f commit 5613631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/message/rdata/rrsig_rdata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::message::resource_record::{FromBytes, ToBytes};
use crate::domain_name::DomainName;
use crate::message::rrtype::Rrtype;
use base64::engine::general_purpose;
use base64::{Engine as _};
use base64::Engine as _;
use std::fmt;

#[derive(Clone, Debug, PartialEq)]
Expand Down

0 comments on commit 5613631

Please sign in to comment.