2020-09-24 12:46:54 +00:00
|
|
|
[package]
|
|
|
|
name = "delorean_arrow"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["alamb <andrew@nerdnetworks.org>"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "Apache Arrow / Parquet / DataFusion dependencies for delorean, to ensure consistent versions and unified updates"
|
|
|
|
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# We are using development version of arrow/parquet/datafusion and the dependencies are at the same rev
|
|
|
|
|
2020-10-26 17:49:16 +00:00
|
|
|
# The version can be found here: https://github.com/apache/arrow/commit/eea8d352bf3196a29c1ccf5e6c7342913916048a
|
2020-10-01 18:34:53 +00:00
|
|
|
#
|
2020-10-26 17:49:16 +00:00
|
|
|
arrow = { git = "https://github.com/apache/arrow.git", rev = "eea8d352bf3196a29c1ccf5e6c7342913916048a" , features = ["simd"] }
|
|
|
|
datafusion = { git = "https://github.com/apache/arrow.git", rev = "eea8d352bf3196a29c1ccf5e6c7342913916048a" }
|
2020-09-24 12:46:54 +00:00
|
|
|
# Turn off the "arrow" feature; it currently has a bug that causes the crate to rebuild every time
|
|
|
|
# and we're not currently using it anyway
|
2020-10-26 17:49:16 +00:00
|
|
|
parquet = { git = "https://github.com/apache/arrow.git", rev = "eea8d352bf3196a29c1ccf5e6c7342913916048a", default-features = false, features = ["snap", "brotli", "flate2", "lz4", "zstd"] }
|