Skip to content

Commit 7b85218

Browse files
committed
Implemented geo-traits-ext for wkb
1 parent d9912e7 commit 7b85218

File tree

5 files changed

+545
-4
lines changed

5 files changed

+545
-4
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ arrow-json = { version = "55.1.0" }
6767
arrow-schema = { version = "55.1.0" }
6868
async-trait = { version = "0.1.87" }
6969
bytes = "1.10"
70+
byteorder = "1"
7071
chrono = { version = "0.4.38", default-features = false }
7172
comfy-table = { version = "7.0" }
7273
criterion = { version = "0.5", features = ["html_reports"] }
@@ -96,7 +97,7 @@ geo = "0.31.0"
9697

9798
geo-index = { version = "0.3.1" }
9899

99-
wkb = { version = "0.9.0" }
100+
wkb = { version = "0.9.1" }
100101
wkt = "0.14.0"
101102

102103
parking_lot = "0.12"
@@ -130,3 +131,4 @@ datafusion-physical-plan = { git = "https://github.com/paleolimbot/datafusion.gi
130131

131132
# geo-index = { git = "https://github.com/Kontinuation/geo-index.git", branch = "geo-0.31.0" }
132133
geo-index = { path = "/Users/bopeng/workspace/github/geo-index" }
134+
wkb = { path = "/Users/bopeng/workspace/github/wkb.worktrees/main" }

rust/geo-traits-ext/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,5 @@ rust-version.workspace = true
2828
geo-traits = { workspace = true }
2929
geo-types = { workspace = true }
3030
num-traits = { workspace = true }
31+
wkb = { workspace = true }
32+
byteorder ={ workspace = true }

rust/geo-traits-ext/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,5 @@ mod triangle;
4444

4545
pub use type_tag::*;
4646
mod type_tag;
47+
48+
pub mod wkb_ext;

0 commit comments

Comments
 (0)