feat: upgrade to edition 2024
All checks were successful
/ build (push) Successful in 1s
/ check-integration-tests (push) Successful in 9s
/ report-size (push) Successful in 1s

Finally pulled the trigger!
This commit is contained in:
Jalil David Salamé Messina 2025-05-16 18:40:25 +02:00
parent 95cfb31b9a
commit ccdc651584
Signed by: jalil
GPG key ID: F016B9E770737A0B
5 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
//! Deal with the DNS records
use miette::{ensure, miette, LabeledSpan, Result};
use miette::{LabeledSpan, Result, ensure, miette};
pub fn validate_record_str(record: &str) -> Result<()> {
validate_line(0, record).map_err(|err| err.with_source_code(String::from(record)))