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
212 changes: 208 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ bytes = "1.10.0"
chrono = "0.4.42"
clap = { version = "4.5.54", features = ["derive", "env"] }
datafusion = "51.0.0"
duckdb = "1.4.4"
duration-parse = { path = "crates/duration-parse" }
tpchgen = "2.0.2"
tpchgen-arrow = "2.0.2"
Expand Down Expand Up @@ -175,6 +176,9 @@ sqlite = []
turso = []

[patch.crates-io]
# Patch duckdb for direct dependencies and spiceai_duckdb_fork for datafusion-table-providers
duckdb = { git = "https://github.com/spiceai/duckdb-rs.git", rev = "f4096c7592ed46b9e68755a49252d69783dece96" } # spiceai-1.4.4

# arrow-rs 57.2 with spice patches
arrow = { git = "https://github.com/spiceai/arrow-rs.git", rev = "ca671dd37d73b730938f77f7a7ad76545280a4a8" } # spiceai-57.2
arrow-array = { git = "https://github.com/spiceai/arrow-rs.git", rev = "ca671dd37d73b730938f77f7a7ad76545280a4a8" } # spiceai-57.2
Expand Down
Loading