unison-client 0.1.0
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/Cargo.lock +3182 -0
- data/Cargo.toml +11 -0
- data/README.md +110 -0
- data/ext/unison_client/Cargo.toml +32 -0
- data/ext/unison_client/extconf.rb +8 -0
- data/ext/unison_client/src/lib.rs +255 -0
- data/lib/unison/version.rb +7 -0
- data/lib/unison.rb +21 -0
- metadata +65 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,3182 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.25.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "aho-corasick"
|
|
22
|
+
version = "1.1.4"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"memchr",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "android_system_properties"
|
|
31
|
+
version = "0.1.5"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"libc",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "anyhow"
|
|
40
|
+
version = "1.0.102"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "asn1-rs"
|
|
46
|
+
version = "0.7.2"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "b7f43a50ac4fdca5df8e885c21b835997f0a1cdee65494a6847694a98652d9d8"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"asn1-rs-derive",
|
|
51
|
+
"asn1-rs-impl",
|
|
52
|
+
"displaydoc",
|
|
53
|
+
"nom",
|
|
54
|
+
"num-traits",
|
|
55
|
+
"rusticata-macros",
|
|
56
|
+
"thiserror 2.0.18",
|
|
57
|
+
"time",
|
|
58
|
+
]
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "asn1-rs-derive"
|
|
62
|
+
version = "0.6.0"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"proc-macro2",
|
|
67
|
+
"quote",
|
|
68
|
+
"syn",
|
|
69
|
+
"synstructure",
|
|
70
|
+
]
|
|
71
|
+
|
|
72
|
+
[[package]]
|
|
73
|
+
name = "asn1-rs-impl"
|
|
74
|
+
version = "0.2.0"
|
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
+
checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
|
|
77
|
+
dependencies = [
|
|
78
|
+
"proc-macro2",
|
|
79
|
+
"quote",
|
|
80
|
+
"syn",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "async-stream"
|
|
85
|
+
version = "0.3.6"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"async-stream-impl",
|
|
90
|
+
"futures-core",
|
|
91
|
+
"pin-project-lite",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "async-stream-impl"
|
|
96
|
+
version = "0.3.6"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"proc-macro2",
|
|
101
|
+
"quote",
|
|
102
|
+
"syn",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "autocfg"
|
|
107
|
+
version = "1.5.0"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "backtrace"
|
|
113
|
+
version = "0.3.76"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"addr2line",
|
|
118
|
+
"cfg-if",
|
|
119
|
+
"libc",
|
|
120
|
+
"miniz_oxide",
|
|
121
|
+
"object",
|
|
122
|
+
"rustc-demangle",
|
|
123
|
+
"windows-link",
|
|
124
|
+
]
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "backtrace-ext"
|
|
128
|
+
version = "0.2.1"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50"
|
|
131
|
+
dependencies = [
|
|
132
|
+
"backtrace",
|
|
133
|
+
]
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "base64"
|
|
137
|
+
version = "0.22.1"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "bindgen"
|
|
143
|
+
version = "0.72.1"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
146
|
+
dependencies = [
|
|
147
|
+
"bitflags",
|
|
148
|
+
"cexpr",
|
|
149
|
+
"clang-sys",
|
|
150
|
+
"itertools 0.13.0",
|
|
151
|
+
"proc-macro2",
|
|
152
|
+
"quote",
|
|
153
|
+
"regex",
|
|
154
|
+
"rustc-hash",
|
|
155
|
+
"shlex",
|
|
156
|
+
"syn",
|
|
157
|
+
]
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "bit-vec"
|
|
161
|
+
version = "0.9.1"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "b71798fca2c1fe1086445a7258a4bc81e6e49dcd24c8d0dd9a1e57395b603f51"
|
|
164
|
+
dependencies = [
|
|
165
|
+
"serde",
|
|
166
|
+
]
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "bitflags"
|
|
170
|
+
version = "2.11.1"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "block-buffer"
|
|
176
|
+
version = "0.12.0"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"hybrid-array",
|
|
181
|
+
]
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "buffa"
|
|
185
|
+
version = "0.5.2"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "e7a22fed63b429c4928fd5ed18dcacd3a98d0df1f06cd7cf651b2bbf3dbf0500"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"bytes",
|
|
190
|
+
"hashbrown 0.15.5",
|
|
191
|
+
"once_cell",
|
|
192
|
+
"serde",
|
|
193
|
+
"serde_json",
|
|
194
|
+
"thiserror 2.0.18",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "buffa-build"
|
|
199
|
+
version = "0.5.2"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "20f5876826b2690e0c38eb9176fc599f8286c4929c29a8641bacdcb23d3ecc12"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"buffa",
|
|
204
|
+
"buffa-codegen",
|
|
205
|
+
"tempfile",
|
|
206
|
+
]
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "buffa-codegen"
|
|
210
|
+
version = "0.5.2"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "dd9774d97c281d07a61006775c675940371c170ae1b454de0e9c013e0acd19f6"
|
|
213
|
+
dependencies = [
|
|
214
|
+
"buffa",
|
|
215
|
+
"buffa-descriptor",
|
|
216
|
+
"prettyplease",
|
|
217
|
+
"proc-macro2",
|
|
218
|
+
"quote",
|
|
219
|
+
"syn",
|
|
220
|
+
"thiserror 2.0.18",
|
|
221
|
+
]
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "buffa-descriptor"
|
|
225
|
+
version = "0.5.2"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "c7b942f9242ea5a79c92486460073a0a36cccc314e69fbc2ff08f55467c47b37"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"buffa",
|
|
230
|
+
]
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "bumpalo"
|
|
234
|
+
version = "3.20.2"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "bytes"
|
|
240
|
+
version = "1.11.1"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "cc"
|
|
246
|
+
version = "1.2.62"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"find-msvc-tools",
|
|
251
|
+
"jobserver",
|
|
252
|
+
"libc",
|
|
253
|
+
"shlex",
|
|
254
|
+
]
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "cesu8"
|
|
258
|
+
version = "1.1.0"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "cexpr"
|
|
264
|
+
version = "0.6.0"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"nom",
|
|
269
|
+
]
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "cfg-if"
|
|
273
|
+
version = "1.0.4"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "cfg_aliases"
|
|
279
|
+
version = "0.2.1"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "cgp"
|
|
285
|
+
version = "0.7.0"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "2a2d437a85e5fff058b478d3ebc21e4eef9732caeea448738e73afa116c1fc30"
|
|
288
|
+
dependencies = [
|
|
289
|
+
"cgp-core",
|
|
290
|
+
"cgp-extra",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "cgp-async-macro"
|
|
295
|
+
version = "0.7.0"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "03ac81c0b822dfe371bb0ff80206a21170860bbd514fcac0daba962ba34e2e35"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"proc-macro2",
|
|
300
|
+
"quote",
|
|
301
|
+
"syn",
|
|
302
|
+
]
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "cgp-component"
|
|
306
|
+
version = "0.7.0"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "39735cd93546a0b4f7183a55172b709c0df893844b41a7117e08583a9da83127"
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "cgp-core"
|
|
312
|
+
version = "0.7.0"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "6a0ce263d3cbe6b7048c47dcb99f40852e3c8f5639b9e5dd257889868c902a4c"
|
|
315
|
+
dependencies = [
|
|
316
|
+
"cgp-async-macro",
|
|
317
|
+
"cgp-component",
|
|
318
|
+
"cgp-error",
|
|
319
|
+
"cgp-field",
|
|
320
|
+
"cgp-macro",
|
|
321
|
+
"cgp-type",
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "cgp-dispatch"
|
|
326
|
+
version = "0.7.0"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "d39760b78371f2c1c497961b00e8dce8c1c8f16edff8fea5e0433e9ef9d55ffa"
|
|
329
|
+
dependencies = [
|
|
330
|
+
"cgp-core",
|
|
331
|
+
"cgp-handler",
|
|
332
|
+
"cgp-monad",
|
|
333
|
+
]
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "cgp-error"
|
|
337
|
+
version = "0.7.0"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "24d3502be41951b84e3ce40d010cc6ae6bbf24870e46037c459870cccdeffb84"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"cgp-component",
|
|
342
|
+
"cgp-macro",
|
|
343
|
+
"cgp-type",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "cgp-error-extra"
|
|
348
|
+
version = "0.7.0"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "b0b8b5cbf6677a7fb237fd44245222c47f4ee63e7138d84813724a31f0050962"
|
|
351
|
+
dependencies = [
|
|
352
|
+
"cgp-core",
|
|
353
|
+
]
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "cgp-extra"
|
|
357
|
+
version = "0.7.0"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "dc0a18aaebc9a6afefe95d6e3e07894816c2708bd6722c419c974884aa0a30ec"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"cgp-core",
|
|
362
|
+
"cgp-dispatch",
|
|
363
|
+
"cgp-error-extra",
|
|
364
|
+
"cgp-extra-macro",
|
|
365
|
+
"cgp-field-extra",
|
|
366
|
+
"cgp-handler",
|
|
367
|
+
"cgp-monad",
|
|
368
|
+
"cgp-run",
|
|
369
|
+
"cgp-runtime",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "cgp-extra-macro"
|
|
374
|
+
version = "0.7.0"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "83953618e5a9d39f0fdae7d25799ab5c254fa06531441c2c1a5df6535a740a8c"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"cgp-extra-macro-lib",
|
|
379
|
+
"syn",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "cgp-extra-macro-lib"
|
|
384
|
+
version = "0.7.0"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "1800ccf6bd3e3074831b644fc4cdc831d6271d84e68fbd217711c3dfbd85fe42"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"cgp-macro-lib",
|
|
389
|
+
"proc-macro2",
|
|
390
|
+
"quote",
|
|
391
|
+
"syn",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "cgp-field"
|
|
396
|
+
version = "0.7.0"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "d2412983a507e370aa5d72b8091f9576cf95e58be06bc3233cd91eeb6b6edead"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"cgp-component",
|
|
401
|
+
"cgp-type",
|
|
402
|
+
]
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "cgp-field-extra"
|
|
406
|
+
version = "0.7.0"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "9e6636e484c14fed64533b5f726ca6186493f53218d3975de1437bc76ec72091"
|
|
409
|
+
dependencies = [
|
|
410
|
+
"cgp-field",
|
|
411
|
+
]
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "cgp-handler"
|
|
415
|
+
version = "0.7.0"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "00a2a8574da65309b8b19ba1268953f7d825748b27a921b4d00baa78b2838a97"
|
|
418
|
+
dependencies = [
|
|
419
|
+
"cgp-core",
|
|
420
|
+
]
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "cgp-macro"
|
|
424
|
+
version = "0.7.0"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "e4f6983bcbc2f08555682f093a56787a4b0b02c63871efc923a0a4f72cda4d68"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"cgp-macro-lib",
|
|
429
|
+
"syn",
|
|
430
|
+
]
|
|
431
|
+
|
|
432
|
+
[[package]]
|
|
433
|
+
name = "cgp-macro-lib"
|
|
434
|
+
version = "0.7.0"
|
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
+
checksum = "12ec3f9ec29691903cdbf1e82ecc4bb29ab108b306a9826b4d85eaecb6d9d508"
|
|
437
|
+
dependencies = [
|
|
438
|
+
"itertools 0.14.0",
|
|
439
|
+
"prettyplease",
|
|
440
|
+
"proc-macro2",
|
|
441
|
+
"quote",
|
|
442
|
+
"syn",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "cgp-monad"
|
|
447
|
+
version = "0.7.0"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "c313da265af036cefe7307f466c7ae9b26377c4d482172da9d8a1217859482f6"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"cgp-core",
|
|
452
|
+
"cgp-handler",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "cgp-run"
|
|
457
|
+
version = "0.7.0"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "b732f6592e4051aa9d43e5ac226c28bb30693c2b92ac1ba7c2a55aa1d757d539"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"cgp-core",
|
|
462
|
+
]
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "cgp-runtime"
|
|
466
|
+
version = "0.7.0"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "45ac97c31acce9ab7d10146c2bd08dbf289c6c533eab1400714dcc9f6c0e85f5"
|
|
469
|
+
dependencies = [
|
|
470
|
+
"cgp-core",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "cgp-type"
|
|
475
|
+
version = "0.7.0"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "e67030447046e58fd34a8c10d6471eaff67b440ca441cbb01e29211ba29e66da"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"cgp-component",
|
|
480
|
+
"cgp-macro",
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "chrono"
|
|
485
|
+
version = "0.4.44"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
488
|
+
dependencies = [
|
|
489
|
+
"iana-time-zone",
|
|
490
|
+
"js-sys",
|
|
491
|
+
"num-traits",
|
|
492
|
+
"serde",
|
|
493
|
+
"wasm-bindgen",
|
|
494
|
+
"windows-link",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "clang-sys"
|
|
499
|
+
version = "1.8.1"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"glob",
|
|
504
|
+
"libc",
|
|
505
|
+
"libloading",
|
|
506
|
+
]
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "club-kdl"
|
|
510
|
+
version = "0.8.0"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "0b8bf59c4e61acdf2fdbb6cce8598ee1b51285c3bbf80ff89a0c122152f910c5"
|
|
513
|
+
dependencies = [
|
|
514
|
+
"club-kdl-derive",
|
|
515
|
+
"kdl",
|
|
516
|
+
"thiserror 2.0.18",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "club-kdl-derive"
|
|
521
|
+
version = "0.8.0"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "82913adfe940ae4e2f6c7975a5158e39d5d8fd286bfe1707995eb69a5030011c"
|
|
524
|
+
dependencies = [
|
|
525
|
+
"proc-macro2",
|
|
526
|
+
"quote",
|
|
527
|
+
"syn",
|
|
528
|
+
]
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "club-unison"
|
|
532
|
+
version = "1.0.0"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "a2045a606cfcdbd6a8d90b0a6c7b57aa500f8b5a90f0d6701466df2dfc37b565"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"anyhow",
|
|
537
|
+
"async-stream",
|
|
538
|
+
"buffa",
|
|
539
|
+
"buffa-build",
|
|
540
|
+
"bytes",
|
|
541
|
+
"cgp",
|
|
542
|
+
"cgp-component",
|
|
543
|
+
"chrono",
|
|
544
|
+
"club-kdl",
|
|
545
|
+
"convert_case",
|
|
546
|
+
"crc32fast",
|
|
547
|
+
"futures-util",
|
|
548
|
+
"indexmap",
|
|
549
|
+
"kdl",
|
|
550
|
+
"miette",
|
|
551
|
+
"proc-macro2",
|
|
552
|
+
"quinn",
|
|
553
|
+
"quote",
|
|
554
|
+
"rcgen",
|
|
555
|
+
"rustls",
|
|
556
|
+
"rustls-pemfile",
|
|
557
|
+
"scc",
|
|
558
|
+
"serde",
|
|
559
|
+
"serde_json",
|
|
560
|
+
"syn",
|
|
561
|
+
"tempfile",
|
|
562
|
+
"thiserror 2.0.18",
|
|
563
|
+
"time",
|
|
564
|
+
"tokio",
|
|
565
|
+
"tracing",
|
|
566
|
+
"tracing-subscriber",
|
|
567
|
+
"uuid",
|
|
568
|
+
"webpki-roots",
|
|
569
|
+
"wtransport",
|
|
570
|
+
"zstd",
|
|
571
|
+
]
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "combine"
|
|
575
|
+
version = "4.6.7"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
578
|
+
dependencies = [
|
|
579
|
+
"bytes",
|
|
580
|
+
"memchr",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "const-oid"
|
|
585
|
+
version = "0.10.2"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "convert_case"
|
|
591
|
+
version = "0.11.0"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
|
|
594
|
+
dependencies = [
|
|
595
|
+
"unicode-segmentation",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "core-foundation"
|
|
600
|
+
version = "0.10.1"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"core-foundation-sys",
|
|
605
|
+
"libc",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "core-foundation-sys"
|
|
610
|
+
version = "0.8.7"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "cpufeatures"
|
|
616
|
+
version = "0.3.0"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"libc",
|
|
621
|
+
]
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "crc32fast"
|
|
625
|
+
version = "1.5.0"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
628
|
+
dependencies = [
|
|
629
|
+
"cfg-if",
|
|
630
|
+
]
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "crypto-common"
|
|
634
|
+
version = "0.2.1"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
|
|
637
|
+
dependencies = [
|
|
638
|
+
"hybrid-array",
|
|
639
|
+
]
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "data-encoding"
|
|
643
|
+
version = "2.11.0"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "der-parser"
|
|
649
|
+
version = "10.0.0"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"asn1-rs",
|
|
654
|
+
"displaydoc",
|
|
655
|
+
"nom",
|
|
656
|
+
"num-bigint",
|
|
657
|
+
"num-traits",
|
|
658
|
+
"rusticata-macros",
|
|
659
|
+
]
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "deranged"
|
|
663
|
+
version = "0.5.8"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
666
|
+
dependencies = [
|
|
667
|
+
"powerfmt",
|
|
668
|
+
]
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "digest"
|
|
672
|
+
version = "0.11.3"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"block-buffer",
|
|
677
|
+
"const-oid",
|
|
678
|
+
"crypto-common",
|
|
679
|
+
]
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "displaydoc"
|
|
683
|
+
version = "0.2.5"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
686
|
+
dependencies = [
|
|
687
|
+
"proc-macro2",
|
|
688
|
+
"quote",
|
|
689
|
+
"syn",
|
|
690
|
+
]
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "either"
|
|
694
|
+
version = "1.15.0"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "equivalent"
|
|
700
|
+
version = "1.0.2"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "errno"
|
|
706
|
+
version = "0.3.14"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"libc",
|
|
711
|
+
"windows-sys 0.61.2",
|
|
712
|
+
]
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "fastbloom"
|
|
716
|
+
version = "0.14.1"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "4e7f34442dbe69c60fe8eaf58a8cafff81a1f278816d8ab4db255b3bef4ac3c4"
|
|
719
|
+
dependencies = [
|
|
720
|
+
"getrandom 0.3.4",
|
|
721
|
+
"libm",
|
|
722
|
+
"rand",
|
|
723
|
+
"siphasher",
|
|
724
|
+
]
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "fastrand"
|
|
728
|
+
version = "2.4.1"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "find-msvc-tools"
|
|
734
|
+
version = "0.1.9"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "foldhash"
|
|
740
|
+
version = "0.1.5"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "form_urlencoded"
|
|
746
|
+
version = "1.2.2"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
749
|
+
dependencies = [
|
|
750
|
+
"percent-encoding",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "futures-core"
|
|
755
|
+
version = "0.3.32"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
758
|
+
|
|
759
|
+
[[package]]
|
|
760
|
+
name = "futures-macro"
|
|
761
|
+
version = "0.3.32"
|
|
762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
764
|
+
dependencies = [
|
|
765
|
+
"proc-macro2",
|
|
766
|
+
"quote",
|
|
767
|
+
"syn",
|
|
768
|
+
]
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "futures-task"
|
|
772
|
+
version = "0.3.32"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "futures-util"
|
|
778
|
+
version = "0.3.32"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"futures-core",
|
|
783
|
+
"futures-macro",
|
|
784
|
+
"futures-task",
|
|
785
|
+
"pin-project-lite",
|
|
786
|
+
"slab",
|
|
787
|
+
]
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "getrandom"
|
|
791
|
+
version = "0.2.17"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"cfg-if",
|
|
796
|
+
"js-sys",
|
|
797
|
+
"libc",
|
|
798
|
+
"wasi",
|
|
799
|
+
"wasm-bindgen",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "getrandom"
|
|
804
|
+
version = "0.3.4"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"cfg-if",
|
|
809
|
+
"js-sys",
|
|
810
|
+
"libc",
|
|
811
|
+
"r-efi 5.3.0",
|
|
812
|
+
"wasip2",
|
|
813
|
+
"wasm-bindgen",
|
|
814
|
+
]
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "getrandom"
|
|
818
|
+
version = "0.4.2"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"cfg-if",
|
|
823
|
+
"libc",
|
|
824
|
+
"r-efi 6.0.0",
|
|
825
|
+
"wasip2",
|
|
826
|
+
"wasip3",
|
|
827
|
+
]
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "gimli"
|
|
831
|
+
version = "0.32.3"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "glob"
|
|
837
|
+
version = "0.3.3"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "hashbrown"
|
|
843
|
+
version = "0.15.5"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
846
|
+
dependencies = [
|
|
847
|
+
"foldhash",
|
|
848
|
+
]
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "hashbrown"
|
|
852
|
+
version = "0.17.1"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "heck"
|
|
858
|
+
version = "0.5.0"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "httlib-huffman"
|
|
864
|
+
version = "0.3.4"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "1a9fcbcc408c5526c3ab80d534e5c86e7967c1fb7aa0a8c76abd1edc27deb877"
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "hybrid-array"
|
|
870
|
+
version = "0.4.12"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
|
|
873
|
+
dependencies = [
|
|
874
|
+
"typenum",
|
|
875
|
+
]
|
|
876
|
+
|
|
877
|
+
[[package]]
|
|
878
|
+
name = "iana-time-zone"
|
|
879
|
+
version = "0.1.65"
|
|
880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
882
|
+
dependencies = [
|
|
883
|
+
"android_system_properties",
|
|
884
|
+
"core-foundation-sys",
|
|
885
|
+
"iana-time-zone-haiku",
|
|
886
|
+
"js-sys",
|
|
887
|
+
"log",
|
|
888
|
+
"wasm-bindgen",
|
|
889
|
+
"windows-core",
|
|
890
|
+
]
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "iana-time-zone-haiku"
|
|
894
|
+
version = "0.1.2"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
897
|
+
dependencies = [
|
|
898
|
+
"cc",
|
|
899
|
+
]
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "icu_collections"
|
|
903
|
+
version = "2.2.0"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"displaydoc",
|
|
908
|
+
"potential_utf",
|
|
909
|
+
"utf8_iter",
|
|
910
|
+
"yoke",
|
|
911
|
+
"zerofrom",
|
|
912
|
+
"zerovec",
|
|
913
|
+
]
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "icu_locale_core"
|
|
917
|
+
version = "2.2.0"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
920
|
+
dependencies = [
|
|
921
|
+
"displaydoc",
|
|
922
|
+
"litemap",
|
|
923
|
+
"tinystr",
|
|
924
|
+
"writeable",
|
|
925
|
+
"zerovec",
|
|
926
|
+
]
|
|
927
|
+
|
|
928
|
+
[[package]]
|
|
929
|
+
name = "icu_normalizer"
|
|
930
|
+
version = "2.2.0"
|
|
931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
933
|
+
dependencies = [
|
|
934
|
+
"icu_collections",
|
|
935
|
+
"icu_normalizer_data",
|
|
936
|
+
"icu_properties",
|
|
937
|
+
"icu_provider",
|
|
938
|
+
"smallvec",
|
|
939
|
+
"zerovec",
|
|
940
|
+
]
|
|
941
|
+
|
|
942
|
+
[[package]]
|
|
943
|
+
name = "icu_normalizer_data"
|
|
944
|
+
version = "2.2.0"
|
|
945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
947
|
+
|
|
948
|
+
[[package]]
|
|
949
|
+
name = "icu_properties"
|
|
950
|
+
version = "2.2.0"
|
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
953
|
+
dependencies = [
|
|
954
|
+
"icu_collections",
|
|
955
|
+
"icu_locale_core",
|
|
956
|
+
"icu_properties_data",
|
|
957
|
+
"icu_provider",
|
|
958
|
+
"zerotrie",
|
|
959
|
+
"zerovec",
|
|
960
|
+
]
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "icu_properties_data"
|
|
964
|
+
version = "2.2.0"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "icu_provider"
|
|
970
|
+
version = "2.2.0"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
973
|
+
dependencies = [
|
|
974
|
+
"displaydoc",
|
|
975
|
+
"icu_locale_core",
|
|
976
|
+
"writeable",
|
|
977
|
+
"yoke",
|
|
978
|
+
"zerofrom",
|
|
979
|
+
"zerotrie",
|
|
980
|
+
"zerovec",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "id-arena"
|
|
985
|
+
version = "2.3.0"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "idna"
|
|
991
|
+
version = "1.1.0"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
994
|
+
dependencies = [
|
|
995
|
+
"idna_adapter",
|
|
996
|
+
"smallvec",
|
|
997
|
+
"utf8_iter",
|
|
998
|
+
]
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "idna_adapter"
|
|
1002
|
+
version = "1.2.2"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1005
|
+
dependencies = [
|
|
1006
|
+
"icu_normalizer",
|
|
1007
|
+
"icu_properties",
|
|
1008
|
+
]
|
|
1009
|
+
|
|
1010
|
+
[[package]]
|
|
1011
|
+
name = "indexmap"
|
|
1012
|
+
version = "2.14.0"
|
|
1013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1014
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1015
|
+
dependencies = [
|
|
1016
|
+
"equivalent",
|
|
1017
|
+
"hashbrown 0.17.1",
|
|
1018
|
+
"serde",
|
|
1019
|
+
"serde_core",
|
|
1020
|
+
]
|
|
1021
|
+
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "is_ci"
|
|
1024
|
+
version = "1.2.0"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
|
|
1027
|
+
|
|
1028
|
+
[[package]]
|
|
1029
|
+
name = "itertools"
|
|
1030
|
+
version = "0.13.0"
|
|
1031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1033
|
+
dependencies = [
|
|
1034
|
+
"either",
|
|
1035
|
+
]
|
|
1036
|
+
|
|
1037
|
+
[[package]]
|
|
1038
|
+
name = "itertools"
|
|
1039
|
+
version = "0.14.0"
|
|
1040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1042
|
+
dependencies = [
|
|
1043
|
+
"either",
|
|
1044
|
+
]
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "itoa"
|
|
1048
|
+
version = "1.0.18"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1051
|
+
|
|
1052
|
+
[[package]]
|
|
1053
|
+
name = "jni"
|
|
1054
|
+
version = "0.21.1"
|
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
+
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
1057
|
+
dependencies = [
|
|
1058
|
+
"cesu8",
|
|
1059
|
+
"cfg-if",
|
|
1060
|
+
"combine",
|
|
1061
|
+
"jni-sys 0.3.1",
|
|
1062
|
+
"log",
|
|
1063
|
+
"thiserror 1.0.69",
|
|
1064
|
+
"walkdir",
|
|
1065
|
+
"windows-sys 0.45.0",
|
|
1066
|
+
]
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "jni-sys"
|
|
1070
|
+
version = "0.3.1"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
|
|
1073
|
+
dependencies = [
|
|
1074
|
+
"jni-sys 0.4.1",
|
|
1075
|
+
]
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "jni-sys"
|
|
1079
|
+
version = "0.4.1"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
1082
|
+
dependencies = [
|
|
1083
|
+
"jni-sys-macros",
|
|
1084
|
+
]
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "jni-sys-macros"
|
|
1088
|
+
version = "0.4.1"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"quote",
|
|
1093
|
+
"syn",
|
|
1094
|
+
]
|
|
1095
|
+
|
|
1096
|
+
[[package]]
|
|
1097
|
+
name = "jobserver"
|
|
1098
|
+
version = "0.1.34"
|
|
1099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1100
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1101
|
+
dependencies = [
|
|
1102
|
+
"getrandom 0.3.4",
|
|
1103
|
+
"libc",
|
|
1104
|
+
]
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "js-sys"
|
|
1108
|
+
version = "0.3.98"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
|
|
1111
|
+
dependencies = [
|
|
1112
|
+
"cfg-if",
|
|
1113
|
+
"futures-util",
|
|
1114
|
+
"once_cell",
|
|
1115
|
+
"wasm-bindgen",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "kdl"
|
|
1120
|
+
version = "6.5.0"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "81a29e7b50079ff44549f68c0becb1c73d7f6de2a4ea952da77966daf3d4761e"
|
|
1123
|
+
dependencies = [
|
|
1124
|
+
"miette",
|
|
1125
|
+
"num",
|
|
1126
|
+
"winnow",
|
|
1127
|
+
]
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "lazy_static"
|
|
1131
|
+
version = "1.5.0"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1134
|
+
|
|
1135
|
+
[[package]]
|
|
1136
|
+
name = "leb128fmt"
|
|
1137
|
+
version = "0.1.0"
|
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1140
|
+
|
|
1141
|
+
[[package]]
|
|
1142
|
+
name = "libc"
|
|
1143
|
+
version = "0.2.186"
|
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "libloading"
|
|
1149
|
+
version = "0.8.9"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1152
|
+
dependencies = [
|
|
1153
|
+
"cfg-if",
|
|
1154
|
+
"windows-link",
|
|
1155
|
+
]
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "libm"
|
|
1159
|
+
version = "0.2.16"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "linux-raw-sys"
|
|
1165
|
+
version = "0.12.1"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1168
|
+
|
|
1169
|
+
[[package]]
|
|
1170
|
+
name = "litemap"
|
|
1171
|
+
version = "0.8.2"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "lock_api"
|
|
1177
|
+
version = "0.4.14"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1180
|
+
dependencies = [
|
|
1181
|
+
"scopeguard",
|
|
1182
|
+
]
|
|
1183
|
+
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "log"
|
|
1186
|
+
version = "0.4.29"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "lru-slab"
|
|
1192
|
+
version = "0.1.2"
|
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1195
|
+
|
|
1196
|
+
[[package]]
|
|
1197
|
+
name = "magnus"
|
|
1198
|
+
version = "0.8.2"
|
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
1201
|
+
dependencies = [
|
|
1202
|
+
"magnus-macros",
|
|
1203
|
+
"rb-sys",
|
|
1204
|
+
"rb-sys-env",
|
|
1205
|
+
"seq-macro",
|
|
1206
|
+
]
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "magnus-macros"
|
|
1210
|
+
version = "0.8.0"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"proc-macro2",
|
|
1215
|
+
"quote",
|
|
1216
|
+
"syn",
|
|
1217
|
+
]
|
|
1218
|
+
|
|
1219
|
+
[[package]]
|
|
1220
|
+
name = "matchers"
|
|
1221
|
+
version = "0.2.0"
|
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
1224
|
+
dependencies = [
|
|
1225
|
+
"regex-automata",
|
|
1226
|
+
]
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "memchr"
|
|
1230
|
+
version = "2.8.0"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
1233
|
+
|
|
1234
|
+
[[package]]
|
|
1235
|
+
name = "miette"
|
|
1236
|
+
version = "7.6.0"
|
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
+
checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
|
|
1239
|
+
dependencies = [
|
|
1240
|
+
"backtrace",
|
|
1241
|
+
"backtrace-ext",
|
|
1242
|
+
"cfg-if",
|
|
1243
|
+
"miette-derive",
|
|
1244
|
+
"owo-colors",
|
|
1245
|
+
"supports-color",
|
|
1246
|
+
"supports-hyperlinks",
|
|
1247
|
+
"supports-unicode",
|
|
1248
|
+
"terminal_size",
|
|
1249
|
+
"textwrap",
|
|
1250
|
+
"unicode-width 0.1.14",
|
|
1251
|
+
]
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "miette-derive"
|
|
1255
|
+
version = "7.6.0"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
|
|
1258
|
+
dependencies = [
|
|
1259
|
+
"proc-macro2",
|
|
1260
|
+
"quote",
|
|
1261
|
+
"syn",
|
|
1262
|
+
]
|
|
1263
|
+
|
|
1264
|
+
[[package]]
|
|
1265
|
+
name = "minimal-lexical"
|
|
1266
|
+
version = "0.2.1"
|
|
1267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "miniz_oxide"
|
|
1272
|
+
version = "0.8.9"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1275
|
+
dependencies = [
|
|
1276
|
+
"adler2",
|
|
1277
|
+
]
|
|
1278
|
+
|
|
1279
|
+
[[package]]
|
|
1280
|
+
name = "mio"
|
|
1281
|
+
version = "1.2.0"
|
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
1284
|
+
dependencies = [
|
|
1285
|
+
"libc",
|
|
1286
|
+
"wasi",
|
|
1287
|
+
"windows-sys 0.61.2",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "nom"
|
|
1292
|
+
version = "7.1.3"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"memchr",
|
|
1297
|
+
"minimal-lexical",
|
|
1298
|
+
]
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "nu-ansi-term"
|
|
1302
|
+
version = "0.50.3"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1305
|
+
dependencies = [
|
|
1306
|
+
"windows-sys 0.61.2",
|
|
1307
|
+
]
|
|
1308
|
+
|
|
1309
|
+
[[package]]
|
|
1310
|
+
name = "num"
|
|
1311
|
+
version = "0.4.3"
|
|
1312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1313
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
1314
|
+
dependencies = [
|
|
1315
|
+
"num-bigint",
|
|
1316
|
+
"num-complex",
|
|
1317
|
+
"num-integer",
|
|
1318
|
+
"num-iter",
|
|
1319
|
+
"num-rational",
|
|
1320
|
+
"num-traits",
|
|
1321
|
+
]
|
|
1322
|
+
|
|
1323
|
+
[[package]]
|
|
1324
|
+
name = "num-bigint"
|
|
1325
|
+
version = "0.4.6"
|
|
1326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1328
|
+
dependencies = [
|
|
1329
|
+
"num-integer",
|
|
1330
|
+
"num-traits",
|
|
1331
|
+
]
|
|
1332
|
+
|
|
1333
|
+
[[package]]
|
|
1334
|
+
name = "num-complex"
|
|
1335
|
+
version = "0.4.6"
|
|
1336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1338
|
+
dependencies = [
|
|
1339
|
+
"num-traits",
|
|
1340
|
+
]
|
|
1341
|
+
|
|
1342
|
+
[[package]]
|
|
1343
|
+
name = "num-conv"
|
|
1344
|
+
version = "0.2.2"
|
|
1345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "num-integer"
|
|
1350
|
+
version = "0.1.46"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"num-traits",
|
|
1355
|
+
]
|
|
1356
|
+
|
|
1357
|
+
[[package]]
|
|
1358
|
+
name = "num-iter"
|
|
1359
|
+
version = "0.1.45"
|
|
1360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1361
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
1362
|
+
dependencies = [
|
|
1363
|
+
"autocfg",
|
|
1364
|
+
"num-integer",
|
|
1365
|
+
"num-traits",
|
|
1366
|
+
]
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "num-rational"
|
|
1370
|
+
version = "0.4.2"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1373
|
+
dependencies = [
|
|
1374
|
+
"num-bigint",
|
|
1375
|
+
"num-integer",
|
|
1376
|
+
"num-traits",
|
|
1377
|
+
]
|
|
1378
|
+
|
|
1379
|
+
[[package]]
|
|
1380
|
+
name = "num-traits"
|
|
1381
|
+
version = "0.2.19"
|
|
1382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1383
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1384
|
+
dependencies = [
|
|
1385
|
+
"autocfg",
|
|
1386
|
+
]
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "object"
|
|
1390
|
+
version = "0.37.3"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
1393
|
+
dependencies = [
|
|
1394
|
+
"memchr",
|
|
1395
|
+
]
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "octets"
|
|
1399
|
+
version = "0.3.5"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "8311fa8ab7a57759b4ff1f851a3048d9ef0effaa0130726426b742d26d8a88e7"
|
|
1402
|
+
|
|
1403
|
+
[[package]]
|
|
1404
|
+
name = "oid-registry"
|
|
1405
|
+
version = "0.8.1"
|
|
1406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
+
checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7"
|
|
1408
|
+
dependencies = [
|
|
1409
|
+
"asn1-rs",
|
|
1410
|
+
]
|
|
1411
|
+
|
|
1412
|
+
[[package]]
|
|
1413
|
+
name = "once_cell"
|
|
1414
|
+
version = "1.21.4"
|
|
1415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1416
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1417
|
+
|
|
1418
|
+
[[package]]
|
|
1419
|
+
name = "openssl-probe"
|
|
1420
|
+
version = "0.2.1"
|
|
1421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
+
checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
|
|
1423
|
+
|
|
1424
|
+
[[package]]
|
|
1425
|
+
name = "owo-colors"
|
|
1426
|
+
version = "4.3.0"
|
|
1427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1428
|
+
checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
|
|
1429
|
+
|
|
1430
|
+
[[package]]
|
|
1431
|
+
name = "parking_lot"
|
|
1432
|
+
version = "0.12.5"
|
|
1433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1434
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1435
|
+
dependencies = [
|
|
1436
|
+
"lock_api",
|
|
1437
|
+
"parking_lot_core",
|
|
1438
|
+
]
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "parking_lot_core"
|
|
1442
|
+
version = "0.9.12"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1445
|
+
dependencies = [
|
|
1446
|
+
"cfg-if",
|
|
1447
|
+
"libc",
|
|
1448
|
+
"redox_syscall",
|
|
1449
|
+
"smallvec",
|
|
1450
|
+
"windows-link",
|
|
1451
|
+
]
|
|
1452
|
+
|
|
1453
|
+
[[package]]
|
|
1454
|
+
name = "pem"
|
|
1455
|
+
version = "3.0.6"
|
|
1456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
+
checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
|
|
1458
|
+
dependencies = [
|
|
1459
|
+
"base64",
|
|
1460
|
+
"serde_core",
|
|
1461
|
+
]
|
|
1462
|
+
|
|
1463
|
+
[[package]]
|
|
1464
|
+
name = "percent-encoding"
|
|
1465
|
+
version = "2.3.2"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1468
|
+
|
|
1469
|
+
[[package]]
|
|
1470
|
+
name = "pin-project-lite"
|
|
1471
|
+
version = "0.2.17"
|
|
1472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "pkg-config"
|
|
1477
|
+
version = "0.3.33"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
1480
|
+
|
|
1481
|
+
[[package]]
|
|
1482
|
+
name = "potential_utf"
|
|
1483
|
+
version = "0.1.5"
|
|
1484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1486
|
+
dependencies = [
|
|
1487
|
+
"zerovec",
|
|
1488
|
+
]
|
|
1489
|
+
|
|
1490
|
+
[[package]]
|
|
1491
|
+
name = "powerfmt"
|
|
1492
|
+
version = "0.2.0"
|
|
1493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1494
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1495
|
+
|
|
1496
|
+
[[package]]
|
|
1497
|
+
name = "ppv-lite86"
|
|
1498
|
+
version = "0.2.21"
|
|
1499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1501
|
+
dependencies = [
|
|
1502
|
+
"zerocopy",
|
|
1503
|
+
]
|
|
1504
|
+
|
|
1505
|
+
[[package]]
|
|
1506
|
+
name = "prettyplease"
|
|
1507
|
+
version = "0.2.37"
|
|
1508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1509
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1510
|
+
dependencies = [
|
|
1511
|
+
"proc-macro2",
|
|
1512
|
+
"syn",
|
|
1513
|
+
]
|
|
1514
|
+
|
|
1515
|
+
[[package]]
|
|
1516
|
+
name = "proc-macro2"
|
|
1517
|
+
version = "1.0.106"
|
|
1518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1520
|
+
dependencies = [
|
|
1521
|
+
"unicode-ident",
|
|
1522
|
+
]
|
|
1523
|
+
|
|
1524
|
+
[[package]]
|
|
1525
|
+
name = "quinn"
|
|
1526
|
+
version = "0.11.9"
|
|
1527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
1529
|
+
dependencies = [
|
|
1530
|
+
"bytes",
|
|
1531
|
+
"cfg_aliases",
|
|
1532
|
+
"pin-project-lite",
|
|
1533
|
+
"quinn-proto",
|
|
1534
|
+
"quinn-udp",
|
|
1535
|
+
"rustc-hash",
|
|
1536
|
+
"rustls",
|
|
1537
|
+
"socket2",
|
|
1538
|
+
"thiserror 2.0.18",
|
|
1539
|
+
"tokio",
|
|
1540
|
+
"tracing",
|
|
1541
|
+
"web-time",
|
|
1542
|
+
]
|
|
1543
|
+
|
|
1544
|
+
[[package]]
|
|
1545
|
+
name = "quinn-proto"
|
|
1546
|
+
version = "0.11.14"
|
|
1547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1548
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
1549
|
+
dependencies = [
|
|
1550
|
+
"bytes",
|
|
1551
|
+
"fastbloom",
|
|
1552
|
+
"getrandom 0.3.4",
|
|
1553
|
+
"lru-slab",
|
|
1554
|
+
"rand",
|
|
1555
|
+
"ring",
|
|
1556
|
+
"rustc-hash",
|
|
1557
|
+
"rustls",
|
|
1558
|
+
"rustls-pki-types",
|
|
1559
|
+
"rustls-platform-verifier",
|
|
1560
|
+
"slab",
|
|
1561
|
+
"thiserror 2.0.18",
|
|
1562
|
+
"tinyvec",
|
|
1563
|
+
"tracing",
|
|
1564
|
+
"web-time",
|
|
1565
|
+
]
|
|
1566
|
+
|
|
1567
|
+
[[package]]
|
|
1568
|
+
name = "quinn-udp"
|
|
1569
|
+
version = "0.5.14"
|
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
1572
|
+
dependencies = [
|
|
1573
|
+
"cfg_aliases",
|
|
1574
|
+
"libc",
|
|
1575
|
+
"once_cell",
|
|
1576
|
+
"socket2",
|
|
1577
|
+
"tracing",
|
|
1578
|
+
"windows-sys 0.60.2",
|
|
1579
|
+
]
|
|
1580
|
+
|
|
1581
|
+
[[package]]
|
|
1582
|
+
name = "quote"
|
|
1583
|
+
version = "1.0.45"
|
|
1584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1585
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1586
|
+
dependencies = [
|
|
1587
|
+
"proc-macro2",
|
|
1588
|
+
]
|
|
1589
|
+
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "r-efi"
|
|
1592
|
+
version = "5.3.0"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1595
|
+
|
|
1596
|
+
[[package]]
|
|
1597
|
+
name = "r-efi"
|
|
1598
|
+
version = "6.0.0"
|
|
1599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1601
|
+
|
|
1602
|
+
[[package]]
|
|
1603
|
+
name = "rand"
|
|
1604
|
+
version = "0.9.4"
|
|
1605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1606
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
1607
|
+
dependencies = [
|
|
1608
|
+
"rand_chacha",
|
|
1609
|
+
"rand_core",
|
|
1610
|
+
]
|
|
1611
|
+
|
|
1612
|
+
[[package]]
|
|
1613
|
+
name = "rand_chacha"
|
|
1614
|
+
version = "0.9.0"
|
|
1615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1617
|
+
dependencies = [
|
|
1618
|
+
"ppv-lite86",
|
|
1619
|
+
"rand_core",
|
|
1620
|
+
]
|
|
1621
|
+
|
|
1622
|
+
[[package]]
|
|
1623
|
+
name = "rand_core"
|
|
1624
|
+
version = "0.9.5"
|
|
1625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1627
|
+
dependencies = [
|
|
1628
|
+
"getrandom 0.3.4",
|
|
1629
|
+
]
|
|
1630
|
+
|
|
1631
|
+
[[package]]
|
|
1632
|
+
name = "rb-sys"
|
|
1633
|
+
version = "0.9.128"
|
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
+
checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
|
|
1636
|
+
dependencies = [
|
|
1637
|
+
"rb-sys-build",
|
|
1638
|
+
]
|
|
1639
|
+
|
|
1640
|
+
[[package]]
|
|
1641
|
+
name = "rb-sys-build"
|
|
1642
|
+
version = "0.9.128"
|
|
1643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1644
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
1645
|
+
dependencies = [
|
|
1646
|
+
"bindgen",
|
|
1647
|
+
"lazy_static",
|
|
1648
|
+
"proc-macro2",
|
|
1649
|
+
"quote",
|
|
1650
|
+
"regex",
|
|
1651
|
+
"shell-words",
|
|
1652
|
+
"syn",
|
|
1653
|
+
]
|
|
1654
|
+
|
|
1655
|
+
[[package]]
|
|
1656
|
+
name = "rb-sys-env"
|
|
1657
|
+
version = "0.2.3"
|
|
1658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
1660
|
+
|
|
1661
|
+
[[package]]
|
|
1662
|
+
name = "rcgen"
|
|
1663
|
+
version = "0.14.8"
|
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
+
checksum = "57f6d249aad744e274e682777a50283a225a32705394ee6d5fcc01efa25e4055"
|
|
1666
|
+
dependencies = [
|
|
1667
|
+
"pem",
|
|
1668
|
+
"ring",
|
|
1669
|
+
"rustls-pki-types",
|
|
1670
|
+
"time",
|
|
1671
|
+
"x509-parser",
|
|
1672
|
+
"yasna",
|
|
1673
|
+
]
|
|
1674
|
+
|
|
1675
|
+
[[package]]
|
|
1676
|
+
name = "redox_syscall"
|
|
1677
|
+
version = "0.5.18"
|
|
1678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1680
|
+
dependencies = [
|
|
1681
|
+
"bitflags",
|
|
1682
|
+
]
|
|
1683
|
+
|
|
1684
|
+
[[package]]
|
|
1685
|
+
name = "regex"
|
|
1686
|
+
version = "1.12.3"
|
|
1687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1688
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1689
|
+
dependencies = [
|
|
1690
|
+
"aho-corasick",
|
|
1691
|
+
"memchr",
|
|
1692
|
+
"regex-automata",
|
|
1693
|
+
"regex-syntax",
|
|
1694
|
+
]
|
|
1695
|
+
|
|
1696
|
+
[[package]]
|
|
1697
|
+
name = "regex-automata"
|
|
1698
|
+
version = "0.4.14"
|
|
1699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1700
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1701
|
+
dependencies = [
|
|
1702
|
+
"aho-corasick",
|
|
1703
|
+
"memchr",
|
|
1704
|
+
"regex-syntax",
|
|
1705
|
+
]
|
|
1706
|
+
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "regex-syntax"
|
|
1709
|
+
version = "0.8.10"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1712
|
+
|
|
1713
|
+
[[package]]
|
|
1714
|
+
name = "ring"
|
|
1715
|
+
version = "0.17.14"
|
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1717
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1718
|
+
dependencies = [
|
|
1719
|
+
"cc",
|
|
1720
|
+
"cfg-if",
|
|
1721
|
+
"getrandom 0.2.17",
|
|
1722
|
+
"libc",
|
|
1723
|
+
"untrusted",
|
|
1724
|
+
"windows-sys 0.52.0",
|
|
1725
|
+
]
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "rustc-demangle"
|
|
1729
|
+
version = "0.1.27"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
|
|
1732
|
+
|
|
1733
|
+
[[package]]
|
|
1734
|
+
name = "rustc-hash"
|
|
1735
|
+
version = "2.1.2"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "rusticata-macros"
|
|
1741
|
+
version = "4.1.0"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
|
|
1744
|
+
dependencies = [
|
|
1745
|
+
"nom",
|
|
1746
|
+
]
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "rustix"
|
|
1750
|
+
version = "1.1.4"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1753
|
+
dependencies = [
|
|
1754
|
+
"bitflags",
|
|
1755
|
+
"errno",
|
|
1756
|
+
"libc",
|
|
1757
|
+
"linux-raw-sys",
|
|
1758
|
+
"windows-sys 0.61.2",
|
|
1759
|
+
]
|
|
1760
|
+
|
|
1761
|
+
[[package]]
|
|
1762
|
+
name = "rustls"
|
|
1763
|
+
version = "0.23.40"
|
|
1764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1765
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
1766
|
+
dependencies = [
|
|
1767
|
+
"once_cell",
|
|
1768
|
+
"ring",
|
|
1769
|
+
"rustls-pki-types",
|
|
1770
|
+
"rustls-webpki",
|
|
1771
|
+
"subtle",
|
|
1772
|
+
"zeroize",
|
|
1773
|
+
]
|
|
1774
|
+
|
|
1775
|
+
[[package]]
|
|
1776
|
+
name = "rustls-native-certs"
|
|
1777
|
+
version = "0.8.3"
|
|
1778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1779
|
+
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
1780
|
+
dependencies = [
|
|
1781
|
+
"openssl-probe",
|
|
1782
|
+
"rustls-pki-types",
|
|
1783
|
+
"schannel",
|
|
1784
|
+
"security-framework",
|
|
1785
|
+
]
|
|
1786
|
+
|
|
1787
|
+
[[package]]
|
|
1788
|
+
name = "rustls-pemfile"
|
|
1789
|
+
version = "2.2.0"
|
|
1790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
1792
|
+
dependencies = [
|
|
1793
|
+
"rustls-pki-types",
|
|
1794
|
+
]
|
|
1795
|
+
|
|
1796
|
+
[[package]]
|
|
1797
|
+
name = "rustls-pki-types"
|
|
1798
|
+
version = "1.14.1"
|
|
1799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
1801
|
+
dependencies = [
|
|
1802
|
+
"web-time",
|
|
1803
|
+
"zeroize",
|
|
1804
|
+
]
|
|
1805
|
+
|
|
1806
|
+
[[package]]
|
|
1807
|
+
name = "rustls-platform-verifier"
|
|
1808
|
+
version = "0.6.2"
|
|
1809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
+
checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
|
|
1811
|
+
dependencies = [
|
|
1812
|
+
"core-foundation",
|
|
1813
|
+
"core-foundation-sys",
|
|
1814
|
+
"jni",
|
|
1815
|
+
"log",
|
|
1816
|
+
"once_cell",
|
|
1817
|
+
"rustls",
|
|
1818
|
+
"rustls-native-certs",
|
|
1819
|
+
"rustls-platform-verifier-android",
|
|
1820
|
+
"rustls-webpki",
|
|
1821
|
+
"security-framework",
|
|
1822
|
+
"security-framework-sys",
|
|
1823
|
+
"webpki-root-certs",
|
|
1824
|
+
"windows-sys 0.61.2",
|
|
1825
|
+
]
|
|
1826
|
+
|
|
1827
|
+
[[package]]
|
|
1828
|
+
name = "rustls-platform-verifier-android"
|
|
1829
|
+
version = "0.1.1"
|
|
1830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
1832
|
+
|
|
1833
|
+
[[package]]
|
|
1834
|
+
name = "rustls-webpki"
|
|
1835
|
+
version = "0.103.13"
|
|
1836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
1838
|
+
dependencies = [
|
|
1839
|
+
"ring",
|
|
1840
|
+
"rustls-pki-types",
|
|
1841
|
+
"untrusted",
|
|
1842
|
+
]
|
|
1843
|
+
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "rustversion"
|
|
1846
|
+
version = "1.0.22"
|
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1849
|
+
|
|
1850
|
+
[[package]]
|
|
1851
|
+
name = "saa"
|
|
1852
|
+
version = "5.6.0"
|
|
1853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1854
|
+
checksum = "68f5acb362a0e75c2a963532fa7fabf13dff81626dc494df16488d30befcbea0"
|
|
1855
|
+
|
|
1856
|
+
[[package]]
|
|
1857
|
+
name = "same-file"
|
|
1858
|
+
version = "1.0.6"
|
|
1859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1861
|
+
dependencies = [
|
|
1862
|
+
"winapi-util",
|
|
1863
|
+
]
|
|
1864
|
+
|
|
1865
|
+
[[package]]
|
|
1866
|
+
name = "scc"
|
|
1867
|
+
version = "3.7.1"
|
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
+
checksum = "5bcd12b6caff5213cc3c03123cde8c3db5e413008a63b0c0ba35e6275825ea92"
|
|
1870
|
+
dependencies = [
|
|
1871
|
+
"saa",
|
|
1872
|
+
"sdd",
|
|
1873
|
+
]
|
|
1874
|
+
|
|
1875
|
+
[[package]]
|
|
1876
|
+
name = "schannel"
|
|
1877
|
+
version = "0.1.29"
|
|
1878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1879
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
1880
|
+
dependencies = [
|
|
1881
|
+
"windows-sys 0.61.2",
|
|
1882
|
+
]
|
|
1883
|
+
|
|
1884
|
+
[[package]]
|
|
1885
|
+
name = "scopeguard"
|
|
1886
|
+
version = "1.2.0"
|
|
1887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1888
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1889
|
+
|
|
1890
|
+
[[package]]
|
|
1891
|
+
name = "sdd"
|
|
1892
|
+
version = "4.8.6"
|
|
1893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1894
|
+
checksum = "e5f0e40a01b94e35d1dacbcfbe5bfd3d31e37d9590b2e6d86a82b0e87bd4f551"
|
|
1895
|
+
dependencies = [
|
|
1896
|
+
"saa",
|
|
1897
|
+
]
|
|
1898
|
+
|
|
1899
|
+
[[package]]
|
|
1900
|
+
name = "security-framework"
|
|
1901
|
+
version = "3.7.0"
|
|
1902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1903
|
+
checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
|
|
1904
|
+
dependencies = [
|
|
1905
|
+
"bitflags",
|
|
1906
|
+
"core-foundation",
|
|
1907
|
+
"core-foundation-sys",
|
|
1908
|
+
"libc",
|
|
1909
|
+
"security-framework-sys",
|
|
1910
|
+
]
|
|
1911
|
+
|
|
1912
|
+
[[package]]
|
|
1913
|
+
name = "security-framework-sys"
|
|
1914
|
+
version = "2.17.0"
|
|
1915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1916
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
1917
|
+
dependencies = [
|
|
1918
|
+
"core-foundation-sys",
|
|
1919
|
+
"libc",
|
|
1920
|
+
]
|
|
1921
|
+
|
|
1922
|
+
[[package]]
|
|
1923
|
+
name = "semver"
|
|
1924
|
+
version = "1.0.28"
|
|
1925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1927
|
+
|
|
1928
|
+
[[package]]
|
|
1929
|
+
name = "seq-macro"
|
|
1930
|
+
version = "0.3.6"
|
|
1931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1932
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
1933
|
+
|
|
1934
|
+
[[package]]
|
|
1935
|
+
name = "serde"
|
|
1936
|
+
version = "1.0.228"
|
|
1937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1939
|
+
dependencies = [
|
|
1940
|
+
"serde_core",
|
|
1941
|
+
"serde_derive",
|
|
1942
|
+
]
|
|
1943
|
+
|
|
1944
|
+
[[package]]
|
|
1945
|
+
name = "serde_core"
|
|
1946
|
+
version = "1.0.228"
|
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1949
|
+
dependencies = [
|
|
1950
|
+
"serde_derive",
|
|
1951
|
+
]
|
|
1952
|
+
|
|
1953
|
+
[[package]]
|
|
1954
|
+
name = "serde_derive"
|
|
1955
|
+
version = "1.0.228"
|
|
1956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1957
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1958
|
+
dependencies = [
|
|
1959
|
+
"proc-macro2",
|
|
1960
|
+
"quote",
|
|
1961
|
+
"syn",
|
|
1962
|
+
]
|
|
1963
|
+
|
|
1964
|
+
[[package]]
|
|
1965
|
+
name = "serde_json"
|
|
1966
|
+
version = "1.0.149"
|
|
1967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1968
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1969
|
+
dependencies = [
|
|
1970
|
+
"itoa",
|
|
1971
|
+
"memchr",
|
|
1972
|
+
"serde",
|
|
1973
|
+
"serde_core",
|
|
1974
|
+
"zmij",
|
|
1975
|
+
]
|
|
1976
|
+
|
|
1977
|
+
[[package]]
|
|
1978
|
+
name = "serde_magnus"
|
|
1979
|
+
version = "0.11.0"
|
|
1980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
+
checksum = "8ff64c88ddd26acdcad5a501f18bcc339927b77b69f4a03bfaf2a6fc5ba2ac4b"
|
|
1982
|
+
dependencies = [
|
|
1983
|
+
"magnus",
|
|
1984
|
+
"serde",
|
|
1985
|
+
"tap",
|
|
1986
|
+
]
|
|
1987
|
+
|
|
1988
|
+
[[package]]
|
|
1989
|
+
name = "sha2"
|
|
1990
|
+
version = "0.11.0"
|
|
1991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1992
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
1993
|
+
dependencies = [
|
|
1994
|
+
"cfg-if",
|
|
1995
|
+
"cpufeatures",
|
|
1996
|
+
"digest",
|
|
1997
|
+
]
|
|
1998
|
+
|
|
1999
|
+
[[package]]
|
|
2000
|
+
name = "sharded-slab"
|
|
2001
|
+
version = "0.1.7"
|
|
2002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
2004
|
+
dependencies = [
|
|
2005
|
+
"lazy_static",
|
|
2006
|
+
]
|
|
2007
|
+
|
|
2008
|
+
[[package]]
|
|
2009
|
+
name = "shell-words"
|
|
2010
|
+
version = "1.1.1"
|
|
2011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2012
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
2013
|
+
|
|
2014
|
+
[[package]]
|
|
2015
|
+
name = "shlex"
|
|
2016
|
+
version = "1.3.0"
|
|
2017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2018
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2019
|
+
|
|
2020
|
+
[[package]]
|
|
2021
|
+
name = "signal-hook-registry"
|
|
2022
|
+
version = "1.4.8"
|
|
2023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2024
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2025
|
+
dependencies = [
|
|
2026
|
+
"errno",
|
|
2027
|
+
"libc",
|
|
2028
|
+
]
|
|
2029
|
+
|
|
2030
|
+
[[package]]
|
|
2031
|
+
name = "siphasher"
|
|
2032
|
+
version = "1.0.3"
|
|
2033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
2035
|
+
|
|
2036
|
+
[[package]]
|
|
2037
|
+
name = "slab"
|
|
2038
|
+
version = "0.4.12"
|
|
2039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2041
|
+
|
|
2042
|
+
[[package]]
|
|
2043
|
+
name = "smallvec"
|
|
2044
|
+
version = "1.15.1"
|
|
2045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2047
|
+
|
|
2048
|
+
[[package]]
|
|
2049
|
+
name = "socket2"
|
|
2050
|
+
version = "0.6.3"
|
|
2051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
2053
|
+
dependencies = [
|
|
2054
|
+
"libc",
|
|
2055
|
+
"windows-sys 0.61.2",
|
|
2056
|
+
]
|
|
2057
|
+
|
|
2058
|
+
[[package]]
|
|
2059
|
+
name = "stable_deref_trait"
|
|
2060
|
+
version = "1.2.1"
|
|
2061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2062
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2063
|
+
|
|
2064
|
+
[[package]]
|
|
2065
|
+
name = "subtle"
|
|
2066
|
+
version = "2.6.1"
|
|
2067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2068
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2069
|
+
|
|
2070
|
+
[[package]]
|
|
2071
|
+
name = "supports-color"
|
|
2072
|
+
version = "3.0.2"
|
|
2073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2074
|
+
checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6"
|
|
2075
|
+
dependencies = [
|
|
2076
|
+
"is_ci",
|
|
2077
|
+
]
|
|
2078
|
+
|
|
2079
|
+
[[package]]
|
|
2080
|
+
name = "supports-hyperlinks"
|
|
2081
|
+
version = "3.2.0"
|
|
2082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2083
|
+
checksum = "e396b6523b11ccb83120b115a0b7366de372751aa6edf19844dfb13a6af97e91"
|
|
2084
|
+
|
|
2085
|
+
[[package]]
|
|
2086
|
+
name = "supports-unicode"
|
|
2087
|
+
version = "3.0.0"
|
|
2088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2089
|
+
checksum = "b7401a30af6cb5818bb64852270bb722533397edcfc7344954a38f420819ece2"
|
|
2090
|
+
|
|
2091
|
+
[[package]]
|
|
2092
|
+
name = "syn"
|
|
2093
|
+
version = "2.0.117"
|
|
2094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2095
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
2096
|
+
dependencies = [
|
|
2097
|
+
"proc-macro2",
|
|
2098
|
+
"quote",
|
|
2099
|
+
"unicode-ident",
|
|
2100
|
+
]
|
|
2101
|
+
|
|
2102
|
+
[[package]]
|
|
2103
|
+
name = "synstructure"
|
|
2104
|
+
version = "0.13.2"
|
|
2105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2106
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2107
|
+
dependencies = [
|
|
2108
|
+
"proc-macro2",
|
|
2109
|
+
"quote",
|
|
2110
|
+
"syn",
|
|
2111
|
+
]
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "tap"
|
|
2115
|
+
version = "1.0.1"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
2118
|
+
|
|
2119
|
+
[[package]]
|
|
2120
|
+
name = "tempfile"
|
|
2121
|
+
version = "3.27.0"
|
|
2122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2123
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2124
|
+
dependencies = [
|
|
2125
|
+
"fastrand",
|
|
2126
|
+
"getrandom 0.4.2",
|
|
2127
|
+
"once_cell",
|
|
2128
|
+
"rustix",
|
|
2129
|
+
"windows-sys 0.61.2",
|
|
2130
|
+
]
|
|
2131
|
+
|
|
2132
|
+
[[package]]
|
|
2133
|
+
name = "terminal_size"
|
|
2134
|
+
version = "0.4.4"
|
|
2135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
+
checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
|
|
2137
|
+
dependencies = [
|
|
2138
|
+
"rustix",
|
|
2139
|
+
"windows-sys 0.61.2",
|
|
2140
|
+
]
|
|
2141
|
+
|
|
2142
|
+
[[package]]
|
|
2143
|
+
name = "textwrap"
|
|
2144
|
+
version = "0.16.2"
|
|
2145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
+
checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
|
|
2147
|
+
dependencies = [
|
|
2148
|
+
"unicode-linebreak",
|
|
2149
|
+
"unicode-width 0.2.2",
|
|
2150
|
+
]
|
|
2151
|
+
|
|
2152
|
+
[[package]]
|
|
2153
|
+
name = "thiserror"
|
|
2154
|
+
version = "1.0.69"
|
|
2155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2156
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2157
|
+
dependencies = [
|
|
2158
|
+
"thiserror-impl 1.0.69",
|
|
2159
|
+
]
|
|
2160
|
+
|
|
2161
|
+
[[package]]
|
|
2162
|
+
name = "thiserror"
|
|
2163
|
+
version = "2.0.18"
|
|
2164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2165
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
2166
|
+
dependencies = [
|
|
2167
|
+
"thiserror-impl 2.0.18",
|
|
2168
|
+
]
|
|
2169
|
+
|
|
2170
|
+
[[package]]
|
|
2171
|
+
name = "thiserror-impl"
|
|
2172
|
+
version = "1.0.69"
|
|
2173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2174
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2175
|
+
dependencies = [
|
|
2176
|
+
"proc-macro2",
|
|
2177
|
+
"quote",
|
|
2178
|
+
"syn",
|
|
2179
|
+
]
|
|
2180
|
+
|
|
2181
|
+
[[package]]
|
|
2182
|
+
name = "thiserror-impl"
|
|
2183
|
+
version = "2.0.18"
|
|
2184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2185
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
2186
|
+
dependencies = [
|
|
2187
|
+
"proc-macro2",
|
|
2188
|
+
"quote",
|
|
2189
|
+
"syn",
|
|
2190
|
+
]
|
|
2191
|
+
|
|
2192
|
+
[[package]]
|
|
2193
|
+
name = "thread_local"
|
|
2194
|
+
version = "1.1.9"
|
|
2195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2196
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
2197
|
+
dependencies = [
|
|
2198
|
+
"cfg-if",
|
|
2199
|
+
]
|
|
2200
|
+
|
|
2201
|
+
[[package]]
|
|
2202
|
+
name = "time"
|
|
2203
|
+
version = "0.3.47"
|
|
2204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2205
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
2206
|
+
dependencies = [
|
|
2207
|
+
"deranged",
|
|
2208
|
+
"itoa",
|
|
2209
|
+
"num-conv",
|
|
2210
|
+
"powerfmt",
|
|
2211
|
+
"serde_core",
|
|
2212
|
+
"time-core",
|
|
2213
|
+
"time-macros",
|
|
2214
|
+
]
|
|
2215
|
+
|
|
2216
|
+
[[package]]
|
|
2217
|
+
name = "time-core"
|
|
2218
|
+
version = "0.1.8"
|
|
2219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2220
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
2221
|
+
|
|
2222
|
+
[[package]]
|
|
2223
|
+
name = "time-macros"
|
|
2224
|
+
version = "0.2.27"
|
|
2225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2226
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
2227
|
+
dependencies = [
|
|
2228
|
+
"num-conv",
|
|
2229
|
+
"time-core",
|
|
2230
|
+
]
|
|
2231
|
+
|
|
2232
|
+
[[package]]
|
|
2233
|
+
name = "tinystr"
|
|
2234
|
+
version = "0.8.3"
|
|
2235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2236
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2237
|
+
dependencies = [
|
|
2238
|
+
"displaydoc",
|
|
2239
|
+
"zerovec",
|
|
2240
|
+
]
|
|
2241
|
+
|
|
2242
|
+
[[package]]
|
|
2243
|
+
name = "tinyvec"
|
|
2244
|
+
version = "1.11.0"
|
|
2245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2246
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
2247
|
+
dependencies = [
|
|
2248
|
+
"tinyvec_macros",
|
|
2249
|
+
]
|
|
2250
|
+
|
|
2251
|
+
[[package]]
|
|
2252
|
+
name = "tinyvec_macros"
|
|
2253
|
+
version = "0.1.1"
|
|
2254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2255
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2256
|
+
|
|
2257
|
+
[[package]]
|
|
2258
|
+
name = "tokio"
|
|
2259
|
+
version = "1.52.3"
|
|
2260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2261
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
2262
|
+
dependencies = [
|
|
2263
|
+
"bytes",
|
|
2264
|
+
"libc",
|
|
2265
|
+
"mio",
|
|
2266
|
+
"parking_lot",
|
|
2267
|
+
"pin-project-lite",
|
|
2268
|
+
"signal-hook-registry",
|
|
2269
|
+
"socket2",
|
|
2270
|
+
"tokio-macros",
|
|
2271
|
+
"windows-sys 0.61.2",
|
|
2272
|
+
]
|
|
2273
|
+
|
|
2274
|
+
[[package]]
|
|
2275
|
+
name = "tokio-macros"
|
|
2276
|
+
version = "2.7.0"
|
|
2277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2278
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
2279
|
+
dependencies = [
|
|
2280
|
+
"proc-macro2",
|
|
2281
|
+
"quote",
|
|
2282
|
+
"syn",
|
|
2283
|
+
]
|
|
2284
|
+
|
|
2285
|
+
[[package]]
|
|
2286
|
+
name = "tracing"
|
|
2287
|
+
version = "0.1.44"
|
|
2288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2289
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2290
|
+
dependencies = [
|
|
2291
|
+
"log",
|
|
2292
|
+
"pin-project-lite",
|
|
2293
|
+
"tracing-attributes",
|
|
2294
|
+
"tracing-core",
|
|
2295
|
+
]
|
|
2296
|
+
|
|
2297
|
+
[[package]]
|
|
2298
|
+
name = "tracing-attributes"
|
|
2299
|
+
version = "0.1.31"
|
|
2300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2301
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2302
|
+
dependencies = [
|
|
2303
|
+
"proc-macro2",
|
|
2304
|
+
"quote",
|
|
2305
|
+
"syn",
|
|
2306
|
+
]
|
|
2307
|
+
|
|
2308
|
+
[[package]]
|
|
2309
|
+
name = "tracing-core"
|
|
2310
|
+
version = "0.1.36"
|
|
2311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2312
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2313
|
+
dependencies = [
|
|
2314
|
+
"once_cell",
|
|
2315
|
+
"valuable",
|
|
2316
|
+
]
|
|
2317
|
+
|
|
2318
|
+
[[package]]
|
|
2319
|
+
name = "tracing-log"
|
|
2320
|
+
version = "0.2.0"
|
|
2321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2322
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
2323
|
+
dependencies = [
|
|
2324
|
+
"log",
|
|
2325
|
+
"once_cell",
|
|
2326
|
+
"tracing-core",
|
|
2327
|
+
]
|
|
2328
|
+
|
|
2329
|
+
[[package]]
|
|
2330
|
+
name = "tracing-subscriber"
|
|
2331
|
+
version = "0.3.23"
|
|
2332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2333
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
2334
|
+
dependencies = [
|
|
2335
|
+
"matchers",
|
|
2336
|
+
"nu-ansi-term",
|
|
2337
|
+
"once_cell",
|
|
2338
|
+
"regex-automata",
|
|
2339
|
+
"sharded-slab",
|
|
2340
|
+
"smallvec",
|
|
2341
|
+
"thread_local",
|
|
2342
|
+
"tracing",
|
|
2343
|
+
"tracing-core",
|
|
2344
|
+
"tracing-log",
|
|
2345
|
+
]
|
|
2346
|
+
|
|
2347
|
+
[[package]]
|
|
2348
|
+
name = "typenum"
|
|
2349
|
+
version = "1.20.0"
|
|
2350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2351
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
2352
|
+
|
|
2353
|
+
[[package]]
|
|
2354
|
+
name = "unicode-ident"
|
|
2355
|
+
version = "1.0.24"
|
|
2356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2358
|
+
|
|
2359
|
+
[[package]]
|
|
2360
|
+
name = "unicode-linebreak"
|
|
2361
|
+
version = "0.1.5"
|
|
2362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2363
|
+
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
|
2364
|
+
|
|
2365
|
+
[[package]]
|
|
2366
|
+
name = "unicode-segmentation"
|
|
2367
|
+
version = "1.13.2"
|
|
2368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2369
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
2370
|
+
|
|
2371
|
+
[[package]]
|
|
2372
|
+
name = "unicode-width"
|
|
2373
|
+
version = "0.1.14"
|
|
2374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2375
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
2376
|
+
|
|
2377
|
+
[[package]]
|
|
2378
|
+
name = "unicode-width"
|
|
2379
|
+
version = "0.2.2"
|
|
2380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2381
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
2382
|
+
|
|
2383
|
+
[[package]]
|
|
2384
|
+
name = "unicode-xid"
|
|
2385
|
+
version = "0.2.6"
|
|
2386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2387
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
2388
|
+
|
|
2389
|
+
[[package]]
|
|
2390
|
+
name = "unison_client"
|
|
2391
|
+
version = "0.1.0"
|
|
2392
|
+
dependencies = [
|
|
2393
|
+
"club-unison",
|
|
2394
|
+
"magnus",
|
|
2395
|
+
"rb-sys",
|
|
2396
|
+
"serde_json",
|
|
2397
|
+
"serde_magnus",
|
|
2398
|
+
"tokio",
|
|
2399
|
+
]
|
|
2400
|
+
|
|
2401
|
+
[[package]]
|
|
2402
|
+
name = "untrusted"
|
|
2403
|
+
version = "0.9.0"
|
|
2404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2406
|
+
|
|
2407
|
+
[[package]]
|
|
2408
|
+
name = "url"
|
|
2409
|
+
version = "2.5.8"
|
|
2410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2411
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2412
|
+
dependencies = [
|
|
2413
|
+
"form_urlencoded",
|
|
2414
|
+
"idna",
|
|
2415
|
+
"percent-encoding",
|
|
2416
|
+
"serde",
|
|
2417
|
+
]
|
|
2418
|
+
|
|
2419
|
+
[[package]]
|
|
2420
|
+
name = "utf8_iter"
|
|
2421
|
+
version = "1.0.4"
|
|
2422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2423
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2424
|
+
|
|
2425
|
+
[[package]]
|
|
2426
|
+
name = "uuid"
|
|
2427
|
+
version = "1.23.1"
|
|
2428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2429
|
+
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
|
|
2430
|
+
dependencies = [
|
|
2431
|
+
"getrandom 0.4.2",
|
|
2432
|
+
"js-sys",
|
|
2433
|
+
"serde_core",
|
|
2434
|
+
"wasm-bindgen",
|
|
2435
|
+
]
|
|
2436
|
+
|
|
2437
|
+
[[package]]
|
|
2438
|
+
name = "valuable"
|
|
2439
|
+
version = "0.1.1"
|
|
2440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2441
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
2442
|
+
|
|
2443
|
+
[[package]]
|
|
2444
|
+
name = "walkdir"
|
|
2445
|
+
version = "2.5.0"
|
|
2446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2447
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
2448
|
+
dependencies = [
|
|
2449
|
+
"same-file",
|
|
2450
|
+
"winapi-util",
|
|
2451
|
+
]
|
|
2452
|
+
|
|
2453
|
+
[[package]]
|
|
2454
|
+
name = "wasi"
|
|
2455
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2457
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2458
|
+
|
|
2459
|
+
[[package]]
|
|
2460
|
+
name = "wasip2"
|
|
2461
|
+
version = "1.0.3+wasi-0.2.9"
|
|
2462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2463
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
2464
|
+
dependencies = [
|
|
2465
|
+
"wit-bindgen 0.57.1",
|
|
2466
|
+
]
|
|
2467
|
+
|
|
2468
|
+
[[package]]
|
|
2469
|
+
name = "wasip3"
|
|
2470
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
2471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2472
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
2473
|
+
dependencies = [
|
|
2474
|
+
"wit-bindgen 0.51.0",
|
|
2475
|
+
]
|
|
2476
|
+
|
|
2477
|
+
[[package]]
|
|
2478
|
+
name = "wasm-bindgen"
|
|
2479
|
+
version = "0.2.121"
|
|
2480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2481
|
+
checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
|
|
2482
|
+
dependencies = [
|
|
2483
|
+
"cfg-if",
|
|
2484
|
+
"once_cell",
|
|
2485
|
+
"rustversion",
|
|
2486
|
+
"wasm-bindgen-macro",
|
|
2487
|
+
"wasm-bindgen-shared",
|
|
2488
|
+
]
|
|
2489
|
+
|
|
2490
|
+
[[package]]
|
|
2491
|
+
name = "wasm-bindgen-macro"
|
|
2492
|
+
version = "0.2.121"
|
|
2493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2494
|
+
checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
|
|
2495
|
+
dependencies = [
|
|
2496
|
+
"quote",
|
|
2497
|
+
"wasm-bindgen-macro-support",
|
|
2498
|
+
]
|
|
2499
|
+
|
|
2500
|
+
[[package]]
|
|
2501
|
+
name = "wasm-bindgen-macro-support"
|
|
2502
|
+
version = "0.2.121"
|
|
2503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2504
|
+
checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
|
|
2505
|
+
dependencies = [
|
|
2506
|
+
"bumpalo",
|
|
2507
|
+
"proc-macro2",
|
|
2508
|
+
"quote",
|
|
2509
|
+
"syn",
|
|
2510
|
+
"wasm-bindgen-shared",
|
|
2511
|
+
]
|
|
2512
|
+
|
|
2513
|
+
[[package]]
|
|
2514
|
+
name = "wasm-bindgen-shared"
|
|
2515
|
+
version = "0.2.121"
|
|
2516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2517
|
+
checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
|
|
2518
|
+
dependencies = [
|
|
2519
|
+
"unicode-ident",
|
|
2520
|
+
]
|
|
2521
|
+
|
|
2522
|
+
[[package]]
|
|
2523
|
+
name = "wasm-encoder"
|
|
2524
|
+
version = "0.244.0"
|
|
2525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2526
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
2527
|
+
dependencies = [
|
|
2528
|
+
"leb128fmt",
|
|
2529
|
+
"wasmparser",
|
|
2530
|
+
]
|
|
2531
|
+
|
|
2532
|
+
[[package]]
|
|
2533
|
+
name = "wasm-metadata"
|
|
2534
|
+
version = "0.244.0"
|
|
2535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2536
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
2537
|
+
dependencies = [
|
|
2538
|
+
"anyhow",
|
|
2539
|
+
"indexmap",
|
|
2540
|
+
"wasm-encoder",
|
|
2541
|
+
"wasmparser",
|
|
2542
|
+
]
|
|
2543
|
+
|
|
2544
|
+
[[package]]
|
|
2545
|
+
name = "wasmparser"
|
|
2546
|
+
version = "0.244.0"
|
|
2547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2548
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
2549
|
+
dependencies = [
|
|
2550
|
+
"bitflags",
|
|
2551
|
+
"hashbrown 0.15.5",
|
|
2552
|
+
"indexmap",
|
|
2553
|
+
"semver",
|
|
2554
|
+
]
|
|
2555
|
+
|
|
2556
|
+
[[package]]
|
|
2557
|
+
name = "web-time"
|
|
2558
|
+
version = "1.1.0"
|
|
2559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2560
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
2561
|
+
dependencies = [
|
|
2562
|
+
"js-sys",
|
|
2563
|
+
"wasm-bindgen",
|
|
2564
|
+
]
|
|
2565
|
+
|
|
2566
|
+
[[package]]
|
|
2567
|
+
name = "webpki-root-certs"
|
|
2568
|
+
version = "1.0.7"
|
|
2569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2570
|
+
checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
|
|
2571
|
+
dependencies = [
|
|
2572
|
+
"rustls-pki-types",
|
|
2573
|
+
]
|
|
2574
|
+
|
|
2575
|
+
[[package]]
|
|
2576
|
+
name = "webpki-roots"
|
|
2577
|
+
version = "1.0.7"
|
|
2578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2579
|
+
checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
|
|
2580
|
+
dependencies = [
|
|
2581
|
+
"rustls-pki-types",
|
|
2582
|
+
]
|
|
2583
|
+
|
|
2584
|
+
[[package]]
|
|
2585
|
+
name = "winapi-util"
|
|
2586
|
+
version = "0.1.11"
|
|
2587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2588
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2589
|
+
dependencies = [
|
|
2590
|
+
"windows-sys 0.61.2",
|
|
2591
|
+
]
|
|
2592
|
+
|
|
2593
|
+
[[package]]
|
|
2594
|
+
name = "windows-core"
|
|
2595
|
+
version = "0.62.2"
|
|
2596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2597
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2598
|
+
dependencies = [
|
|
2599
|
+
"windows-implement",
|
|
2600
|
+
"windows-interface",
|
|
2601
|
+
"windows-link",
|
|
2602
|
+
"windows-result",
|
|
2603
|
+
"windows-strings",
|
|
2604
|
+
]
|
|
2605
|
+
|
|
2606
|
+
[[package]]
|
|
2607
|
+
name = "windows-implement"
|
|
2608
|
+
version = "0.60.2"
|
|
2609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2610
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2611
|
+
dependencies = [
|
|
2612
|
+
"proc-macro2",
|
|
2613
|
+
"quote",
|
|
2614
|
+
"syn",
|
|
2615
|
+
]
|
|
2616
|
+
|
|
2617
|
+
[[package]]
|
|
2618
|
+
name = "windows-interface"
|
|
2619
|
+
version = "0.59.3"
|
|
2620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2621
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2622
|
+
dependencies = [
|
|
2623
|
+
"proc-macro2",
|
|
2624
|
+
"quote",
|
|
2625
|
+
"syn",
|
|
2626
|
+
]
|
|
2627
|
+
|
|
2628
|
+
[[package]]
|
|
2629
|
+
name = "windows-link"
|
|
2630
|
+
version = "0.2.1"
|
|
2631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2632
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2633
|
+
|
|
2634
|
+
[[package]]
|
|
2635
|
+
name = "windows-result"
|
|
2636
|
+
version = "0.4.1"
|
|
2637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2638
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2639
|
+
dependencies = [
|
|
2640
|
+
"windows-link",
|
|
2641
|
+
]
|
|
2642
|
+
|
|
2643
|
+
[[package]]
|
|
2644
|
+
name = "windows-strings"
|
|
2645
|
+
version = "0.5.1"
|
|
2646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2647
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2648
|
+
dependencies = [
|
|
2649
|
+
"windows-link",
|
|
2650
|
+
]
|
|
2651
|
+
|
|
2652
|
+
[[package]]
|
|
2653
|
+
name = "windows-sys"
|
|
2654
|
+
version = "0.45.0"
|
|
2655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2656
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
2657
|
+
dependencies = [
|
|
2658
|
+
"windows-targets 0.42.2",
|
|
2659
|
+
]
|
|
2660
|
+
|
|
2661
|
+
[[package]]
|
|
2662
|
+
name = "windows-sys"
|
|
2663
|
+
version = "0.52.0"
|
|
2664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2665
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2666
|
+
dependencies = [
|
|
2667
|
+
"windows-targets 0.52.6",
|
|
2668
|
+
]
|
|
2669
|
+
|
|
2670
|
+
[[package]]
|
|
2671
|
+
name = "windows-sys"
|
|
2672
|
+
version = "0.60.2"
|
|
2673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2674
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2675
|
+
dependencies = [
|
|
2676
|
+
"windows-targets 0.53.5",
|
|
2677
|
+
]
|
|
2678
|
+
|
|
2679
|
+
[[package]]
|
|
2680
|
+
name = "windows-sys"
|
|
2681
|
+
version = "0.61.2"
|
|
2682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2683
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2684
|
+
dependencies = [
|
|
2685
|
+
"windows-link",
|
|
2686
|
+
]
|
|
2687
|
+
|
|
2688
|
+
[[package]]
|
|
2689
|
+
name = "windows-targets"
|
|
2690
|
+
version = "0.42.2"
|
|
2691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2692
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
2693
|
+
dependencies = [
|
|
2694
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
2695
|
+
"windows_aarch64_msvc 0.42.2",
|
|
2696
|
+
"windows_i686_gnu 0.42.2",
|
|
2697
|
+
"windows_i686_msvc 0.42.2",
|
|
2698
|
+
"windows_x86_64_gnu 0.42.2",
|
|
2699
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
2700
|
+
"windows_x86_64_msvc 0.42.2",
|
|
2701
|
+
]
|
|
2702
|
+
|
|
2703
|
+
[[package]]
|
|
2704
|
+
name = "windows-targets"
|
|
2705
|
+
version = "0.52.6"
|
|
2706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2708
|
+
dependencies = [
|
|
2709
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2710
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2711
|
+
"windows_i686_gnu 0.52.6",
|
|
2712
|
+
"windows_i686_gnullvm 0.52.6",
|
|
2713
|
+
"windows_i686_msvc 0.52.6",
|
|
2714
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2715
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2716
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2717
|
+
]
|
|
2718
|
+
|
|
2719
|
+
[[package]]
|
|
2720
|
+
name = "windows-targets"
|
|
2721
|
+
version = "0.53.5"
|
|
2722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2723
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
2724
|
+
dependencies = [
|
|
2725
|
+
"windows-link",
|
|
2726
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
2727
|
+
"windows_aarch64_msvc 0.53.1",
|
|
2728
|
+
"windows_i686_gnu 0.53.1",
|
|
2729
|
+
"windows_i686_gnullvm 0.53.1",
|
|
2730
|
+
"windows_i686_msvc 0.53.1",
|
|
2731
|
+
"windows_x86_64_gnu 0.53.1",
|
|
2732
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
2733
|
+
"windows_x86_64_msvc 0.53.1",
|
|
2734
|
+
]
|
|
2735
|
+
|
|
2736
|
+
[[package]]
|
|
2737
|
+
name = "windows_aarch64_gnullvm"
|
|
2738
|
+
version = "0.42.2"
|
|
2739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
2741
|
+
|
|
2742
|
+
[[package]]
|
|
2743
|
+
name = "windows_aarch64_gnullvm"
|
|
2744
|
+
version = "0.52.6"
|
|
2745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2746
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2747
|
+
|
|
2748
|
+
[[package]]
|
|
2749
|
+
name = "windows_aarch64_gnullvm"
|
|
2750
|
+
version = "0.53.1"
|
|
2751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2752
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2753
|
+
|
|
2754
|
+
[[package]]
|
|
2755
|
+
name = "windows_aarch64_msvc"
|
|
2756
|
+
version = "0.42.2"
|
|
2757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2758
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
2759
|
+
|
|
2760
|
+
[[package]]
|
|
2761
|
+
name = "windows_aarch64_msvc"
|
|
2762
|
+
version = "0.52.6"
|
|
2763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2764
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2765
|
+
|
|
2766
|
+
[[package]]
|
|
2767
|
+
name = "windows_aarch64_msvc"
|
|
2768
|
+
version = "0.53.1"
|
|
2769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2770
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2771
|
+
|
|
2772
|
+
[[package]]
|
|
2773
|
+
name = "windows_i686_gnu"
|
|
2774
|
+
version = "0.42.2"
|
|
2775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2776
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
2777
|
+
|
|
2778
|
+
[[package]]
|
|
2779
|
+
name = "windows_i686_gnu"
|
|
2780
|
+
version = "0.52.6"
|
|
2781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2782
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2783
|
+
|
|
2784
|
+
[[package]]
|
|
2785
|
+
name = "windows_i686_gnu"
|
|
2786
|
+
version = "0.53.1"
|
|
2787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2788
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2789
|
+
|
|
2790
|
+
[[package]]
|
|
2791
|
+
name = "windows_i686_gnullvm"
|
|
2792
|
+
version = "0.52.6"
|
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2795
|
+
|
|
2796
|
+
[[package]]
|
|
2797
|
+
name = "windows_i686_gnullvm"
|
|
2798
|
+
version = "0.53.1"
|
|
2799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2801
|
+
|
|
2802
|
+
[[package]]
|
|
2803
|
+
name = "windows_i686_msvc"
|
|
2804
|
+
version = "0.42.2"
|
|
2805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2806
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
2807
|
+
|
|
2808
|
+
[[package]]
|
|
2809
|
+
name = "windows_i686_msvc"
|
|
2810
|
+
version = "0.52.6"
|
|
2811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2812
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2813
|
+
|
|
2814
|
+
[[package]]
|
|
2815
|
+
name = "windows_i686_msvc"
|
|
2816
|
+
version = "0.53.1"
|
|
2817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2818
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2819
|
+
|
|
2820
|
+
[[package]]
|
|
2821
|
+
name = "windows_x86_64_gnu"
|
|
2822
|
+
version = "0.42.2"
|
|
2823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2824
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
2825
|
+
|
|
2826
|
+
[[package]]
|
|
2827
|
+
name = "windows_x86_64_gnu"
|
|
2828
|
+
version = "0.52.6"
|
|
2829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2830
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2831
|
+
|
|
2832
|
+
[[package]]
|
|
2833
|
+
name = "windows_x86_64_gnu"
|
|
2834
|
+
version = "0.53.1"
|
|
2835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2836
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
2837
|
+
|
|
2838
|
+
[[package]]
|
|
2839
|
+
name = "windows_x86_64_gnullvm"
|
|
2840
|
+
version = "0.42.2"
|
|
2841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2842
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
2843
|
+
|
|
2844
|
+
[[package]]
|
|
2845
|
+
name = "windows_x86_64_gnullvm"
|
|
2846
|
+
version = "0.52.6"
|
|
2847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2848
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2849
|
+
|
|
2850
|
+
[[package]]
|
|
2851
|
+
name = "windows_x86_64_gnullvm"
|
|
2852
|
+
version = "0.53.1"
|
|
2853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2854
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
2855
|
+
|
|
2856
|
+
[[package]]
|
|
2857
|
+
name = "windows_x86_64_msvc"
|
|
2858
|
+
version = "0.42.2"
|
|
2859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2860
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
2861
|
+
|
|
2862
|
+
[[package]]
|
|
2863
|
+
name = "windows_x86_64_msvc"
|
|
2864
|
+
version = "0.52.6"
|
|
2865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2866
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2867
|
+
|
|
2868
|
+
[[package]]
|
|
2869
|
+
name = "windows_x86_64_msvc"
|
|
2870
|
+
version = "0.53.1"
|
|
2871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2872
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2873
|
+
|
|
2874
|
+
[[package]]
|
|
2875
|
+
name = "winnow"
|
|
2876
|
+
version = "0.6.24"
|
|
2877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
+
checksum = "c8d71a593cc5c42ad7876e2c1fda56f314f3754c084128833e64f1345ff8a03a"
|
|
2879
|
+
dependencies = [
|
|
2880
|
+
"memchr",
|
|
2881
|
+
]
|
|
2882
|
+
|
|
2883
|
+
[[package]]
|
|
2884
|
+
name = "wit-bindgen"
|
|
2885
|
+
version = "0.51.0"
|
|
2886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2887
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
2888
|
+
dependencies = [
|
|
2889
|
+
"wit-bindgen-rust-macro",
|
|
2890
|
+
]
|
|
2891
|
+
|
|
2892
|
+
[[package]]
|
|
2893
|
+
name = "wit-bindgen"
|
|
2894
|
+
version = "0.57.1"
|
|
2895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2896
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
2897
|
+
|
|
2898
|
+
[[package]]
|
|
2899
|
+
name = "wit-bindgen-core"
|
|
2900
|
+
version = "0.51.0"
|
|
2901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2902
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
2903
|
+
dependencies = [
|
|
2904
|
+
"anyhow",
|
|
2905
|
+
"heck",
|
|
2906
|
+
"wit-parser",
|
|
2907
|
+
]
|
|
2908
|
+
|
|
2909
|
+
[[package]]
|
|
2910
|
+
name = "wit-bindgen-rust"
|
|
2911
|
+
version = "0.51.0"
|
|
2912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2913
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
2914
|
+
dependencies = [
|
|
2915
|
+
"anyhow",
|
|
2916
|
+
"heck",
|
|
2917
|
+
"indexmap",
|
|
2918
|
+
"prettyplease",
|
|
2919
|
+
"syn",
|
|
2920
|
+
"wasm-metadata",
|
|
2921
|
+
"wit-bindgen-core",
|
|
2922
|
+
"wit-component",
|
|
2923
|
+
]
|
|
2924
|
+
|
|
2925
|
+
[[package]]
|
|
2926
|
+
name = "wit-bindgen-rust-macro"
|
|
2927
|
+
version = "0.51.0"
|
|
2928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2929
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
2930
|
+
dependencies = [
|
|
2931
|
+
"anyhow",
|
|
2932
|
+
"prettyplease",
|
|
2933
|
+
"proc-macro2",
|
|
2934
|
+
"quote",
|
|
2935
|
+
"syn",
|
|
2936
|
+
"wit-bindgen-core",
|
|
2937
|
+
"wit-bindgen-rust",
|
|
2938
|
+
]
|
|
2939
|
+
|
|
2940
|
+
[[package]]
|
|
2941
|
+
name = "wit-component"
|
|
2942
|
+
version = "0.244.0"
|
|
2943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2944
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
2945
|
+
dependencies = [
|
|
2946
|
+
"anyhow",
|
|
2947
|
+
"bitflags",
|
|
2948
|
+
"indexmap",
|
|
2949
|
+
"log",
|
|
2950
|
+
"serde",
|
|
2951
|
+
"serde_derive",
|
|
2952
|
+
"serde_json",
|
|
2953
|
+
"wasm-encoder",
|
|
2954
|
+
"wasm-metadata",
|
|
2955
|
+
"wasmparser",
|
|
2956
|
+
"wit-parser",
|
|
2957
|
+
]
|
|
2958
|
+
|
|
2959
|
+
[[package]]
|
|
2960
|
+
name = "wit-parser"
|
|
2961
|
+
version = "0.244.0"
|
|
2962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2963
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
2964
|
+
dependencies = [
|
|
2965
|
+
"anyhow",
|
|
2966
|
+
"id-arena",
|
|
2967
|
+
"indexmap",
|
|
2968
|
+
"log",
|
|
2969
|
+
"semver",
|
|
2970
|
+
"serde",
|
|
2971
|
+
"serde_derive",
|
|
2972
|
+
"serde_json",
|
|
2973
|
+
"unicode-xid",
|
|
2974
|
+
"wasmparser",
|
|
2975
|
+
]
|
|
2976
|
+
|
|
2977
|
+
[[package]]
|
|
2978
|
+
name = "writeable"
|
|
2979
|
+
version = "0.6.3"
|
|
2980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2981
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
2982
|
+
|
|
2983
|
+
[[package]]
|
|
2984
|
+
name = "wtransport"
|
|
2985
|
+
version = "0.7.1"
|
|
2986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2987
|
+
checksum = "ea4aacf790813ee1956751491800537f4e04af7557b7b370501ccbfbc85963e4"
|
|
2988
|
+
dependencies = [
|
|
2989
|
+
"bytes",
|
|
2990
|
+
"pem",
|
|
2991
|
+
"quinn",
|
|
2992
|
+
"rcgen",
|
|
2993
|
+
"rustls",
|
|
2994
|
+
"rustls-native-certs",
|
|
2995
|
+
"rustls-pki-types",
|
|
2996
|
+
"sha2",
|
|
2997
|
+
"socket2",
|
|
2998
|
+
"thiserror 2.0.18",
|
|
2999
|
+
"time",
|
|
3000
|
+
"tokio",
|
|
3001
|
+
"tracing",
|
|
3002
|
+
"url",
|
|
3003
|
+
"wtransport-proto",
|
|
3004
|
+
"x509-parser",
|
|
3005
|
+
]
|
|
3006
|
+
|
|
3007
|
+
[[package]]
|
|
3008
|
+
name = "wtransport-proto"
|
|
3009
|
+
version = "0.7.1"
|
|
3010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3011
|
+
checksum = "d5867c629e4252f7439d82315923daaf27f4fa442410d51b78ab93ef4c432a11"
|
|
3012
|
+
dependencies = [
|
|
3013
|
+
"httlib-huffman",
|
|
3014
|
+
"octets",
|
|
3015
|
+
"thiserror 2.0.18",
|
|
3016
|
+
"url",
|
|
3017
|
+
]
|
|
3018
|
+
|
|
3019
|
+
[[package]]
|
|
3020
|
+
name = "x509-parser"
|
|
3021
|
+
version = "0.18.1"
|
|
3022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3023
|
+
checksum = "d43b0f71ce057da06bc0851b23ee24f3f86190b07203dd8f567d0b706a185202"
|
|
3024
|
+
dependencies = [
|
|
3025
|
+
"asn1-rs",
|
|
3026
|
+
"data-encoding",
|
|
3027
|
+
"der-parser",
|
|
3028
|
+
"lazy_static",
|
|
3029
|
+
"nom",
|
|
3030
|
+
"oid-registry",
|
|
3031
|
+
"ring",
|
|
3032
|
+
"rusticata-macros",
|
|
3033
|
+
"thiserror 2.0.18",
|
|
3034
|
+
"time",
|
|
3035
|
+
]
|
|
3036
|
+
|
|
3037
|
+
[[package]]
|
|
3038
|
+
name = "yasna"
|
|
3039
|
+
version = "0.6.0"
|
|
3040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3041
|
+
checksum = "b5f6765e852b9b4dc8e2a76843e4d64d1cea8e79bcde0b6901aea8e7c7f08282"
|
|
3042
|
+
dependencies = [
|
|
3043
|
+
"bit-vec",
|
|
3044
|
+
"time",
|
|
3045
|
+
]
|
|
3046
|
+
|
|
3047
|
+
[[package]]
|
|
3048
|
+
name = "yoke"
|
|
3049
|
+
version = "0.8.2"
|
|
3050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3051
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
3052
|
+
dependencies = [
|
|
3053
|
+
"stable_deref_trait",
|
|
3054
|
+
"yoke-derive",
|
|
3055
|
+
"zerofrom",
|
|
3056
|
+
]
|
|
3057
|
+
|
|
3058
|
+
[[package]]
|
|
3059
|
+
name = "yoke-derive"
|
|
3060
|
+
version = "0.8.2"
|
|
3061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3062
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
3063
|
+
dependencies = [
|
|
3064
|
+
"proc-macro2",
|
|
3065
|
+
"quote",
|
|
3066
|
+
"syn",
|
|
3067
|
+
"synstructure",
|
|
3068
|
+
]
|
|
3069
|
+
|
|
3070
|
+
[[package]]
|
|
3071
|
+
name = "zerocopy"
|
|
3072
|
+
version = "0.8.48"
|
|
3073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3074
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
3075
|
+
dependencies = [
|
|
3076
|
+
"zerocopy-derive",
|
|
3077
|
+
]
|
|
3078
|
+
|
|
3079
|
+
[[package]]
|
|
3080
|
+
name = "zerocopy-derive"
|
|
3081
|
+
version = "0.8.48"
|
|
3082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3083
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
3084
|
+
dependencies = [
|
|
3085
|
+
"proc-macro2",
|
|
3086
|
+
"quote",
|
|
3087
|
+
"syn",
|
|
3088
|
+
]
|
|
3089
|
+
|
|
3090
|
+
[[package]]
|
|
3091
|
+
name = "zerofrom"
|
|
3092
|
+
version = "0.1.8"
|
|
3093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3094
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
3095
|
+
dependencies = [
|
|
3096
|
+
"zerofrom-derive",
|
|
3097
|
+
]
|
|
3098
|
+
|
|
3099
|
+
[[package]]
|
|
3100
|
+
name = "zerofrom-derive"
|
|
3101
|
+
version = "0.1.7"
|
|
3102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3103
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
3104
|
+
dependencies = [
|
|
3105
|
+
"proc-macro2",
|
|
3106
|
+
"quote",
|
|
3107
|
+
"syn",
|
|
3108
|
+
"synstructure",
|
|
3109
|
+
]
|
|
3110
|
+
|
|
3111
|
+
[[package]]
|
|
3112
|
+
name = "zeroize"
|
|
3113
|
+
version = "1.8.2"
|
|
3114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3115
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3116
|
+
|
|
3117
|
+
[[package]]
|
|
3118
|
+
name = "zerotrie"
|
|
3119
|
+
version = "0.2.4"
|
|
3120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3121
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
3122
|
+
dependencies = [
|
|
3123
|
+
"displaydoc",
|
|
3124
|
+
"yoke",
|
|
3125
|
+
"zerofrom",
|
|
3126
|
+
]
|
|
3127
|
+
|
|
3128
|
+
[[package]]
|
|
3129
|
+
name = "zerovec"
|
|
3130
|
+
version = "0.11.6"
|
|
3131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3132
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
3133
|
+
dependencies = [
|
|
3134
|
+
"yoke",
|
|
3135
|
+
"zerofrom",
|
|
3136
|
+
"zerovec-derive",
|
|
3137
|
+
]
|
|
3138
|
+
|
|
3139
|
+
[[package]]
|
|
3140
|
+
name = "zerovec-derive"
|
|
3141
|
+
version = "0.11.3"
|
|
3142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3143
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
3144
|
+
dependencies = [
|
|
3145
|
+
"proc-macro2",
|
|
3146
|
+
"quote",
|
|
3147
|
+
"syn",
|
|
3148
|
+
]
|
|
3149
|
+
|
|
3150
|
+
[[package]]
|
|
3151
|
+
name = "zmij"
|
|
3152
|
+
version = "1.0.21"
|
|
3153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3154
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
3155
|
+
|
|
3156
|
+
[[package]]
|
|
3157
|
+
name = "zstd"
|
|
3158
|
+
version = "0.13.3"
|
|
3159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3160
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
3161
|
+
dependencies = [
|
|
3162
|
+
"zstd-safe",
|
|
3163
|
+
]
|
|
3164
|
+
|
|
3165
|
+
[[package]]
|
|
3166
|
+
name = "zstd-safe"
|
|
3167
|
+
version = "7.2.4"
|
|
3168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3169
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
3170
|
+
dependencies = [
|
|
3171
|
+
"zstd-sys",
|
|
3172
|
+
]
|
|
3173
|
+
|
|
3174
|
+
[[package]]
|
|
3175
|
+
name = "zstd-sys"
|
|
3176
|
+
version = "2.0.16+zstd.1.5.7"
|
|
3177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3178
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
3179
|
+
dependencies = [
|
|
3180
|
+
"cc",
|
|
3181
|
+
"pkg-config",
|
|
3182
|
+
]
|