You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2023/01/18 07:52:12 UTC

[arrow-ballista] branch master updated: Fix Cargo.toml format issue (#616)

This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


The following commit(s) were added to refs/heads/master by this push:
     new 18e2cc88 Fix Cargo.toml format issue (#616)
18e2cc88 is described below

commit 18e2cc88d125277edd199c7e747a1103ecbb66ce
Author: Andy Grove <an...@gmail.com>
AuthorDate: Wed Jan 18 00:52:05 2023 -0700

    Fix Cargo.toml format issue (#616)
---
 ballista/client/Cargo.toml | 2 +-
 ballista/core/Cargo.toml   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ballista/client/Cargo.toml b/ballista/client/Cargo.toml
index eaf7365d..48beaa98 100644
--- a/ballista/client/Cargo.toml
+++ b/ballista/client/Cargo.toml
@@ -41,9 +41,9 @@ tempfile = "3"
 tokio = "1.0"
 
 [features]
+azure = ["ballista-core/azure"]
 default = []
 hdfs = ["ballista-core/hdfs"]
 hdfs3 = ["ballista-core/hdfs3"]
 s3 = ["ballista-core/s3"]
-azure = ["ballista-core/azure"]
 standalone = ["ballista-executor", "ballista-scheduler"]
diff --git a/ballista/core/Cargo.toml b/ballista/core/Cargo.toml
index d39675e0..8aa4e14a 100644
--- a/ballista/core/Cargo.toml
+++ b/ballista/core/Cargo.toml
@@ -34,13 +34,13 @@ exclude = ["*.proto"]
 rustc-args = ["--cfg", "docsrs"]
 
 [features]
+azure = ["object_store/azure"]
 # Used for testing ONLY: causes all values to hash to the same value (test for collisions)
 force_hash_collisions = ["datafusion/force_hash_collisions"]
 # Used to enable hdfs to be registered in the ObjectStoreRegistry by default
 hdfs = ["datafusion-objectstore-hdfs/hdfs"]
 hdfs3 = ["datafusion-objectstore-hdfs/hdfs3"]
 s3 = ["object_store/aws"]
-azure = ["object_store/azure"]
 simd = ["datafusion/simd"]
 
 [dependencies]