[wip] impl Client for ureq::Agent

- clippy fix
This commit is contained in:
Jörn-Michael Miehe 2025-06-12 16:25:15 +00:00
parent ed10f269c8
commit 2edc690331
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ impl fmt::Debug for AppState {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("AppState") f.debug_struct("AppState")
.field("inner", &self.inner) .field("inner", &self.inner)
.finish() .finish_non_exhaustive()
} }
} }

View file

@ -83,7 +83,7 @@ impl CacheFile {
pub fn from_args(args: &Cli, share_id: String) -> Self { pub fn from_args(args: &Cli, share_id: String) -> Self {
Self { Self {
file_name: Self::cache_file(&args), file_name: Self::cache_file(args),
uri: args.get_uri(), uri: args.get_uri(),
alias_id: args.alias.clone(), alias_id: args.alias.clone(),
share_id, share_id,