Skip to content

Commit

Permalink
remove no longer needed dep changes
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkirk committed Dec 19, 2024
1 parent 456c794 commit 3bb1881
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
3 changes: 0 additions & 3 deletions geo-types/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

## Unreleased

- Bumps rstar minimum version from 0.12.0 to 0.12.2
- <https://github.com/georust/geo/pull/1246>

## 0.7.14

- POSSIBLY BREAKING: Minimum supported version of Rust (MSRV) is now 1.75
Expand Down
2 changes: 1 addition & 1 deletion geo-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ rstar_0_8 = { package = "rstar", version = "0.8", optional = true }
rstar_0_9 = { package = "rstar", version = "0.9", optional = true }
rstar_0_10 = { package = "rstar", version = "0.10", optional = true }
rstar_0_11 = { package = "rstar", version = "0.11", optional = true }
rstar_0_12 = { package = "rstar", version = "0.12.2", optional = true }
rstar_0_12 = { package = "rstar", version = "0.12", optional = true }
serde = { version = "1", optional = true, default-features = false, features = ["alloc", "derive"] }

[dev-dependencies]
Expand Down
2 changes: 0 additions & 2 deletions geo/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

- Add Unary Union algorithm for fast union ops on adjacent / overlapping geometries
- <https://github.com/georust/geo/pull/1246>
- Adds an optional dependency on Rayon (previously depended on by i_overlay)
- Bumps minimum rstar version to 0.12.2
- Loosen bounds on `RemoveRepeatedPoints` trait (`num_traits::FromPrimitive` isn't required)
- <https://github.com/georust/geo/pull/1278>

Expand Down
5 changes: 2 additions & 3 deletions geo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@ default = ["earcutr", "spade", "multithreading"]
use-proj = ["proj"]
proj-network = ["use-proj", "proj/network"]
use-serde = ["serde", "geo-types/serde"]
multithreading = ["i_overlay/allow_multithreading", "geo-types/multithreading", "dep:rayon"]
multithreading = ["i_overlay/allow_multithreading", "geo-types/multithreading"]

[dependencies]
rayon = { version = "1.10.0", optional = true }
earcutr = { version = "0.4.2", optional = true }
spade = { version = "2.10.0", optional = true }
float_next_after = "1.0.0"
Expand All @@ -30,7 +29,7 @@ log = "0.4.11"
num-traits = "0.2"
proj = { version = "0.27.0", optional = true }
robust = "1.1.0"
rstar = "0.12.2"
rstar = "0.12.0"
serde = { version = "1.0", optional = true, features = ["derive"] }
i_overlay = { version = "1.9.0, < 1.10.0", default-features = false }
# co-erce the version of `home` used transitively by proj (via bindgen -> which -> home)
Expand Down

0 comments on commit 3bb1881

Please sign in to comment.