You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2023/05/23 19:34:47 UTC

[arrow-datafusion] branch main updated: Minor: remove unecessary cranelift dependency (#6430)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 377c9f54ed Minor: remove unecessary cranelift dependency (#6430)
377c9f54ed is described below

commit 377c9f54ed360861744654ec50bc63af1791105c
Author: Andrew Lamb <an...@nerdnetworks.org>
AuthorDate: Tue May 23 15:34:42 2023 -0400

    Minor: remove unecessary cranelift dependency (#6430)
    
    * Minor: remove unecessary cranelift dependency
    
    * Update datafusion-cli.lock
---
 datafusion-cli/Cargo.lock    | 12 ++++++------
 datafusion/common/Cargo.toml |  1 -
 2 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/datafusion-cli/Cargo.lock b/datafusion-cli/Cargo.lock
index b40b7a0c2d..9f59d672e5 100644
--- a/datafusion-cli/Cargo.lock
+++ b/datafusion-cli/Cargo.lock
@@ -685,9 +685,9 @@ dependencies = [
 
 [[package]]
 name = "bumpalo"
-version = "3.12.2"
+version = "3.13.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b"
+checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
 
 [[package]]
 name = "byteorder"
@@ -2388,9 +2388,9 @@ dependencies = [
 
 [[package]]
 name = "regex"
-version = "1.8.1"
+version = "1.8.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
+checksum = "d1a59b5d8e97dee33696bf13c5ba8ab85341c002922fba050069326b9c498974"
 dependencies = [
  "aho-corasick",
  "memchr",
@@ -2399,9 +2399,9 @@ dependencies = [
 
 [[package]]
 name = "regex-syntax"
-version = "0.7.1"
+version = "0.7.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
+checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
 
 [[package]]
 name = "reqwest"
diff --git a/datafusion/common/Cargo.toml b/datafusion/common/Cargo.toml
index 441d723c4f..a259fd80f4 100644
--- a/datafusion/common/Cargo.toml
+++ b/datafusion/common/Cargo.toml
@@ -42,7 +42,6 @@ apache-avro = { version = "0.14", default-features = false, features = ["snappy"
 arrow = { workspace = true }
 arrow-array = { workspace = true }
 chrono = { version = "0.4", default-features = false }
-cranelift-module = { version = "0.92.0", optional = true }
 num_cpus = "1.13.0"
 object_store = { version = "0.5.4", default-features = false, optional = true }
 parquet = { workspace = true, optional = true }