From 702398b1f77926d8ca74e3691c615d85c75bcd8d Mon Sep 17 00:00:00 2001 From: Mahmut Bulut Date: Fri, 31 Jul 2020 12:44:34 +0200 Subject: [PATCH] ARROW-9609 - Leaner feature gating for arrow in parquet --- rust/parquet/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rust/parquet/Cargo.toml b/rust/parquet/Cargo.toml index 7fc5b8ac271..62f7e733c81 100644 --- a/rust/parquet/Cargo.toml +++ b/rust/parquet/Cargo.toml @@ -39,7 +39,7 @@ lz4 = { version = "1.23", optional = true } zstd = { version = "0.5", optional = true } chrono = "0.4" num-bigint = "0.3" -arrow = { path = "../arrow", version = "2.0.0-SNAPSHOT", optional = true } +arrow = { path = "../arrow", version = "2.0.0-SNAPSHOT", optional = true, default-features = false } serde_json = { version = "1.0", features = ["preserve_order"] } [dev-dependencies] @@ -49,7 +49,6 @@ brotli = "3.3" flate2 = "1.0" lz4 = "1.23" zstd = "0.5" -arrow = { path = "../arrow", version = "2.0.0-SNAPSHOT" } [features] default = ["arrow", "snap", "brotli", "flate2", "lz4", "zstd"]