diff --git a/Cargo.lock b/Cargo.lock index bc402702e7c75..85506775d6277 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -111,7 +111,7 @@ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" [[package]] name = "arrow-flight" version = "0.1.0" -source = "git+https://github.com/psiace/arrow2?rev=5187d3d#5187d3d5275a019a5aae5fc72057aff37464d546" +source = "git+https://github.com/datafuse-extras/arrow2?rev=7765067#77650672233bd7bbb9839a2a616f11ebffa15807" dependencies = [ "arrow2", "bytes", @@ -125,7 +125,7 @@ dependencies = [ [[package]] name = "arrow2" version = "0.4.0" -source = "git+https://github.com/psiace/arrow2?rev=5187d3d#5187d3d5275a019a5aae5fc72057aff37464d546" +source = "git+https://github.com/datafuse-extras/arrow2?rev=7765067#77650672233bd7bbb9839a2a616f11ebffa15807" dependencies = [ "ahash 0.7.4", "base64", @@ -144,7 +144,7 @@ dependencies = [ "multiversion", "num", "packed_simd_2", - "parquet2 0.3.0", + "parquet2 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.8.4", "regex", "serde", @@ -708,7 +708,7 @@ version = "0.1.0" dependencies = [ "arrow-flight", "arrow2", - "parquet2 0.2.0", + "parquet2 0.3.0 (git+https://github.com/datafuse-extras/parquet2?rev=d28330f)", ] [[package]] @@ -3547,15 +3547,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "parquet-format" -version = "2.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5bc6b23543b5dedc8f6cce50758a35e5582e148e0cfa26bd0cacd569cda5b71" -dependencies = [ - "thrift", -] - [[package]] name = "parquet-format-async-temp" version = "0.1.1" @@ -3571,26 +3562,26 @@ dependencies = [ [[package]] name = "parquet2" -version = "0.2.0" -source = "git+https://github.com/datafuse-extras/parquet2?rev=05854c0#05854c08a455bfc6e56350db37350ada526112b6" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6b9cfd5adabbb93efd417dcee71a2ebbb0f4978b1d8e65ab7fce84b72b966bc" dependencies = [ + "async-stream", "bitpacking", "brotli", "flate2", "futures", "lz4", - "parquet-format", + "parquet-format-async-temp", "snap", "streaming-iterator", - "thrift", "zstd", ] [[package]] name = "parquet2" version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6b9cfd5adabbb93efd417dcee71a2ebbb0f4978b1d8e65ab7fce84b72b966bc" +source = "git+https://github.com/datafuse-extras/parquet2?rev=d28330f#d28330f92b8f0f69931dc78c7b3ce4f0a0f892bf" dependencies = [ "async-stream", "bitpacking", diff --git a/common/arrow/Cargo.toml b/common/arrow/Cargo.toml index a9bef2d15a2f2..0dfece825f195 100644 --- a/common/arrow/Cargo.toml +++ b/common/arrow/Cargo.toml @@ -15,9 +15,9 @@ simd = ["arrow/simd"] # Workspace dependencies # Github dependencies -arrow = { package = "arrow2", git="https://github.com/psiace/arrow2", rev = "5187d3d" } -arrow-flight = { git="https://github.com/psiace/arrow2", rev = "5187d3d" } -parquet = {package = "parquet2", git = "https://github.com/datafuse-extras/parquet2", rev = "05854c0"} +arrow = { package = "arrow2", git="https://github.com/datafuse-extras/arrow2", rev = "7765067" } +arrow-flight = { git="https://github.com/datafuse-extras/arrow2", rev = "7765067" } +parquet = {package = "parquet2", git = "https://github.com/datafuse-extras/parquet2", rev = "d28330f"} # Crates.io dependencies [dev-dependencies]