redact_ner 0.1.1
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 +7 -0
- data/CHANGELOG.md +45 -0
- data/Cargo.lock +2255 -0
- data/Cargo.toml +3 -0
- data/LICENSE-APACHE +202 -0
- data/LICENSE-MIT +21 -0
- data/README.md +152 -0
- data/ext/redact_ner/Cargo.toml +19 -0
- data/ext/redact_ner/extconf.rb +6 -0
- data/ext/redact_ner/src/lib.rs +113 -0
- data/lib/redact_ner/version.rb +5 -0
- data/lib/redact_ner.rb +53 -0
- metadata +121 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,2255 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aead"
|
|
7
|
+
version = "0.5.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"crypto-common 0.1.7",
|
|
12
|
+
"generic-array",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[[package]]
|
|
16
|
+
name = "aes"
|
|
17
|
+
version = "0.8.4"
|
|
18
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
20
|
+
dependencies = [
|
|
21
|
+
"cfg-if",
|
|
22
|
+
"cipher",
|
|
23
|
+
"cpufeatures 0.2.17",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "aes-gcm"
|
|
28
|
+
version = "0.10.3"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"aead",
|
|
33
|
+
"aes",
|
|
34
|
+
"cipher",
|
|
35
|
+
"ctr",
|
|
36
|
+
"ghash",
|
|
37
|
+
"subtle",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "ahash"
|
|
42
|
+
version = "0.8.12"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"cfg-if",
|
|
47
|
+
"getrandom 0.3.4",
|
|
48
|
+
"once_cell",
|
|
49
|
+
"serde",
|
|
50
|
+
"version_check",
|
|
51
|
+
"zerocopy",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "aho-corasick"
|
|
56
|
+
version = "1.1.4"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
59
|
+
dependencies = [
|
|
60
|
+
"memchr",
|
|
61
|
+
]
|
|
62
|
+
|
|
63
|
+
[[package]]
|
|
64
|
+
name = "android_system_properties"
|
|
65
|
+
version = "0.1.5"
|
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
68
|
+
dependencies = [
|
|
69
|
+
"libc",
|
|
70
|
+
]
|
|
71
|
+
|
|
72
|
+
[[package]]
|
|
73
|
+
name = "anyhow"
|
|
74
|
+
version = "1.0.102"
|
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "arrayref"
|
|
80
|
+
version = "0.3.9"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "arrayvec"
|
|
86
|
+
version = "0.7.6"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "autocfg"
|
|
92
|
+
version = "1.5.0"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "base64"
|
|
98
|
+
version = "0.13.1"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "base64"
|
|
104
|
+
version = "0.22.1"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "base64ct"
|
|
110
|
+
version = "1.8.3"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "bindgen"
|
|
116
|
+
version = "0.72.1"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
119
|
+
dependencies = [
|
|
120
|
+
"bitflags",
|
|
121
|
+
"cexpr",
|
|
122
|
+
"clang-sys",
|
|
123
|
+
"itertools 0.13.0",
|
|
124
|
+
"proc-macro2",
|
|
125
|
+
"quote",
|
|
126
|
+
"regex",
|
|
127
|
+
"rustc-hash",
|
|
128
|
+
"shlex",
|
|
129
|
+
"syn",
|
|
130
|
+
]
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "bitflags"
|
|
134
|
+
version = "2.11.1"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "blake3"
|
|
140
|
+
version = "1.8.5"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
|
|
143
|
+
dependencies = [
|
|
144
|
+
"arrayref",
|
|
145
|
+
"arrayvec",
|
|
146
|
+
"cc",
|
|
147
|
+
"cfg-if",
|
|
148
|
+
"constant_time_eq",
|
|
149
|
+
"cpufeatures 0.3.0",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "block-buffer"
|
|
154
|
+
version = "0.12.0"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
|
|
157
|
+
dependencies = [
|
|
158
|
+
"hybrid-array",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "bumpalo"
|
|
163
|
+
version = "3.20.2"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "byteorder"
|
|
169
|
+
version = "1.5.0"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "bytes"
|
|
175
|
+
version = "1.11.1"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "castaway"
|
|
181
|
+
version = "0.2.4"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
184
|
+
dependencies = [
|
|
185
|
+
"rustversion",
|
|
186
|
+
]
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "cc"
|
|
190
|
+
version = "1.2.62"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
|
|
193
|
+
dependencies = [
|
|
194
|
+
"find-msvc-tools",
|
|
195
|
+
"shlex",
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "cexpr"
|
|
200
|
+
version = "0.6.0"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"nom",
|
|
205
|
+
]
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "cfg-if"
|
|
209
|
+
version = "1.0.4"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "chacha20"
|
|
215
|
+
version = "0.10.0"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"cfg-if",
|
|
220
|
+
"cpufeatures 0.3.0",
|
|
221
|
+
"rand_core 0.10.1",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "chrono"
|
|
226
|
+
version = "0.4.44"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
229
|
+
dependencies = [
|
|
230
|
+
"iana-time-zone",
|
|
231
|
+
"js-sys",
|
|
232
|
+
"num-traits",
|
|
233
|
+
"serde",
|
|
234
|
+
"wasm-bindgen",
|
|
235
|
+
"windows-link",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "cipher"
|
|
240
|
+
version = "0.4.4"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
243
|
+
dependencies = [
|
|
244
|
+
"crypto-common 0.1.7",
|
|
245
|
+
"inout",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "clang-sys"
|
|
250
|
+
version = "1.8.1"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"glob",
|
|
255
|
+
"libc",
|
|
256
|
+
"libloading 0.8.9",
|
|
257
|
+
]
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "cmov"
|
|
261
|
+
version = "0.5.3"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "3f88a43d011fc4a6876cb7344703e297c71dda42494fee094d5f7c76bf13f746"
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "compact_str"
|
|
267
|
+
version = "0.9.0"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"castaway",
|
|
272
|
+
"cfg-if",
|
|
273
|
+
"itoa",
|
|
274
|
+
"rustversion",
|
|
275
|
+
"ryu",
|
|
276
|
+
"serde",
|
|
277
|
+
"static_assertions",
|
|
278
|
+
]
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "console"
|
|
282
|
+
version = "0.16.3"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
|
|
285
|
+
dependencies = [
|
|
286
|
+
"encode_unicode",
|
|
287
|
+
"libc",
|
|
288
|
+
"unicode-width",
|
|
289
|
+
"windows-sys",
|
|
290
|
+
]
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "const-oid"
|
|
294
|
+
version = "0.10.2"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "constant_time_eq"
|
|
300
|
+
version = "0.4.2"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "core-foundation"
|
|
306
|
+
version = "0.10.1"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"core-foundation-sys",
|
|
311
|
+
"libc",
|
|
312
|
+
]
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "core-foundation-sys"
|
|
316
|
+
version = "0.8.7"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "cpufeatures"
|
|
322
|
+
version = "0.2.17"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
325
|
+
dependencies = [
|
|
326
|
+
"libc",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "cpufeatures"
|
|
331
|
+
version = "0.3.0"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"libc",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "crossbeam-deque"
|
|
340
|
+
version = "0.8.6"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"crossbeam-epoch",
|
|
345
|
+
"crossbeam-utils",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "crossbeam-epoch"
|
|
350
|
+
version = "0.9.18"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"crossbeam-utils",
|
|
355
|
+
]
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "crossbeam-utils"
|
|
359
|
+
version = "0.8.21"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "crunchy"
|
|
365
|
+
version = "0.2.4"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
368
|
+
|
|
369
|
+
[[package]]
|
|
370
|
+
name = "crypto-common"
|
|
371
|
+
version = "0.1.7"
|
|
372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
374
|
+
dependencies = [
|
|
375
|
+
"generic-array",
|
|
376
|
+
"rand_core 0.6.4",
|
|
377
|
+
"typenum",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "crypto-common"
|
|
382
|
+
version = "0.2.1"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"hybrid-array",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "ctr"
|
|
391
|
+
version = "0.9.2"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"cipher",
|
|
396
|
+
]
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "ctutils"
|
|
400
|
+
version = "0.4.2"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
|
|
403
|
+
dependencies = [
|
|
404
|
+
"cmov",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "darling"
|
|
409
|
+
version = "0.20.11"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"darling_core",
|
|
414
|
+
"darling_macro",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "darling_core"
|
|
419
|
+
version = "0.20.11"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"fnv",
|
|
424
|
+
"ident_case",
|
|
425
|
+
"proc-macro2",
|
|
426
|
+
"quote",
|
|
427
|
+
"strsim",
|
|
428
|
+
"syn",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "darling_macro"
|
|
433
|
+
version = "0.20.11"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"darling_core",
|
|
438
|
+
"quote",
|
|
439
|
+
"syn",
|
|
440
|
+
]
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "dary_heap"
|
|
444
|
+
version = "0.3.9"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "8b1e3a325bc115f096c8b77bbf027a7c2592230e70be2d985be950d3d5e60ebe"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"serde",
|
|
449
|
+
]
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "der"
|
|
453
|
+
version = "0.8.0"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"pem-rfc7468",
|
|
458
|
+
"zeroize",
|
|
459
|
+
]
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "derive_builder"
|
|
463
|
+
version = "0.20.2"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"derive_builder_macro",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "derive_builder_core"
|
|
472
|
+
version = "0.20.2"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"darling",
|
|
477
|
+
"proc-macro2",
|
|
478
|
+
"quote",
|
|
479
|
+
"syn",
|
|
480
|
+
]
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "derive_builder_macro"
|
|
484
|
+
version = "0.20.2"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
487
|
+
dependencies = [
|
|
488
|
+
"derive_builder_core",
|
|
489
|
+
"syn",
|
|
490
|
+
]
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "digest"
|
|
494
|
+
version = "0.11.3"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
497
|
+
dependencies = [
|
|
498
|
+
"block-buffer",
|
|
499
|
+
"const-oid",
|
|
500
|
+
"crypto-common 0.2.1",
|
|
501
|
+
"ctutils",
|
|
502
|
+
]
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "either"
|
|
506
|
+
version = "1.15.0"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "encode_unicode"
|
|
512
|
+
version = "1.0.0"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "equivalent"
|
|
518
|
+
version = "1.0.2"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "errno"
|
|
524
|
+
version = "0.3.14"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"libc",
|
|
529
|
+
"windows-sys",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "esaxx-rs"
|
|
534
|
+
version = "0.1.10"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "d817e038c30374a4bcb22f94d0a8a0e216958d4c3dcde369b1439fec4bdda6e6"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"cc",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "fastrand"
|
|
543
|
+
version = "2.4.1"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "find-msvc-tools"
|
|
549
|
+
version = "0.1.9"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "fnv"
|
|
555
|
+
version = "1.0.7"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "foldhash"
|
|
561
|
+
version = "0.1.5"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "foreign-types"
|
|
567
|
+
version = "0.3.2"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"foreign-types-shared",
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "foreign-types-shared"
|
|
576
|
+
version = "0.1.1"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
579
|
+
|
|
580
|
+
[[package]]
|
|
581
|
+
name = "futures-core"
|
|
582
|
+
version = "0.3.32"
|
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "futures-task"
|
|
588
|
+
version = "0.3.32"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "futures-util"
|
|
594
|
+
version = "0.3.32"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
597
|
+
dependencies = [
|
|
598
|
+
"futures-core",
|
|
599
|
+
"futures-task",
|
|
600
|
+
"pin-project-lite",
|
|
601
|
+
"slab",
|
|
602
|
+
]
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "generic-array"
|
|
606
|
+
version = "0.14.7"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"typenum",
|
|
611
|
+
"version_check",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "getrandom"
|
|
616
|
+
version = "0.2.17"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"cfg-if",
|
|
621
|
+
"libc",
|
|
622
|
+
"wasi",
|
|
623
|
+
]
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "getrandom"
|
|
627
|
+
version = "0.3.4"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
630
|
+
dependencies = [
|
|
631
|
+
"cfg-if",
|
|
632
|
+
"libc",
|
|
633
|
+
"r-efi 5.3.0",
|
|
634
|
+
"wasip2",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "getrandom"
|
|
639
|
+
version = "0.4.2"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"cfg-if",
|
|
644
|
+
"libc",
|
|
645
|
+
"r-efi 6.0.0",
|
|
646
|
+
"rand_core 0.10.1",
|
|
647
|
+
"wasip2",
|
|
648
|
+
"wasip3",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "ghash"
|
|
653
|
+
version = "0.5.1"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"opaque-debug",
|
|
658
|
+
"polyval",
|
|
659
|
+
]
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "glob"
|
|
663
|
+
version = "0.3.3"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "half"
|
|
669
|
+
version = "2.7.1"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
672
|
+
dependencies = [
|
|
673
|
+
"cfg-if",
|
|
674
|
+
"crunchy",
|
|
675
|
+
"zerocopy",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "hashbrown"
|
|
680
|
+
version = "0.15.5"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"foldhash",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "hashbrown"
|
|
689
|
+
version = "0.17.1"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "heck"
|
|
695
|
+
version = "0.5.0"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "hmac"
|
|
701
|
+
version = "0.13.0"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"digest",
|
|
706
|
+
]
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "hmac-sha256"
|
|
710
|
+
version = "1.1.14"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "ec9d92d097f4749b64e8cc33d924d9f40a2d4eb91402b458014b781f5733d60f"
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "http"
|
|
716
|
+
version = "1.4.0"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
719
|
+
dependencies = [
|
|
720
|
+
"bytes",
|
|
721
|
+
"itoa",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "httparse"
|
|
726
|
+
version = "1.10.1"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
729
|
+
|
|
730
|
+
[[package]]
|
|
731
|
+
name = "hybrid-array"
|
|
732
|
+
version = "0.4.12"
|
|
733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
+
checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
|
|
735
|
+
dependencies = [
|
|
736
|
+
"typenum",
|
|
737
|
+
]
|
|
738
|
+
|
|
739
|
+
[[package]]
|
|
740
|
+
name = "iana-time-zone"
|
|
741
|
+
version = "0.1.65"
|
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
744
|
+
dependencies = [
|
|
745
|
+
"android_system_properties",
|
|
746
|
+
"core-foundation-sys",
|
|
747
|
+
"iana-time-zone-haiku",
|
|
748
|
+
"js-sys",
|
|
749
|
+
"log",
|
|
750
|
+
"wasm-bindgen",
|
|
751
|
+
"windows-core",
|
|
752
|
+
]
|
|
753
|
+
|
|
754
|
+
[[package]]
|
|
755
|
+
name = "iana-time-zone-haiku"
|
|
756
|
+
version = "0.1.2"
|
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
759
|
+
dependencies = [
|
|
760
|
+
"cc",
|
|
761
|
+
]
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "id-arena"
|
|
765
|
+
version = "2.3.0"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "ident_case"
|
|
771
|
+
version = "1.0.1"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "indexmap"
|
|
777
|
+
version = "2.14.0"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
780
|
+
dependencies = [
|
|
781
|
+
"equivalent",
|
|
782
|
+
"hashbrown 0.17.1",
|
|
783
|
+
"serde",
|
|
784
|
+
"serde_core",
|
|
785
|
+
]
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "indicatif"
|
|
789
|
+
version = "0.18.4"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "25470f23803092da7d239834776d653104d551bc4d7eacaf31e6837854b8e9eb"
|
|
792
|
+
dependencies = [
|
|
793
|
+
"console",
|
|
794
|
+
"portable-atomic",
|
|
795
|
+
"unicode-width",
|
|
796
|
+
"unit-prefix",
|
|
797
|
+
"web-time",
|
|
798
|
+
]
|
|
799
|
+
|
|
800
|
+
[[package]]
|
|
801
|
+
name = "inout"
|
|
802
|
+
version = "0.1.4"
|
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
805
|
+
dependencies = [
|
|
806
|
+
"generic-array",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "itertools"
|
|
811
|
+
version = "0.13.0"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"either",
|
|
816
|
+
]
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "itertools"
|
|
820
|
+
version = "0.14.0"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
823
|
+
dependencies = [
|
|
824
|
+
"either",
|
|
825
|
+
]
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "itoa"
|
|
829
|
+
version = "1.0.18"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "js-sys"
|
|
835
|
+
version = "0.3.98"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
|
|
838
|
+
dependencies = [
|
|
839
|
+
"cfg-if",
|
|
840
|
+
"futures-util",
|
|
841
|
+
"once_cell",
|
|
842
|
+
"wasm-bindgen",
|
|
843
|
+
]
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "lazy_static"
|
|
847
|
+
version = "1.5.0"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "leb128fmt"
|
|
853
|
+
version = "0.1.0"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "libc"
|
|
859
|
+
version = "0.2.186"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
862
|
+
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "libloading"
|
|
865
|
+
version = "0.8.9"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"cfg-if",
|
|
870
|
+
"windows-link",
|
|
871
|
+
]
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "libloading"
|
|
875
|
+
version = "0.9.0"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"cfg-if",
|
|
880
|
+
"windows-link",
|
|
881
|
+
]
|
|
882
|
+
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "linux-raw-sys"
|
|
885
|
+
version = "0.12.1"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "log"
|
|
891
|
+
version = "0.4.29"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "lzma-rust2"
|
|
897
|
+
version = "0.15.7"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "1670343e58806300d87950e3401e820b519b9384281bbabfb15e3636689ffd69"
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "macro_rules_attribute"
|
|
903
|
+
version = "0.2.2"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "65049d7923698040cd0b1ddcced9b0eb14dd22c5f86ae59c3740eab64a676520"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"macro_rules_attribute-proc_macro",
|
|
908
|
+
"paste",
|
|
909
|
+
]
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "macro_rules_attribute-proc_macro"
|
|
913
|
+
version = "0.2.2"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "670fdfda89751bc4a84ac13eaa63e205cf0fd22b4c9a5fbfa085b63c1f1d3a30"
|
|
916
|
+
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "magnus"
|
|
919
|
+
version = "0.8.2"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
922
|
+
dependencies = [
|
|
923
|
+
"magnus-macros",
|
|
924
|
+
"rb-sys",
|
|
925
|
+
"rb-sys-env",
|
|
926
|
+
"seq-macro",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "magnus-macros"
|
|
931
|
+
version = "0.8.0"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"proc-macro2",
|
|
936
|
+
"quote",
|
|
937
|
+
"syn",
|
|
938
|
+
]
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "matrixmultiply"
|
|
942
|
+
version = "0.3.10"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
945
|
+
dependencies = [
|
|
946
|
+
"autocfg",
|
|
947
|
+
"rawpointer",
|
|
948
|
+
]
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "memchr"
|
|
952
|
+
version = "2.8.0"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "minimal-lexical"
|
|
958
|
+
version = "0.2.1"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "monostate"
|
|
964
|
+
version = "0.1.18"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "3341a273f6c9d5bef1908f17b7267bbab0e95c9bf69a0d4dcf8e9e1b2c76ef67"
|
|
967
|
+
dependencies = [
|
|
968
|
+
"monostate-impl",
|
|
969
|
+
"serde",
|
|
970
|
+
"serde_core",
|
|
971
|
+
]
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "monostate-impl"
|
|
975
|
+
version = "0.1.18"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "e4db6d5580af57bf992f59068d4ea26fd518574ff48d7639b255a36f9de6e7e9"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"proc-macro2",
|
|
980
|
+
"quote",
|
|
981
|
+
"syn",
|
|
982
|
+
]
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "native-tls"
|
|
986
|
+
version = "0.2.18"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
|
|
989
|
+
dependencies = [
|
|
990
|
+
"libc",
|
|
991
|
+
"log",
|
|
992
|
+
"openssl",
|
|
993
|
+
"openssl-probe",
|
|
994
|
+
"openssl-sys",
|
|
995
|
+
"schannel",
|
|
996
|
+
"security-framework",
|
|
997
|
+
"security-framework-sys",
|
|
998
|
+
"tempfile",
|
|
999
|
+
]
|
|
1000
|
+
|
|
1001
|
+
[[package]]
|
|
1002
|
+
name = "ndarray"
|
|
1003
|
+
version = "0.17.2"
|
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
1006
|
+
dependencies = [
|
|
1007
|
+
"matrixmultiply",
|
|
1008
|
+
"num-complex",
|
|
1009
|
+
"num-integer",
|
|
1010
|
+
"num-traits",
|
|
1011
|
+
"portable-atomic",
|
|
1012
|
+
"portable-atomic-util",
|
|
1013
|
+
"rawpointer",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "nom"
|
|
1018
|
+
version = "7.1.3"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1021
|
+
dependencies = [
|
|
1022
|
+
"memchr",
|
|
1023
|
+
"minimal-lexical",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "num-complex"
|
|
1028
|
+
version = "0.4.6"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"num-traits",
|
|
1033
|
+
]
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "num-integer"
|
|
1037
|
+
version = "0.1.46"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1040
|
+
dependencies = [
|
|
1041
|
+
"num-traits",
|
|
1042
|
+
]
|
|
1043
|
+
|
|
1044
|
+
[[package]]
|
|
1045
|
+
name = "num-traits"
|
|
1046
|
+
version = "0.2.19"
|
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1049
|
+
dependencies = [
|
|
1050
|
+
"autocfg",
|
|
1051
|
+
]
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "once_cell"
|
|
1055
|
+
version = "1.21.4"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "onig"
|
|
1061
|
+
version = "6.5.3"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "0cc3cbf698f9438986c11a880c90a6d04b9de27575afd28bbf45b154b6c709e2"
|
|
1064
|
+
dependencies = [
|
|
1065
|
+
"bitflags",
|
|
1066
|
+
"libc",
|
|
1067
|
+
"once_cell",
|
|
1068
|
+
"onig_sys",
|
|
1069
|
+
]
|
|
1070
|
+
|
|
1071
|
+
[[package]]
|
|
1072
|
+
name = "onig_sys"
|
|
1073
|
+
version = "69.9.3"
|
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
+
checksum = "1e68317604e77e53b85896388e1a803c1d21b74c899ec9e5e1112db90735edd7"
|
|
1076
|
+
dependencies = [
|
|
1077
|
+
"cc",
|
|
1078
|
+
"pkg-config",
|
|
1079
|
+
]
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "opaque-debug"
|
|
1083
|
+
version = "0.3.1"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "openssl"
|
|
1089
|
+
version = "0.10.79"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "bf0b434746ee2832f4f0baf10137e1cabb18cbe6912c69e2e33263c45250f542"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"bitflags",
|
|
1094
|
+
"cfg-if",
|
|
1095
|
+
"foreign-types",
|
|
1096
|
+
"libc",
|
|
1097
|
+
"openssl-macros",
|
|
1098
|
+
"openssl-sys",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "openssl-macros"
|
|
1103
|
+
version = "0.1.1"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"proc-macro2",
|
|
1108
|
+
"quote",
|
|
1109
|
+
"syn",
|
|
1110
|
+
]
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "openssl-probe"
|
|
1114
|
+
version = "0.2.1"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "openssl-src"
|
|
1120
|
+
version = "300.6.0+3.6.2"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "a8e8cbfd3a4a8c8f089147fd7aaa33cf8c7450c4d09f8f80698a0cf093abeff4"
|
|
1123
|
+
dependencies = [
|
|
1124
|
+
"cc",
|
|
1125
|
+
]
|
|
1126
|
+
|
|
1127
|
+
[[package]]
|
|
1128
|
+
name = "openssl-sys"
|
|
1129
|
+
version = "0.9.115"
|
|
1130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1131
|
+
checksum = "158fe5b292746440aa6e7a7e690e55aeb72d41505e2804c23c6973ad0e9c9781"
|
|
1132
|
+
dependencies = [
|
|
1133
|
+
"cc",
|
|
1134
|
+
"libc",
|
|
1135
|
+
"openssl-src",
|
|
1136
|
+
"pkg-config",
|
|
1137
|
+
"vcpkg",
|
|
1138
|
+
]
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "ort"
|
|
1142
|
+
version = "2.0.0-rc.12"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "d7de3af33d24a745ffb8fab904b13478438d1cd52868e6f17735ef6e1f8bf133"
|
|
1145
|
+
dependencies = [
|
|
1146
|
+
"half",
|
|
1147
|
+
"libloading 0.9.0",
|
|
1148
|
+
"ndarray",
|
|
1149
|
+
"ort-sys",
|
|
1150
|
+
"smallvec",
|
|
1151
|
+
"tracing",
|
|
1152
|
+
"ureq",
|
|
1153
|
+
]
|
|
1154
|
+
|
|
1155
|
+
[[package]]
|
|
1156
|
+
name = "ort-sys"
|
|
1157
|
+
version = "2.0.0-rc.12"
|
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
+
checksum = "d7b497d21a8b6fbb4b5a544f8fadb77e801a09ae0add9e411d31c6f89e3c1e90"
|
|
1160
|
+
dependencies = [
|
|
1161
|
+
"hmac-sha256",
|
|
1162
|
+
"lzma-rust2",
|
|
1163
|
+
"ureq",
|
|
1164
|
+
]
|
|
1165
|
+
|
|
1166
|
+
[[package]]
|
|
1167
|
+
name = "paste"
|
|
1168
|
+
version = "1.0.15"
|
|
1169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "pbkdf2"
|
|
1174
|
+
version = "0.13.0"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "112d82ceb8c5bf524d9af484d4e4970c9fd5a0cc15ba14ad93dccd28873b0629"
|
|
1177
|
+
dependencies = [
|
|
1178
|
+
"digest",
|
|
1179
|
+
"hmac",
|
|
1180
|
+
"sha2",
|
|
1181
|
+
]
|
|
1182
|
+
|
|
1183
|
+
[[package]]
|
|
1184
|
+
name = "pem-rfc7468"
|
|
1185
|
+
version = "1.0.0"
|
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1187
|
+
checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
|
|
1188
|
+
dependencies = [
|
|
1189
|
+
"base64ct",
|
|
1190
|
+
]
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "percent-encoding"
|
|
1194
|
+
version = "2.3.2"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "pin-project-lite"
|
|
1200
|
+
version = "0.2.17"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1203
|
+
|
|
1204
|
+
[[package]]
|
|
1205
|
+
name = "pkg-config"
|
|
1206
|
+
version = "0.3.33"
|
|
1207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
1209
|
+
|
|
1210
|
+
[[package]]
|
|
1211
|
+
name = "polyval"
|
|
1212
|
+
version = "0.6.2"
|
|
1213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1214
|
+
checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
|
|
1215
|
+
dependencies = [
|
|
1216
|
+
"cfg-if",
|
|
1217
|
+
"cpufeatures 0.2.17",
|
|
1218
|
+
"opaque-debug",
|
|
1219
|
+
"universal-hash",
|
|
1220
|
+
]
|
|
1221
|
+
|
|
1222
|
+
[[package]]
|
|
1223
|
+
name = "portable-atomic"
|
|
1224
|
+
version = "1.13.1"
|
|
1225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1226
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "portable-atomic-util"
|
|
1230
|
+
version = "0.2.7"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
1233
|
+
dependencies = [
|
|
1234
|
+
"portable-atomic",
|
|
1235
|
+
]
|
|
1236
|
+
|
|
1237
|
+
[[package]]
|
|
1238
|
+
name = "ppv-lite86"
|
|
1239
|
+
version = "0.2.21"
|
|
1240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1242
|
+
dependencies = [
|
|
1243
|
+
"zerocopy",
|
|
1244
|
+
]
|
|
1245
|
+
|
|
1246
|
+
[[package]]
|
|
1247
|
+
name = "prettyplease"
|
|
1248
|
+
version = "0.2.37"
|
|
1249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1250
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1251
|
+
dependencies = [
|
|
1252
|
+
"proc-macro2",
|
|
1253
|
+
"syn",
|
|
1254
|
+
]
|
|
1255
|
+
|
|
1256
|
+
[[package]]
|
|
1257
|
+
name = "proc-macro2"
|
|
1258
|
+
version = "1.0.106"
|
|
1259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1261
|
+
dependencies = [
|
|
1262
|
+
"unicode-ident",
|
|
1263
|
+
]
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "quote"
|
|
1267
|
+
version = "1.0.45"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"proc-macro2",
|
|
1272
|
+
]
|
|
1273
|
+
|
|
1274
|
+
[[package]]
|
|
1275
|
+
name = "r-efi"
|
|
1276
|
+
version = "5.3.0"
|
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "r-efi"
|
|
1282
|
+
version = "6.0.0"
|
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1285
|
+
|
|
1286
|
+
[[package]]
|
|
1287
|
+
name = "rand"
|
|
1288
|
+
version = "0.9.4"
|
|
1289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
1291
|
+
dependencies = [
|
|
1292
|
+
"rand_chacha",
|
|
1293
|
+
"rand_core 0.9.5",
|
|
1294
|
+
]
|
|
1295
|
+
|
|
1296
|
+
[[package]]
|
|
1297
|
+
name = "rand"
|
|
1298
|
+
version = "0.10.1"
|
|
1299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
+
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
1301
|
+
dependencies = [
|
|
1302
|
+
"chacha20",
|
|
1303
|
+
"getrandom 0.4.2",
|
|
1304
|
+
"rand_core 0.10.1",
|
|
1305
|
+
]
|
|
1306
|
+
|
|
1307
|
+
[[package]]
|
|
1308
|
+
name = "rand_chacha"
|
|
1309
|
+
version = "0.9.0"
|
|
1310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1311
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1312
|
+
dependencies = [
|
|
1313
|
+
"ppv-lite86",
|
|
1314
|
+
"rand_core 0.9.5",
|
|
1315
|
+
]
|
|
1316
|
+
|
|
1317
|
+
[[package]]
|
|
1318
|
+
name = "rand_core"
|
|
1319
|
+
version = "0.6.4"
|
|
1320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1321
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1322
|
+
dependencies = [
|
|
1323
|
+
"getrandom 0.2.17",
|
|
1324
|
+
]
|
|
1325
|
+
|
|
1326
|
+
[[package]]
|
|
1327
|
+
name = "rand_core"
|
|
1328
|
+
version = "0.9.5"
|
|
1329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1330
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1331
|
+
dependencies = [
|
|
1332
|
+
"getrandom 0.3.4",
|
|
1333
|
+
]
|
|
1334
|
+
|
|
1335
|
+
[[package]]
|
|
1336
|
+
name = "rand_core"
|
|
1337
|
+
version = "0.10.1"
|
|
1338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
1340
|
+
|
|
1341
|
+
[[package]]
|
|
1342
|
+
name = "rawpointer"
|
|
1343
|
+
version = "0.2.1"
|
|
1344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
1346
|
+
|
|
1347
|
+
[[package]]
|
|
1348
|
+
name = "rayon"
|
|
1349
|
+
version = "1.12.0"
|
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1352
|
+
dependencies = [
|
|
1353
|
+
"either",
|
|
1354
|
+
"rayon-core",
|
|
1355
|
+
]
|
|
1356
|
+
|
|
1357
|
+
[[package]]
|
|
1358
|
+
name = "rayon-cond"
|
|
1359
|
+
version = "0.4.0"
|
|
1360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1361
|
+
checksum = "2964d0cf57a3e7a06e8183d14a8b527195c706b7983549cd5462d5aa3747438f"
|
|
1362
|
+
dependencies = [
|
|
1363
|
+
"either",
|
|
1364
|
+
"itertools 0.14.0",
|
|
1365
|
+
"rayon",
|
|
1366
|
+
]
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "rayon-core"
|
|
1370
|
+
version = "1.13.0"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1373
|
+
dependencies = [
|
|
1374
|
+
"crossbeam-deque",
|
|
1375
|
+
"crossbeam-utils",
|
|
1376
|
+
]
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "rb-sys"
|
|
1380
|
+
version = "0.9.128"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
|
|
1383
|
+
dependencies = [
|
|
1384
|
+
"rb-sys-build",
|
|
1385
|
+
]
|
|
1386
|
+
|
|
1387
|
+
[[package]]
|
|
1388
|
+
name = "rb-sys-build"
|
|
1389
|
+
version = "0.9.128"
|
|
1390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1391
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
1392
|
+
dependencies = [
|
|
1393
|
+
"bindgen",
|
|
1394
|
+
"lazy_static",
|
|
1395
|
+
"proc-macro2",
|
|
1396
|
+
"quote",
|
|
1397
|
+
"regex",
|
|
1398
|
+
"shell-words",
|
|
1399
|
+
"syn",
|
|
1400
|
+
]
|
|
1401
|
+
|
|
1402
|
+
[[package]]
|
|
1403
|
+
name = "rb-sys-env"
|
|
1404
|
+
version = "0.2.3"
|
|
1405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
1407
|
+
|
|
1408
|
+
[[package]]
|
|
1409
|
+
name = "redact-core"
|
|
1410
|
+
version = "0.8.3"
|
|
1411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
+
checksum = "c791901fc9f06321a08d379ea9fb87b8dc8ed97402a4942cd9bb81615e618cc7"
|
|
1413
|
+
dependencies = [
|
|
1414
|
+
"aes-gcm",
|
|
1415
|
+
"anyhow",
|
|
1416
|
+
"blake3",
|
|
1417
|
+
"chrono",
|
|
1418
|
+
"lazy_static",
|
|
1419
|
+
"pbkdf2",
|
|
1420
|
+
"rand 0.10.1",
|
|
1421
|
+
"regex",
|
|
1422
|
+
"serde",
|
|
1423
|
+
"serde_json",
|
|
1424
|
+
"sha2",
|
|
1425
|
+
"thiserror",
|
|
1426
|
+
"tracing",
|
|
1427
|
+
"uuid",
|
|
1428
|
+
]
|
|
1429
|
+
|
|
1430
|
+
[[package]]
|
|
1431
|
+
name = "redact-ner"
|
|
1432
|
+
version = "0.8.3"
|
|
1433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1434
|
+
checksum = "abe6e7b0401bbea85aa90ec5cd554f886813e55453e5284156f36d017a7149bd"
|
|
1435
|
+
dependencies = [
|
|
1436
|
+
"anyhow",
|
|
1437
|
+
"ndarray",
|
|
1438
|
+
"ort",
|
|
1439
|
+
"redact-core",
|
|
1440
|
+
"serde",
|
|
1441
|
+
"serde_json",
|
|
1442
|
+
"thiserror",
|
|
1443
|
+
"tokenizers",
|
|
1444
|
+
"tracing",
|
|
1445
|
+
]
|
|
1446
|
+
|
|
1447
|
+
[[package]]
|
|
1448
|
+
name = "redact_ner"
|
|
1449
|
+
version = "0.1.0"
|
|
1450
|
+
dependencies = [
|
|
1451
|
+
"magnus",
|
|
1452
|
+
"openssl-sys",
|
|
1453
|
+
"redact-core",
|
|
1454
|
+
"redact-ner",
|
|
1455
|
+
]
|
|
1456
|
+
|
|
1457
|
+
[[package]]
|
|
1458
|
+
name = "regex"
|
|
1459
|
+
version = "1.12.3"
|
|
1460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1461
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1462
|
+
dependencies = [
|
|
1463
|
+
"aho-corasick",
|
|
1464
|
+
"memchr",
|
|
1465
|
+
"regex-automata",
|
|
1466
|
+
"regex-syntax",
|
|
1467
|
+
]
|
|
1468
|
+
|
|
1469
|
+
[[package]]
|
|
1470
|
+
name = "regex-automata"
|
|
1471
|
+
version = "0.4.14"
|
|
1472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1474
|
+
dependencies = [
|
|
1475
|
+
"aho-corasick",
|
|
1476
|
+
"memchr",
|
|
1477
|
+
"regex-syntax",
|
|
1478
|
+
]
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "regex-syntax"
|
|
1482
|
+
version = "0.8.10"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1485
|
+
|
|
1486
|
+
[[package]]
|
|
1487
|
+
name = "rustc-hash"
|
|
1488
|
+
version = "2.1.2"
|
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "rustix"
|
|
1494
|
+
version = "1.1.4"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1497
|
+
dependencies = [
|
|
1498
|
+
"bitflags",
|
|
1499
|
+
"errno",
|
|
1500
|
+
"libc",
|
|
1501
|
+
"linux-raw-sys",
|
|
1502
|
+
"windows-sys",
|
|
1503
|
+
]
|
|
1504
|
+
|
|
1505
|
+
[[package]]
|
|
1506
|
+
name = "rustls-pki-types"
|
|
1507
|
+
version = "1.14.1"
|
|
1508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
1510
|
+
dependencies = [
|
|
1511
|
+
"zeroize",
|
|
1512
|
+
]
|
|
1513
|
+
|
|
1514
|
+
[[package]]
|
|
1515
|
+
name = "rustversion"
|
|
1516
|
+
version = "1.0.22"
|
|
1517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1518
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1519
|
+
|
|
1520
|
+
[[package]]
|
|
1521
|
+
name = "ryu"
|
|
1522
|
+
version = "1.0.23"
|
|
1523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1524
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1525
|
+
|
|
1526
|
+
[[package]]
|
|
1527
|
+
name = "schannel"
|
|
1528
|
+
version = "0.1.29"
|
|
1529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1530
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
1531
|
+
dependencies = [
|
|
1532
|
+
"windows-sys",
|
|
1533
|
+
]
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "security-framework"
|
|
1537
|
+
version = "3.7.0"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"bitflags",
|
|
1542
|
+
"core-foundation",
|
|
1543
|
+
"core-foundation-sys",
|
|
1544
|
+
"libc",
|
|
1545
|
+
"security-framework-sys",
|
|
1546
|
+
]
|
|
1547
|
+
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "security-framework-sys"
|
|
1550
|
+
version = "2.17.0"
|
|
1551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
1553
|
+
dependencies = [
|
|
1554
|
+
"core-foundation-sys",
|
|
1555
|
+
"libc",
|
|
1556
|
+
]
|
|
1557
|
+
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "semver"
|
|
1560
|
+
version = "1.0.28"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1563
|
+
|
|
1564
|
+
[[package]]
|
|
1565
|
+
name = "seq-macro"
|
|
1566
|
+
version = "0.3.6"
|
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
1569
|
+
|
|
1570
|
+
[[package]]
|
|
1571
|
+
name = "serde"
|
|
1572
|
+
version = "1.0.228"
|
|
1573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1574
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1575
|
+
dependencies = [
|
|
1576
|
+
"serde_core",
|
|
1577
|
+
"serde_derive",
|
|
1578
|
+
]
|
|
1579
|
+
|
|
1580
|
+
[[package]]
|
|
1581
|
+
name = "serde_core"
|
|
1582
|
+
version = "1.0.228"
|
|
1583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1585
|
+
dependencies = [
|
|
1586
|
+
"serde_derive",
|
|
1587
|
+
]
|
|
1588
|
+
|
|
1589
|
+
[[package]]
|
|
1590
|
+
name = "serde_derive"
|
|
1591
|
+
version = "1.0.228"
|
|
1592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1593
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1594
|
+
dependencies = [
|
|
1595
|
+
"proc-macro2",
|
|
1596
|
+
"quote",
|
|
1597
|
+
"syn",
|
|
1598
|
+
]
|
|
1599
|
+
|
|
1600
|
+
[[package]]
|
|
1601
|
+
name = "serde_json"
|
|
1602
|
+
version = "1.0.149"
|
|
1603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1604
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1605
|
+
dependencies = [
|
|
1606
|
+
"itoa",
|
|
1607
|
+
"memchr",
|
|
1608
|
+
"serde",
|
|
1609
|
+
"serde_core",
|
|
1610
|
+
"zmij",
|
|
1611
|
+
]
|
|
1612
|
+
|
|
1613
|
+
[[package]]
|
|
1614
|
+
name = "sha2"
|
|
1615
|
+
version = "0.11.0"
|
|
1616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
1618
|
+
dependencies = [
|
|
1619
|
+
"cfg-if",
|
|
1620
|
+
"cpufeatures 0.3.0",
|
|
1621
|
+
"digest",
|
|
1622
|
+
]
|
|
1623
|
+
|
|
1624
|
+
[[package]]
|
|
1625
|
+
name = "shell-words"
|
|
1626
|
+
version = "1.1.1"
|
|
1627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1628
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
1629
|
+
|
|
1630
|
+
[[package]]
|
|
1631
|
+
name = "shlex"
|
|
1632
|
+
version = "1.3.0"
|
|
1633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1634
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1635
|
+
|
|
1636
|
+
[[package]]
|
|
1637
|
+
name = "slab"
|
|
1638
|
+
version = "0.4.12"
|
|
1639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1640
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1641
|
+
|
|
1642
|
+
[[package]]
|
|
1643
|
+
name = "smallvec"
|
|
1644
|
+
version = "1.15.1"
|
|
1645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1646
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1647
|
+
|
|
1648
|
+
[[package]]
|
|
1649
|
+
name = "socks"
|
|
1650
|
+
version = "0.3.4"
|
|
1651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1652
|
+
checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
|
|
1653
|
+
dependencies = [
|
|
1654
|
+
"byteorder",
|
|
1655
|
+
"libc",
|
|
1656
|
+
"winapi",
|
|
1657
|
+
]
|
|
1658
|
+
|
|
1659
|
+
[[package]]
|
|
1660
|
+
name = "spm_precompiled"
|
|
1661
|
+
version = "0.1.4"
|
|
1662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1663
|
+
checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
|
|
1664
|
+
dependencies = [
|
|
1665
|
+
"base64 0.13.1",
|
|
1666
|
+
"nom",
|
|
1667
|
+
"serde",
|
|
1668
|
+
"unicode-segmentation",
|
|
1669
|
+
]
|
|
1670
|
+
|
|
1671
|
+
[[package]]
|
|
1672
|
+
name = "static_assertions"
|
|
1673
|
+
version = "1.1.0"
|
|
1674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1675
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1676
|
+
|
|
1677
|
+
[[package]]
|
|
1678
|
+
name = "strsim"
|
|
1679
|
+
version = "0.11.1"
|
|
1680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1681
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1682
|
+
|
|
1683
|
+
[[package]]
|
|
1684
|
+
name = "subtle"
|
|
1685
|
+
version = "2.6.1"
|
|
1686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1688
|
+
|
|
1689
|
+
[[package]]
|
|
1690
|
+
name = "syn"
|
|
1691
|
+
version = "2.0.117"
|
|
1692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1693
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1694
|
+
dependencies = [
|
|
1695
|
+
"proc-macro2",
|
|
1696
|
+
"quote",
|
|
1697
|
+
"unicode-ident",
|
|
1698
|
+
]
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "tempfile"
|
|
1702
|
+
version = "3.27.0"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1705
|
+
dependencies = [
|
|
1706
|
+
"fastrand",
|
|
1707
|
+
"getrandom 0.4.2",
|
|
1708
|
+
"once_cell",
|
|
1709
|
+
"rustix",
|
|
1710
|
+
"windows-sys",
|
|
1711
|
+
]
|
|
1712
|
+
|
|
1713
|
+
[[package]]
|
|
1714
|
+
name = "thiserror"
|
|
1715
|
+
version = "2.0.18"
|
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1717
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1718
|
+
dependencies = [
|
|
1719
|
+
"thiserror-impl",
|
|
1720
|
+
]
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "thiserror-impl"
|
|
1724
|
+
version = "2.0.18"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1727
|
+
dependencies = [
|
|
1728
|
+
"proc-macro2",
|
|
1729
|
+
"quote",
|
|
1730
|
+
"syn",
|
|
1731
|
+
]
|
|
1732
|
+
|
|
1733
|
+
[[package]]
|
|
1734
|
+
name = "tokenizers"
|
|
1735
|
+
version = "0.22.2"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "b238e22d44a15349529690fb07bd645cf58149a1b1e44d6cb5bd1641ff1a6223"
|
|
1738
|
+
dependencies = [
|
|
1739
|
+
"ahash",
|
|
1740
|
+
"aho-corasick",
|
|
1741
|
+
"compact_str",
|
|
1742
|
+
"dary_heap",
|
|
1743
|
+
"derive_builder",
|
|
1744
|
+
"esaxx-rs",
|
|
1745
|
+
"getrandom 0.3.4",
|
|
1746
|
+
"indicatif",
|
|
1747
|
+
"itertools 0.14.0",
|
|
1748
|
+
"log",
|
|
1749
|
+
"macro_rules_attribute",
|
|
1750
|
+
"monostate",
|
|
1751
|
+
"onig",
|
|
1752
|
+
"paste",
|
|
1753
|
+
"rand 0.9.4",
|
|
1754
|
+
"rayon",
|
|
1755
|
+
"rayon-cond",
|
|
1756
|
+
"regex",
|
|
1757
|
+
"regex-syntax",
|
|
1758
|
+
"serde",
|
|
1759
|
+
"serde_json",
|
|
1760
|
+
"spm_precompiled",
|
|
1761
|
+
"thiserror",
|
|
1762
|
+
"unicode-normalization-alignments",
|
|
1763
|
+
"unicode-segmentation",
|
|
1764
|
+
"unicode_categories",
|
|
1765
|
+
]
|
|
1766
|
+
|
|
1767
|
+
[[package]]
|
|
1768
|
+
name = "tracing"
|
|
1769
|
+
version = "0.1.44"
|
|
1770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1772
|
+
dependencies = [
|
|
1773
|
+
"pin-project-lite",
|
|
1774
|
+
"tracing-attributes",
|
|
1775
|
+
"tracing-core",
|
|
1776
|
+
]
|
|
1777
|
+
|
|
1778
|
+
[[package]]
|
|
1779
|
+
name = "tracing-attributes"
|
|
1780
|
+
version = "0.1.31"
|
|
1781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
1783
|
+
dependencies = [
|
|
1784
|
+
"proc-macro2",
|
|
1785
|
+
"quote",
|
|
1786
|
+
"syn",
|
|
1787
|
+
]
|
|
1788
|
+
|
|
1789
|
+
[[package]]
|
|
1790
|
+
name = "tracing-core"
|
|
1791
|
+
version = "0.1.36"
|
|
1792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1793
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1794
|
+
dependencies = [
|
|
1795
|
+
"once_cell",
|
|
1796
|
+
]
|
|
1797
|
+
|
|
1798
|
+
[[package]]
|
|
1799
|
+
name = "typenum"
|
|
1800
|
+
version = "1.20.0"
|
|
1801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1802
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
1803
|
+
|
|
1804
|
+
[[package]]
|
|
1805
|
+
name = "unicode-ident"
|
|
1806
|
+
version = "1.0.24"
|
|
1807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1809
|
+
|
|
1810
|
+
[[package]]
|
|
1811
|
+
name = "unicode-normalization-alignments"
|
|
1812
|
+
version = "0.1.12"
|
|
1813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
+
checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de"
|
|
1815
|
+
dependencies = [
|
|
1816
|
+
"smallvec",
|
|
1817
|
+
]
|
|
1818
|
+
|
|
1819
|
+
[[package]]
|
|
1820
|
+
name = "unicode-segmentation"
|
|
1821
|
+
version = "1.13.2"
|
|
1822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1823
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
1824
|
+
|
|
1825
|
+
[[package]]
|
|
1826
|
+
name = "unicode-width"
|
|
1827
|
+
version = "0.2.2"
|
|
1828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1829
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1830
|
+
|
|
1831
|
+
[[package]]
|
|
1832
|
+
name = "unicode-xid"
|
|
1833
|
+
version = "0.2.6"
|
|
1834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1835
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1836
|
+
|
|
1837
|
+
[[package]]
|
|
1838
|
+
name = "unicode_categories"
|
|
1839
|
+
version = "0.1.1"
|
|
1840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
+
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
|
1842
|
+
|
|
1843
|
+
[[package]]
|
|
1844
|
+
name = "unit-prefix"
|
|
1845
|
+
version = "0.5.2"
|
|
1846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1847
|
+
checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
|
|
1848
|
+
|
|
1849
|
+
[[package]]
|
|
1850
|
+
name = "universal-hash"
|
|
1851
|
+
version = "0.5.1"
|
|
1852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
+
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
|
1854
|
+
dependencies = [
|
|
1855
|
+
"crypto-common 0.1.7",
|
|
1856
|
+
"subtle",
|
|
1857
|
+
]
|
|
1858
|
+
|
|
1859
|
+
[[package]]
|
|
1860
|
+
name = "ureq"
|
|
1861
|
+
version = "3.3.0"
|
|
1862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1863
|
+
checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
|
|
1864
|
+
dependencies = [
|
|
1865
|
+
"base64 0.22.1",
|
|
1866
|
+
"der",
|
|
1867
|
+
"log",
|
|
1868
|
+
"native-tls",
|
|
1869
|
+
"percent-encoding",
|
|
1870
|
+
"rustls-pki-types",
|
|
1871
|
+
"socks",
|
|
1872
|
+
"ureq-proto",
|
|
1873
|
+
"utf8-zero",
|
|
1874
|
+
"webpki-root-certs",
|
|
1875
|
+
]
|
|
1876
|
+
|
|
1877
|
+
[[package]]
|
|
1878
|
+
name = "ureq-proto"
|
|
1879
|
+
version = "0.6.0"
|
|
1880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1881
|
+
checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
|
|
1882
|
+
dependencies = [
|
|
1883
|
+
"base64 0.22.1",
|
|
1884
|
+
"http",
|
|
1885
|
+
"httparse",
|
|
1886
|
+
"log",
|
|
1887
|
+
]
|
|
1888
|
+
|
|
1889
|
+
[[package]]
|
|
1890
|
+
name = "utf8-zero"
|
|
1891
|
+
version = "0.8.1"
|
|
1892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1893
|
+
checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
|
|
1894
|
+
|
|
1895
|
+
[[package]]
|
|
1896
|
+
name = "uuid"
|
|
1897
|
+
version = "1.23.1"
|
|
1898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
|
+
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
|
|
1900
|
+
dependencies = [
|
|
1901
|
+
"getrandom 0.4.2",
|
|
1902
|
+
"js-sys",
|
|
1903
|
+
"serde_core",
|
|
1904
|
+
"wasm-bindgen",
|
|
1905
|
+
]
|
|
1906
|
+
|
|
1907
|
+
[[package]]
|
|
1908
|
+
name = "vcpkg"
|
|
1909
|
+
version = "0.2.15"
|
|
1910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1911
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
1912
|
+
|
|
1913
|
+
[[package]]
|
|
1914
|
+
name = "version_check"
|
|
1915
|
+
version = "0.9.5"
|
|
1916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1918
|
+
|
|
1919
|
+
[[package]]
|
|
1920
|
+
name = "wasi"
|
|
1921
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1923
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1924
|
+
|
|
1925
|
+
[[package]]
|
|
1926
|
+
name = "wasip2"
|
|
1927
|
+
version = "1.0.3+wasi-0.2.9"
|
|
1928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1929
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
1930
|
+
dependencies = [
|
|
1931
|
+
"wit-bindgen 0.57.1",
|
|
1932
|
+
]
|
|
1933
|
+
|
|
1934
|
+
[[package]]
|
|
1935
|
+
name = "wasip3"
|
|
1936
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
1937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1939
|
+
dependencies = [
|
|
1940
|
+
"wit-bindgen 0.51.0",
|
|
1941
|
+
]
|
|
1942
|
+
|
|
1943
|
+
[[package]]
|
|
1944
|
+
name = "wasm-bindgen"
|
|
1945
|
+
version = "0.2.121"
|
|
1946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1947
|
+
checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
|
|
1948
|
+
dependencies = [
|
|
1949
|
+
"cfg-if",
|
|
1950
|
+
"once_cell",
|
|
1951
|
+
"rustversion",
|
|
1952
|
+
"wasm-bindgen-macro",
|
|
1953
|
+
"wasm-bindgen-shared",
|
|
1954
|
+
]
|
|
1955
|
+
|
|
1956
|
+
[[package]]
|
|
1957
|
+
name = "wasm-bindgen-macro"
|
|
1958
|
+
version = "0.2.121"
|
|
1959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1960
|
+
checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
|
|
1961
|
+
dependencies = [
|
|
1962
|
+
"quote",
|
|
1963
|
+
"wasm-bindgen-macro-support",
|
|
1964
|
+
]
|
|
1965
|
+
|
|
1966
|
+
[[package]]
|
|
1967
|
+
name = "wasm-bindgen-macro-support"
|
|
1968
|
+
version = "0.2.121"
|
|
1969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1970
|
+
checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
|
|
1971
|
+
dependencies = [
|
|
1972
|
+
"bumpalo",
|
|
1973
|
+
"proc-macro2",
|
|
1974
|
+
"quote",
|
|
1975
|
+
"syn",
|
|
1976
|
+
"wasm-bindgen-shared",
|
|
1977
|
+
]
|
|
1978
|
+
|
|
1979
|
+
[[package]]
|
|
1980
|
+
name = "wasm-bindgen-shared"
|
|
1981
|
+
version = "0.2.121"
|
|
1982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1983
|
+
checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
|
|
1984
|
+
dependencies = [
|
|
1985
|
+
"unicode-ident",
|
|
1986
|
+
]
|
|
1987
|
+
|
|
1988
|
+
[[package]]
|
|
1989
|
+
name = "wasm-encoder"
|
|
1990
|
+
version = "0.244.0"
|
|
1991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1992
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
1993
|
+
dependencies = [
|
|
1994
|
+
"leb128fmt",
|
|
1995
|
+
"wasmparser",
|
|
1996
|
+
]
|
|
1997
|
+
|
|
1998
|
+
[[package]]
|
|
1999
|
+
name = "wasm-metadata"
|
|
2000
|
+
version = "0.244.0"
|
|
2001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
2003
|
+
dependencies = [
|
|
2004
|
+
"anyhow",
|
|
2005
|
+
"indexmap",
|
|
2006
|
+
"wasm-encoder",
|
|
2007
|
+
"wasmparser",
|
|
2008
|
+
]
|
|
2009
|
+
|
|
2010
|
+
[[package]]
|
|
2011
|
+
name = "wasmparser"
|
|
2012
|
+
version = "0.244.0"
|
|
2013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2014
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
2015
|
+
dependencies = [
|
|
2016
|
+
"bitflags",
|
|
2017
|
+
"hashbrown 0.15.5",
|
|
2018
|
+
"indexmap",
|
|
2019
|
+
"semver",
|
|
2020
|
+
]
|
|
2021
|
+
|
|
2022
|
+
[[package]]
|
|
2023
|
+
name = "web-time"
|
|
2024
|
+
version = "1.1.0"
|
|
2025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2026
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
2027
|
+
dependencies = [
|
|
2028
|
+
"js-sys",
|
|
2029
|
+
"wasm-bindgen",
|
|
2030
|
+
]
|
|
2031
|
+
|
|
2032
|
+
[[package]]
|
|
2033
|
+
name = "webpki-root-certs"
|
|
2034
|
+
version = "1.0.7"
|
|
2035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2036
|
+
checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
|
|
2037
|
+
dependencies = [
|
|
2038
|
+
"rustls-pki-types",
|
|
2039
|
+
]
|
|
2040
|
+
|
|
2041
|
+
[[package]]
|
|
2042
|
+
name = "winapi"
|
|
2043
|
+
version = "0.3.9"
|
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2046
|
+
dependencies = [
|
|
2047
|
+
"winapi-i686-pc-windows-gnu",
|
|
2048
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2049
|
+
]
|
|
2050
|
+
|
|
2051
|
+
[[package]]
|
|
2052
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2053
|
+
version = "0.4.0"
|
|
2054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2055
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2056
|
+
|
|
2057
|
+
[[package]]
|
|
2058
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2059
|
+
version = "0.4.0"
|
|
2060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2062
|
+
|
|
2063
|
+
[[package]]
|
|
2064
|
+
name = "windows-core"
|
|
2065
|
+
version = "0.62.2"
|
|
2066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2067
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2068
|
+
dependencies = [
|
|
2069
|
+
"windows-implement",
|
|
2070
|
+
"windows-interface",
|
|
2071
|
+
"windows-link",
|
|
2072
|
+
"windows-result",
|
|
2073
|
+
"windows-strings",
|
|
2074
|
+
]
|
|
2075
|
+
|
|
2076
|
+
[[package]]
|
|
2077
|
+
name = "windows-implement"
|
|
2078
|
+
version = "0.60.2"
|
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2081
|
+
dependencies = [
|
|
2082
|
+
"proc-macro2",
|
|
2083
|
+
"quote",
|
|
2084
|
+
"syn",
|
|
2085
|
+
]
|
|
2086
|
+
|
|
2087
|
+
[[package]]
|
|
2088
|
+
name = "windows-interface"
|
|
2089
|
+
version = "0.59.3"
|
|
2090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2091
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2092
|
+
dependencies = [
|
|
2093
|
+
"proc-macro2",
|
|
2094
|
+
"quote",
|
|
2095
|
+
"syn",
|
|
2096
|
+
]
|
|
2097
|
+
|
|
2098
|
+
[[package]]
|
|
2099
|
+
name = "windows-link"
|
|
2100
|
+
version = "0.2.1"
|
|
2101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2102
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2103
|
+
|
|
2104
|
+
[[package]]
|
|
2105
|
+
name = "windows-result"
|
|
2106
|
+
version = "0.4.1"
|
|
2107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2108
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2109
|
+
dependencies = [
|
|
2110
|
+
"windows-link",
|
|
2111
|
+
]
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "windows-strings"
|
|
2115
|
+
version = "0.5.1"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2118
|
+
dependencies = [
|
|
2119
|
+
"windows-link",
|
|
2120
|
+
]
|
|
2121
|
+
|
|
2122
|
+
[[package]]
|
|
2123
|
+
name = "windows-sys"
|
|
2124
|
+
version = "0.61.2"
|
|
2125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2127
|
+
dependencies = [
|
|
2128
|
+
"windows-link",
|
|
2129
|
+
]
|
|
2130
|
+
|
|
2131
|
+
[[package]]
|
|
2132
|
+
name = "wit-bindgen"
|
|
2133
|
+
version = "0.51.0"
|
|
2134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2135
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
2136
|
+
dependencies = [
|
|
2137
|
+
"wit-bindgen-rust-macro",
|
|
2138
|
+
]
|
|
2139
|
+
|
|
2140
|
+
[[package]]
|
|
2141
|
+
name = "wit-bindgen"
|
|
2142
|
+
version = "0.57.1"
|
|
2143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2144
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
2145
|
+
|
|
2146
|
+
[[package]]
|
|
2147
|
+
name = "wit-bindgen-core"
|
|
2148
|
+
version = "0.51.0"
|
|
2149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2150
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
2151
|
+
dependencies = [
|
|
2152
|
+
"anyhow",
|
|
2153
|
+
"heck",
|
|
2154
|
+
"wit-parser",
|
|
2155
|
+
]
|
|
2156
|
+
|
|
2157
|
+
[[package]]
|
|
2158
|
+
name = "wit-bindgen-rust"
|
|
2159
|
+
version = "0.51.0"
|
|
2160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2161
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
2162
|
+
dependencies = [
|
|
2163
|
+
"anyhow",
|
|
2164
|
+
"heck",
|
|
2165
|
+
"indexmap",
|
|
2166
|
+
"prettyplease",
|
|
2167
|
+
"syn",
|
|
2168
|
+
"wasm-metadata",
|
|
2169
|
+
"wit-bindgen-core",
|
|
2170
|
+
"wit-component",
|
|
2171
|
+
]
|
|
2172
|
+
|
|
2173
|
+
[[package]]
|
|
2174
|
+
name = "wit-bindgen-rust-macro"
|
|
2175
|
+
version = "0.51.0"
|
|
2176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2177
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
2178
|
+
dependencies = [
|
|
2179
|
+
"anyhow",
|
|
2180
|
+
"prettyplease",
|
|
2181
|
+
"proc-macro2",
|
|
2182
|
+
"quote",
|
|
2183
|
+
"syn",
|
|
2184
|
+
"wit-bindgen-core",
|
|
2185
|
+
"wit-bindgen-rust",
|
|
2186
|
+
]
|
|
2187
|
+
|
|
2188
|
+
[[package]]
|
|
2189
|
+
name = "wit-component"
|
|
2190
|
+
version = "0.244.0"
|
|
2191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2192
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
2193
|
+
dependencies = [
|
|
2194
|
+
"anyhow",
|
|
2195
|
+
"bitflags",
|
|
2196
|
+
"indexmap",
|
|
2197
|
+
"log",
|
|
2198
|
+
"serde",
|
|
2199
|
+
"serde_derive",
|
|
2200
|
+
"serde_json",
|
|
2201
|
+
"wasm-encoder",
|
|
2202
|
+
"wasm-metadata",
|
|
2203
|
+
"wasmparser",
|
|
2204
|
+
"wit-parser",
|
|
2205
|
+
]
|
|
2206
|
+
|
|
2207
|
+
[[package]]
|
|
2208
|
+
name = "wit-parser"
|
|
2209
|
+
version = "0.244.0"
|
|
2210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2211
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
2212
|
+
dependencies = [
|
|
2213
|
+
"anyhow",
|
|
2214
|
+
"id-arena",
|
|
2215
|
+
"indexmap",
|
|
2216
|
+
"log",
|
|
2217
|
+
"semver",
|
|
2218
|
+
"serde",
|
|
2219
|
+
"serde_derive",
|
|
2220
|
+
"serde_json",
|
|
2221
|
+
"unicode-xid",
|
|
2222
|
+
"wasmparser",
|
|
2223
|
+
]
|
|
2224
|
+
|
|
2225
|
+
[[package]]
|
|
2226
|
+
name = "zerocopy"
|
|
2227
|
+
version = "0.8.48"
|
|
2228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2229
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
2230
|
+
dependencies = [
|
|
2231
|
+
"zerocopy-derive",
|
|
2232
|
+
]
|
|
2233
|
+
|
|
2234
|
+
[[package]]
|
|
2235
|
+
name = "zerocopy-derive"
|
|
2236
|
+
version = "0.8.48"
|
|
2237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2238
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
2239
|
+
dependencies = [
|
|
2240
|
+
"proc-macro2",
|
|
2241
|
+
"quote",
|
|
2242
|
+
"syn",
|
|
2243
|
+
]
|
|
2244
|
+
|
|
2245
|
+
[[package]]
|
|
2246
|
+
name = "zeroize"
|
|
2247
|
+
version = "1.8.2"
|
|
2248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2249
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
2250
|
+
|
|
2251
|
+
[[package]]
|
|
2252
|
+
name = "zmij"
|
|
2253
|
+
version = "1.0.21"
|
|
2254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2255
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|