patchwork_csv_utils 0.1.22-arm64-darwin → 0.1.24-arm64-darwin
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Cargo.lock +238 -278
- data/Gemfile +1 -1
- data/Gemfile.lock +5 -3
- data/ext/csv_utils/Cargo.toml +5 -4
- data/ext/csv_utils/src/lib.rs +5 -5
- data/ext/csv_utils/src/utils/csv.rs +160 -167
- data/ext/csv_utils/src/utils/dedup.rs +102 -67
- data/ext/csv_utils/src/utils/mod.rs +81 -17
- data/ext/csv_utils/src/utils/shared/datetime.rs +79 -0
- data/ext/csv_utils/src/utils/shared/filters.rs +130 -0
- data/ext/csv_utils/src/utils/shared/mod.rs +4 -0
- data/ext/csv_utils/src/utils/shared/types.rs +97 -0
- data/ext/csv_utils/src/utils/shared/validation.rs +34 -0
- data/ext/csv_utils/src/utils/xls.rs +272 -184
- data/lib/csv_utils/2.7/csv_utils.bundle +0 -0
- data/lib/csv_utils/3.0/csv_utils.bundle +0 -0
- data/lib/csv_utils/3.1/csv_utils.bundle +0 -0
- data/lib/csv_utils/3.2/csv_utils.bundle +0 -0
- data/lib/csv_utils/version.rb +1 -1
- metadata +8 -3
data/Cargo.lock
CHANGED
|
@@ -1,28 +1,22 @@
|
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
|
-
version =
|
|
3
|
+
version = 4
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
|
-
name = "
|
|
7
|
-
version = "
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
10
|
|
|
11
11
|
[[package]]
|
|
12
12
|
name = "aho-corasick"
|
|
13
|
-
version = "1.1.
|
|
13
|
+
version = "1.1.4"
|
|
14
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
-
checksum = "
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
16
16
|
dependencies = [
|
|
17
17
|
"memchr",
|
|
18
18
|
]
|
|
19
19
|
|
|
20
|
-
[[package]]
|
|
21
|
-
name = "android-tzdata"
|
|
22
|
-
version = "0.1.1"
|
|
23
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
25
|
-
|
|
26
20
|
[[package]]
|
|
27
21
|
name = "android_system_properties"
|
|
28
22
|
version = "0.1.5"
|
|
@@ -34,24 +28,33 @@ dependencies = [
|
|
|
34
28
|
|
|
35
29
|
[[package]]
|
|
36
30
|
name = "arbitrary"
|
|
37
|
-
version = "1.
|
|
31
|
+
version = "1.4.2"
|
|
38
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
-
checksum = "
|
|
33
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
40
34
|
dependencies = [
|
|
41
35
|
"derive_arbitrary",
|
|
42
36
|
]
|
|
43
37
|
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "atoi_simd"
|
|
40
|
+
version = "0.16.1"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "c2a49e05797ca52e312a0c658938b7d00693ef037799ef7187678f212d7684cf"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"debug_unsafe",
|
|
45
|
+
]
|
|
46
|
+
|
|
44
47
|
[[package]]
|
|
45
48
|
name = "autocfg"
|
|
46
|
-
version = "1.
|
|
49
|
+
version = "1.5.0"
|
|
47
50
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
-
checksum = "
|
|
51
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
49
52
|
|
|
50
53
|
[[package]]
|
|
51
54
|
name = "bindgen"
|
|
52
|
-
version = "0.69.
|
|
55
|
+
version = "0.69.5"
|
|
53
56
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
-
checksum = "
|
|
57
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
55
58
|
dependencies = [
|
|
56
59
|
"bitflags",
|
|
57
60
|
"cexpr",
|
|
@@ -69,15 +72,15 @@ dependencies = [
|
|
|
69
72
|
|
|
70
73
|
[[package]]
|
|
71
74
|
name = "bitflags"
|
|
72
|
-
version = "2.
|
|
75
|
+
version = "2.10.0"
|
|
73
76
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
-
checksum = "
|
|
77
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
75
78
|
|
|
76
79
|
[[package]]
|
|
77
80
|
name = "bumpalo"
|
|
78
|
-
version = "3.
|
|
81
|
+
version = "3.19.0"
|
|
79
82
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
-
checksum = "
|
|
83
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
81
84
|
|
|
82
85
|
[[package]]
|
|
83
86
|
name = "byteorder"
|
|
@@ -87,14 +90,16 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
87
90
|
|
|
88
91
|
[[package]]
|
|
89
92
|
name = "calamine"
|
|
90
|
-
version = "0.
|
|
93
|
+
version = "0.31.0"
|
|
91
94
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
-
checksum = "
|
|
95
|
+
checksum = "da56b262e8a827c6b12c3dde4ea4622e0ff542bd2e9ea5855e4cb523481d77b7"
|
|
93
96
|
dependencies = [
|
|
97
|
+
"atoi_simd",
|
|
94
98
|
"byteorder",
|
|
95
99
|
"chrono",
|
|
96
100
|
"codepage",
|
|
97
101
|
"encoding_rs",
|
|
102
|
+
"fast-float2",
|
|
98
103
|
"log",
|
|
99
104
|
"quick-xml",
|
|
100
105
|
"serde",
|
|
@@ -103,9 +108,13 @@ dependencies = [
|
|
|
103
108
|
|
|
104
109
|
[[package]]
|
|
105
110
|
name = "cc"
|
|
106
|
-
version = "1.
|
|
111
|
+
version = "1.2.46"
|
|
107
112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
-
checksum = "
|
|
113
|
+
checksum = "b97463e1064cb1b1c1384ad0a0b9c8abd0988e2a91f52606c80ef14aadb63e36"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"find-msvc-tools",
|
|
116
|
+
"shlex",
|
|
117
|
+
]
|
|
109
118
|
|
|
110
119
|
[[package]]
|
|
111
120
|
name = "cexpr"
|
|
@@ -118,23 +127,22 @@ dependencies = [
|
|
|
118
127
|
|
|
119
128
|
[[package]]
|
|
120
129
|
name = "cfg-if"
|
|
121
|
-
version = "1.0.
|
|
130
|
+
version = "1.0.4"
|
|
122
131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
-
checksum = "
|
|
132
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
124
133
|
|
|
125
134
|
[[package]]
|
|
126
135
|
name = "chrono"
|
|
127
|
-
version = "0.4.
|
|
136
|
+
version = "0.4.42"
|
|
128
137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
-
checksum = "
|
|
138
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
130
139
|
dependencies = [
|
|
131
|
-
"android-tzdata",
|
|
132
140
|
"iana-time-zone",
|
|
133
141
|
"js-sys",
|
|
134
142
|
"num-traits",
|
|
135
143
|
"serde",
|
|
136
144
|
"wasm-bindgen",
|
|
137
|
-
"windows-
|
|
145
|
+
"windows-link",
|
|
138
146
|
]
|
|
139
147
|
|
|
140
148
|
[[package]]
|
|
@@ -159,42 +167,36 @@ dependencies = [
|
|
|
159
167
|
|
|
160
168
|
[[package]]
|
|
161
169
|
name = "core-foundation-sys"
|
|
162
|
-
version = "0.8.
|
|
170
|
+
version = "0.8.7"
|
|
163
171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
-
checksum = "
|
|
172
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
165
173
|
|
|
166
174
|
[[package]]
|
|
167
175
|
name = "crc32fast"
|
|
168
|
-
version = "1.
|
|
176
|
+
version = "1.5.0"
|
|
169
177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
-
checksum = "
|
|
178
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
171
179
|
dependencies = [
|
|
172
180
|
"cfg-if",
|
|
173
181
|
]
|
|
174
182
|
|
|
175
|
-
[[package]]
|
|
176
|
-
name = "crossbeam-utils"
|
|
177
|
-
version = "0.8.20"
|
|
178
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
-
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
|
180
|
-
|
|
181
183
|
[[package]]
|
|
182
184
|
name = "csv"
|
|
183
|
-
version = "1.
|
|
185
|
+
version = "1.4.0"
|
|
184
186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
-
checksum = "
|
|
187
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
186
188
|
dependencies = [
|
|
187
189
|
"csv-core",
|
|
188
190
|
"itoa",
|
|
189
191
|
"ryu",
|
|
190
|
-
"
|
|
192
|
+
"serde_core",
|
|
191
193
|
]
|
|
192
194
|
|
|
193
195
|
[[package]]
|
|
194
196
|
name = "csv-core"
|
|
195
|
-
version = "0.1.
|
|
197
|
+
version = "0.1.13"
|
|
196
198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
-
checksum = "
|
|
199
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
198
200
|
dependencies = [
|
|
199
201
|
"memchr",
|
|
200
202
|
]
|
|
@@ -210,21 +212,16 @@ dependencies = [
|
|
|
210
212
|
]
|
|
211
213
|
|
|
212
214
|
[[package]]
|
|
213
|
-
name = "
|
|
214
|
-
version = "1.3
|
|
215
|
+
name = "debug_unsafe"
|
|
216
|
+
version = "0.1.3"
|
|
215
217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
-
checksum = "
|
|
217
|
-
dependencies = [
|
|
218
|
-
"proc-macro2",
|
|
219
|
-
"quote",
|
|
220
|
-
"syn",
|
|
221
|
-
]
|
|
218
|
+
checksum = "85d3cef41d236720ed453e102153a53e4cc3d2fde848c0078a50cf249e8e3e5b"
|
|
222
219
|
|
|
223
220
|
[[package]]
|
|
224
|
-
name = "
|
|
225
|
-
version = "
|
|
221
|
+
name = "derive_arbitrary"
|
|
222
|
+
version = "1.4.2"
|
|
226
223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
-
checksum = "
|
|
224
|
+
checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
|
|
228
225
|
dependencies = [
|
|
229
226
|
"proc-macro2",
|
|
230
227
|
"quote",
|
|
@@ -233,57 +230,71 @@ dependencies = [
|
|
|
233
230
|
|
|
234
231
|
[[package]]
|
|
235
232
|
name = "either"
|
|
236
|
-
version = "1.
|
|
233
|
+
version = "1.15.0"
|
|
237
234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
-
checksum = "
|
|
235
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
239
236
|
|
|
240
237
|
[[package]]
|
|
241
238
|
name = "encoding_rs"
|
|
242
|
-
version = "0.8.
|
|
239
|
+
version = "0.8.35"
|
|
243
240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
-
checksum = "
|
|
241
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
245
242
|
dependencies = [
|
|
246
243
|
"cfg-if",
|
|
247
244
|
]
|
|
248
245
|
|
|
249
246
|
[[package]]
|
|
250
247
|
name = "equivalent"
|
|
251
|
-
version = "1.0.
|
|
248
|
+
version = "1.0.2"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "fast-float2"
|
|
254
|
+
version = "0.2.3"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "find-msvc-tools"
|
|
260
|
+
version = "0.1.5"
|
|
252
261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
-
checksum = "
|
|
262
|
+
checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
|
|
254
263
|
|
|
255
264
|
[[package]]
|
|
256
265
|
name = "flate2"
|
|
257
|
-
version = "1.
|
|
266
|
+
version = "1.1.5"
|
|
258
267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
-
checksum = "
|
|
268
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
260
269
|
dependencies = [
|
|
261
270
|
"crc32fast",
|
|
271
|
+
"libz-rs-sys",
|
|
262
272
|
"miniz_oxide",
|
|
263
273
|
]
|
|
264
274
|
|
|
265
275
|
[[package]]
|
|
266
276
|
name = "glob"
|
|
267
|
-
version = "0.3.
|
|
277
|
+
version = "0.3.3"
|
|
268
278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
-
checksum = "
|
|
279
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
270
280
|
|
|
271
281
|
[[package]]
|
|
272
282
|
name = "hashbrown"
|
|
273
|
-
version = "0.
|
|
283
|
+
version = "0.16.0"
|
|
274
284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
-
checksum = "
|
|
285
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
276
286
|
|
|
277
287
|
[[package]]
|
|
278
288
|
name = "iana-time-zone"
|
|
279
|
-
version = "0.1.
|
|
289
|
+
version = "0.1.64"
|
|
280
290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
-
checksum = "
|
|
291
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
282
292
|
dependencies = [
|
|
283
293
|
"android_system_properties",
|
|
284
294
|
"core-foundation-sys",
|
|
285
295
|
"iana-time-zone-haiku",
|
|
286
296
|
"js-sys",
|
|
297
|
+
"log",
|
|
287
298
|
"wasm-bindgen",
|
|
288
299
|
"windows-core",
|
|
289
300
|
]
|
|
@@ -299,9 +310,9 @@ dependencies = [
|
|
|
299
310
|
|
|
300
311
|
[[package]]
|
|
301
312
|
name = "indexmap"
|
|
302
|
-
version = "2.
|
|
313
|
+
version = "2.12.0"
|
|
303
314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
-
checksum = "
|
|
315
|
+
checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
|
|
305
316
|
dependencies = [
|
|
306
317
|
"equivalent",
|
|
307
318
|
"hashbrown",
|
|
@@ -318,16 +329,17 @@ dependencies = [
|
|
|
318
329
|
|
|
319
330
|
[[package]]
|
|
320
331
|
name = "itoa"
|
|
321
|
-
version = "1.0.
|
|
332
|
+
version = "1.0.15"
|
|
322
333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
-
checksum = "
|
|
334
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
324
335
|
|
|
325
336
|
[[package]]
|
|
326
337
|
name = "js-sys"
|
|
327
|
-
version = "0.3.
|
|
338
|
+
version = "0.3.82"
|
|
328
339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
-
checksum = "
|
|
340
|
+
checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
|
|
330
341
|
dependencies = [
|
|
342
|
+
"once_cell",
|
|
331
343
|
"wasm-bindgen",
|
|
332
344
|
]
|
|
333
345
|
|
|
@@ -345,31 +357,40 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
|
345
357
|
|
|
346
358
|
[[package]]
|
|
347
359
|
name = "libc"
|
|
348
|
-
version = "0.2.
|
|
360
|
+
version = "0.2.177"
|
|
349
361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
-
checksum = "
|
|
362
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
351
363
|
|
|
352
364
|
[[package]]
|
|
353
365
|
name = "libloading"
|
|
354
|
-
version = "0.8.
|
|
366
|
+
version = "0.8.9"
|
|
355
367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
-
checksum = "
|
|
368
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
357
369
|
dependencies = [
|
|
358
370
|
"cfg-if",
|
|
359
|
-
"windows-
|
|
371
|
+
"windows-link",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "libz-rs-sys"
|
|
376
|
+
version = "0.5.2"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"zlib-rs",
|
|
360
381
|
]
|
|
361
382
|
|
|
362
383
|
[[package]]
|
|
363
384
|
name = "log"
|
|
364
|
-
version = "0.4.
|
|
385
|
+
version = "0.4.28"
|
|
365
386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
-
checksum = "
|
|
387
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
367
388
|
|
|
368
389
|
[[package]]
|
|
369
390
|
name = "magnus"
|
|
370
|
-
version = "0.
|
|
391
|
+
version = "0.8.2"
|
|
371
392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
-
checksum = "
|
|
393
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
373
394
|
dependencies = [
|
|
374
395
|
"magnus-macros",
|
|
375
396
|
"rb-sys",
|
|
@@ -379,9 +400,9 @@ dependencies = [
|
|
|
379
400
|
|
|
380
401
|
[[package]]
|
|
381
402
|
name = "magnus-macros"
|
|
382
|
-
version = "0.
|
|
403
|
+
version = "0.8.0"
|
|
383
404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
-
checksum = "
|
|
405
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
385
406
|
dependencies = [
|
|
386
407
|
"proc-macro2",
|
|
387
408
|
"quote",
|
|
@@ -390,9 +411,9 @@ dependencies = [
|
|
|
390
411
|
|
|
391
412
|
[[package]]
|
|
392
413
|
name = "memchr"
|
|
393
|
-
version = "2.7.
|
|
414
|
+
version = "2.7.6"
|
|
394
415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
-
checksum = "
|
|
416
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
396
417
|
|
|
397
418
|
[[package]]
|
|
398
419
|
name = "minimal-lexical"
|
|
@@ -402,11 +423,12 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
402
423
|
|
|
403
424
|
[[package]]
|
|
404
425
|
name = "miniz_oxide"
|
|
405
|
-
version = "0.
|
|
426
|
+
version = "0.8.9"
|
|
406
427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
-
checksum = "
|
|
428
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
408
429
|
dependencies = [
|
|
409
|
-
"
|
|
430
|
+
"adler2",
|
|
431
|
+
"simd-adler32",
|
|
410
432
|
]
|
|
411
433
|
|
|
412
434
|
[[package]]
|
|
@@ -428,56 +450,26 @@ dependencies = [
|
|
|
428
450
|
"autocfg",
|
|
429
451
|
]
|
|
430
452
|
|
|
431
|
-
[[package]]
|
|
432
|
-
name = "num_enum"
|
|
433
|
-
version = "0.7.3"
|
|
434
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
-
checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179"
|
|
436
|
-
dependencies = [
|
|
437
|
-
"num_enum_derive",
|
|
438
|
-
]
|
|
439
|
-
|
|
440
|
-
[[package]]
|
|
441
|
-
name = "num_enum_derive"
|
|
442
|
-
version = "0.7.3"
|
|
443
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
-
checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56"
|
|
445
|
-
dependencies = [
|
|
446
|
-
"proc-macro-crate",
|
|
447
|
-
"proc-macro2",
|
|
448
|
-
"quote",
|
|
449
|
-
"syn",
|
|
450
|
-
]
|
|
451
|
-
|
|
452
453
|
[[package]]
|
|
453
454
|
name = "once_cell"
|
|
454
|
-
version = "1.
|
|
455
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
-
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
457
|
-
|
|
458
|
-
[[package]]
|
|
459
|
-
name = "proc-macro-crate"
|
|
460
|
-
version = "3.1.0"
|
|
455
|
+
version = "1.21.3"
|
|
461
456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
-
checksum = "
|
|
463
|
-
dependencies = [
|
|
464
|
-
"toml_edit",
|
|
465
|
-
]
|
|
457
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
466
458
|
|
|
467
459
|
[[package]]
|
|
468
460
|
name = "proc-macro2"
|
|
469
|
-
version = "1.0.
|
|
461
|
+
version = "1.0.103"
|
|
470
462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
-
checksum = "
|
|
463
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
472
464
|
dependencies = [
|
|
473
465
|
"unicode-ident",
|
|
474
466
|
]
|
|
475
467
|
|
|
476
468
|
[[package]]
|
|
477
469
|
name = "quick-xml"
|
|
478
|
-
version = "0.
|
|
470
|
+
version = "0.38.4"
|
|
479
471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
-
checksum = "
|
|
472
|
+
checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
|
|
481
473
|
dependencies = [
|
|
482
474
|
"encoding_rs",
|
|
483
475
|
"memchr",
|
|
@@ -485,27 +477,27 @@ dependencies = [
|
|
|
485
477
|
|
|
486
478
|
[[package]]
|
|
487
479
|
name = "quote"
|
|
488
|
-
version = "1.0.
|
|
480
|
+
version = "1.0.42"
|
|
489
481
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
-
checksum = "
|
|
482
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
491
483
|
dependencies = [
|
|
492
484
|
"proc-macro2",
|
|
493
485
|
]
|
|
494
486
|
|
|
495
487
|
[[package]]
|
|
496
488
|
name = "rb-sys"
|
|
497
|
-
version = "0.9.
|
|
489
|
+
version = "0.9.117"
|
|
498
490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
-
checksum = "
|
|
491
|
+
checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
|
|
500
492
|
dependencies = [
|
|
501
493
|
"rb-sys-build",
|
|
502
494
|
]
|
|
503
495
|
|
|
504
496
|
[[package]]
|
|
505
497
|
name = "rb-sys-build"
|
|
506
|
-
version = "0.9.
|
|
498
|
+
version = "0.9.117"
|
|
507
499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
-
checksum = "
|
|
500
|
+
checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
|
|
509
501
|
dependencies = [
|
|
510
502
|
"bindgen",
|
|
511
503
|
"lazy_static",
|
|
@@ -518,15 +510,15 @@ dependencies = [
|
|
|
518
510
|
|
|
519
511
|
[[package]]
|
|
520
512
|
name = "rb-sys-env"
|
|
521
|
-
version = "0.
|
|
513
|
+
version = "0.2.2"
|
|
522
514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
-
checksum = "
|
|
515
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
|
524
516
|
|
|
525
517
|
[[package]]
|
|
526
518
|
name = "regex"
|
|
527
|
-
version = "1.
|
|
519
|
+
version = "1.12.2"
|
|
528
520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
-
checksum = "
|
|
521
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
530
522
|
dependencies = [
|
|
531
523
|
"aho-corasick",
|
|
532
524
|
"memchr",
|
|
@@ -536,9 +528,9 @@ dependencies = [
|
|
|
536
528
|
|
|
537
529
|
[[package]]
|
|
538
530
|
name = "regex-automata"
|
|
539
|
-
version = "0.4.
|
|
531
|
+
version = "0.4.13"
|
|
540
532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
-
checksum = "
|
|
533
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
542
534
|
dependencies = [
|
|
543
535
|
"aho-corasick",
|
|
544
536
|
"memchr",
|
|
@@ -547,9 +539,9 @@ dependencies = [
|
|
|
547
539
|
|
|
548
540
|
[[package]]
|
|
549
541
|
name = "regex-syntax"
|
|
550
|
-
version = "0.8.
|
|
542
|
+
version = "0.8.8"
|
|
551
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
-
checksum = "
|
|
544
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
553
545
|
|
|
554
546
|
[[package]]
|
|
555
547
|
name = "rustc-hash"
|
|
@@ -557,32 +549,47 @@ version = "1.1.0"
|
|
|
557
549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
550
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
559
551
|
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "rustversion"
|
|
554
|
+
version = "1.0.22"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
557
|
+
|
|
560
558
|
[[package]]
|
|
561
559
|
name = "ryu"
|
|
562
|
-
version = "1.0.
|
|
560
|
+
version = "1.0.20"
|
|
563
561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
-
checksum = "
|
|
562
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
565
563
|
|
|
566
564
|
[[package]]
|
|
567
565
|
name = "seq-macro"
|
|
568
|
-
version = "0.3.
|
|
566
|
+
version = "0.3.6"
|
|
569
567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
-
checksum = "
|
|
568
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
571
569
|
|
|
572
570
|
[[package]]
|
|
573
571
|
name = "serde"
|
|
574
|
-
version = "1.0.
|
|
572
|
+
version = "1.0.228"
|
|
575
573
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
-
checksum = "
|
|
574
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"serde_core",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "serde_core"
|
|
581
|
+
version = "1.0.228"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
577
584
|
dependencies = [
|
|
578
585
|
"serde_derive",
|
|
579
586
|
]
|
|
580
587
|
|
|
581
588
|
[[package]]
|
|
582
589
|
name = "serde_derive"
|
|
583
|
-
version = "1.0.
|
|
590
|
+
version = "1.0.228"
|
|
584
591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
-
checksum = "
|
|
592
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
586
593
|
dependencies = [
|
|
587
594
|
"proc-macro2",
|
|
588
595
|
"quote",
|
|
@@ -602,89 +609,46 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
602
609
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
603
610
|
|
|
604
611
|
[[package]]
|
|
605
|
-
name = "
|
|
606
|
-
version = "
|
|
612
|
+
name = "simd-adler32"
|
|
613
|
+
version = "0.3.7"
|
|
607
614
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
-
checksum = "
|
|
609
|
-
dependencies = [
|
|
610
|
-
"proc-macro2",
|
|
611
|
-
"quote",
|
|
612
|
-
"unicode-ident",
|
|
613
|
-
]
|
|
614
|
-
|
|
615
|
-
[[package]]
|
|
616
|
-
name = "thiserror"
|
|
617
|
-
version = "1.0.63"
|
|
618
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
-
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
|
|
620
|
-
dependencies = [
|
|
621
|
-
"thiserror-impl",
|
|
622
|
-
]
|
|
615
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
623
616
|
|
|
624
617
|
[[package]]
|
|
625
|
-
name = "
|
|
626
|
-
version = "
|
|
618
|
+
name = "syn"
|
|
619
|
+
version = "2.0.110"
|
|
627
620
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
-
checksum = "
|
|
621
|
+
checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
|
|
629
622
|
dependencies = [
|
|
630
623
|
"proc-macro2",
|
|
631
624
|
"quote",
|
|
632
|
-
"
|
|
633
|
-
]
|
|
634
|
-
|
|
635
|
-
[[package]]
|
|
636
|
-
name = "toml_datetime"
|
|
637
|
-
version = "0.6.8"
|
|
638
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
-
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
|
|
640
|
-
|
|
641
|
-
[[package]]
|
|
642
|
-
name = "toml_edit"
|
|
643
|
-
version = "0.21.1"
|
|
644
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
-
checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
|
|
646
|
-
dependencies = [
|
|
647
|
-
"indexmap",
|
|
648
|
-
"toml_datetime",
|
|
649
|
-
"winnow",
|
|
625
|
+
"unicode-ident",
|
|
650
626
|
]
|
|
651
627
|
|
|
652
628
|
[[package]]
|
|
653
629
|
name = "unicode-ident"
|
|
654
|
-
version = "1.0.
|
|
630
|
+
version = "1.0.22"
|
|
655
631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
-
checksum = "
|
|
632
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
657
633
|
|
|
658
634
|
[[package]]
|
|
659
635
|
name = "wasm-bindgen"
|
|
660
|
-
version = "0.2.
|
|
636
|
+
version = "0.2.105"
|
|
661
637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
-
checksum = "
|
|
638
|
+
checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
|
|
663
639
|
dependencies = [
|
|
664
640
|
"cfg-if",
|
|
665
|
-
"wasm-bindgen-macro",
|
|
666
|
-
]
|
|
667
|
-
|
|
668
|
-
[[package]]
|
|
669
|
-
name = "wasm-bindgen-backend"
|
|
670
|
-
version = "0.2.92"
|
|
671
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
-
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
|
673
|
-
dependencies = [
|
|
674
|
-
"bumpalo",
|
|
675
|
-
"log",
|
|
676
641
|
"once_cell",
|
|
677
|
-
"
|
|
678
|
-
"
|
|
679
|
-
"syn",
|
|
642
|
+
"rustversion",
|
|
643
|
+
"wasm-bindgen-macro",
|
|
680
644
|
"wasm-bindgen-shared",
|
|
681
645
|
]
|
|
682
646
|
|
|
683
647
|
[[package]]
|
|
684
648
|
name = "wasm-bindgen-macro"
|
|
685
|
-
version = "0.2.
|
|
649
|
+
version = "0.2.105"
|
|
686
650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
-
checksum = "
|
|
651
|
+
checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
|
|
688
652
|
dependencies = [
|
|
689
653
|
"quote",
|
|
690
654
|
"wasm-bindgen-macro-support",
|
|
@@ -692,117 +656,113 @@ dependencies = [
|
|
|
692
656
|
|
|
693
657
|
[[package]]
|
|
694
658
|
name = "wasm-bindgen-macro-support"
|
|
695
|
-
version = "0.2.
|
|
659
|
+
version = "0.2.105"
|
|
696
660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
-
checksum = "
|
|
661
|
+
checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
|
|
698
662
|
dependencies = [
|
|
663
|
+
"bumpalo",
|
|
699
664
|
"proc-macro2",
|
|
700
665
|
"quote",
|
|
701
666
|
"syn",
|
|
702
|
-
"wasm-bindgen-backend",
|
|
703
667
|
"wasm-bindgen-shared",
|
|
704
668
|
]
|
|
705
669
|
|
|
706
670
|
[[package]]
|
|
707
671
|
name = "wasm-bindgen-shared"
|
|
708
|
-
version = "0.2.
|
|
672
|
+
version = "0.2.105"
|
|
709
673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
-
checksum = "
|
|
674
|
+
checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"unicode-ident",
|
|
677
|
+
]
|
|
711
678
|
|
|
712
679
|
[[package]]
|
|
713
680
|
name = "windows-core"
|
|
714
|
-
version = "0.
|
|
681
|
+
version = "0.62.2"
|
|
715
682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
-
checksum = "
|
|
683
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
717
684
|
dependencies = [
|
|
718
|
-
"windows-
|
|
685
|
+
"windows-implement",
|
|
686
|
+
"windows-interface",
|
|
687
|
+
"windows-link",
|
|
688
|
+
"windows-result",
|
|
689
|
+
"windows-strings",
|
|
719
690
|
]
|
|
720
691
|
|
|
721
692
|
[[package]]
|
|
722
|
-
name = "windows-
|
|
723
|
-
version = "0.
|
|
693
|
+
name = "windows-implement"
|
|
694
|
+
version = "0.60.2"
|
|
724
695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
-
checksum = "
|
|
696
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
726
697
|
dependencies = [
|
|
727
|
-
"
|
|
728
|
-
"
|
|
729
|
-
"
|
|
730
|
-
"windows_i686_gnullvm",
|
|
731
|
-
"windows_i686_msvc",
|
|
732
|
-
"windows_x86_64_gnu",
|
|
733
|
-
"windows_x86_64_gnullvm",
|
|
734
|
-
"windows_x86_64_msvc",
|
|
698
|
+
"proc-macro2",
|
|
699
|
+
"quote",
|
|
700
|
+
"syn",
|
|
735
701
|
]
|
|
736
702
|
|
|
737
703
|
[[package]]
|
|
738
|
-
name = "
|
|
739
|
-
version = "0.
|
|
740
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
-
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
742
|
-
|
|
743
|
-
[[package]]
|
|
744
|
-
name = "windows_aarch64_msvc"
|
|
745
|
-
version = "0.52.6"
|
|
746
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
-
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
748
|
-
|
|
749
|
-
[[package]]
|
|
750
|
-
name = "windows_i686_gnu"
|
|
751
|
-
version = "0.52.6"
|
|
752
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
-
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
754
|
-
|
|
755
|
-
[[package]]
|
|
756
|
-
name = "windows_i686_gnullvm"
|
|
757
|
-
version = "0.52.6"
|
|
704
|
+
name = "windows-interface"
|
|
705
|
+
version = "0.59.3"
|
|
758
706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
-
checksum = "
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
766
|
-
|
|
767
|
-
[[package]]
|
|
768
|
-
name = "windows_x86_64_gnu"
|
|
769
|
-
version = "0.52.6"
|
|
770
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
-
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
707
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"proc-macro2",
|
|
710
|
+
"quote",
|
|
711
|
+
"syn",
|
|
712
|
+
]
|
|
772
713
|
|
|
773
714
|
[[package]]
|
|
774
|
-
name = "
|
|
775
|
-
version = "0.
|
|
715
|
+
name = "windows-link"
|
|
716
|
+
version = "0.2.1"
|
|
776
717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
-
checksum = "
|
|
718
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
778
719
|
|
|
779
720
|
[[package]]
|
|
780
|
-
name = "
|
|
781
|
-
version = "0.
|
|
721
|
+
name = "windows-result"
|
|
722
|
+
version = "0.4.1"
|
|
782
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
-
checksum = "
|
|
724
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"windows-link",
|
|
727
|
+
]
|
|
784
728
|
|
|
785
729
|
[[package]]
|
|
786
|
-
name = "
|
|
787
|
-
version = "0.5.
|
|
730
|
+
name = "windows-strings"
|
|
731
|
+
version = "0.5.1"
|
|
788
732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
-
checksum = "
|
|
733
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
790
734
|
dependencies = [
|
|
791
|
-
"
|
|
735
|
+
"windows-link",
|
|
792
736
|
]
|
|
793
737
|
|
|
794
738
|
[[package]]
|
|
795
739
|
name = "zip"
|
|
796
|
-
version = "
|
|
740
|
+
version = "4.6.1"
|
|
797
741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
-
checksum = "
|
|
742
|
+
checksum = "caa8cd6af31c3b31c6631b8f483848b91589021b28fffe50adada48d4f4d2ed1"
|
|
799
743
|
dependencies = [
|
|
800
744
|
"arbitrary",
|
|
801
745
|
"crc32fast",
|
|
802
|
-
"crossbeam-utils",
|
|
803
|
-
"displaydoc",
|
|
804
746
|
"flate2",
|
|
805
747
|
"indexmap",
|
|
806
|
-
"
|
|
807
|
-
"
|
|
748
|
+
"memchr",
|
|
749
|
+
"zopfli",
|
|
750
|
+
]
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "zlib-rs"
|
|
754
|
+
version = "0.5.2"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "zopfli"
|
|
760
|
+
version = "0.8.3"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"bumpalo",
|
|
765
|
+
"crc32fast",
|
|
766
|
+
"log",
|
|
767
|
+
"simd-adler32",
|
|
808
768
|
]
|