Skip to content

Commit 789a69d

Browse files
committed
Make: Use icu for Unicode parsing
1 parent 0a93238 commit 789a69d

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

Cargo.toml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ bench_find = [
2828
"memchr", # Substring search
2929
"bstr", # Byteset search
3030
"aho-corasick", # Byteset search
31+
"icu", # Unicode properties for character matching
3132
]
3233
bench_hash = [
3334
"bit-set", # for collision counting
@@ -88,16 +89,22 @@ features = ["runtime-dispatch-simd"]
8889
optional = true
8990

9091
[dependencies.bstr]
91-
version = "1.11.3"
92+
version = "1.12.1"
9293
default-features = false
9394
optional = true
9495

9596
[dependencies.aho-corasick]
96-
version = "1.1.3"
97+
version = "1.1.4"
98+
optional = true
99+
100+
[dependencies.icu]
101+
version = "2.1.1"
97102
optional = true
103+
default-features = false
104+
features = ["compiled_data"]
98105

99106
[dependencies.regex]
100-
version = "1.12.1"
107+
version = "1.12.2"
101108
optional = false
102109

103110
[dependencies.rapidfuzz]
@@ -129,7 +136,7 @@ version = "0.17"
129136
optional = true
130137

131138
[dependencies.openssl]
132-
version = "0.10"
139+
version = "0.10.75"
133140
optional = true
134141

135142
[dependencies.sodiumoxide]
@@ -162,15 +169,15 @@ version = "2.1.2"
162169
optional = true
163170

164171
[dependencies.arrow]
165-
version = "56.2.0"
172+
version = "57.0.0"
166173
optional = true
167174

168175
[dependencies.rayon]
169176
version = "1.10.0"
170177
optional = true
171178

172179
[dependencies.polars]
173-
version = "0.51"
180+
version = "0.52"
174181
optional = true
175182
default-features = false
176183
features = ["lazy", "strings", "parquet"]
@@ -180,7 +187,7 @@ version = "1.8.2"
180187
optional = true
181188

182189
[dependencies.getrandom]
183-
version = "0.3.3"
190+
version = "0.3.4"
184191
optional = true
185192

186193
[dependencies.rand]

0 commit comments

Comments
 (0)