You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ho...@apache.org on 2022/02/26 06:41:36 UTC

[arrow-datafusion] branch master updated: Remove deprecated feature flag from snmalloc (#1888)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1054428  Remove deprecated  feature flag from snmalloc (#1888)
1054428 is described below

commit 105442848591a64c0a62674abae9d0c5158f50a6
Author: Yijie Shen <he...@gmail.com>
AuthorDate: Sat Feb 26 14:41:30 2022 +0800

    Remove deprecated  feature flag from snmalloc (#1888)
---
 ballista/rust/executor/Cargo.toml | 2 +-
 benchmarks/Cargo.toml             | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml
index 8f0d29e..e6a3a42 100644
--- a/ballista/rust/executor/Cargo.toml
+++ b/ballista/rust/executor/Cargo.toml
@@ -39,7 +39,7 @@ datafusion = { path = "../../../datafusion", version = "7.0.0" }
 env_logger = "0.9"
 futures = "0.3"
 log = "0.4"
-snmalloc-rs = {version = "0.2", features= ["cache-friendly"], optional = true}
+snmalloc-rs = {version = "0.2", optional = true}
 tempfile = "3"
 tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "parking_lot"] }
 tokio-stream = { version = "0.1", features = ["net"] }
diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml
index 437673e..872b2f5 100644
--- a/benchmarks/Cargo.toml
+++ b/benchmarks/Cargo.toml
@@ -39,7 +39,7 @@ tokio = { version = "^1.0", features = ["macros", "rt", "rt-multi-thread", "park
 futures = "0.3"
 env_logger = "0.9"
 mimalloc = { version = "0.1", optional = true, default-features = false }
-snmalloc-rs = {version = "0.2", optional = true, features= ["cache-friendly"] }
+snmalloc-rs = {version = "0.2", optional = true }
 rand = "0.8.4"
 serde = "1.0.136"
 serde_json = "1.0.78"