micro_mcp 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/.devcontainer/devcontainer.json +55 -0
- data/.standard.yml +3 -0
- data/.vscode/mcp.json +9 -0
- data/AGENTS.md +14 -0
- data/CHANGELOG.md +5 -0
- data/Cargo.lock +2302 -0
- data/Cargo.toml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/Rakefile +36 -0
- data/ext/micro_mcp/Cargo.toml +21 -0
- data/ext/micro_mcp/extconf.rb +6 -0
- data/ext/micro_mcp/src/lib.rs +12 -0
- data/ext/micro_mcp/src/server.rs +188 -0
- data/ext/micro_mcp/src/utils.rs +52 -0
- data/lib/micro_mcp/server.rb +23 -0
- data/lib/micro_mcp/tool_registry.rb +11 -0
- data/lib/micro_mcp/version.rb +5 -0
- data/lib/micro_mcp.rb +15 -0
- data/sig/micro_mcp.rbs +4 -0
- metadata +79 -0
data/Cargo.lock
ADDED
@@ -0,0 +1,2302 @@
|
|
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.24.2"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
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.3"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
25
|
+
dependencies = [
|
26
|
+
"memchr",
|
27
|
+
]
|
28
|
+
|
29
|
+
[[package]]
|
30
|
+
name = "arc-swap"
|
31
|
+
version = "1.7.1"
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
33
|
+
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
|
34
|
+
|
35
|
+
[[package]]
|
36
|
+
name = "async-trait"
|
37
|
+
version = "0.1.88"
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
39
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
40
|
+
dependencies = [
|
41
|
+
"proc-macro2",
|
42
|
+
"quote",
|
43
|
+
"syn",
|
44
|
+
]
|
45
|
+
|
46
|
+
[[package]]
|
47
|
+
name = "atomic-waker"
|
48
|
+
version = "1.1.2"
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
51
|
+
|
52
|
+
[[package]]
|
53
|
+
name = "autocfg"
|
54
|
+
version = "1.5.0"
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
56
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
57
|
+
|
58
|
+
[[package]]
|
59
|
+
name = "aws-lc-rs"
|
60
|
+
version = "1.13.1"
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
62
|
+
checksum = "93fcc8f365936c834db5514fc45aee5b1202d677e6b40e48468aaaa8183ca8c7"
|
63
|
+
dependencies = [
|
64
|
+
"aws-lc-sys",
|
65
|
+
"zeroize",
|
66
|
+
]
|
67
|
+
|
68
|
+
[[package]]
|
69
|
+
name = "aws-lc-sys"
|
70
|
+
version = "0.29.0"
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
72
|
+
checksum = "61b1d86e7705efe1be1b569bab41d4fa1e14e220b60a160f78de2db687add079"
|
73
|
+
dependencies = [
|
74
|
+
"bindgen",
|
75
|
+
"cc",
|
76
|
+
"cmake",
|
77
|
+
"dunce",
|
78
|
+
"fs_extra",
|
79
|
+
]
|
80
|
+
|
81
|
+
[[package]]
|
82
|
+
name = "axum"
|
83
|
+
version = "0.8.4"
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
85
|
+
checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5"
|
86
|
+
dependencies = [
|
87
|
+
"axum-core",
|
88
|
+
"bytes",
|
89
|
+
"form_urlencoded",
|
90
|
+
"futures-util",
|
91
|
+
"http",
|
92
|
+
"http-body",
|
93
|
+
"http-body-util",
|
94
|
+
"hyper",
|
95
|
+
"hyper-util",
|
96
|
+
"itoa",
|
97
|
+
"matchit",
|
98
|
+
"memchr",
|
99
|
+
"mime",
|
100
|
+
"percent-encoding",
|
101
|
+
"pin-project-lite",
|
102
|
+
"rustversion",
|
103
|
+
"serde",
|
104
|
+
"serde_json",
|
105
|
+
"serde_path_to_error",
|
106
|
+
"serde_urlencoded",
|
107
|
+
"sync_wrapper",
|
108
|
+
"tokio",
|
109
|
+
"tower",
|
110
|
+
"tower-layer",
|
111
|
+
"tower-service",
|
112
|
+
"tracing",
|
113
|
+
]
|
114
|
+
|
115
|
+
[[package]]
|
116
|
+
name = "axum-core"
|
117
|
+
version = "0.5.2"
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
119
|
+
checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6"
|
120
|
+
dependencies = [
|
121
|
+
"bytes",
|
122
|
+
"futures-core",
|
123
|
+
"http",
|
124
|
+
"http-body",
|
125
|
+
"http-body-util",
|
126
|
+
"mime",
|
127
|
+
"pin-project-lite",
|
128
|
+
"rustversion",
|
129
|
+
"sync_wrapper",
|
130
|
+
"tower-layer",
|
131
|
+
"tower-service",
|
132
|
+
"tracing",
|
133
|
+
]
|
134
|
+
|
135
|
+
[[package]]
|
136
|
+
name = "axum-server"
|
137
|
+
version = "0.7.2"
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
139
|
+
checksum = "495c05f60d6df0093e8fb6e74aa5846a0ad06abaf96d76166283720bf740f8ab"
|
140
|
+
dependencies = [
|
141
|
+
"arc-swap",
|
142
|
+
"bytes",
|
143
|
+
"fs-err",
|
144
|
+
"http",
|
145
|
+
"http-body",
|
146
|
+
"hyper",
|
147
|
+
"hyper-util",
|
148
|
+
"pin-project-lite",
|
149
|
+
"rustls",
|
150
|
+
"rustls-pemfile",
|
151
|
+
"rustls-pki-types",
|
152
|
+
"tokio",
|
153
|
+
"tokio-rustls",
|
154
|
+
"tower-service",
|
155
|
+
]
|
156
|
+
|
157
|
+
[[package]]
|
158
|
+
name = "backtrace"
|
159
|
+
version = "0.3.75"
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
161
|
+
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
|
162
|
+
dependencies = [
|
163
|
+
"addr2line",
|
164
|
+
"cfg-if",
|
165
|
+
"libc",
|
166
|
+
"miniz_oxide",
|
167
|
+
"object",
|
168
|
+
"rustc-demangle",
|
169
|
+
"windows-targets 0.52.6",
|
170
|
+
]
|
171
|
+
|
172
|
+
[[package]]
|
173
|
+
name = "base64"
|
174
|
+
version = "0.22.1"
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
176
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
177
|
+
|
178
|
+
[[package]]
|
179
|
+
name = "bindgen"
|
180
|
+
version = "0.69.5"
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
182
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
183
|
+
dependencies = [
|
184
|
+
"bitflags",
|
185
|
+
"cexpr",
|
186
|
+
"clang-sys",
|
187
|
+
"itertools",
|
188
|
+
"lazy_static",
|
189
|
+
"lazycell",
|
190
|
+
"log",
|
191
|
+
"prettyplease",
|
192
|
+
"proc-macro2",
|
193
|
+
"quote",
|
194
|
+
"regex",
|
195
|
+
"rustc-hash",
|
196
|
+
"shlex",
|
197
|
+
"syn",
|
198
|
+
"which",
|
199
|
+
]
|
200
|
+
|
201
|
+
[[package]]
|
202
|
+
name = "bitflags"
|
203
|
+
version = "2.9.1"
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
205
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
206
|
+
|
207
|
+
[[package]]
|
208
|
+
name = "bumpalo"
|
209
|
+
version = "3.18.1"
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
211
|
+
checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
|
212
|
+
|
213
|
+
[[package]]
|
214
|
+
name = "bytes"
|
215
|
+
version = "1.10.1"
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
217
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
218
|
+
|
219
|
+
[[package]]
|
220
|
+
name = "cc"
|
221
|
+
version = "1.2.27"
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
223
|
+
checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
|
224
|
+
dependencies = [
|
225
|
+
"jobserver",
|
226
|
+
"libc",
|
227
|
+
"shlex",
|
228
|
+
]
|
229
|
+
|
230
|
+
[[package]]
|
231
|
+
name = "cexpr"
|
232
|
+
version = "0.6.0"
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
234
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
235
|
+
dependencies = [
|
236
|
+
"nom",
|
237
|
+
]
|
238
|
+
|
239
|
+
[[package]]
|
240
|
+
name = "cfg-if"
|
241
|
+
version = "1.0.1"
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
243
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
244
|
+
|
245
|
+
[[package]]
|
246
|
+
name = "clang-sys"
|
247
|
+
version = "1.8.1"
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
249
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
250
|
+
dependencies = [
|
251
|
+
"glob",
|
252
|
+
"libc",
|
253
|
+
"libloading",
|
254
|
+
]
|
255
|
+
|
256
|
+
[[package]]
|
257
|
+
name = "cmake"
|
258
|
+
version = "0.1.54"
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
260
|
+
checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
|
261
|
+
dependencies = [
|
262
|
+
"cc",
|
263
|
+
]
|
264
|
+
|
265
|
+
[[package]]
|
266
|
+
name = "core-foundation"
|
267
|
+
version = "0.9.4"
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
269
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
270
|
+
dependencies = [
|
271
|
+
"core-foundation-sys",
|
272
|
+
"libc",
|
273
|
+
]
|
274
|
+
|
275
|
+
[[package]]
|
276
|
+
name = "core-foundation-sys"
|
277
|
+
version = "0.8.7"
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
279
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
280
|
+
|
281
|
+
[[package]]
|
282
|
+
name = "displaydoc"
|
283
|
+
version = "0.2.5"
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
285
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
286
|
+
dependencies = [
|
287
|
+
"proc-macro2",
|
288
|
+
"quote",
|
289
|
+
"syn",
|
290
|
+
]
|
291
|
+
|
292
|
+
[[package]]
|
293
|
+
name = "dunce"
|
294
|
+
version = "1.0.5"
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
296
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
297
|
+
|
298
|
+
[[package]]
|
299
|
+
name = "either"
|
300
|
+
version = "1.15.0"
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
302
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
303
|
+
|
304
|
+
[[package]]
|
305
|
+
name = "encoding_rs"
|
306
|
+
version = "0.8.35"
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
308
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
309
|
+
dependencies = [
|
310
|
+
"cfg-if",
|
311
|
+
]
|
312
|
+
|
313
|
+
[[package]]
|
314
|
+
name = "equivalent"
|
315
|
+
version = "1.0.2"
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
317
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
318
|
+
|
319
|
+
[[package]]
|
320
|
+
name = "errno"
|
321
|
+
version = "0.3.13"
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
323
|
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
324
|
+
dependencies = [
|
325
|
+
"libc",
|
326
|
+
"windows-sys 0.60.2",
|
327
|
+
]
|
328
|
+
|
329
|
+
[[package]]
|
330
|
+
name = "fastrand"
|
331
|
+
version = "2.3.0"
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
333
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
334
|
+
|
335
|
+
[[package]]
|
336
|
+
name = "fnv"
|
337
|
+
version = "1.0.7"
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
339
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
340
|
+
|
341
|
+
[[package]]
|
342
|
+
name = "foreign-types"
|
343
|
+
version = "0.3.2"
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
345
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
346
|
+
dependencies = [
|
347
|
+
"foreign-types-shared",
|
348
|
+
]
|
349
|
+
|
350
|
+
[[package]]
|
351
|
+
name = "foreign-types-shared"
|
352
|
+
version = "0.1.1"
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
354
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
355
|
+
|
356
|
+
[[package]]
|
357
|
+
name = "form_urlencoded"
|
358
|
+
version = "1.2.1"
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
360
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
361
|
+
dependencies = [
|
362
|
+
"percent-encoding",
|
363
|
+
]
|
364
|
+
|
365
|
+
[[package]]
|
366
|
+
name = "fs-err"
|
367
|
+
version = "3.1.1"
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
369
|
+
checksum = "88d7be93788013f265201256d58f04936a8079ad5dc898743aa20525f503b683"
|
370
|
+
dependencies = [
|
371
|
+
"autocfg",
|
372
|
+
"tokio",
|
373
|
+
]
|
374
|
+
|
375
|
+
[[package]]
|
376
|
+
name = "fs_extra"
|
377
|
+
version = "1.3.0"
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
379
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
380
|
+
|
381
|
+
[[package]]
|
382
|
+
name = "futures"
|
383
|
+
version = "0.3.31"
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
385
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
386
|
+
dependencies = [
|
387
|
+
"futures-channel",
|
388
|
+
"futures-core",
|
389
|
+
"futures-executor",
|
390
|
+
"futures-io",
|
391
|
+
"futures-sink",
|
392
|
+
"futures-task",
|
393
|
+
"futures-util",
|
394
|
+
]
|
395
|
+
|
396
|
+
[[package]]
|
397
|
+
name = "futures-channel"
|
398
|
+
version = "0.3.31"
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
400
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
401
|
+
dependencies = [
|
402
|
+
"futures-core",
|
403
|
+
"futures-sink",
|
404
|
+
]
|
405
|
+
|
406
|
+
[[package]]
|
407
|
+
name = "futures-core"
|
408
|
+
version = "0.3.31"
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
410
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
411
|
+
|
412
|
+
[[package]]
|
413
|
+
name = "futures-executor"
|
414
|
+
version = "0.3.31"
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
416
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
417
|
+
dependencies = [
|
418
|
+
"futures-core",
|
419
|
+
"futures-task",
|
420
|
+
"futures-util",
|
421
|
+
]
|
422
|
+
|
423
|
+
[[package]]
|
424
|
+
name = "futures-io"
|
425
|
+
version = "0.3.31"
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
427
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
428
|
+
|
429
|
+
[[package]]
|
430
|
+
name = "futures-macro"
|
431
|
+
version = "0.3.31"
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
433
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
434
|
+
dependencies = [
|
435
|
+
"proc-macro2",
|
436
|
+
"quote",
|
437
|
+
"syn",
|
438
|
+
]
|
439
|
+
|
440
|
+
[[package]]
|
441
|
+
name = "futures-sink"
|
442
|
+
version = "0.3.31"
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
444
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
445
|
+
|
446
|
+
[[package]]
|
447
|
+
name = "futures-task"
|
448
|
+
version = "0.3.31"
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
450
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
451
|
+
|
452
|
+
[[package]]
|
453
|
+
name = "futures-util"
|
454
|
+
version = "0.3.31"
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
456
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
457
|
+
dependencies = [
|
458
|
+
"futures-channel",
|
459
|
+
"futures-core",
|
460
|
+
"futures-io",
|
461
|
+
"futures-macro",
|
462
|
+
"futures-sink",
|
463
|
+
"futures-task",
|
464
|
+
"memchr",
|
465
|
+
"pin-project-lite",
|
466
|
+
"pin-utils",
|
467
|
+
"slab",
|
468
|
+
]
|
469
|
+
|
470
|
+
[[package]]
|
471
|
+
name = "getrandom"
|
472
|
+
version = "0.2.16"
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
474
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
475
|
+
dependencies = [
|
476
|
+
"cfg-if",
|
477
|
+
"libc",
|
478
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
479
|
+
]
|
480
|
+
|
481
|
+
[[package]]
|
482
|
+
name = "getrandom"
|
483
|
+
version = "0.3.3"
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
485
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
486
|
+
dependencies = [
|
487
|
+
"cfg-if",
|
488
|
+
"libc",
|
489
|
+
"r-efi",
|
490
|
+
"wasi 0.14.2+wasi-0.2.4",
|
491
|
+
]
|
492
|
+
|
493
|
+
[[package]]
|
494
|
+
name = "gimli"
|
495
|
+
version = "0.31.1"
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
497
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
498
|
+
|
499
|
+
[[package]]
|
500
|
+
name = "glob"
|
501
|
+
version = "0.3.2"
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
503
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
504
|
+
|
505
|
+
[[package]]
|
506
|
+
name = "h2"
|
507
|
+
version = "0.4.10"
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
509
|
+
checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
|
510
|
+
dependencies = [
|
511
|
+
"atomic-waker",
|
512
|
+
"bytes",
|
513
|
+
"fnv",
|
514
|
+
"futures-core",
|
515
|
+
"futures-sink",
|
516
|
+
"http",
|
517
|
+
"indexmap",
|
518
|
+
"slab",
|
519
|
+
"tokio",
|
520
|
+
"tokio-util",
|
521
|
+
"tracing",
|
522
|
+
]
|
523
|
+
|
524
|
+
[[package]]
|
525
|
+
name = "hashbrown"
|
526
|
+
version = "0.15.4"
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
528
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
529
|
+
|
530
|
+
[[package]]
|
531
|
+
name = "home"
|
532
|
+
version = "0.5.11"
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
534
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
535
|
+
dependencies = [
|
536
|
+
"windows-sys 0.59.0",
|
537
|
+
]
|
538
|
+
|
539
|
+
[[package]]
|
540
|
+
name = "http"
|
541
|
+
version = "1.3.1"
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
543
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
544
|
+
dependencies = [
|
545
|
+
"bytes",
|
546
|
+
"fnv",
|
547
|
+
"itoa",
|
548
|
+
]
|
549
|
+
|
550
|
+
[[package]]
|
551
|
+
name = "http-body"
|
552
|
+
version = "1.0.1"
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
554
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
555
|
+
dependencies = [
|
556
|
+
"bytes",
|
557
|
+
"http",
|
558
|
+
]
|
559
|
+
|
560
|
+
[[package]]
|
561
|
+
name = "http-body-util"
|
562
|
+
version = "0.1.3"
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
564
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
565
|
+
dependencies = [
|
566
|
+
"bytes",
|
567
|
+
"futures-core",
|
568
|
+
"http",
|
569
|
+
"http-body",
|
570
|
+
"pin-project-lite",
|
571
|
+
]
|
572
|
+
|
573
|
+
[[package]]
|
574
|
+
name = "httparse"
|
575
|
+
version = "1.10.1"
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
577
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
578
|
+
|
579
|
+
[[package]]
|
580
|
+
name = "httpdate"
|
581
|
+
version = "1.0.3"
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
583
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
584
|
+
|
585
|
+
[[package]]
|
586
|
+
name = "hyper"
|
587
|
+
version = "1.6.0"
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
589
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
590
|
+
dependencies = [
|
591
|
+
"bytes",
|
592
|
+
"futures-channel",
|
593
|
+
"futures-util",
|
594
|
+
"h2",
|
595
|
+
"http",
|
596
|
+
"http-body",
|
597
|
+
"httparse",
|
598
|
+
"httpdate",
|
599
|
+
"itoa",
|
600
|
+
"pin-project-lite",
|
601
|
+
"smallvec",
|
602
|
+
"tokio",
|
603
|
+
"want",
|
604
|
+
]
|
605
|
+
|
606
|
+
[[package]]
|
607
|
+
name = "hyper-rustls"
|
608
|
+
version = "0.27.7"
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
610
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
611
|
+
dependencies = [
|
612
|
+
"http",
|
613
|
+
"hyper",
|
614
|
+
"hyper-util",
|
615
|
+
"rustls",
|
616
|
+
"rustls-pki-types",
|
617
|
+
"tokio",
|
618
|
+
"tokio-rustls",
|
619
|
+
"tower-service",
|
620
|
+
]
|
621
|
+
|
622
|
+
[[package]]
|
623
|
+
name = "hyper-tls"
|
624
|
+
version = "0.6.0"
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
626
|
+
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
627
|
+
dependencies = [
|
628
|
+
"bytes",
|
629
|
+
"http-body-util",
|
630
|
+
"hyper",
|
631
|
+
"hyper-util",
|
632
|
+
"native-tls",
|
633
|
+
"tokio",
|
634
|
+
"tokio-native-tls",
|
635
|
+
"tower-service",
|
636
|
+
]
|
637
|
+
|
638
|
+
[[package]]
|
639
|
+
name = "hyper-util"
|
640
|
+
version = "0.1.14"
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
642
|
+
checksum = "dc2fdfdbff08affe55bb779f33b053aa1fe5dd5b54c257343c17edfa55711bdb"
|
643
|
+
dependencies = [
|
644
|
+
"base64",
|
645
|
+
"bytes",
|
646
|
+
"futures-channel",
|
647
|
+
"futures-core",
|
648
|
+
"futures-util",
|
649
|
+
"http",
|
650
|
+
"http-body",
|
651
|
+
"hyper",
|
652
|
+
"ipnet",
|
653
|
+
"libc",
|
654
|
+
"percent-encoding",
|
655
|
+
"pin-project-lite",
|
656
|
+
"socket2",
|
657
|
+
"system-configuration",
|
658
|
+
"tokio",
|
659
|
+
"tower-service",
|
660
|
+
"tracing",
|
661
|
+
"windows-registry",
|
662
|
+
]
|
663
|
+
|
664
|
+
[[package]]
|
665
|
+
name = "icu_collections"
|
666
|
+
version = "2.0.0"
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
668
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
669
|
+
dependencies = [
|
670
|
+
"displaydoc",
|
671
|
+
"potential_utf",
|
672
|
+
"yoke",
|
673
|
+
"zerofrom",
|
674
|
+
"zerovec",
|
675
|
+
]
|
676
|
+
|
677
|
+
[[package]]
|
678
|
+
name = "icu_locale_core"
|
679
|
+
version = "2.0.0"
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
681
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
682
|
+
dependencies = [
|
683
|
+
"displaydoc",
|
684
|
+
"litemap",
|
685
|
+
"tinystr",
|
686
|
+
"writeable",
|
687
|
+
"zerovec",
|
688
|
+
]
|
689
|
+
|
690
|
+
[[package]]
|
691
|
+
name = "icu_normalizer"
|
692
|
+
version = "2.0.0"
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
694
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
695
|
+
dependencies = [
|
696
|
+
"displaydoc",
|
697
|
+
"icu_collections",
|
698
|
+
"icu_normalizer_data",
|
699
|
+
"icu_properties",
|
700
|
+
"icu_provider",
|
701
|
+
"smallvec",
|
702
|
+
"zerovec",
|
703
|
+
]
|
704
|
+
|
705
|
+
[[package]]
|
706
|
+
name = "icu_normalizer_data"
|
707
|
+
version = "2.0.0"
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
709
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
710
|
+
|
711
|
+
[[package]]
|
712
|
+
name = "icu_properties"
|
713
|
+
version = "2.0.1"
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
715
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
716
|
+
dependencies = [
|
717
|
+
"displaydoc",
|
718
|
+
"icu_collections",
|
719
|
+
"icu_locale_core",
|
720
|
+
"icu_properties_data",
|
721
|
+
"icu_provider",
|
722
|
+
"potential_utf",
|
723
|
+
"zerotrie",
|
724
|
+
"zerovec",
|
725
|
+
]
|
726
|
+
|
727
|
+
[[package]]
|
728
|
+
name = "icu_properties_data"
|
729
|
+
version = "2.0.1"
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
731
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
732
|
+
|
733
|
+
[[package]]
|
734
|
+
name = "icu_provider"
|
735
|
+
version = "2.0.0"
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
737
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
738
|
+
dependencies = [
|
739
|
+
"displaydoc",
|
740
|
+
"icu_locale_core",
|
741
|
+
"stable_deref_trait",
|
742
|
+
"tinystr",
|
743
|
+
"writeable",
|
744
|
+
"yoke",
|
745
|
+
"zerofrom",
|
746
|
+
"zerotrie",
|
747
|
+
"zerovec",
|
748
|
+
]
|
749
|
+
|
750
|
+
[[package]]
|
751
|
+
name = "idna"
|
752
|
+
version = "1.0.3"
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
754
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
755
|
+
dependencies = [
|
756
|
+
"idna_adapter",
|
757
|
+
"smallvec",
|
758
|
+
"utf8_iter",
|
759
|
+
]
|
760
|
+
|
761
|
+
[[package]]
|
762
|
+
name = "idna_adapter"
|
763
|
+
version = "1.2.1"
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
765
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
766
|
+
dependencies = [
|
767
|
+
"icu_normalizer",
|
768
|
+
"icu_properties",
|
769
|
+
]
|
770
|
+
|
771
|
+
[[package]]
|
772
|
+
name = "indexmap"
|
773
|
+
version = "2.9.0"
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
775
|
+
checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
|
776
|
+
dependencies = [
|
777
|
+
"equivalent",
|
778
|
+
"hashbrown",
|
779
|
+
]
|
780
|
+
|
781
|
+
[[package]]
|
782
|
+
name = "ipnet"
|
783
|
+
version = "2.11.0"
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
785
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
786
|
+
|
787
|
+
[[package]]
|
788
|
+
name = "iri-string"
|
789
|
+
version = "0.7.8"
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
791
|
+
checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
|
792
|
+
dependencies = [
|
793
|
+
"memchr",
|
794
|
+
"serde",
|
795
|
+
]
|
796
|
+
|
797
|
+
[[package]]
|
798
|
+
name = "itertools"
|
799
|
+
version = "0.12.1"
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
801
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
802
|
+
dependencies = [
|
803
|
+
"either",
|
804
|
+
]
|
805
|
+
|
806
|
+
[[package]]
|
807
|
+
name = "itoa"
|
808
|
+
version = "1.0.15"
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
810
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
811
|
+
|
812
|
+
[[package]]
|
813
|
+
name = "jobserver"
|
814
|
+
version = "0.1.33"
|
815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
816
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
817
|
+
dependencies = [
|
818
|
+
"getrandom 0.3.3",
|
819
|
+
"libc",
|
820
|
+
]
|
821
|
+
|
822
|
+
[[package]]
|
823
|
+
name = "js-sys"
|
824
|
+
version = "0.3.77"
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
826
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
827
|
+
dependencies = [
|
828
|
+
"once_cell",
|
829
|
+
"wasm-bindgen",
|
830
|
+
]
|
831
|
+
|
832
|
+
[[package]]
|
833
|
+
name = "lazy_static"
|
834
|
+
version = "1.5.0"
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
836
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
837
|
+
|
838
|
+
[[package]]
|
839
|
+
name = "lazycell"
|
840
|
+
version = "1.3.0"
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
842
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
843
|
+
|
844
|
+
[[package]]
|
845
|
+
name = "libc"
|
846
|
+
version = "0.2.174"
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
848
|
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
849
|
+
|
850
|
+
[[package]]
|
851
|
+
name = "libloading"
|
852
|
+
version = "0.8.8"
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
854
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
855
|
+
dependencies = [
|
856
|
+
"cfg-if",
|
857
|
+
"windows-targets 0.53.2",
|
858
|
+
]
|
859
|
+
|
860
|
+
[[package]]
|
861
|
+
name = "linux-raw-sys"
|
862
|
+
version = "0.4.15"
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
864
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
865
|
+
|
866
|
+
[[package]]
|
867
|
+
name = "linux-raw-sys"
|
868
|
+
version = "0.9.4"
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
870
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
871
|
+
|
872
|
+
[[package]]
|
873
|
+
name = "litemap"
|
874
|
+
version = "0.8.0"
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
876
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
877
|
+
|
878
|
+
[[package]]
|
879
|
+
name = "lock_api"
|
880
|
+
version = "0.4.13"
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
882
|
+
checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
|
883
|
+
dependencies = [
|
884
|
+
"autocfg",
|
885
|
+
"scopeguard",
|
886
|
+
]
|
887
|
+
|
888
|
+
[[package]]
|
889
|
+
name = "log"
|
890
|
+
version = "0.4.27"
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
892
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
893
|
+
|
894
|
+
[[package]]
|
895
|
+
name = "magnus"
|
896
|
+
version = "0.7.1"
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
898
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
899
|
+
dependencies = [
|
900
|
+
"magnus-macros",
|
901
|
+
"rb-sys",
|
902
|
+
"rb-sys-env",
|
903
|
+
"seq-macro",
|
904
|
+
]
|
905
|
+
|
906
|
+
[[package]]
|
907
|
+
name = "magnus-macros"
|
908
|
+
version = "0.6.0"
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
910
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
911
|
+
dependencies = [
|
912
|
+
"proc-macro2",
|
913
|
+
"quote",
|
914
|
+
"syn",
|
915
|
+
]
|
916
|
+
|
917
|
+
[[package]]
|
918
|
+
name = "matchit"
|
919
|
+
version = "0.8.4"
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
921
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
922
|
+
|
923
|
+
[[package]]
|
924
|
+
name = "memchr"
|
925
|
+
version = "2.7.5"
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
927
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
928
|
+
|
929
|
+
[[package]]
|
930
|
+
name = "micro_mcp"
|
931
|
+
version = "0.1.0"
|
932
|
+
dependencies = [
|
933
|
+
"async-trait",
|
934
|
+
"magnus",
|
935
|
+
"rb-sys",
|
936
|
+
"rust-mcp-sdk",
|
937
|
+
"serde",
|
938
|
+
"serde_json",
|
939
|
+
"tokio",
|
940
|
+
]
|
941
|
+
|
942
|
+
[[package]]
|
943
|
+
name = "mime"
|
944
|
+
version = "0.3.17"
|
945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
946
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
947
|
+
|
948
|
+
[[package]]
|
949
|
+
name = "minimal-lexical"
|
950
|
+
version = "0.2.1"
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
952
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
953
|
+
|
954
|
+
[[package]]
|
955
|
+
name = "miniz_oxide"
|
956
|
+
version = "0.8.9"
|
957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
958
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
959
|
+
dependencies = [
|
960
|
+
"adler2",
|
961
|
+
]
|
962
|
+
|
963
|
+
[[package]]
|
964
|
+
name = "mio"
|
965
|
+
version = "1.0.4"
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
967
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
968
|
+
dependencies = [
|
969
|
+
"libc",
|
970
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
971
|
+
"windows-sys 0.59.0",
|
972
|
+
]
|
973
|
+
|
974
|
+
[[package]]
|
975
|
+
name = "native-tls"
|
976
|
+
version = "0.2.14"
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
978
|
+
checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
|
979
|
+
dependencies = [
|
980
|
+
"libc",
|
981
|
+
"log",
|
982
|
+
"openssl",
|
983
|
+
"openssl-probe",
|
984
|
+
"openssl-sys",
|
985
|
+
"schannel",
|
986
|
+
"security-framework",
|
987
|
+
"security-framework-sys",
|
988
|
+
"tempfile",
|
989
|
+
]
|
990
|
+
|
991
|
+
[[package]]
|
992
|
+
name = "nom"
|
993
|
+
version = "7.1.3"
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
995
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
996
|
+
dependencies = [
|
997
|
+
"memchr",
|
998
|
+
"minimal-lexical",
|
999
|
+
]
|
1000
|
+
|
1001
|
+
[[package]]
|
1002
|
+
name = "object"
|
1003
|
+
version = "0.36.7"
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1005
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
1006
|
+
dependencies = [
|
1007
|
+
"memchr",
|
1008
|
+
]
|
1009
|
+
|
1010
|
+
[[package]]
|
1011
|
+
name = "once_cell"
|
1012
|
+
version = "1.21.3"
|
1013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1014
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
1015
|
+
|
1016
|
+
[[package]]
|
1017
|
+
name = "openssl"
|
1018
|
+
version = "0.10.73"
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1020
|
+
checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
|
1021
|
+
dependencies = [
|
1022
|
+
"bitflags",
|
1023
|
+
"cfg-if",
|
1024
|
+
"foreign-types",
|
1025
|
+
"libc",
|
1026
|
+
"once_cell",
|
1027
|
+
"openssl-macros",
|
1028
|
+
"openssl-sys",
|
1029
|
+
]
|
1030
|
+
|
1031
|
+
[[package]]
|
1032
|
+
name = "openssl-macros"
|
1033
|
+
version = "0.1.1"
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1035
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
1036
|
+
dependencies = [
|
1037
|
+
"proc-macro2",
|
1038
|
+
"quote",
|
1039
|
+
"syn",
|
1040
|
+
]
|
1041
|
+
|
1042
|
+
[[package]]
|
1043
|
+
name = "openssl-probe"
|
1044
|
+
version = "0.1.6"
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1046
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
1047
|
+
|
1048
|
+
[[package]]
|
1049
|
+
name = "openssl-sys"
|
1050
|
+
version = "0.9.109"
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1052
|
+
checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
|
1053
|
+
dependencies = [
|
1054
|
+
"cc",
|
1055
|
+
"libc",
|
1056
|
+
"pkg-config",
|
1057
|
+
"vcpkg",
|
1058
|
+
]
|
1059
|
+
|
1060
|
+
[[package]]
|
1061
|
+
name = "parking_lot"
|
1062
|
+
version = "0.12.4"
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1064
|
+
checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
|
1065
|
+
dependencies = [
|
1066
|
+
"lock_api",
|
1067
|
+
"parking_lot_core",
|
1068
|
+
]
|
1069
|
+
|
1070
|
+
[[package]]
|
1071
|
+
name = "parking_lot_core"
|
1072
|
+
version = "0.9.11"
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1074
|
+
checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
|
1075
|
+
dependencies = [
|
1076
|
+
"cfg-if",
|
1077
|
+
"libc",
|
1078
|
+
"redox_syscall",
|
1079
|
+
"smallvec",
|
1080
|
+
"windows-targets 0.52.6",
|
1081
|
+
]
|
1082
|
+
|
1083
|
+
[[package]]
|
1084
|
+
name = "percent-encoding"
|
1085
|
+
version = "2.3.1"
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1087
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
1088
|
+
|
1089
|
+
[[package]]
|
1090
|
+
name = "pin-project-lite"
|
1091
|
+
version = "0.2.16"
|
1092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1093
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
1094
|
+
|
1095
|
+
[[package]]
|
1096
|
+
name = "pin-utils"
|
1097
|
+
version = "0.1.0"
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1099
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1100
|
+
|
1101
|
+
[[package]]
|
1102
|
+
name = "pkg-config"
|
1103
|
+
version = "0.3.32"
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1105
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
1106
|
+
|
1107
|
+
[[package]]
|
1108
|
+
name = "potential_utf"
|
1109
|
+
version = "0.1.2"
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1111
|
+
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
|
1112
|
+
dependencies = [
|
1113
|
+
"zerovec",
|
1114
|
+
]
|
1115
|
+
|
1116
|
+
[[package]]
|
1117
|
+
name = "prettyplease"
|
1118
|
+
version = "0.2.34"
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1120
|
+
checksum = "6837b9e10d61f45f987d50808f83d1ee3d206c66acf650c3e4ae2e1f6ddedf55"
|
1121
|
+
dependencies = [
|
1122
|
+
"proc-macro2",
|
1123
|
+
"syn",
|
1124
|
+
]
|
1125
|
+
|
1126
|
+
[[package]]
|
1127
|
+
name = "proc-macro2"
|
1128
|
+
version = "1.0.95"
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1130
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
1131
|
+
dependencies = [
|
1132
|
+
"unicode-ident",
|
1133
|
+
]
|
1134
|
+
|
1135
|
+
[[package]]
|
1136
|
+
name = "quote"
|
1137
|
+
version = "1.0.40"
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1139
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
1140
|
+
dependencies = [
|
1141
|
+
"proc-macro2",
|
1142
|
+
]
|
1143
|
+
|
1144
|
+
[[package]]
|
1145
|
+
name = "r-efi"
|
1146
|
+
version = "5.3.0"
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1148
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
1149
|
+
|
1150
|
+
[[package]]
|
1151
|
+
name = "rb-sys"
|
1152
|
+
version = "0.9.116"
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1154
|
+
checksum = "7059846f68396df83155779c75336ca24567741cb95256e6308c9fcc370e8dad"
|
1155
|
+
dependencies = [
|
1156
|
+
"rb-sys-build",
|
1157
|
+
]
|
1158
|
+
|
1159
|
+
[[package]]
|
1160
|
+
name = "rb-sys-build"
|
1161
|
+
version = "0.9.116"
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1163
|
+
checksum = "ac217510df41b9ffc041573e68d7a02aaff770c49943c7494441c4b224b0ecd0"
|
1164
|
+
dependencies = [
|
1165
|
+
"bindgen",
|
1166
|
+
"lazy_static",
|
1167
|
+
"proc-macro2",
|
1168
|
+
"quote",
|
1169
|
+
"regex",
|
1170
|
+
"shell-words",
|
1171
|
+
"syn",
|
1172
|
+
]
|
1173
|
+
|
1174
|
+
[[package]]
|
1175
|
+
name = "rb-sys-env"
|
1176
|
+
version = "0.1.2"
|
1177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1178
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
1179
|
+
|
1180
|
+
[[package]]
|
1181
|
+
name = "redox_syscall"
|
1182
|
+
version = "0.5.13"
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1184
|
+
checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
|
1185
|
+
dependencies = [
|
1186
|
+
"bitflags",
|
1187
|
+
]
|
1188
|
+
|
1189
|
+
[[package]]
|
1190
|
+
name = "regex"
|
1191
|
+
version = "1.11.1"
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1193
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
1194
|
+
dependencies = [
|
1195
|
+
"aho-corasick",
|
1196
|
+
"memchr",
|
1197
|
+
"regex-automata",
|
1198
|
+
"regex-syntax",
|
1199
|
+
]
|
1200
|
+
|
1201
|
+
[[package]]
|
1202
|
+
name = "regex-automata"
|
1203
|
+
version = "0.4.9"
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1205
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
1206
|
+
dependencies = [
|
1207
|
+
"aho-corasick",
|
1208
|
+
"memchr",
|
1209
|
+
"regex-syntax",
|
1210
|
+
]
|
1211
|
+
|
1212
|
+
[[package]]
|
1213
|
+
name = "regex-syntax"
|
1214
|
+
version = "0.8.5"
|
1215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1216
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
1217
|
+
|
1218
|
+
[[package]]
|
1219
|
+
name = "reqwest"
|
1220
|
+
version = "0.12.20"
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1222
|
+
checksum = "eabf4c97d9130e2bf606614eb937e86edac8292eaa6f422f995d7e8de1eb1813"
|
1223
|
+
dependencies = [
|
1224
|
+
"base64",
|
1225
|
+
"bytes",
|
1226
|
+
"encoding_rs",
|
1227
|
+
"futures-core",
|
1228
|
+
"futures-util",
|
1229
|
+
"h2",
|
1230
|
+
"http",
|
1231
|
+
"http-body",
|
1232
|
+
"http-body-util",
|
1233
|
+
"hyper",
|
1234
|
+
"hyper-rustls",
|
1235
|
+
"hyper-tls",
|
1236
|
+
"hyper-util",
|
1237
|
+
"js-sys",
|
1238
|
+
"log",
|
1239
|
+
"mime",
|
1240
|
+
"native-tls",
|
1241
|
+
"percent-encoding",
|
1242
|
+
"pin-project-lite",
|
1243
|
+
"rustls-pki-types",
|
1244
|
+
"serde",
|
1245
|
+
"serde_json",
|
1246
|
+
"serde_urlencoded",
|
1247
|
+
"sync_wrapper",
|
1248
|
+
"tokio",
|
1249
|
+
"tokio-native-tls",
|
1250
|
+
"tokio-util",
|
1251
|
+
"tower",
|
1252
|
+
"tower-http",
|
1253
|
+
"tower-service",
|
1254
|
+
"url",
|
1255
|
+
"wasm-bindgen",
|
1256
|
+
"wasm-bindgen-futures",
|
1257
|
+
"wasm-streams",
|
1258
|
+
"web-sys",
|
1259
|
+
]
|
1260
|
+
|
1261
|
+
[[package]]
|
1262
|
+
name = "ring"
|
1263
|
+
version = "0.17.14"
|
1264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1265
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
1266
|
+
dependencies = [
|
1267
|
+
"cc",
|
1268
|
+
"cfg-if",
|
1269
|
+
"getrandom 0.2.16",
|
1270
|
+
"libc",
|
1271
|
+
"untrusted",
|
1272
|
+
"windows-sys 0.52.0",
|
1273
|
+
]
|
1274
|
+
|
1275
|
+
[[package]]
|
1276
|
+
name = "rust-mcp-macros"
|
1277
|
+
version = "0.4.2"
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1279
|
+
checksum = "375eba9388d9d5ffc8951e5f25296f9739be4e5700375ac7c74ad957a903b92b"
|
1280
|
+
dependencies = [
|
1281
|
+
"proc-macro2",
|
1282
|
+
"quote",
|
1283
|
+
"serde",
|
1284
|
+
"serde_json",
|
1285
|
+
"syn",
|
1286
|
+
]
|
1287
|
+
|
1288
|
+
[[package]]
|
1289
|
+
name = "rust-mcp-schema"
|
1290
|
+
version = "0.6.0"
|
1291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1292
|
+
checksum = "a794de25669a2d21c5074ec5082f74f5e88863a112339fe90264d9e480b0ee8b"
|
1293
|
+
dependencies = [
|
1294
|
+
"serde",
|
1295
|
+
"serde_json",
|
1296
|
+
]
|
1297
|
+
|
1298
|
+
[[package]]
|
1299
|
+
name = "rust-mcp-sdk"
|
1300
|
+
version = "0.4.3"
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1302
|
+
checksum = "6bed508dfa638d89b1a797ddfe1b4b4022db834036b3f1bcdf2909cea5be14a2"
|
1303
|
+
dependencies = [
|
1304
|
+
"async-trait",
|
1305
|
+
"axum",
|
1306
|
+
"axum-server",
|
1307
|
+
"futures",
|
1308
|
+
"hyper",
|
1309
|
+
"rust-mcp-macros",
|
1310
|
+
"rust-mcp-schema",
|
1311
|
+
"rust-mcp-transport",
|
1312
|
+
"serde",
|
1313
|
+
"serde_json",
|
1314
|
+
"thiserror",
|
1315
|
+
"tokio",
|
1316
|
+
"tokio-stream",
|
1317
|
+
"tracing",
|
1318
|
+
"uuid",
|
1319
|
+
]
|
1320
|
+
|
1321
|
+
[[package]]
|
1322
|
+
name = "rust-mcp-transport"
|
1323
|
+
version = "0.3.5"
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1325
|
+
checksum = "6318216799507090512e6ffa7ea7fd26c6f2098c655cb72942dd5e221cfdea3d"
|
1326
|
+
dependencies = [
|
1327
|
+
"async-trait",
|
1328
|
+
"bytes",
|
1329
|
+
"futures",
|
1330
|
+
"reqwest",
|
1331
|
+
"rust-mcp-schema",
|
1332
|
+
"serde",
|
1333
|
+
"serde_json",
|
1334
|
+
"thiserror",
|
1335
|
+
"tokio",
|
1336
|
+
"tokio-stream",
|
1337
|
+
"tracing",
|
1338
|
+
]
|
1339
|
+
|
1340
|
+
[[package]]
|
1341
|
+
name = "rustc-demangle"
|
1342
|
+
version = "0.1.25"
|
1343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1344
|
+
checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
|
1345
|
+
|
1346
|
+
[[package]]
|
1347
|
+
name = "rustc-hash"
|
1348
|
+
version = "1.1.0"
|
1349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1350
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1351
|
+
|
1352
|
+
[[package]]
|
1353
|
+
name = "rustix"
|
1354
|
+
version = "0.38.44"
|
1355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1356
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
1357
|
+
dependencies = [
|
1358
|
+
"bitflags",
|
1359
|
+
"errno",
|
1360
|
+
"libc",
|
1361
|
+
"linux-raw-sys 0.4.15",
|
1362
|
+
"windows-sys 0.59.0",
|
1363
|
+
]
|
1364
|
+
|
1365
|
+
[[package]]
|
1366
|
+
name = "rustix"
|
1367
|
+
version = "1.0.7"
|
1368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1369
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
1370
|
+
dependencies = [
|
1371
|
+
"bitflags",
|
1372
|
+
"errno",
|
1373
|
+
"libc",
|
1374
|
+
"linux-raw-sys 0.9.4",
|
1375
|
+
"windows-sys 0.59.0",
|
1376
|
+
]
|
1377
|
+
|
1378
|
+
[[package]]
|
1379
|
+
name = "rustls"
|
1380
|
+
version = "0.23.28"
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1382
|
+
checksum = "7160e3e10bf4535308537f3c4e1641468cd0e485175d6163087c0393c7d46643"
|
1383
|
+
dependencies = [
|
1384
|
+
"aws-lc-rs",
|
1385
|
+
"once_cell",
|
1386
|
+
"rustls-pki-types",
|
1387
|
+
"rustls-webpki",
|
1388
|
+
"subtle",
|
1389
|
+
"zeroize",
|
1390
|
+
]
|
1391
|
+
|
1392
|
+
[[package]]
|
1393
|
+
name = "rustls-pemfile"
|
1394
|
+
version = "2.2.0"
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1396
|
+
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
1397
|
+
dependencies = [
|
1398
|
+
"rustls-pki-types",
|
1399
|
+
]
|
1400
|
+
|
1401
|
+
[[package]]
|
1402
|
+
name = "rustls-pki-types"
|
1403
|
+
version = "1.12.0"
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1405
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
1406
|
+
dependencies = [
|
1407
|
+
"zeroize",
|
1408
|
+
]
|
1409
|
+
|
1410
|
+
[[package]]
|
1411
|
+
name = "rustls-webpki"
|
1412
|
+
version = "0.103.3"
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1414
|
+
checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
|
1415
|
+
dependencies = [
|
1416
|
+
"aws-lc-rs",
|
1417
|
+
"ring",
|
1418
|
+
"rustls-pki-types",
|
1419
|
+
"untrusted",
|
1420
|
+
]
|
1421
|
+
|
1422
|
+
[[package]]
|
1423
|
+
name = "rustversion"
|
1424
|
+
version = "1.0.21"
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1426
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
1427
|
+
|
1428
|
+
[[package]]
|
1429
|
+
name = "ryu"
|
1430
|
+
version = "1.0.20"
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1432
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
1433
|
+
|
1434
|
+
[[package]]
|
1435
|
+
name = "schannel"
|
1436
|
+
version = "0.1.27"
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1438
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
1439
|
+
dependencies = [
|
1440
|
+
"windows-sys 0.59.0",
|
1441
|
+
]
|
1442
|
+
|
1443
|
+
[[package]]
|
1444
|
+
name = "scopeguard"
|
1445
|
+
version = "1.2.0"
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1447
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1448
|
+
|
1449
|
+
[[package]]
|
1450
|
+
name = "security-framework"
|
1451
|
+
version = "2.11.1"
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1453
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
1454
|
+
dependencies = [
|
1455
|
+
"bitflags",
|
1456
|
+
"core-foundation",
|
1457
|
+
"core-foundation-sys",
|
1458
|
+
"libc",
|
1459
|
+
"security-framework-sys",
|
1460
|
+
]
|
1461
|
+
|
1462
|
+
[[package]]
|
1463
|
+
name = "security-framework-sys"
|
1464
|
+
version = "2.14.0"
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1466
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
1467
|
+
dependencies = [
|
1468
|
+
"core-foundation-sys",
|
1469
|
+
"libc",
|
1470
|
+
]
|
1471
|
+
|
1472
|
+
[[package]]
|
1473
|
+
name = "seq-macro"
|
1474
|
+
version = "0.3.6"
|
1475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1476
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
1477
|
+
|
1478
|
+
[[package]]
|
1479
|
+
name = "serde"
|
1480
|
+
version = "1.0.219"
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1482
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
1483
|
+
dependencies = [
|
1484
|
+
"serde_derive",
|
1485
|
+
]
|
1486
|
+
|
1487
|
+
[[package]]
|
1488
|
+
name = "serde_derive"
|
1489
|
+
version = "1.0.219"
|
1490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1491
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
1492
|
+
dependencies = [
|
1493
|
+
"proc-macro2",
|
1494
|
+
"quote",
|
1495
|
+
"syn",
|
1496
|
+
]
|
1497
|
+
|
1498
|
+
[[package]]
|
1499
|
+
name = "serde_json"
|
1500
|
+
version = "1.0.140"
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1502
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
1503
|
+
dependencies = [
|
1504
|
+
"itoa",
|
1505
|
+
"memchr",
|
1506
|
+
"ryu",
|
1507
|
+
"serde",
|
1508
|
+
]
|
1509
|
+
|
1510
|
+
[[package]]
|
1511
|
+
name = "serde_path_to_error"
|
1512
|
+
version = "0.1.17"
|
1513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1514
|
+
checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a"
|
1515
|
+
dependencies = [
|
1516
|
+
"itoa",
|
1517
|
+
"serde",
|
1518
|
+
]
|
1519
|
+
|
1520
|
+
[[package]]
|
1521
|
+
name = "serde_urlencoded"
|
1522
|
+
version = "0.7.1"
|
1523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1524
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
1525
|
+
dependencies = [
|
1526
|
+
"form_urlencoded",
|
1527
|
+
"itoa",
|
1528
|
+
"ryu",
|
1529
|
+
"serde",
|
1530
|
+
]
|
1531
|
+
|
1532
|
+
[[package]]
|
1533
|
+
name = "shell-words"
|
1534
|
+
version = "1.1.0"
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1536
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
1537
|
+
|
1538
|
+
[[package]]
|
1539
|
+
name = "shlex"
|
1540
|
+
version = "1.3.0"
|
1541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1542
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
1543
|
+
|
1544
|
+
[[package]]
|
1545
|
+
name = "signal-hook-registry"
|
1546
|
+
version = "1.4.5"
|
1547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1548
|
+
checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
|
1549
|
+
dependencies = [
|
1550
|
+
"libc",
|
1551
|
+
]
|
1552
|
+
|
1553
|
+
[[package]]
|
1554
|
+
name = "slab"
|
1555
|
+
version = "0.4.10"
|
1556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1557
|
+
checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
|
1558
|
+
|
1559
|
+
[[package]]
|
1560
|
+
name = "smallvec"
|
1561
|
+
version = "1.15.1"
|
1562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1563
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
1564
|
+
|
1565
|
+
[[package]]
|
1566
|
+
name = "socket2"
|
1567
|
+
version = "0.5.10"
|
1568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1569
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
1570
|
+
dependencies = [
|
1571
|
+
"libc",
|
1572
|
+
"windows-sys 0.52.0",
|
1573
|
+
]
|
1574
|
+
|
1575
|
+
[[package]]
|
1576
|
+
name = "stable_deref_trait"
|
1577
|
+
version = "1.2.0"
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1579
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
1580
|
+
|
1581
|
+
[[package]]
|
1582
|
+
name = "subtle"
|
1583
|
+
version = "2.6.1"
|
1584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1585
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
1586
|
+
|
1587
|
+
[[package]]
|
1588
|
+
name = "syn"
|
1589
|
+
version = "2.0.103"
|
1590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1591
|
+
checksum = "e4307e30089d6fd6aff212f2da3a1f9e32f3223b1f010fb09b7c95f90f3ca1e8"
|
1592
|
+
dependencies = [
|
1593
|
+
"proc-macro2",
|
1594
|
+
"quote",
|
1595
|
+
"unicode-ident",
|
1596
|
+
]
|
1597
|
+
|
1598
|
+
[[package]]
|
1599
|
+
name = "sync_wrapper"
|
1600
|
+
version = "1.0.2"
|
1601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1602
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
1603
|
+
dependencies = [
|
1604
|
+
"futures-core",
|
1605
|
+
]
|
1606
|
+
|
1607
|
+
[[package]]
|
1608
|
+
name = "synstructure"
|
1609
|
+
version = "0.13.2"
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1611
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
1612
|
+
dependencies = [
|
1613
|
+
"proc-macro2",
|
1614
|
+
"quote",
|
1615
|
+
"syn",
|
1616
|
+
]
|
1617
|
+
|
1618
|
+
[[package]]
|
1619
|
+
name = "system-configuration"
|
1620
|
+
version = "0.6.1"
|
1621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1622
|
+
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
|
1623
|
+
dependencies = [
|
1624
|
+
"bitflags",
|
1625
|
+
"core-foundation",
|
1626
|
+
"system-configuration-sys",
|
1627
|
+
]
|
1628
|
+
|
1629
|
+
[[package]]
|
1630
|
+
name = "system-configuration-sys"
|
1631
|
+
version = "0.6.0"
|
1632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1633
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
1634
|
+
dependencies = [
|
1635
|
+
"core-foundation-sys",
|
1636
|
+
"libc",
|
1637
|
+
]
|
1638
|
+
|
1639
|
+
[[package]]
|
1640
|
+
name = "tempfile"
|
1641
|
+
version = "3.20.0"
|
1642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1643
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
1644
|
+
dependencies = [
|
1645
|
+
"fastrand",
|
1646
|
+
"getrandom 0.3.3",
|
1647
|
+
"once_cell",
|
1648
|
+
"rustix 1.0.7",
|
1649
|
+
"windows-sys 0.59.0",
|
1650
|
+
]
|
1651
|
+
|
1652
|
+
[[package]]
|
1653
|
+
name = "thiserror"
|
1654
|
+
version = "2.0.12"
|
1655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1656
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
1657
|
+
dependencies = [
|
1658
|
+
"thiserror-impl",
|
1659
|
+
]
|
1660
|
+
|
1661
|
+
[[package]]
|
1662
|
+
name = "thiserror-impl"
|
1663
|
+
version = "2.0.12"
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1665
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
1666
|
+
dependencies = [
|
1667
|
+
"proc-macro2",
|
1668
|
+
"quote",
|
1669
|
+
"syn",
|
1670
|
+
]
|
1671
|
+
|
1672
|
+
[[package]]
|
1673
|
+
name = "tinystr"
|
1674
|
+
version = "0.8.1"
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1676
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
1677
|
+
dependencies = [
|
1678
|
+
"displaydoc",
|
1679
|
+
"zerovec",
|
1680
|
+
]
|
1681
|
+
|
1682
|
+
[[package]]
|
1683
|
+
name = "tokio"
|
1684
|
+
version = "1.45.1"
|
1685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1686
|
+
checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779"
|
1687
|
+
dependencies = [
|
1688
|
+
"backtrace",
|
1689
|
+
"bytes",
|
1690
|
+
"libc",
|
1691
|
+
"mio",
|
1692
|
+
"parking_lot",
|
1693
|
+
"pin-project-lite",
|
1694
|
+
"signal-hook-registry",
|
1695
|
+
"socket2",
|
1696
|
+
"tokio-macros",
|
1697
|
+
"windows-sys 0.52.0",
|
1698
|
+
]
|
1699
|
+
|
1700
|
+
[[package]]
|
1701
|
+
name = "tokio-macros"
|
1702
|
+
version = "2.5.0"
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1704
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
1705
|
+
dependencies = [
|
1706
|
+
"proc-macro2",
|
1707
|
+
"quote",
|
1708
|
+
"syn",
|
1709
|
+
]
|
1710
|
+
|
1711
|
+
[[package]]
|
1712
|
+
name = "tokio-native-tls"
|
1713
|
+
version = "0.3.1"
|
1714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1715
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
1716
|
+
dependencies = [
|
1717
|
+
"native-tls",
|
1718
|
+
"tokio",
|
1719
|
+
]
|
1720
|
+
|
1721
|
+
[[package]]
|
1722
|
+
name = "tokio-rustls"
|
1723
|
+
version = "0.26.2"
|
1724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1725
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
1726
|
+
dependencies = [
|
1727
|
+
"rustls",
|
1728
|
+
"tokio",
|
1729
|
+
]
|
1730
|
+
|
1731
|
+
[[package]]
|
1732
|
+
name = "tokio-stream"
|
1733
|
+
version = "0.1.17"
|
1734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1735
|
+
checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
|
1736
|
+
dependencies = [
|
1737
|
+
"futures-core",
|
1738
|
+
"pin-project-lite",
|
1739
|
+
"tokio",
|
1740
|
+
]
|
1741
|
+
|
1742
|
+
[[package]]
|
1743
|
+
name = "tokio-util"
|
1744
|
+
version = "0.7.15"
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1746
|
+
checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
|
1747
|
+
dependencies = [
|
1748
|
+
"bytes",
|
1749
|
+
"futures-core",
|
1750
|
+
"futures-sink",
|
1751
|
+
"pin-project-lite",
|
1752
|
+
"tokio",
|
1753
|
+
]
|
1754
|
+
|
1755
|
+
[[package]]
|
1756
|
+
name = "tower"
|
1757
|
+
version = "0.5.2"
|
1758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1759
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
1760
|
+
dependencies = [
|
1761
|
+
"futures-core",
|
1762
|
+
"futures-util",
|
1763
|
+
"pin-project-lite",
|
1764
|
+
"sync_wrapper",
|
1765
|
+
"tokio",
|
1766
|
+
"tower-layer",
|
1767
|
+
"tower-service",
|
1768
|
+
"tracing",
|
1769
|
+
]
|
1770
|
+
|
1771
|
+
[[package]]
|
1772
|
+
name = "tower-http"
|
1773
|
+
version = "0.6.6"
|
1774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1775
|
+
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
|
1776
|
+
dependencies = [
|
1777
|
+
"bitflags",
|
1778
|
+
"bytes",
|
1779
|
+
"futures-util",
|
1780
|
+
"http",
|
1781
|
+
"http-body",
|
1782
|
+
"iri-string",
|
1783
|
+
"pin-project-lite",
|
1784
|
+
"tower",
|
1785
|
+
"tower-layer",
|
1786
|
+
"tower-service",
|
1787
|
+
]
|
1788
|
+
|
1789
|
+
[[package]]
|
1790
|
+
name = "tower-layer"
|
1791
|
+
version = "0.3.3"
|
1792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1793
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
1794
|
+
|
1795
|
+
[[package]]
|
1796
|
+
name = "tower-service"
|
1797
|
+
version = "0.3.3"
|
1798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1799
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
1800
|
+
|
1801
|
+
[[package]]
|
1802
|
+
name = "tracing"
|
1803
|
+
version = "0.1.41"
|
1804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1805
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
1806
|
+
dependencies = [
|
1807
|
+
"log",
|
1808
|
+
"pin-project-lite",
|
1809
|
+
"tracing-attributes",
|
1810
|
+
"tracing-core",
|
1811
|
+
]
|
1812
|
+
|
1813
|
+
[[package]]
|
1814
|
+
name = "tracing-attributes"
|
1815
|
+
version = "0.1.30"
|
1816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1817
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
1818
|
+
dependencies = [
|
1819
|
+
"proc-macro2",
|
1820
|
+
"quote",
|
1821
|
+
"syn",
|
1822
|
+
]
|
1823
|
+
|
1824
|
+
[[package]]
|
1825
|
+
name = "tracing-core"
|
1826
|
+
version = "0.1.34"
|
1827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1828
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
1829
|
+
dependencies = [
|
1830
|
+
"once_cell",
|
1831
|
+
]
|
1832
|
+
|
1833
|
+
[[package]]
|
1834
|
+
name = "try-lock"
|
1835
|
+
version = "0.2.5"
|
1836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1837
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
1838
|
+
|
1839
|
+
[[package]]
|
1840
|
+
name = "unicode-ident"
|
1841
|
+
version = "1.0.18"
|
1842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1843
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
1844
|
+
|
1845
|
+
[[package]]
|
1846
|
+
name = "untrusted"
|
1847
|
+
version = "0.9.0"
|
1848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1849
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
1850
|
+
|
1851
|
+
[[package]]
|
1852
|
+
name = "url"
|
1853
|
+
version = "2.5.4"
|
1854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1855
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
1856
|
+
dependencies = [
|
1857
|
+
"form_urlencoded",
|
1858
|
+
"idna",
|
1859
|
+
"percent-encoding",
|
1860
|
+
]
|
1861
|
+
|
1862
|
+
[[package]]
|
1863
|
+
name = "utf8_iter"
|
1864
|
+
version = "1.0.4"
|
1865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1866
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
1867
|
+
|
1868
|
+
[[package]]
|
1869
|
+
name = "uuid"
|
1870
|
+
version = "1.17.0"
|
1871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1872
|
+
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
|
1873
|
+
dependencies = [
|
1874
|
+
"getrandom 0.3.3",
|
1875
|
+
"js-sys",
|
1876
|
+
"wasm-bindgen",
|
1877
|
+
]
|
1878
|
+
|
1879
|
+
[[package]]
|
1880
|
+
name = "vcpkg"
|
1881
|
+
version = "0.2.15"
|
1882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1883
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
1884
|
+
|
1885
|
+
[[package]]
|
1886
|
+
name = "want"
|
1887
|
+
version = "0.3.1"
|
1888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1889
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
1890
|
+
dependencies = [
|
1891
|
+
"try-lock",
|
1892
|
+
]
|
1893
|
+
|
1894
|
+
[[package]]
|
1895
|
+
name = "wasi"
|
1896
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
1897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1898
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
1899
|
+
|
1900
|
+
[[package]]
|
1901
|
+
name = "wasi"
|
1902
|
+
version = "0.14.2+wasi-0.2.4"
|
1903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1904
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
1905
|
+
dependencies = [
|
1906
|
+
"wit-bindgen-rt",
|
1907
|
+
]
|
1908
|
+
|
1909
|
+
[[package]]
|
1910
|
+
name = "wasm-bindgen"
|
1911
|
+
version = "0.2.100"
|
1912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1913
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
1914
|
+
dependencies = [
|
1915
|
+
"cfg-if",
|
1916
|
+
"once_cell",
|
1917
|
+
"rustversion",
|
1918
|
+
"wasm-bindgen-macro",
|
1919
|
+
]
|
1920
|
+
|
1921
|
+
[[package]]
|
1922
|
+
name = "wasm-bindgen-backend"
|
1923
|
+
version = "0.2.100"
|
1924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1925
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
1926
|
+
dependencies = [
|
1927
|
+
"bumpalo",
|
1928
|
+
"log",
|
1929
|
+
"proc-macro2",
|
1930
|
+
"quote",
|
1931
|
+
"syn",
|
1932
|
+
"wasm-bindgen-shared",
|
1933
|
+
]
|
1934
|
+
|
1935
|
+
[[package]]
|
1936
|
+
name = "wasm-bindgen-futures"
|
1937
|
+
version = "0.4.50"
|
1938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1939
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
1940
|
+
dependencies = [
|
1941
|
+
"cfg-if",
|
1942
|
+
"js-sys",
|
1943
|
+
"once_cell",
|
1944
|
+
"wasm-bindgen",
|
1945
|
+
"web-sys",
|
1946
|
+
]
|
1947
|
+
|
1948
|
+
[[package]]
|
1949
|
+
name = "wasm-bindgen-macro"
|
1950
|
+
version = "0.2.100"
|
1951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1952
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
1953
|
+
dependencies = [
|
1954
|
+
"quote",
|
1955
|
+
"wasm-bindgen-macro-support",
|
1956
|
+
]
|
1957
|
+
|
1958
|
+
[[package]]
|
1959
|
+
name = "wasm-bindgen-macro-support"
|
1960
|
+
version = "0.2.100"
|
1961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1962
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
1963
|
+
dependencies = [
|
1964
|
+
"proc-macro2",
|
1965
|
+
"quote",
|
1966
|
+
"syn",
|
1967
|
+
"wasm-bindgen-backend",
|
1968
|
+
"wasm-bindgen-shared",
|
1969
|
+
]
|
1970
|
+
|
1971
|
+
[[package]]
|
1972
|
+
name = "wasm-bindgen-shared"
|
1973
|
+
version = "0.2.100"
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1975
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
1976
|
+
dependencies = [
|
1977
|
+
"unicode-ident",
|
1978
|
+
]
|
1979
|
+
|
1980
|
+
[[package]]
|
1981
|
+
name = "wasm-streams"
|
1982
|
+
version = "0.4.2"
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1984
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
1985
|
+
dependencies = [
|
1986
|
+
"futures-util",
|
1987
|
+
"js-sys",
|
1988
|
+
"wasm-bindgen",
|
1989
|
+
"wasm-bindgen-futures",
|
1990
|
+
"web-sys",
|
1991
|
+
]
|
1992
|
+
|
1993
|
+
[[package]]
|
1994
|
+
name = "web-sys"
|
1995
|
+
version = "0.3.77"
|
1996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1997
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
1998
|
+
dependencies = [
|
1999
|
+
"js-sys",
|
2000
|
+
"wasm-bindgen",
|
2001
|
+
]
|
2002
|
+
|
2003
|
+
[[package]]
|
2004
|
+
name = "which"
|
2005
|
+
version = "4.4.2"
|
2006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2007
|
+
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
|
2008
|
+
dependencies = [
|
2009
|
+
"either",
|
2010
|
+
"home",
|
2011
|
+
"once_cell",
|
2012
|
+
"rustix 0.38.44",
|
2013
|
+
]
|
2014
|
+
|
2015
|
+
[[package]]
|
2016
|
+
name = "windows-link"
|
2017
|
+
version = "0.1.3"
|
2018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
2020
|
+
|
2021
|
+
[[package]]
|
2022
|
+
name = "windows-registry"
|
2023
|
+
version = "0.5.2"
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025
|
+
checksum = "b3bab093bdd303a1240bb99b8aba8ea8a69ee19d34c9e2ef9594e708a4878820"
|
2026
|
+
dependencies = [
|
2027
|
+
"windows-link",
|
2028
|
+
"windows-result",
|
2029
|
+
"windows-strings",
|
2030
|
+
]
|
2031
|
+
|
2032
|
+
[[package]]
|
2033
|
+
name = "windows-result"
|
2034
|
+
version = "0.3.4"
|
2035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2036
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
2037
|
+
dependencies = [
|
2038
|
+
"windows-link",
|
2039
|
+
]
|
2040
|
+
|
2041
|
+
[[package]]
|
2042
|
+
name = "windows-strings"
|
2043
|
+
version = "0.4.2"
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2045
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
2046
|
+
dependencies = [
|
2047
|
+
"windows-link",
|
2048
|
+
]
|
2049
|
+
|
2050
|
+
[[package]]
|
2051
|
+
name = "windows-sys"
|
2052
|
+
version = "0.52.0"
|
2053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2054
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
2055
|
+
dependencies = [
|
2056
|
+
"windows-targets 0.52.6",
|
2057
|
+
]
|
2058
|
+
|
2059
|
+
[[package]]
|
2060
|
+
name = "windows-sys"
|
2061
|
+
version = "0.59.0"
|
2062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2063
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
2064
|
+
dependencies = [
|
2065
|
+
"windows-targets 0.52.6",
|
2066
|
+
]
|
2067
|
+
|
2068
|
+
[[package]]
|
2069
|
+
name = "windows-sys"
|
2070
|
+
version = "0.60.2"
|
2071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2072
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
2073
|
+
dependencies = [
|
2074
|
+
"windows-targets 0.53.2",
|
2075
|
+
]
|
2076
|
+
|
2077
|
+
[[package]]
|
2078
|
+
name = "windows-targets"
|
2079
|
+
version = "0.52.6"
|
2080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2081
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
2082
|
+
dependencies = [
|
2083
|
+
"windows_aarch64_gnullvm 0.52.6",
|
2084
|
+
"windows_aarch64_msvc 0.52.6",
|
2085
|
+
"windows_i686_gnu 0.52.6",
|
2086
|
+
"windows_i686_gnullvm 0.52.6",
|
2087
|
+
"windows_i686_msvc 0.52.6",
|
2088
|
+
"windows_x86_64_gnu 0.52.6",
|
2089
|
+
"windows_x86_64_gnullvm 0.52.6",
|
2090
|
+
"windows_x86_64_msvc 0.52.6",
|
2091
|
+
]
|
2092
|
+
|
2093
|
+
[[package]]
|
2094
|
+
name = "windows-targets"
|
2095
|
+
version = "0.53.2"
|
2096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2097
|
+
checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
|
2098
|
+
dependencies = [
|
2099
|
+
"windows_aarch64_gnullvm 0.53.0",
|
2100
|
+
"windows_aarch64_msvc 0.53.0",
|
2101
|
+
"windows_i686_gnu 0.53.0",
|
2102
|
+
"windows_i686_gnullvm 0.53.0",
|
2103
|
+
"windows_i686_msvc 0.53.0",
|
2104
|
+
"windows_x86_64_gnu 0.53.0",
|
2105
|
+
"windows_x86_64_gnullvm 0.53.0",
|
2106
|
+
"windows_x86_64_msvc 0.53.0",
|
2107
|
+
]
|
2108
|
+
|
2109
|
+
[[package]]
|
2110
|
+
name = "windows_aarch64_gnullvm"
|
2111
|
+
version = "0.52.6"
|
2112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2113
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
2114
|
+
|
2115
|
+
[[package]]
|
2116
|
+
name = "windows_aarch64_gnullvm"
|
2117
|
+
version = "0.53.0"
|
2118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2119
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
2120
|
+
|
2121
|
+
[[package]]
|
2122
|
+
name = "windows_aarch64_msvc"
|
2123
|
+
version = "0.52.6"
|
2124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2125
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
2126
|
+
|
2127
|
+
[[package]]
|
2128
|
+
name = "windows_aarch64_msvc"
|
2129
|
+
version = "0.53.0"
|
2130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2131
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
2132
|
+
|
2133
|
+
[[package]]
|
2134
|
+
name = "windows_i686_gnu"
|
2135
|
+
version = "0.52.6"
|
2136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2137
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
2138
|
+
|
2139
|
+
[[package]]
|
2140
|
+
name = "windows_i686_gnu"
|
2141
|
+
version = "0.53.0"
|
2142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2143
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
2144
|
+
|
2145
|
+
[[package]]
|
2146
|
+
name = "windows_i686_gnullvm"
|
2147
|
+
version = "0.52.6"
|
2148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2149
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
2150
|
+
|
2151
|
+
[[package]]
|
2152
|
+
name = "windows_i686_gnullvm"
|
2153
|
+
version = "0.53.0"
|
2154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2155
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
2156
|
+
|
2157
|
+
[[package]]
|
2158
|
+
name = "windows_i686_msvc"
|
2159
|
+
version = "0.52.6"
|
2160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2161
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
2162
|
+
|
2163
|
+
[[package]]
|
2164
|
+
name = "windows_i686_msvc"
|
2165
|
+
version = "0.53.0"
|
2166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2167
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
2168
|
+
|
2169
|
+
[[package]]
|
2170
|
+
name = "windows_x86_64_gnu"
|
2171
|
+
version = "0.52.6"
|
2172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2173
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
2174
|
+
|
2175
|
+
[[package]]
|
2176
|
+
name = "windows_x86_64_gnu"
|
2177
|
+
version = "0.53.0"
|
2178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2179
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
2180
|
+
|
2181
|
+
[[package]]
|
2182
|
+
name = "windows_x86_64_gnullvm"
|
2183
|
+
version = "0.52.6"
|
2184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2185
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
2186
|
+
|
2187
|
+
[[package]]
|
2188
|
+
name = "windows_x86_64_gnullvm"
|
2189
|
+
version = "0.53.0"
|
2190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2191
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
2192
|
+
|
2193
|
+
[[package]]
|
2194
|
+
name = "windows_x86_64_msvc"
|
2195
|
+
version = "0.52.6"
|
2196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2197
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
2198
|
+
|
2199
|
+
[[package]]
|
2200
|
+
name = "windows_x86_64_msvc"
|
2201
|
+
version = "0.53.0"
|
2202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2203
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
2204
|
+
|
2205
|
+
[[package]]
|
2206
|
+
name = "wit-bindgen-rt"
|
2207
|
+
version = "0.39.0"
|
2208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2209
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
2210
|
+
dependencies = [
|
2211
|
+
"bitflags",
|
2212
|
+
]
|
2213
|
+
|
2214
|
+
[[package]]
|
2215
|
+
name = "writeable"
|
2216
|
+
version = "0.6.1"
|
2217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2218
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
2219
|
+
|
2220
|
+
[[package]]
|
2221
|
+
name = "yoke"
|
2222
|
+
version = "0.8.0"
|
2223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2224
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
2225
|
+
dependencies = [
|
2226
|
+
"serde",
|
2227
|
+
"stable_deref_trait",
|
2228
|
+
"yoke-derive",
|
2229
|
+
"zerofrom",
|
2230
|
+
]
|
2231
|
+
|
2232
|
+
[[package]]
|
2233
|
+
name = "yoke-derive"
|
2234
|
+
version = "0.8.0"
|
2235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2236
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
2237
|
+
dependencies = [
|
2238
|
+
"proc-macro2",
|
2239
|
+
"quote",
|
2240
|
+
"syn",
|
2241
|
+
"synstructure",
|
2242
|
+
]
|
2243
|
+
|
2244
|
+
[[package]]
|
2245
|
+
name = "zerofrom"
|
2246
|
+
version = "0.1.6"
|
2247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2248
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
2249
|
+
dependencies = [
|
2250
|
+
"zerofrom-derive",
|
2251
|
+
]
|
2252
|
+
|
2253
|
+
[[package]]
|
2254
|
+
name = "zerofrom-derive"
|
2255
|
+
version = "0.1.6"
|
2256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2257
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
2258
|
+
dependencies = [
|
2259
|
+
"proc-macro2",
|
2260
|
+
"quote",
|
2261
|
+
"syn",
|
2262
|
+
"synstructure",
|
2263
|
+
]
|
2264
|
+
|
2265
|
+
[[package]]
|
2266
|
+
name = "zeroize"
|
2267
|
+
version = "1.8.1"
|
2268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2269
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
2270
|
+
|
2271
|
+
[[package]]
|
2272
|
+
name = "zerotrie"
|
2273
|
+
version = "0.2.2"
|
2274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2275
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
2276
|
+
dependencies = [
|
2277
|
+
"displaydoc",
|
2278
|
+
"yoke",
|
2279
|
+
"zerofrom",
|
2280
|
+
]
|
2281
|
+
|
2282
|
+
[[package]]
|
2283
|
+
name = "zerovec"
|
2284
|
+
version = "0.11.2"
|
2285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2286
|
+
checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
|
2287
|
+
dependencies = [
|
2288
|
+
"yoke",
|
2289
|
+
"zerofrom",
|
2290
|
+
"zerovec-derive",
|
2291
|
+
]
|
2292
|
+
|
2293
|
+
[[package]]
|
2294
|
+
name = "zerovec-derive"
|
2295
|
+
version = "0.11.1"
|
2296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2297
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
2298
|
+
dependencies = [
|
2299
|
+
"proc-macro2",
|
2300
|
+
"quote",
|
2301
|
+
"syn",
|
2302
|
+
]
|