dependency updates, fix changed method name, add base64

This commit is contained in:
2025-03-07 01:41:27 +01:00
parent bd46188d6e
commit de0deaa638
10 changed files with 2166 additions and 1120 deletions

View File

@ -363,7 +363,7 @@ impl Authentication for FabFire {
let data = data.get(..16).ok_or(FabFireError::ParseError)?;
let authid = uuid::Uuid::from_slice(data)
.unwrap()
.to_hyphenated()
.hyphenated()
.encode_lower(&mut Uuid::encode_buffer())
.to_string();
let prov = ThisProvider::<AuthId>::with(&authid);