base64 usage

This commit is contained in:
Jörn-Michael Miehe 2025-07-03 16:20:39 +00:00
parent 6c385ffeea
commit 6814f74484
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
use std::{convert::Infallible, fmt, io, time::Duration}; use std::{convert::Infallible, fmt, io, time::Duration};
use base64::{Engine, prelude::BASE64_URL_SAFE_NO_PAD as BASE64URL}; use base64::prelude::{BASE64_URL_SAFE_NO_PAD as BASE64URL, Engine};
use blake2b_simd::Params as Blake2b; use blake2b_simd::Params as Blake2b;
use clap::{Parser, builder::TypedValueParser, value_parser}; use clap::{Parser, builder::TypedValueParser, value_parser};
use log::LevelFilter; use log::LevelFilter;

View file

@ -4,7 +4,7 @@ mod uploading;
use std::{ffi::OsStr, fs, io::Read, path::Path}; use std::{ffi::OsStr, fs, io::Read, path::Path};
use base64::{Engine, prelude::BASE64_STANDARD_NO_PAD as BASE64}; use base64::prelude::{BASE64_STANDARD_NO_PAD as BASE64, Engine};
use blake2b_simd::Params as Blake2b; use blake2b_simd::Params as Blake2b;
pub use checked::Checked; pub use checked::Checked;