From 3d12afaf5b4716780397ad7fb5b60ec00a74496c Mon Sep 17 00:00:00 2001 From: Nail Sharipov Date: Mon, 9 Feb 2026 21:21:07 +0300 Subject: [PATCH 1/2] fix example --- iOverlay/src/core/relate.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/iOverlay/src/core/relate.rs b/iOverlay/src/core/relate.rs index b54380a..e62cd7e 100644 --- a/iOverlay/src/core/relate.rs +++ b/iOverlay/src/core/relate.rs @@ -22,10 +22,9 @@ use i_shape::int::shape::{IntContour, IntShape}; /// /// # Example /// -/// ```ignore +/// ``` /// use i_overlay::core::relate::PredicateOverlay; /// use i_overlay::core::overlay::ShapeType; -/// use i_overlay::segm::build::BuildSegments; /// /// let mut overlay = PredicateOverlay::new(16); /// // Add subject and clip segments... From 5bfd7b01d1752fa606ac2931e4f008eca26fe045 Mon Sep 17 00:00:00 2001 From: Nail Sharipov Date: Mon, 9 Feb 2026 21:21:22 +0300 Subject: [PATCH 2/2] up version --- iOverlay/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/iOverlay/Cargo.toml b/iOverlay/Cargo.toml index ef656b3..fefb081 100644 --- a/iOverlay/Cargo.toml +++ b/iOverlay/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "i_overlay" -version = "4.3.0" +version = "4.4.0" authors = ["Nail Sharipov "] edition = "2024" description = "Boolean Operations for 2D Polygons: Supports intersection, union, difference, xor, and self-intersections for all polygon varieties." @@ -13,8 +13,8 @@ categories = ["algorithms", "graphics", "science::geo", "mathematics", "no-std"] [dependencies] i_float = { version = "~1.16.0" } i_shape = { version = "~1.16.0" } -i_tree = { version = "~0.17.0" } -i_key_sort = { version = "~0.10.1" } +i_tree = { version = "^0.17.0" } +i_key_sort = { version = "^0.10.1" } #i_float = { path = "../../iFloat"} #i_shape = { path = "../../iShape"}