From 11670a5d3f3bb65ba0780984f256a631ffa7860a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 3 Aug 2025 20:11:26 +0000 Subject: [PATCH] chore(deps): update rust crate notify-debouncer-full to 0.6 (v2) (#2889) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Fabian-Lars Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/16708971437 Co-authored-by: FabianLars --- src/reqwest_cookie_store.rs | 2 +- src/scope.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/reqwest_cookie_store.rs b/src/reqwest_cookie_store.rs index 6a7c018..0b71902 100644 --- a/src/reqwest_cookie_store.rs +++ b/src/reqwest_cookie_store.rs @@ -30,7 +30,7 @@ fn set_cookies( fn cookies(cookie_store: &CookieStore, url: &url::Url) -> Option { let s = cookie_store .get_request_values(url) - .map(|(name, value)| format!("{}={}", name, value)) + .map(|(name, value)| format!("{name}={value}")) .collect::>() .join("; "); diff --git a/src/scope.rs b/src/scope.rs index 2123f21..e7638c2 100644 --- a/src/scope.rs +++ b/src/scope.rs @@ -52,7 +52,7 @@ impl<'de> Deserialize<'de> for Entry { }; Ok(Entry { url: parse_url_pattern(&url).map_err(|e| { - serde::de::Error::custom(format!("`{}` is not a valid URL pattern: {e}", url)) + serde::de::Error::custom(format!("`{url}` is not a valid URL pattern: {e}")) })?, }) })