diff --git a/Cargo.toml b/Cargo.toml index f2ee4fd..1fad681 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,19 +28,21 @@ keywords = ["arrow", "arrow-rs", "datafusion"] rust-version = "1.80" [dependencies] -arrow = "55" -arrow-schema = "55" + +arrow = { version = "55.0.0" } +arrow-schema = { version = "55.0.0" } async-trait = "0.1" +chrono = "= 0.4.40" dashmap = "6" -datafusion = "47" -datafusion-common = "47" -datafusion-expr = "47" -datafusion-functions = "47" -datafusion-functions-aggregate = "47" -datafusion-optimizer = "47" -datafusion-physical-expr = "47" -datafusion-physical-plan = "47" -datafusion-sql = "47" +datafusion = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" } +datafusion-common = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" } +datafusion-expr = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" } +datafusion-functions = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" } +datafusion-functions-aggregate = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" } +datafusion-optimizer = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" } +datafusion-physical-expr = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" } +datafusion-physical-plan = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" } +datafusion-sql = { git = "https://github.com/polygon-io/arrow-datafusion", rev = "a13a6fe" } futures = "0.3" itertools = "0.14" log = "0.4"