Skip to content

Commit 553deff

Browse files
ddupgjackye1995
authored andcommitted
feat: support GEO type
Change-Id: Ie3f0bbee0f4dd89ff42d2e7eaca6597887b2c252
1 parent d46a6cc commit 553deff

File tree

16 files changed

+1599
-53
lines changed

16 files changed

+1599
-53
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ members = [
77
"rust/lance-datagen",
88
"rust/lance-encoding",
99
"rust/lance-file",
10+
"rust/lance-geo",
1011
"rust/lance-index",
1112
"rust/lance-io",
1213
"rust/lance-linalg",
@@ -56,6 +57,7 @@ lance-datafusion = { version = "=1.0.0-beta.12", path = "./rust/lance-datafusion
5657
lance-datagen = { version = "=1.0.0-beta.12", path = "./rust/lance-datagen" }
5758
lance-encoding = { version = "=1.0.0-beta.12", path = "./rust/lance-encoding" }
5859
lance-file = { version = "=1.0.0-beta.12", path = "./rust/lance-file" }
60+
lance-geo = { version = "=1.0.0-beta.12", path = "./rust/lance-geo" }
5961
lance-index = { version = "=1.0.0-beta.12", path = "./rust/lance-index" }
6062
lance-io = { version = "=1.0.0-beta.12", path = "./rust/lance-io", default-features = false }
6163
lance-linalg = { version = "=1.0.0-beta.12", path = "./rust/lance-linalg" }
@@ -130,6 +132,10 @@ either = "1.0"
130132
fst = { version = "0.4.7", features = ["levenshtein"] }
131133
fsst = { version = "=1.0.0-beta.12", path = "./rust/compression/fsst" }
132134
futures = "0.3"
135+
geoarrow-array = "0.6"
136+
geoarrow-schema = "0.6"
137+
geodatafusion = "0.1.1"
138+
geo-types = "0.7.16"
133139
http = "1.1.0"
134140
humantime = "2.2.0"
135141
hyperloglogplus = { version = "0.4.1", features = ["const-loop"] }
@@ -179,7 +185,7 @@ tokio = { version = "1.23", features = [
179185
"sync",
180186
] }
181187
tokio-stream = "0.1.14"
182-
tokio-util = { version = "0.7.10" }
188+
tokio-util = { version = "0.7.16" }
183189
tower = "0.5"
184190
tower-http = "0.5"
185191
tracing = "0.1"

deny.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ allow = [
113113
"Zlib",
114114
"CC0-1.0",
115115
"CDLA-Permissive-2.0",
116+
"bzip2-1.0.6",
116117
]
117118
# The confidence threshold for detecting a license from license text.
118119
# The higher the value, the more closely the license text must be to the

0 commit comments

Comments
 (0)