Skip to content

Commit

Permalink
Fix compile breakage
Browse files Browse the repository at this point in the history
flatgeobuf released a breaking change between 4.4.0 and 4.5.0 (adding a
new variant to a non-exhaustive enum).

We can unpin once we adapt to the new code.
  • Loading branch information
michaelkirk committed Dec 13, 2024
1 parent 43dc6a0 commit 11cb861
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ license = "MIT OR Apache-2.0"
# Used in geozero-cli and geozero-bench
# geozero version must be in sync with flatgeobuf version!
geozero = { version = "0.14.0", default-features = false }
flatgeobuf = "4.4.0"
# flatgeobuf had a breaking (!) change released in 4.5.0, so we'll pin until we adapt to the new version.
flatgeobuf = ">=4.4.0,<4.5.0"

async-trait = "0.1"
byteorder = { version = "1.4.3", default-features = false }
Expand Down

0 comments on commit 11cb861

Please sign in to comment.