lite-bb 0.1.4__tar.gz
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.
- lite_bb-0.1.4/Cargo.lock +2019 -0
- lite_bb-0.1.4/Cargo.toml +19 -0
- lite_bb-0.1.4/LICENSE +21 -0
- lite_bb-0.1.4/PKG-INFO +266 -0
- lite_bb-0.1.4/README.md +249 -0
- lite_bb-0.1.4/crates/cli/Cargo.toml +16 -0
- lite_bb-0.1.4/crates/cli/src/cmd/auth/login.rs +89 -0
- lite_bb-0.1.4/crates/cli/src/cmd/auth/logout.rs +14 -0
- lite_bb-0.1.4/crates/cli/src/cmd/auth/mod.rs +23 -0
- lite_bb-0.1.4/crates/cli/src/cmd/auth/status.rs +47 -0
- lite_bb-0.1.4/crates/cli/src/cmd/mod.rs +25 -0
- lite_bb-0.1.4/crates/cli/src/cmd/pr/checkout.rs +37 -0
- lite_bb-0.1.4/crates/cli/src/cmd/pr/checks.rs +37 -0
- lite_bb-0.1.4/crates/cli/src/cmd/pr/close.rs +17 -0
- lite_bb-0.1.4/crates/cli/src/cmd/pr/comment.rs +29 -0
- lite_bb-0.1.4/crates/cli/src/cmd/pr/create.rs +55 -0
- lite_bb-0.1.4/crates/cli/src/cmd/pr/diff.rs +17 -0
- lite_bb-0.1.4/crates/cli/src/cmd/pr/edit.rs +37 -0
- lite_bb-0.1.4/crates/cli/src/cmd/pr/list.rs +36 -0
- lite_bb-0.1.4/crates/cli/src/cmd/pr/merge.rs +29 -0
- lite_bb-0.1.4/crates/cli/src/cmd/pr/mod.rs +191 -0
- lite_bb-0.1.4/crates/cli/src/cmd/pr/reopen.rs +26 -0
- lite_bb-0.1.4/crates/cli/src/cmd/pr/review.rs +34 -0
- lite_bb-0.1.4/crates/cli/src/cmd/pr/view.rs +39 -0
- lite_bb-0.1.4/crates/cli/src/context.rs +61 -0
- lite_bb-0.1.4/crates/cli/src/main.rs +18 -0
- lite_bb-0.1.4/crates/core/Cargo.toml +15 -0
- lite_bb-0.1.4/crates/core/src/api/client.rs +103 -0
- lite_bb-0.1.4/crates/core/src/api/cloud.rs +172 -0
- lite_bb-0.1.4/crates/core/src/api/mod.rs +183 -0
- lite_bb-0.1.4/crates/core/src/api/server.rs +272 -0
- lite_bb-0.1.4/crates/core/src/auth/mod.rs +27 -0
- lite_bb-0.1.4/crates/core/src/config/mod.rs +112 -0
- lite_bb-0.1.4/crates/core/src/git.rs +302 -0
- lite_bb-0.1.4/crates/core/src/lib.rs +5 -0
- lite_bb-0.1.4/crates/core/src/models/mod.rs +143 -0
- lite_bb-0.1.4/crates/core/src/models/server.rs +340 -0
- lite_bb-0.1.4/pyproject.toml +27 -0
lite_bb-0.1.4/Cargo.lock
ADDED
|
@@ -0,0 +1,2019 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "anstream"
|
|
7
|
+
version = "0.6.21"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"anstyle",
|
|
12
|
+
"anstyle-parse",
|
|
13
|
+
"anstyle-query",
|
|
14
|
+
"anstyle-wincon",
|
|
15
|
+
"colorchoice",
|
|
16
|
+
"is_terminal_polyfill",
|
|
17
|
+
"utf8parse",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstyle"
|
|
22
|
+
version = "1.0.13"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anstyle-parse"
|
|
28
|
+
version = "0.2.7"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle-query"
|
|
37
|
+
version = "1.1.5"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"windows-sys 0.61.2",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstyle-wincon"
|
|
46
|
+
version = "3.0.11"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
49
|
+
dependencies = [
|
|
50
|
+
"anstyle",
|
|
51
|
+
"once_cell_polyfill",
|
|
52
|
+
"windows-sys 0.61.2",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "anyhow"
|
|
57
|
+
version = "1.0.102"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "atomic-waker"
|
|
63
|
+
version = "1.1.2"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "autocfg"
|
|
69
|
+
version = "1.5.0"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "base64"
|
|
75
|
+
version = "0.22.1"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "bb-cli"
|
|
81
|
+
version = "0.1.4"
|
|
82
|
+
dependencies = [
|
|
83
|
+
"anyhow",
|
|
84
|
+
"bb-core",
|
|
85
|
+
"clap",
|
|
86
|
+
"dialoguer",
|
|
87
|
+
"serde_json",
|
|
88
|
+
"tokio",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "bb-core"
|
|
93
|
+
version = "0.1.4"
|
|
94
|
+
dependencies = [
|
|
95
|
+
"base64",
|
|
96
|
+
"chrono",
|
|
97
|
+
"dirs",
|
|
98
|
+
"reqwest",
|
|
99
|
+
"serde",
|
|
100
|
+
"serde_json",
|
|
101
|
+
"serde_yaml",
|
|
102
|
+
"thiserror 2.0.18",
|
|
103
|
+
"tokio",
|
|
104
|
+
]
|
|
105
|
+
|
|
106
|
+
[[package]]
|
|
107
|
+
name = "bitflags"
|
|
108
|
+
version = "2.11.0"
|
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "bumpalo"
|
|
114
|
+
version = "3.20.2"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "bytes"
|
|
120
|
+
version = "1.11.1"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "cc"
|
|
126
|
+
version = "1.2.56"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
|
|
129
|
+
dependencies = [
|
|
130
|
+
"find-msvc-tools",
|
|
131
|
+
"shlex",
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "cfg-if"
|
|
136
|
+
version = "1.0.4"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "cfg_aliases"
|
|
142
|
+
version = "0.2.1"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "chrono"
|
|
148
|
+
version = "0.4.44"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"num-traits",
|
|
153
|
+
]
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "clap"
|
|
157
|
+
version = "4.5.60"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"clap_builder",
|
|
162
|
+
"clap_derive",
|
|
163
|
+
]
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "clap_builder"
|
|
167
|
+
version = "4.5.60"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
|
|
170
|
+
dependencies = [
|
|
171
|
+
"anstream",
|
|
172
|
+
"anstyle",
|
|
173
|
+
"clap_lex",
|
|
174
|
+
"strsim",
|
|
175
|
+
]
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "clap_derive"
|
|
179
|
+
version = "4.5.55"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"heck",
|
|
184
|
+
"proc-macro2",
|
|
185
|
+
"quote",
|
|
186
|
+
"syn",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "clap_lex"
|
|
191
|
+
version = "1.0.0"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "colorchoice"
|
|
197
|
+
version = "1.0.4"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "console"
|
|
203
|
+
version = "0.15.11"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
206
|
+
dependencies = [
|
|
207
|
+
"encode_unicode",
|
|
208
|
+
"libc",
|
|
209
|
+
"once_cell",
|
|
210
|
+
"unicode-width",
|
|
211
|
+
"windows-sys 0.59.0",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "dialoguer"
|
|
216
|
+
version = "0.11.0"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"console",
|
|
221
|
+
"shell-words",
|
|
222
|
+
"tempfile",
|
|
223
|
+
"thiserror 1.0.69",
|
|
224
|
+
"zeroize",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "dirs"
|
|
229
|
+
version = "6.0.0"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
232
|
+
dependencies = [
|
|
233
|
+
"dirs-sys",
|
|
234
|
+
]
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "dirs-sys"
|
|
238
|
+
version = "0.5.0"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
241
|
+
dependencies = [
|
|
242
|
+
"libc",
|
|
243
|
+
"option-ext",
|
|
244
|
+
"redox_users",
|
|
245
|
+
"windows-sys 0.61.2",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "displaydoc"
|
|
250
|
+
version = "0.2.5"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"proc-macro2",
|
|
255
|
+
"quote",
|
|
256
|
+
"syn",
|
|
257
|
+
]
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "encode_unicode"
|
|
261
|
+
version = "1.0.0"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "equivalent"
|
|
267
|
+
version = "1.0.2"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "errno"
|
|
273
|
+
version = "0.3.14"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
276
|
+
dependencies = [
|
|
277
|
+
"libc",
|
|
278
|
+
"windows-sys 0.61.2",
|
|
279
|
+
]
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "fastrand"
|
|
283
|
+
version = "2.3.0"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "find-msvc-tools"
|
|
289
|
+
version = "0.1.9"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "foldhash"
|
|
295
|
+
version = "0.1.5"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "form_urlencoded"
|
|
301
|
+
version = "1.2.2"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"percent-encoding",
|
|
306
|
+
]
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "futures-channel"
|
|
310
|
+
version = "0.3.32"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
313
|
+
dependencies = [
|
|
314
|
+
"futures-core",
|
|
315
|
+
]
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "futures-core"
|
|
319
|
+
version = "0.3.32"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "futures-task"
|
|
325
|
+
version = "0.3.32"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "futures-util"
|
|
331
|
+
version = "0.3.32"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"futures-core",
|
|
336
|
+
"futures-task",
|
|
337
|
+
"pin-project-lite",
|
|
338
|
+
"slab",
|
|
339
|
+
]
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "getrandom"
|
|
343
|
+
version = "0.2.17"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
346
|
+
dependencies = [
|
|
347
|
+
"cfg-if",
|
|
348
|
+
"js-sys",
|
|
349
|
+
"libc",
|
|
350
|
+
"wasi",
|
|
351
|
+
"wasm-bindgen",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "getrandom"
|
|
356
|
+
version = "0.3.4"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"cfg-if",
|
|
361
|
+
"js-sys",
|
|
362
|
+
"libc",
|
|
363
|
+
"r-efi 5.3.0",
|
|
364
|
+
"wasip2",
|
|
365
|
+
"wasm-bindgen",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "getrandom"
|
|
370
|
+
version = "0.4.2"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"cfg-if",
|
|
375
|
+
"libc",
|
|
376
|
+
"r-efi 6.0.0",
|
|
377
|
+
"wasip2",
|
|
378
|
+
"wasip3",
|
|
379
|
+
]
|
|
380
|
+
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "hashbrown"
|
|
383
|
+
version = "0.15.5"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
386
|
+
dependencies = [
|
|
387
|
+
"foldhash",
|
|
388
|
+
]
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "hashbrown"
|
|
392
|
+
version = "0.16.1"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "heck"
|
|
398
|
+
version = "0.5.0"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "http"
|
|
404
|
+
version = "1.4.0"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
407
|
+
dependencies = [
|
|
408
|
+
"bytes",
|
|
409
|
+
"itoa",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "http-body"
|
|
414
|
+
version = "1.0.1"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
417
|
+
dependencies = [
|
|
418
|
+
"bytes",
|
|
419
|
+
"http",
|
|
420
|
+
]
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "http-body-util"
|
|
424
|
+
version = "0.1.3"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"bytes",
|
|
429
|
+
"futures-core",
|
|
430
|
+
"http",
|
|
431
|
+
"http-body",
|
|
432
|
+
"pin-project-lite",
|
|
433
|
+
]
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "httparse"
|
|
437
|
+
version = "1.10.1"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "hyper"
|
|
443
|
+
version = "1.8.1"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
446
|
+
dependencies = [
|
|
447
|
+
"atomic-waker",
|
|
448
|
+
"bytes",
|
|
449
|
+
"futures-channel",
|
|
450
|
+
"futures-core",
|
|
451
|
+
"http",
|
|
452
|
+
"http-body",
|
|
453
|
+
"httparse",
|
|
454
|
+
"itoa",
|
|
455
|
+
"pin-project-lite",
|
|
456
|
+
"pin-utils",
|
|
457
|
+
"smallvec",
|
|
458
|
+
"tokio",
|
|
459
|
+
"want",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "hyper-rustls"
|
|
464
|
+
version = "0.27.7"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"http",
|
|
469
|
+
"hyper",
|
|
470
|
+
"hyper-util",
|
|
471
|
+
"rustls",
|
|
472
|
+
"rustls-pki-types",
|
|
473
|
+
"tokio",
|
|
474
|
+
"tokio-rustls",
|
|
475
|
+
"tower-service",
|
|
476
|
+
"webpki-roots",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "hyper-util"
|
|
481
|
+
version = "0.1.20"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"base64",
|
|
486
|
+
"bytes",
|
|
487
|
+
"futures-channel",
|
|
488
|
+
"futures-util",
|
|
489
|
+
"http",
|
|
490
|
+
"http-body",
|
|
491
|
+
"hyper",
|
|
492
|
+
"ipnet",
|
|
493
|
+
"libc",
|
|
494
|
+
"percent-encoding",
|
|
495
|
+
"pin-project-lite",
|
|
496
|
+
"socket2",
|
|
497
|
+
"tokio",
|
|
498
|
+
"tower-service",
|
|
499
|
+
"tracing",
|
|
500
|
+
]
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "icu_collections"
|
|
504
|
+
version = "2.1.1"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
507
|
+
dependencies = [
|
|
508
|
+
"displaydoc",
|
|
509
|
+
"potential_utf",
|
|
510
|
+
"yoke",
|
|
511
|
+
"zerofrom",
|
|
512
|
+
"zerovec",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "icu_locale_core"
|
|
517
|
+
version = "2.1.1"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"displaydoc",
|
|
522
|
+
"litemap",
|
|
523
|
+
"tinystr",
|
|
524
|
+
"writeable",
|
|
525
|
+
"zerovec",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "icu_normalizer"
|
|
530
|
+
version = "2.1.1"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
533
|
+
dependencies = [
|
|
534
|
+
"icu_collections",
|
|
535
|
+
"icu_normalizer_data",
|
|
536
|
+
"icu_properties",
|
|
537
|
+
"icu_provider",
|
|
538
|
+
"smallvec",
|
|
539
|
+
"zerovec",
|
|
540
|
+
]
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "icu_normalizer_data"
|
|
544
|
+
version = "2.1.1"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "icu_properties"
|
|
550
|
+
version = "2.1.2"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
553
|
+
dependencies = [
|
|
554
|
+
"icu_collections",
|
|
555
|
+
"icu_locale_core",
|
|
556
|
+
"icu_properties_data",
|
|
557
|
+
"icu_provider",
|
|
558
|
+
"zerotrie",
|
|
559
|
+
"zerovec",
|
|
560
|
+
]
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "icu_properties_data"
|
|
564
|
+
version = "2.1.2"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "icu_provider"
|
|
570
|
+
version = "2.1.1"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
573
|
+
dependencies = [
|
|
574
|
+
"displaydoc",
|
|
575
|
+
"icu_locale_core",
|
|
576
|
+
"writeable",
|
|
577
|
+
"yoke",
|
|
578
|
+
"zerofrom",
|
|
579
|
+
"zerotrie",
|
|
580
|
+
"zerovec",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "id-arena"
|
|
585
|
+
version = "2.3.0"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "idna"
|
|
591
|
+
version = "1.1.0"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
594
|
+
dependencies = [
|
|
595
|
+
"idna_adapter",
|
|
596
|
+
"smallvec",
|
|
597
|
+
"utf8_iter",
|
|
598
|
+
]
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "idna_adapter"
|
|
602
|
+
version = "1.2.1"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
605
|
+
dependencies = [
|
|
606
|
+
"icu_normalizer",
|
|
607
|
+
"icu_properties",
|
|
608
|
+
]
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "indexmap"
|
|
612
|
+
version = "2.13.0"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
615
|
+
dependencies = [
|
|
616
|
+
"equivalent",
|
|
617
|
+
"hashbrown 0.16.1",
|
|
618
|
+
"serde",
|
|
619
|
+
"serde_core",
|
|
620
|
+
]
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "ipnet"
|
|
624
|
+
version = "2.12.0"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "iri-string"
|
|
630
|
+
version = "0.7.10"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"memchr",
|
|
635
|
+
"serde",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "is_terminal_polyfill"
|
|
640
|
+
version = "1.70.2"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "itoa"
|
|
646
|
+
version = "1.0.17"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "js-sys"
|
|
652
|
+
version = "0.3.91"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
|
|
655
|
+
dependencies = [
|
|
656
|
+
"once_cell",
|
|
657
|
+
"wasm-bindgen",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "leb128fmt"
|
|
662
|
+
version = "0.1.0"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "libc"
|
|
668
|
+
version = "0.2.182"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "libredox"
|
|
674
|
+
version = "0.1.14"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a"
|
|
677
|
+
dependencies = [
|
|
678
|
+
"libc",
|
|
679
|
+
]
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "linux-raw-sys"
|
|
683
|
+
version = "0.12.1"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "litemap"
|
|
689
|
+
version = "0.8.1"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "lock_api"
|
|
695
|
+
version = "0.4.14"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"scopeguard",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "log"
|
|
704
|
+
version = "0.4.29"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "lru-slab"
|
|
710
|
+
version = "0.1.2"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "memchr"
|
|
716
|
+
version = "2.8.0"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "mio"
|
|
722
|
+
version = "1.1.1"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"libc",
|
|
727
|
+
"wasi",
|
|
728
|
+
"windows-sys 0.61.2",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "num-traits"
|
|
733
|
+
version = "0.2.19"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
736
|
+
dependencies = [
|
|
737
|
+
"autocfg",
|
|
738
|
+
]
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "once_cell"
|
|
742
|
+
version = "1.21.3"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "once_cell_polyfill"
|
|
748
|
+
version = "1.70.2"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "option-ext"
|
|
754
|
+
version = "0.2.0"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "parking_lot"
|
|
760
|
+
version = "0.12.5"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"lock_api",
|
|
765
|
+
"parking_lot_core",
|
|
766
|
+
]
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "parking_lot_core"
|
|
770
|
+
version = "0.9.12"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
773
|
+
dependencies = [
|
|
774
|
+
"cfg-if",
|
|
775
|
+
"libc",
|
|
776
|
+
"redox_syscall",
|
|
777
|
+
"smallvec",
|
|
778
|
+
"windows-link",
|
|
779
|
+
]
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "percent-encoding"
|
|
783
|
+
version = "2.3.2"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "pin-project-lite"
|
|
789
|
+
version = "0.2.17"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "pin-utils"
|
|
795
|
+
version = "0.1.0"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "potential_utf"
|
|
801
|
+
version = "0.1.4"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
804
|
+
dependencies = [
|
|
805
|
+
"zerovec",
|
|
806
|
+
]
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "ppv-lite86"
|
|
810
|
+
version = "0.2.21"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"zerocopy",
|
|
815
|
+
]
|
|
816
|
+
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "prettyplease"
|
|
819
|
+
version = "0.2.37"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
822
|
+
dependencies = [
|
|
823
|
+
"proc-macro2",
|
|
824
|
+
"syn",
|
|
825
|
+
]
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "proc-macro2"
|
|
829
|
+
version = "1.0.106"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
832
|
+
dependencies = [
|
|
833
|
+
"unicode-ident",
|
|
834
|
+
]
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "quinn"
|
|
838
|
+
version = "0.11.9"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
841
|
+
dependencies = [
|
|
842
|
+
"bytes",
|
|
843
|
+
"cfg_aliases",
|
|
844
|
+
"pin-project-lite",
|
|
845
|
+
"quinn-proto",
|
|
846
|
+
"quinn-udp",
|
|
847
|
+
"rustc-hash",
|
|
848
|
+
"rustls",
|
|
849
|
+
"socket2",
|
|
850
|
+
"thiserror 2.0.18",
|
|
851
|
+
"tokio",
|
|
852
|
+
"tracing",
|
|
853
|
+
"web-time",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "quinn-proto"
|
|
858
|
+
version = "0.11.13"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
861
|
+
dependencies = [
|
|
862
|
+
"bytes",
|
|
863
|
+
"getrandom 0.3.4",
|
|
864
|
+
"lru-slab",
|
|
865
|
+
"rand",
|
|
866
|
+
"ring",
|
|
867
|
+
"rustc-hash",
|
|
868
|
+
"rustls",
|
|
869
|
+
"rustls-pki-types",
|
|
870
|
+
"slab",
|
|
871
|
+
"thiserror 2.0.18",
|
|
872
|
+
"tinyvec",
|
|
873
|
+
"tracing",
|
|
874
|
+
"web-time",
|
|
875
|
+
]
|
|
876
|
+
|
|
877
|
+
[[package]]
|
|
878
|
+
name = "quinn-udp"
|
|
879
|
+
version = "0.5.14"
|
|
880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
882
|
+
dependencies = [
|
|
883
|
+
"cfg_aliases",
|
|
884
|
+
"libc",
|
|
885
|
+
"once_cell",
|
|
886
|
+
"socket2",
|
|
887
|
+
"tracing",
|
|
888
|
+
"windows-sys 0.60.2",
|
|
889
|
+
]
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "quote"
|
|
893
|
+
version = "1.0.45"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
896
|
+
dependencies = [
|
|
897
|
+
"proc-macro2",
|
|
898
|
+
]
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "r-efi"
|
|
902
|
+
version = "5.3.0"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "r-efi"
|
|
908
|
+
version = "6.0.0"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "rand"
|
|
914
|
+
version = "0.9.2"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
917
|
+
dependencies = [
|
|
918
|
+
"rand_chacha",
|
|
919
|
+
"rand_core",
|
|
920
|
+
]
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "rand_chacha"
|
|
924
|
+
version = "0.9.0"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"ppv-lite86",
|
|
929
|
+
"rand_core",
|
|
930
|
+
]
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "rand_core"
|
|
934
|
+
version = "0.9.5"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
937
|
+
dependencies = [
|
|
938
|
+
"getrandom 0.3.4",
|
|
939
|
+
]
|
|
940
|
+
|
|
941
|
+
[[package]]
|
|
942
|
+
name = "redox_syscall"
|
|
943
|
+
version = "0.5.18"
|
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
945
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
946
|
+
dependencies = [
|
|
947
|
+
"bitflags",
|
|
948
|
+
]
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "redox_users"
|
|
952
|
+
version = "0.5.2"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
955
|
+
dependencies = [
|
|
956
|
+
"getrandom 0.2.17",
|
|
957
|
+
"libredox",
|
|
958
|
+
"thiserror 2.0.18",
|
|
959
|
+
]
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "reqwest"
|
|
963
|
+
version = "0.12.28"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
966
|
+
dependencies = [
|
|
967
|
+
"base64",
|
|
968
|
+
"bytes",
|
|
969
|
+
"futures-core",
|
|
970
|
+
"http",
|
|
971
|
+
"http-body",
|
|
972
|
+
"http-body-util",
|
|
973
|
+
"hyper",
|
|
974
|
+
"hyper-rustls",
|
|
975
|
+
"hyper-util",
|
|
976
|
+
"js-sys",
|
|
977
|
+
"log",
|
|
978
|
+
"percent-encoding",
|
|
979
|
+
"pin-project-lite",
|
|
980
|
+
"quinn",
|
|
981
|
+
"rustls",
|
|
982
|
+
"rustls-pki-types",
|
|
983
|
+
"serde",
|
|
984
|
+
"serde_json",
|
|
985
|
+
"serde_urlencoded",
|
|
986
|
+
"sync_wrapper",
|
|
987
|
+
"tokio",
|
|
988
|
+
"tokio-rustls",
|
|
989
|
+
"tower",
|
|
990
|
+
"tower-http",
|
|
991
|
+
"tower-service",
|
|
992
|
+
"url",
|
|
993
|
+
"wasm-bindgen",
|
|
994
|
+
"wasm-bindgen-futures",
|
|
995
|
+
"web-sys",
|
|
996
|
+
"webpki-roots",
|
|
997
|
+
]
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "ring"
|
|
1001
|
+
version = "0.17.14"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1004
|
+
dependencies = [
|
|
1005
|
+
"cc",
|
|
1006
|
+
"cfg-if",
|
|
1007
|
+
"getrandom 0.2.17",
|
|
1008
|
+
"libc",
|
|
1009
|
+
"untrusted",
|
|
1010
|
+
"windows-sys 0.52.0",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "rustc-hash"
|
|
1015
|
+
version = "2.1.1"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1018
|
+
|
|
1019
|
+
[[package]]
|
|
1020
|
+
name = "rustix"
|
|
1021
|
+
version = "1.1.4"
|
|
1022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1024
|
+
dependencies = [
|
|
1025
|
+
"bitflags",
|
|
1026
|
+
"errno",
|
|
1027
|
+
"libc",
|
|
1028
|
+
"linux-raw-sys",
|
|
1029
|
+
"windows-sys 0.61.2",
|
|
1030
|
+
]
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "rustls"
|
|
1034
|
+
version = "0.23.37"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
|
|
1037
|
+
dependencies = [
|
|
1038
|
+
"once_cell",
|
|
1039
|
+
"ring",
|
|
1040
|
+
"rustls-pki-types",
|
|
1041
|
+
"rustls-webpki",
|
|
1042
|
+
"subtle",
|
|
1043
|
+
"zeroize",
|
|
1044
|
+
]
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "rustls-pki-types"
|
|
1048
|
+
version = "1.14.0"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"web-time",
|
|
1053
|
+
"zeroize",
|
|
1054
|
+
]
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "rustls-webpki"
|
|
1058
|
+
version = "0.103.9"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
|
|
1061
|
+
dependencies = [
|
|
1062
|
+
"ring",
|
|
1063
|
+
"rustls-pki-types",
|
|
1064
|
+
"untrusted",
|
|
1065
|
+
]
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "rustversion"
|
|
1069
|
+
version = "1.0.22"
|
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "ryu"
|
|
1075
|
+
version = "1.0.23"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "scopeguard"
|
|
1081
|
+
version = "1.2.0"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "semver"
|
|
1087
|
+
version = "1.0.27"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "serde"
|
|
1093
|
+
version = "1.0.228"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1096
|
+
dependencies = [
|
|
1097
|
+
"serde_core",
|
|
1098
|
+
"serde_derive",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "serde_core"
|
|
1103
|
+
version = "1.0.228"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"serde_derive",
|
|
1108
|
+
]
|
|
1109
|
+
|
|
1110
|
+
[[package]]
|
|
1111
|
+
name = "serde_derive"
|
|
1112
|
+
version = "1.0.228"
|
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1115
|
+
dependencies = [
|
|
1116
|
+
"proc-macro2",
|
|
1117
|
+
"quote",
|
|
1118
|
+
"syn",
|
|
1119
|
+
]
|
|
1120
|
+
|
|
1121
|
+
[[package]]
|
|
1122
|
+
name = "serde_json"
|
|
1123
|
+
version = "1.0.149"
|
|
1124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1125
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1126
|
+
dependencies = [
|
|
1127
|
+
"itoa",
|
|
1128
|
+
"memchr",
|
|
1129
|
+
"serde",
|
|
1130
|
+
"serde_core",
|
|
1131
|
+
"zmij",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "serde_urlencoded"
|
|
1136
|
+
version = "0.7.1"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"form_urlencoded",
|
|
1141
|
+
"itoa",
|
|
1142
|
+
"ryu",
|
|
1143
|
+
"serde",
|
|
1144
|
+
]
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "serde_yaml"
|
|
1148
|
+
version = "0.9.34+deprecated"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
1151
|
+
dependencies = [
|
|
1152
|
+
"indexmap",
|
|
1153
|
+
"itoa",
|
|
1154
|
+
"ryu",
|
|
1155
|
+
"serde",
|
|
1156
|
+
"unsafe-libyaml",
|
|
1157
|
+
]
|
|
1158
|
+
|
|
1159
|
+
[[package]]
|
|
1160
|
+
name = "shell-words"
|
|
1161
|
+
version = "1.1.1"
|
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1163
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "shlex"
|
|
1167
|
+
version = "1.3.0"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "signal-hook-registry"
|
|
1173
|
+
version = "1.4.8"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1176
|
+
dependencies = [
|
|
1177
|
+
"errno",
|
|
1178
|
+
"libc",
|
|
1179
|
+
]
|
|
1180
|
+
|
|
1181
|
+
[[package]]
|
|
1182
|
+
name = "slab"
|
|
1183
|
+
version = "0.4.12"
|
|
1184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1185
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1186
|
+
|
|
1187
|
+
[[package]]
|
|
1188
|
+
name = "smallvec"
|
|
1189
|
+
version = "1.15.1"
|
|
1190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1192
|
+
|
|
1193
|
+
[[package]]
|
|
1194
|
+
name = "socket2"
|
|
1195
|
+
version = "0.6.2"
|
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
+
checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
|
|
1198
|
+
dependencies = [
|
|
1199
|
+
"libc",
|
|
1200
|
+
"windows-sys 0.60.2",
|
|
1201
|
+
]
|
|
1202
|
+
|
|
1203
|
+
[[package]]
|
|
1204
|
+
name = "stable_deref_trait"
|
|
1205
|
+
version = "1.2.1"
|
|
1206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "strsim"
|
|
1211
|
+
version = "0.11.1"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "subtle"
|
|
1217
|
+
version = "2.6.1"
|
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "syn"
|
|
1223
|
+
version = "2.0.117"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1226
|
+
dependencies = [
|
|
1227
|
+
"proc-macro2",
|
|
1228
|
+
"quote",
|
|
1229
|
+
"unicode-ident",
|
|
1230
|
+
]
|
|
1231
|
+
|
|
1232
|
+
[[package]]
|
|
1233
|
+
name = "sync_wrapper"
|
|
1234
|
+
version = "1.0.2"
|
|
1235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1237
|
+
dependencies = [
|
|
1238
|
+
"futures-core",
|
|
1239
|
+
]
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "synstructure"
|
|
1243
|
+
version = "0.13.2"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1246
|
+
dependencies = [
|
|
1247
|
+
"proc-macro2",
|
|
1248
|
+
"quote",
|
|
1249
|
+
"syn",
|
|
1250
|
+
]
|
|
1251
|
+
|
|
1252
|
+
[[package]]
|
|
1253
|
+
name = "tempfile"
|
|
1254
|
+
version = "3.26.0"
|
|
1255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
|
+
checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
|
|
1257
|
+
dependencies = [
|
|
1258
|
+
"fastrand",
|
|
1259
|
+
"getrandom 0.4.2",
|
|
1260
|
+
"once_cell",
|
|
1261
|
+
"rustix",
|
|
1262
|
+
"windows-sys 0.61.2",
|
|
1263
|
+
]
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "thiserror"
|
|
1267
|
+
version = "1.0.69"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"thiserror-impl 1.0.69",
|
|
1272
|
+
]
|
|
1273
|
+
|
|
1274
|
+
[[package]]
|
|
1275
|
+
name = "thiserror"
|
|
1276
|
+
version = "2.0.18"
|
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1279
|
+
dependencies = [
|
|
1280
|
+
"thiserror-impl 2.0.18",
|
|
1281
|
+
]
|
|
1282
|
+
|
|
1283
|
+
[[package]]
|
|
1284
|
+
name = "thiserror-impl"
|
|
1285
|
+
version = "1.0.69"
|
|
1286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1288
|
+
dependencies = [
|
|
1289
|
+
"proc-macro2",
|
|
1290
|
+
"quote",
|
|
1291
|
+
"syn",
|
|
1292
|
+
]
|
|
1293
|
+
|
|
1294
|
+
[[package]]
|
|
1295
|
+
name = "thiserror-impl"
|
|
1296
|
+
version = "2.0.18"
|
|
1297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1299
|
+
dependencies = [
|
|
1300
|
+
"proc-macro2",
|
|
1301
|
+
"quote",
|
|
1302
|
+
"syn",
|
|
1303
|
+
]
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "tinystr"
|
|
1307
|
+
version = "0.8.2"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
1310
|
+
dependencies = [
|
|
1311
|
+
"displaydoc",
|
|
1312
|
+
"zerovec",
|
|
1313
|
+
]
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "tinyvec"
|
|
1317
|
+
version = "1.10.0"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
1320
|
+
dependencies = [
|
|
1321
|
+
"tinyvec_macros",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "tinyvec_macros"
|
|
1326
|
+
version = "0.1.1"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "tokio"
|
|
1332
|
+
version = "1.50.0"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"bytes",
|
|
1337
|
+
"libc",
|
|
1338
|
+
"mio",
|
|
1339
|
+
"parking_lot",
|
|
1340
|
+
"pin-project-lite",
|
|
1341
|
+
"signal-hook-registry",
|
|
1342
|
+
"socket2",
|
|
1343
|
+
"tokio-macros",
|
|
1344
|
+
"windows-sys 0.61.2",
|
|
1345
|
+
]
|
|
1346
|
+
|
|
1347
|
+
[[package]]
|
|
1348
|
+
name = "tokio-macros"
|
|
1349
|
+
version = "2.6.1"
|
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
+
checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
|
|
1352
|
+
dependencies = [
|
|
1353
|
+
"proc-macro2",
|
|
1354
|
+
"quote",
|
|
1355
|
+
"syn",
|
|
1356
|
+
]
|
|
1357
|
+
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "tokio-rustls"
|
|
1360
|
+
version = "0.26.4"
|
|
1361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
1363
|
+
dependencies = [
|
|
1364
|
+
"rustls",
|
|
1365
|
+
"tokio",
|
|
1366
|
+
]
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "tower"
|
|
1370
|
+
version = "0.5.3"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1373
|
+
dependencies = [
|
|
1374
|
+
"futures-core",
|
|
1375
|
+
"futures-util",
|
|
1376
|
+
"pin-project-lite",
|
|
1377
|
+
"sync_wrapper",
|
|
1378
|
+
"tokio",
|
|
1379
|
+
"tower-layer",
|
|
1380
|
+
"tower-service",
|
|
1381
|
+
]
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "tower-http"
|
|
1385
|
+
version = "0.6.8"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
1388
|
+
dependencies = [
|
|
1389
|
+
"bitflags",
|
|
1390
|
+
"bytes",
|
|
1391
|
+
"futures-util",
|
|
1392
|
+
"http",
|
|
1393
|
+
"http-body",
|
|
1394
|
+
"iri-string",
|
|
1395
|
+
"pin-project-lite",
|
|
1396
|
+
"tower",
|
|
1397
|
+
"tower-layer",
|
|
1398
|
+
"tower-service",
|
|
1399
|
+
]
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "tower-layer"
|
|
1403
|
+
version = "0.3.3"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1406
|
+
|
|
1407
|
+
[[package]]
|
|
1408
|
+
name = "tower-service"
|
|
1409
|
+
version = "0.3.3"
|
|
1410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1412
|
+
|
|
1413
|
+
[[package]]
|
|
1414
|
+
name = "tracing"
|
|
1415
|
+
version = "0.1.44"
|
|
1416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1418
|
+
dependencies = [
|
|
1419
|
+
"pin-project-lite",
|
|
1420
|
+
"tracing-core",
|
|
1421
|
+
]
|
|
1422
|
+
|
|
1423
|
+
[[package]]
|
|
1424
|
+
name = "tracing-core"
|
|
1425
|
+
version = "0.1.36"
|
|
1426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1428
|
+
dependencies = [
|
|
1429
|
+
"once_cell",
|
|
1430
|
+
]
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "try-lock"
|
|
1434
|
+
version = "0.2.5"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "unicode-ident"
|
|
1440
|
+
version = "1.0.24"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1443
|
+
|
|
1444
|
+
[[package]]
|
|
1445
|
+
name = "unicode-width"
|
|
1446
|
+
version = "0.2.2"
|
|
1447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1448
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1449
|
+
|
|
1450
|
+
[[package]]
|
|
1451
|
+
name = "unicode-xid"
|
|
1452
|
+
version = "0.2.6"
|
|
1453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1454
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1455
|
+
|
|
1456
|
+
[[package]]
|
|
1457
|
+
name = "unsafe-libyaml"
|
|
1458
|
+
version = "0.2.11"
|
|
1459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1460
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "untrusted"
|
|
1464
|
+
version = "0.9.0"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1467
|
+
|
|
1468
|
+
[[package]]
|
|
1469
|
+
name = "url"
|
|
1470
|
+
version = "2.5.8"
|
|
1471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1473
|
+
dependencies = [
|
|
1474
|
+
"form_urlencoded",
|
|
1475
|
+
"idna",
|
|
1476
|
+
"percent-encoding",
|
|
1477
|
+
"serde",
|
|
1478
|
+
]
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "utf8_iter"
|
|
1482
|
+
version = "1.0.4"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1485
|
+
|
|
1486
|
+
[[package]]
|
|
1487
|
+
name = "utf8parse"
|
|
1488
|
+
version = "0.2.2"
|
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "want"
|
|
1494
|
+
version = "0.3.1"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
1497
|
+
dependencies = [
|
|
1498
|
+
"try-lock",
|
|
1499
|
+
]
|
|
1500
|
+
|
|
1501
|
+
[[package]]
|
|
1502
|
+
name = "wasi"
|
|
1503
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1506
|
+
|
|
1507
|
+
[[package]]
|
|
1508
|
+
name = "wasip2"
|
|
1509
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1512
|
+
dependencies = [
|
|
1513
|
+
"wit-bindgen",
|
|
1514
|
+
]
|
|
1515
|
+
|
|
1516
|
+
[[package]]
|
|
1517
|
+
name = "wasip3"
|
|
1518
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
1519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1521
|
+
dependencies = [
|
|
1522
|
+
"wit-bindgen",
|
|
1523
|
+
]
|
|
1524
|
+
|
|
1525
|
+
[[package]]
|
|
1526
|
+
name = "wasm-bindgen"
|
|
1527
|
+
version = "0.2.114"
|
|
1528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1529
|
+
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
|
|
1530
|
+
dependencies = [
|
|
1531
|
+
"cfg-if",
|
|
1532
|
+
"once_cell",
|
|
1533
|
+
"rustversion",
|
|
1534
|
+
"wasm-bindgen-macro",
|
|
1535
|
+
"wasm-bindgen-shared",
|
|
1536
|
+
]
|
|
1537
|
+
|
|
1538
|
+
[[package]]
|
|
1539
|
+
name = "wasm-bindgen-futures"
|
|
1540
|
+
version = "0.4.64"
|
|
1541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1542
|
+
checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
|
|
1543
|
+
dependencies = [
|
|
1544
|
+
"cfg-if",
|
|
1545
|
+
"futures-util",
|
|
1546
|
+
"js-sys",
|
|
1547
|
+
"once_cell",
|
|
1548
|
+
"wasm-bindgen",
|
|
1549
|
+
"web-sys",
|
|
1550
|
+
]
|
|
1551
|
+
|
|
1552
|
+
[[package]]
|
|
1553
|
+
name = "wasm-bindgen-macro"
|
|
1554
|
+
version = "0.2.114"
|
|
1555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
+
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
|
|
1557
|
+
dependencies = [
|
|
1558
|
+
"quote",
|
|
1559
|
+
"wasm-bindgen-macro-support",
|
|
1560
|
+
]
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "wasm-bindgen-macro-support"
|
|
1564
|
+
version = "0.2.114"
|
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
+
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
|
|
1567
|
+
dependencies = [
|
|
1568
|
+
"bumpalo",
|
|
1569
|
+
"proc-macro2",
|
|
1570
|
+
"quote",
|
|
1571
|
+
"syn",
|
|
1572
|
+
"wasm-bindgen-shared",
|
|
1573
|
+
]
|
|
1574
|
+
|
|
1575
|
+
[[package]]
|
|
1576
|
+
name = "wasm-bindgen-shared"
|
|
1577
|
+
version = "0.2.114"
|
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
+
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
|
|
1580
|
+
dependencies = [
|
|
1581
|
+
"unicode-ident",
|
|
1582
|
+
]
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "wasm-encoder"
|
|
1586
|
+
version = "0.244.0"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
1589
|
+
dependencies = [
|
|
1590
|
+
"leb128fmt",
|
|
1591
|
+
"wasmparser",
|
|
1592
|
+
]
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "wasm-metadata"
|
|
1596
|
+
version = "0.244.0"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
1599
|
+
dependencies = [
|
|
1600
|
+
"anyhow",
|
|
1601
|
+
"indexmap",
|
|
1602
|
+
"wasm-encoder",
|
|
1603
|
+
"wasmparser",
|
|
1604
|
+
]
|
|
1605
|
+
|
|
1606
|
+
[[package]]
|
|
1607
|
+
name = "wasmparser"
|
|
1608
|
+
version = "0.244.0"
|
|
1609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
1611
|
+
dependencies = [
|
|
1612
|
+
"bitflags",
|
|
1613
|
+
"hashbrown 0.15.5",
|
|
1614
|
+
"indexmap",
|
|
1615
|
+
"semver",
|
|
1616
|
+
]
|
|
1617
|
+
|
|
1618
|
+
[[package]]
|
|
1619
|
+
name = "web-sys"
|
|
1620
|
+
version = "0.3.91"
|
|
1621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
+
checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
|
|
1623
|
+
dependencies = [
|
|
1624
|
+
"js-sys",
|
|
1625
|
+
"wasm-bindgen",
|
|
1626
|
+
]
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "web-time"
|
|
1630
|
+
version = "1.1.0"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
1633
|
+
dependencies = [
|
|
1634
|
+
"js-sys",
|
|
1635
|
+
"wasm-bindgen",
|
|
1636
|
+
]
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "webpki-roots"
|
|
1640
|
+
version = "1.0.6"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
|
|
1643
|
+
dependencies = [
|
|
1644
|
+
"rustls-pki-types",
|
|
1645
|
+
]
|
|
1646
|
+
|
|
1647
|
+
[[package]]
|
|
1648
|
+
name = "windows-link"
|
|
1649
|
+
version = "0.2.1"
|
|
1650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1651
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1652
|
+
|
|
1653
|
+
[[package]]
|
|
1654
|
+
name = "windows-sys"
|
|
1655
|
+
version = "0.52.0"
|
|
1656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1658
|
+
dependencies = [
|
|
1659
|
+
"windows-targets 0.52.6",
|
|
1660
|
+
]
|
|
1661
|
+
|
|
1662
|
+
[[package]]
|
|
1663
|
+
name = "windows-sys"
|
|
1664
|
+
version = "0.59.0"
|
|
1665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1667
|
+
dependencies = [
|
|
1668
|
+
"windows-targets 0.52.6",
|
|
1669
|
+
]
|
|
1670
|
+
|
|
1671
|
+
[[package]]
|
|
1672
|
+
name = "windows-sys"
|
|
1673
|
+
version = "0.60.2"
|
|
1674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1675
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1676
|
+
dependencies = [
|
|
1677
|
+
"windows-targets 0.53.5",
|
|
1678
|
+
]
|
|
1679
|
+
|
|
1680
|
+
[[package]]
|
|
1681
|
+
name = "windows-sys"
|
|
1682
|
+
version = "0.61.2"
|
|
1683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1685
|
+
dependencies = [
|
|
1686
|
+
"windows-link",
|
|
1687
|
+
]
|
|
1688
|
+
|
|
1689
|
+
[[package]]
|
|
1690
|
+
name = "windows-targets"
|
|
1691
|
+
version = "0.52.6"
|
|
1692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1693
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1694
|
+
dependencies = [
|
|
1695
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
1696
|
+
"windows_aarch64_msvc 0.52.6",
|
|
1697
|
+
"windows_i686_gnu 0.52.6",
|
|
1698
|
+
"windows_i686_gnullvm 0.52.6",
|
|
1699
|
+
"windows_i686_msvc 0.52.6",
|
|
1700
|
+
"windows_x86_64_gnu 0.52.6",
|
|
1701
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
1702
|
+
"windows_x86_64_msvc 0.52.6",
|
|
1703
|
+
]
|
|
1704
|
+
|
|
1705
|
+
[[package]]
|
|
1706
|
+
name = "windows-targets"
|
|
1707
|
+
version = "0.53.5"
|
|
1708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1709
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1710
|
+
dependencies = [
|
|
1711
|
+
"windows-link",
|
|
1712
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
1713
|
+
"windows_aarch64_msvc 0.53.1",
|
|
1714
|
+
"windows_i686_gnu 0.53.1",
|
|
1715
|
+
"windows_i686_gnullvm 0.53.1",
|
|
1716
|
+
"windows_i686_msvc 0.53.1",
|
|
1717
|
+
"windows_x86_64_gnu 0.53.1",
|
|
1718
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
1719
|
+
"windows_x86_64_msvc 0.53.1",
|
|
1720
|
+
]
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "windows_aarch64_gnullvm"
|
|
1724
|
+
version = "0.52.6"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1727
|
+
|
|
1728
|
+
[[package]]
|
|
1729
|
+
name = "windows_aarch64_gnullvm"
|
|
1730
|
+
version = "0.53.1"
|
|
1731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1732
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
1733
|
+
|
|
1734
|
+
[[package]]
|
|
1735
|
+
name = "windows_aarch64_msvc"
|
|
1736
|
+
version = "0.52.6"
|
|
1737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1738
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1739
|
+
|
|
1740
|
+
[[package]]
|
|
1741
|
+
name = "windows_aarch64_msvc"
|
|
1742
|
+
version = "0.53.1"
|
|
1743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1744
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
1745
|
+
|
|
1746
|
+
[[package]]
|
|
1747
|
+
name = "windows_i686_gnu"
|
|
1748
|
+
version = "0.52.6"
|
|
1749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1750
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1751
|
+
|
|
1752
|
+
[[package]]
|
|
1753
|
+
name = "windows_i686_gnu"
|
|
1754
|
+
version = "0.53.1"
|
|
1755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1756
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
1757
|
+
|
|
1758
|
+
[[package]]
|
|
1759
|
+
name = "windows_i686_gnullvm"
|
|
1760
|
+
version = "0.52.6"
|
|
1761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1763
|
+
|
|
1764
|
+
[[package]]
|
|
1765
|
+
name = "windows_i686_gnullvm"
|
|
1766
|
+
version = "0.53.1"
|
|
1767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
1769
|
+
|
|
1770
|
+
[[package]]
|
|
1771
|
+
name = "windows_i686_msvc"
|
|
1772
|
+
version = "0.52.6"
|
|
1773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1774
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1775
|
+
|
|
1776
|
+
[[package]]
|
|
1777
|
+
name = "windows_i686_msvc"
|
|
1778
|
+
version = "0.53.1"
|
|
1779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1780
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
1781
|
+
|
|
1782
|
+
[[package]]
|
|
1783
|
+
name = "windows_x86_64_gnu"
|
|
1784
|
+
version = "0.52.6"
|
|
1785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1786
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1787
|
+
|
|
1788
|
+
[[package]]
|
|
1789
|
+
name = "windows_x86_64_gnu"
|
|
1790
|
+
version = "0.53.1"
|
|
1791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
1793
|
+
|
|
1794
|
+
[[package]]
|
|
1795
|
+
name = "windows_x86_64_gnullvm"
|
|
1796
|
+
version = "0.52.6"
|
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1799
|
+
|
|
1800
|
+
[[package]]
|
|
1801
|
+
name = "windows_x86_64_gnullvm"
|
|
1802
|
+
version = "0.53.1"
|
|
1803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
1805
|
+
|
|
1806
|
+
[[package]]
|
|
1807
|
+
name = "windows_x86_64_msvc"
|
|
1808
|
+
version = "0.52.6"
|
|
1809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1811
|
+
|
|
1812
|
+
[[package]]
|
|
1813
|
+
name = "windows_x86_64_msvc"
|
|
1814
|
+
version = "0.53.1"
|
|
1815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
1817
|
+
|
|
1818
|
+
[[package]]
|
|
1819
|
+
name = "wit-bindgen"
|
|
1820
|
+
version = "0.51.0"
|
|
1821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1822
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1823
|
+
dependencies = [
|
|
1824
|
+
"wit-bindgen-rust-macro",
|
|
1825
|
+
]
|
|
1826
|
+
|
|
1827
|
+
[[package]]
|
|
1828
|
+
name = "wit-bindgen-core"
|
|
1829
|
+
version = "0.51.0"
|
|
1830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
1832
|
+
dependencies = [
|
|
1833
|
+
"anyhow",
|
|
1834
|
+
"heck",
|
|
1835
|
+
"wit-parser",
|
|
1836
|
+
]
|
|
1837
|
+
|
|
1838
|
+
[[package]]
|
|
1839
|
+
name = "wit-bindgen-rust"
|
|
1840
|
+
version = "0.51.0"
|
|
1841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1842
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
1843
|
+
dependencies = [
|
|
1844
|
+
"anyhow",
|
|
1845
|
+
"heck",
|
|
1846
|
+
"indexmap",
|
|
1847
|
+
"prettyplease",
|
|
1848
|
+
"syn",
|
|
1849
|
+
"wasm-metadata",
|
|
1850
|
+
"wit-bindgen-core",
|
|
1851
|
+
"wit-component",
|
|
1852
|
+
]
|
|
1853
|
+
|
|
1854
|
+
[[package]]
|
|
1855
|
+
name = "wit-bindgen-rust-macro"
|
|
1856
|
+
version = "0.51.0"
|
|
1857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1858
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
1859
|
+
dependencies = [
|
|
1860
|
+
"anyhow",
|
|
1861
|
+
"prettyplease",
|
|
1862
|
+
"proc-macro2",
|
|
1863
|
+
"quote",
|
|
1864
|
+
"syn",
|
|
1865
|
+
"wit-bindgen-core",
|
|
1866
|
+
"wit-bindgen-rust",
|
|
1867
|
+
]
|
|
1868
|
+
|
|
1869
|
+
[[package]]
|
|
1870
|
+
name = "wit-component"
|
|
1871
|
+
version = "0.244.0"
|
|
1872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1874
|
+
dependencies = [
|
|
1875
|
+
"anyhow",
|
|
1876
|
+
"bitflags",
|
|
1877
|
+
"indexmap",
|
|
1878
|
+
"log",
|
|
1879
|
+
"serde",
|
|
1880
|
+
"serde_derive",
|
|
1881
|
+
"serde_json",
|
|
1882
|
+
"wasm-encoder",
|
|
1883
|
+
"wasm-metadata",
|
|
1884
|
+
"wasmparser",
|
|
1885
|
+
"wit-parser",
|
|
1886
|
+
]
|
|
1887
|
+
|
|
1888
|
+
[[package]]
|
|
1889
|
+
name = "wit-parser"
|
|
1890
|
+
version = "0.244.0"
|
|
1891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1892
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
1893
|
+
dependencies = [
|
|
1894
|
+
"anyhow",
|
|
1895
|
+
"id-arena",
|
|
1896
|
+
"indexmap",
|
|
1897
|
+
"log",
|
|
1898
|
+
"semver",
|
|
1899
|
+
"serde",
|
|
1900
|
+
"serde_derive",
|
|
1901
|
+
"serde_json",
|
|
1902
|
+
"unicode-xid",
|
|
1903
|
+
"wasmparser",
|
|
1904
|
+
]
|
|
1905
|
+
|
|
1906
|
+
[[package]]
|
|
1907
|
+
name = "writeable"
|
|
1908
|
+
version = "0.6.2"
|
|
1909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1910
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
1911
|
+
|
|
1912
|
+
[[package]]
|
|
1913
|
+
name = "yoke"
|
|
1914
|
+
version = "0.8.1"
|
|
1915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1916
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
1917
|
+
dependencies = [
|
|
1918
|
+
"stable_deref_trait",
|
|
1919
|
+
"yoke-derive",
|
|
1920
|
+
"zerofrom",
|
|
1921
|
+
]
|
|
1922
|
+
|
|
1923
|
+
[[package]]
|
|
1924
|
+
name = "yoke-derive"
|
|
1925
|
+
version = "0.8.1"
|
|
1926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
1928
|
+
dependencies = [
|
|
1929
|
+
"proc-macro2",
|
|
1930
|
+
"quote",
|
|
1931
|
+
"syn",
|
|
1932
|
+
"synstructure",
|
|
1933
|
+
]
|
|
1934
|
+
|
|
1935
|
+
[[package]]
|
|
1936
|
+
name = "zerocopy"
|
|
1937
|
+
version = "0.8.40"
|
|
1938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
+
checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5"
|
|
1940
|
+
dependencies = [
|
|
1941
|
+
"zerocopy-derive",
|
|
1942
|
+
]
|
|
1943
|
+
|
|
1944
|
+
[[package]]
|
|
1945
|
+
name = "zerocopy-derive"
|
|
1946
|
+
version = "0.8.40"
|
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
+
checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953"
|
|
1949
|
+
dependencies = [
|
|
1950
|
+
"proc-macro2",
|
|
1951
|
+
"quote",
|
|
1952
|
+
"syn",
|
|
1953
|
+
]
|
|
1954
|
+
|
|
1955
|
+
[[package]]
|
|
1956
|
+
name = "zerofrom"
|
|
1957
|
+
version = "0.1.6"
|
|
1958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
1960
|
+
dependencies = [
|
|
1961
|
+
"zerofrom-derive",
|
|
1962
|
+
]
|
|
1963
|
+
|
|
1964
|
+
[[package]]
|
|
1965
|
+
name = "zerofrom-derive"
|
|
1966
|
+
version = "0.1.6"
|
|
1967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1968
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
1969
|
+
dependencies = [
|
|
1970
|
+
"proc-macro2",
|
|
1971
|
+
"quote",
|
|
1972
|
+
"syn",
|
|
1973
|
+
"synstructure",
|
|
1974
|
+
]
|
|
1975
|
+
|
|
1976
|
+
[[package]]
|
|
1977
|
+
name = "zeroize"
|
|
1978
|
+
version = "1.8.2"
|
|
1979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1981
|
+
|
|
1982
|
+
[[package]]
|
|
1983
|
+
name = "zerotrie"
|
|
1984
|
+
version = "0.2.3"
|
|
1985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1986
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
1987
|
+
dependencies = [
|
|
1988
|
+
"displaydoc",
|
|
1989
|
+
"yoke",
|
|
1990
|
+
"zerofrom",
|
|
1991
|
+
]
|
|
1992
|
+
|
|
1993
|
+
[[package]]
|
|
1994
|
+
name = "zerovec"
|
|
1995
|
+
version = "0.11.5"
|
|
1996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
1998
|
+
dependencies = [
|
|
1999
|
+
"yoke",
|
|
2000
|
+
"zerofrom",
|
|
2001
|
+
"zerovec-derive",
|
|
2002
|
+
]
|
|
2003
|
+
|
|
2004
|
+
[[package]]
|
|
2005
|
+
name = "zerovec-derive"
|
|
2006
|
+
version = "0.11.2"
|
|
2007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2008
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
2009
|
+
dependencies = [
|
|
2010
|
+
"proc-macro2",
|
|
2011
|
+
"quote",
|
|
2012
|
+
"syn",
|
|
2013
|
+
]
|
|
2014
|
+
|
|
2015
|
+
[[package]]
|
|
2016
|
+
name = "zmij"
|
|
2017
|
+
version = "1.0.21"
|
|
2018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|