Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
422 changes: 401 additions & 21 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ members = [
"rust/lance-datagen",
"rust/lance-encoding",
"rust/lance-file",
"rust/lance-geo",
"rust/lance-index",
"rust/lance-io",
"rust/lance-linalg",
Expand Down Expand Up @@ -56,6 +57,7 @@ lance-datafusion = { version = "=1.0.0-beta.12", path = "./rust/lance-datafusion
lance-datagen = { version = "=1.0.0-beta.12", path = "./rust/lance-datagen" }
lance-encoding = { version = "=1.0.0-beta.12", path = "./rust/lance-encoding" }
lance-file = { version = "=1.0.0-beta.12", path = "./rust/lance-file" }
lance-geo = { version = "=1.0.0-beta.12", path = "./rust/lance-geo" }
lance-index = { version = "=1.0.0-beta.12", path = "./rust/lance-index" }
lance-io = { version = "=1.0.0-beta.12", path = "./rust/lance-io", default-features = false }
lance-linalg = { version = "=1.0.0-beta.12", path = "./rust/lance-linalg" }
Expand Down Expand Up @@ -130,6 +132,10 @@ either = "1.0"
fst = { version = "0.4.7", features = ["levenshtein"] }
fsst = { version = "=1.0.0-beta.12", path = "./rust/compression/fsst" }
futures = "0.3"
geoarrow-array = "0.6"
geoarrow-schema = "0.6"
geodatafusion = "0.1.1"
geo-types = "0.7.16"
http = "1.1.0"
humantime = "2.2.0"
hyperloglogplus = { version = "0.4.1", features = ["const-loop"] }
Expand Down Expand Up @@ -179,7 +185,7 @@ tokio = { version = "1.23", features = [
"sync",
] }
tokio-stream = "0.1.14"
tokio-util = { version = "0.7.10" }
tokio-util = { version = "0.7.16" }
tower = "0.5"
tower-http = "0.5"
tracing = "0.1"
Expand Down
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ allow = [
"Zlib",
"CC0-1.0",
"CDLA-Permissive-2.0",
"bzip2-1.0.6",
]
# The confidence threshold for detecting a license from license text.
# The higher the value, the more closely the license text must be to the
Expand Down
Loading
Loading