You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2022/11/25 16:51:00 UTC

[arrow-rs] branch master updated: Improve regex related kernels (#3192)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 14e621219 Improve regex related kernels (#3192)
14e621219 is described below

commit 14e6212198ce75c9c17147edd3deedf126dae452
Author: Vrishabh <ps...@gmail.com>
AuthorDate: Fri Nov 25 22:20:55 2022 +0530

    Improve regex related kernels (#3192)
---
 arrow-csv/Cargo.toml | 2 +-
 arrow/Cargo.toml     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arrow-csv/Cargo.toml b/arrow-csv/Cargo.toml
index fc4c177bd..5255244a1 100644
--- a/arrow-csv/Cargo.toml
+++ b/arrow-csv/Cargo.toml
@@ -47,7 +47,7 @@ chrono = { version = "0.4.23", default-features = false, features = ["clock"] }
 csv = { version = "1.1", default-features = false }
 lazy_static = { version = "1.4", default-features = false }
 lexical-core = { version = "^0.8", default-features = false }
-regex = { version = "1.5.6", default-features = false, features = ["std", "unicode"] }
+regex = { version = "1.7.0", default-features = false, features = ["std", "unicode", "perf"] }
 
 [dev-dependencies]
 tempfile = "3.3"
diff --git a/arrow/Cargo.toml b/arrow/Cargo.toml
index ab8963b9c..1e90e1e09 100644
--- a/arrow/Cargo.toml
+++ b/arrow/Cargo.toml
@@ -57,7 +57,7 @@ rand = { version = "0.8", default-features = false, features = ["std", "std_rng"
 num = { version = "0.4", default-features = false, features = ["std"] }
 half = { version = "2.1", default-features = false, features = ["num-traits"] }
 hashbrown = { version = "0.13", default-features = false }
-regex = { version = "1.5.6", default-features = false, features = ["std", "unicode"] }
+regex = { version = "1.7.0", default-features = false, features = ["std", "unicode", "perf"] }
 regex-syntax = { version = "0.6.27", default-features = false, features = ["unicode"] }
 packed_simd = { version = "0.3", default-features = false, optional = true, package = "packed_simd_2" }
 chrono = { version = "0.4.23", default-features = false, features = ["clock"] }