Skip to content

Commit af22ae0

Browse files
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 <[email protected]>
1 parent 2f24c7a commit af22ae0

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

Cargo.lock

Lines changed: 10 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/fs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ notify = { version = "8", optional = true, features = [
4141
"serde",
4242
"serialization-compat-6",
4343
] }
44-
notify-debouncer-full = { version = "0.5", optional = true }
44+
notify-debouncer-full = { version = "0.6", optional = true }
4545
dunce = { workspace = true }
4646
percent-encoding = "2"
4747

plugins/http/src/reqwest_cookie_store.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ fn set_cookies(
3030
fn cookies(cookie_store: &CookieStore, url: &url::Url) -> Option<HeaderValue> {
3131
let s = cookie_store
3232
.get_request_values(url)
33-
.map(|(name, value)| format!("{}={}", name, value))
33+
.map(|(name, value)| format!("{name}={value}"))
3434
.collect::<Vec<_>>()
3535
.join("; ");
3636

plugins/http/src/scope.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ impl<'de> Deserialize<'de> for Entry {
5252
};
5353
Ok(Entry {
5454
url: parse_url_pattern(&url).map_err(|e| {
55-
serde::de::Error::custom(format!("`{}` is not a valid URL pattern: {e}", url))
55+
serde::de::Error::custom(format!("`{url}` is not a valid URL pattern: {e}"))
5656
})?,
5757
})
5858
})

0 commit comments

Comments
 (0)