File tree Expand file tree Collapse file tree 1 file changed +14
-7
lines changed
Expand file tree Collapse file tree 1 file changed +14
-7
lines changed Original file line number Diff line number Diff 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]
3233bench_hash = [
3334 " bit-set" , # for collision counting
@@ -88,16 +89,22 @@ features = ["runtime-dispatch-simd"]
8889optional = true
8990
9091[dependencies .bstr ]
91- version = " 1.11.3 "
92+ version = " 1.12.1 "
9293default-features = false
9394optional = 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"
97102optional = true
103+ default-features = false
104+ features = [" compiled_data" ]
98105
99106[dependencies .regex ]
100- version = " 1.12.1 "
107+ version = " 1.12.2 "
101108optional = false
102109
103110[dependencies .rapidfuzz ]
@@ -129,7 +136,7 @@ version = "0.17"
129136optional = true
130137
131138[dependencies .openssl ]
132- version = " 0.10"
139+ version = " 0.10.75 "
133140optional = true
134141
135142[dependencies .sodiumoxide ]
@@ -162,15 +169,15 @@ version = "2.1.2"
162169optional = true
163170
164171[dependencies .arrow ]
165- version = " 56.2 .0"
172+ version = " 57.0 .0"
166173optional = true
167174
168175[dependencies .rayon ]
169176version = " 1.10.0"
170177optional = true
171178
172179[dependencies .polars ]
173- version = " 0.51 "
180+ version = " 0.52 "
174181optional = true
175182default-features = false
176183features = [" lazy" , " strings" , " parquet" ]
@@ -180,7 +187,7 @@ version = "1.8.2"
180187optional = true
181188
182189[dependencies .getrandom ]
183- version = " 0.3.3 "
190+ version = " 0.3.4 "
184191optional = true
185192
186193[dependencies .rand ]
You can’t perform that action at this time.
0 commit comments