houqp commented on a change in pull request #1556: URL: https://github.com/apache/arrow-datafusion/pull/1556#discussion_r785402462
########## File path: datafusion/Cargo.toml ########## @@ -39,25 +39,27 @@ path = "src/lib.rs" [features] default = ["crypto_expressions", "regex_expressions", "unicode_expressions"] -simd = ["arrow/simd"] +# FIXME: https://github.com/jorgecarleitao/arrow2/issues/580 +#simd = ["arrow/simd"] +simd = [] crypto_expressions = ["md-5", "sha2", "blake2", "blake3"] regex_expressions = ["regex"] unicode_expressions = ["unicode-segmentation"] -pyarrow = ["pyo3", "arrow/pyarrow"] +# FIXME: add pyarrow support to arrow2 pyarrow = ["pyo3", "arrow/pyarrow"] +pyarrow = ["pyo3"] # Used for testing ONLY: causes all values to hash to the same value (test for collisions) force_hash_collisions = [] # Used to enable the avro format -avro = ["avro-rs", "num-traits"] +avro = ["arrow/io_avro", "arrow/io_avro_async", "arrow/io_avro_compression", "num-traits", "avro-schema"] [dependencies] ahash = { version = "0.7", default-features = false } hashbrown = { version = "0.11", features = ["raw"] } -arrow = { version = "6.4.0", features = ["prettyprint"] } -parquet = { version = "6.4.0", features = ["arrow"] } +parquet = { package = "parquet2", version = "0.8", default_features = false, features = ["stream"] } sqlparser = "0.13" paste = "^1.0" num_cpus = "1.13.0" -chrono = { version = "0.4", default-features = false } +chrono = { version = "0.4", default-features = false, features = ["clock"] } Review comment: It looks like datafusion is only depending on this to get the current system time in various places. I will file https://github.com/apache/arrow-datafusion/issues/1584 as a follow up -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
