From 761676ac03b0ec9ec0b99c8b45b6acad3e72ac89 Mon Sep 17 00:00:00 2001 From: Dmitry Dygalo Date: Sun, 23 Feb 2025 20:47:05 +0100 Subject: [PATCH] chore: Fix clippy warnings Signed-off-by: Dmitry Dygalo --- bindings/python/CHANGELOG.md | 4 ++++ bindings/python/Cargo.toml | 4 ++-- bindings/python/src/lib.rs | 4 ++-- css-inline/src/html/element.rs | 6 ++---- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/bindings/python/CHANGELOG.md b/bindings/python/CHANGELOG.md index 418d153..3d3db84 100644 --- a/bindings/python/CHANGELOG.md +++ b/bindings/python/CHANGELOG.md @@ -2,6 +2,10 @@ ## [Unreleased] +### Changed + +- Update `PyO3` to `0.23.0`. + ## [0.14.6] - 2024-12-27 ### Fixed diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index 99cd691..7a748ed 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -14,8 +14,8 @@ crate-type = ["cdylib"] built = { version = "0.7.1", features = ["cargo-lock", "chrono"] } [dependencies] -pyo3 = { version = "0.22.0", features = ["extension-module", "abi3-py37"] } -pyo3-built = "0.5" +pyo3 = { version = "0.23.0", features = ["extension-module", "abi3-py37"] } +pyo3-built = "0.6" rayon = "1" url = "2" diff --git a/bindings/python/src/lib.rs b/bindings/python/src/lib.rs index e243077..6f09b4e 100644 --- a/bindings/python/src/lib.rs +++ b/bindings/python/src/lib.rs @@ -363,7 +363,7 @@ fn inline_many_fragments_impl( Ok(output.map_err(InlineErrorWrapper)?) } -#[allow(dead_code)] +#[allow(dead_code, clippy::needless_raw_string_hashes)] mod build { include!(concat!(env!("OUT_DIR"), "/built.rs")); } @@ -377,7 +377,7 @@ fn css_inline(py: Python<'_>, module: &Bound<'_, PyModule>) -> PyResult<()> { module.add_wrapped(wrap_pyfunction!(inline_fragment))?; module.add_wrapped(wrap_pyfunction!(inline_many))?; module.add_wrapped(wrap_pyfunction!(inline_many_fragments))?; - let inline_error = py.get_type_bound::(); + let inline_error = py.get_type::(); inline_error.setattr("__doc__", INLINE_ERROR_DOCSTRING)?; module.add("InlineError", inline_error)?; module.add("__build__", pyo3_built::pyo3_built!(py, build))?; diff --git a/css-inline/src/html/element.rs b/css-inline/src/html/element.rs index 95b91e0..7272fb4 100644 --- a/css-inline/src/html/element.rs +++ b/css-inline/src/html/element.rs @@ -183,7 +183,7 @@ impl selectors::Element for Element<'_> { ns_url.clone(), local_name.clone().into_inner(), )) - .map_or(false, |value| operation.eval_str(value)), + .is_some_and(|value| operation.eval_str(value)), } } @@ -236,9 +236,7 @@ impl selectors::Element for Element<'_> { fn has_id(&self, id: &LocalName, case_sensitivity: CaseSensitivity) -> bool { self.attributes() .get(local_name!("id")) - .map_or(false, |id_attr| { - case_sensitivity.eq(id.as_bytes(), id_attr.as_bytes()) - }) + .is_some_and(|id_attr| case_sensitivity.eq(id.as_bytes(), id_attr.as_bytes())) } #[inline]