rubydex 0.1.0.beta12-aarch64-linux

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.
Files changed (109) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +23 -0
  3. data/README.md +125 -0
  4. data/THIRD_PARTY_LICENSES.html +4562 -0
  5. data/exe/rdx +47 -0
  6. data/ext/rubydex/declaration.c +453 -0
  7. data/ext/rubydex/declaration.h +23 -0
  8. data/ext/rubydex/definition.c +284 -0
  9. data/ext/rubydex/definition.h +28 -0
  10. data/ext/rubydex/diagnostic.c +6 -0
  11. data/ext/rubydex/diagnostic.h +11 -0
  12. data/ext/rubydex/document.c +97 -0
  13. data/ext/rubydex/document.h +10 -0
  14. data/ext/rubydex/extconf.rb +138 -0
  15. data/ext/rubydex/graph.c +681 -0
  16. data/ext/rubydex/graph.h +10 -0
  17. data/ext/rubydex/handle.h +44 -0
  18. data/ext/rubydex/location.c +22 -0
  19. data/ext/rubydex/location.h +15 -0
  20. data/ext/rubydex/reference.c +123 -0
  21. data/ext/rubydex/reference.h +15 -0
  22. data/ext/rubydex/rubydex.c +22 -0
  23. data/ext/rubydex/utils.c +108 -0
  24. data/ext/rubydex/utils.h +34 -0
  25. data/lib/rubydex/3.2/rubydex.so +0 -0
  26. data/lib/rubydex/3.3/rubydex.so +0 -0
  27. data/lib/rubydex/3.4/rubydex.so +0 -0
  28. data/lib/rubydex/4.0/rubydex.so +0 -0
  29. data/lib/rubydex/comment.rb +17 -0
  30. data/lib/rubydex/diagnostic.rb +21 -0
  31. data/lib/rubydex/failures.rb +15 -0
  32. data/lib/rubydex/graph.rb +98 -0
  33. data/lib/rubydex/keyword.rb +17 -0
  34. data/lib/rubydex/keyword_parameter.rb +13 -0
  35. data/lib/rubydex/librubydex_sys.so +0 -0
  36. data/lib/rubydex/location.rb +90 -0
  37. data/lib/rubydex/mixin.rb +22 -0
  38. data/lib/rubydex/version.rb +5 -0
  39. data/lib/rubydex.rb +23 -0
  40. data/rbi/rubydex.rbi +422 -0
  41. data/rust/Cargo.lock +1851 -0
  42. data/rust/Cargo.toml +29 -0
  43. data/rust/about.hbs +78 -0
  44. data/rust/about.toml +10 -0
  45. data/rust/rubydex/Cargo.toml +42 -0
  46. data/rust/rubydex/src/compile_assertions.rs +13 -0
  47. data/rust/rubydex/src/diagnostic.rs +110 -0
  48. data/rust/rubydex/src/errors.rs +28 -0
  49. data/rust/rubydex/src/indexing/local_graph.rs +224 -0
  50. data/rust/rubydex/src/indexing/rbs_indexer.rs +1551 -0
  51. data/rust/rubydex/src/indexing/ruby_indexer.rs +2329 -0
  52. data/rust/rubydex/src/indexing/ruby_indexer_tests.rs +4962 -0
  53. data/rust/rubydex/src/indexing.rs +210 -0
  54. data/rust/rubydex/src/integrity.rs +279 -0
  55. data/rust/rubydex/src/job_queue.rs +205 -0
  56. data/rust/rubydex/src/lib.rs +17 -0
  57. data/rust/rubydex/src/listing.rs +371 -0
  58. data/rust/rubydex/src/main.rs +160 -0
  59. data/rust/rubydex/src/model/built_in.rs +83 -0
  60. data/rust/rubydex/src/model/comment.rs +24 -0
  61. data/rust/rubydex/src/model/declaration.rs +671 -0
  62. data/rust/rubydex/src/model/definitions.rs +1682 -0
  63. data/rust/rubydex/src/model/document.rs +222 -0
  64. data/rust/rubydex/src/model/encoding.rs +22 -0
  65. data/rust/rubydex/src/model/graph.rs +3754 -0
  66. data/rust/rubydex/src/model/id.rs +110 -0
  67. data/rust/rubydex/src/model/identity_maps.rs +58 -0
  68. data/rust/rubydex/src/model/ids.rs +60 -0
  69. data/rust/rubydex/src/model/keywords.rs +256 -0
  70. data/rust/rubydex/src/model/name.rs +298 -0
  71. data/rust/rubydex/src/model/references.rs +111 -0
  72. data/rust/rubydex/src/model/string_ref.rs +50 -0
  73. data/rust/rubydex/src/model/visibility.rs +41 -0
  74. data/rust/rubydex/src/model.rs +15 -0
  75. data/rust/rubydex/src/offset.rs +147 -0
  76. data/rust/rubydex/src/position.rs +6 -0
  77. data/rust/rubydex/src/query.rs +1841 -0
  78. data/rust/rubydex/src/resolution.rs +6517 -0
  79. data/rust/rubydex/src/stats/memory.rs +71 -0
  80. data/rust/rubydex/src/stats/orphan_report.rs +264 -0
  81. data/rust/rubydex/src/stats/timer.rs +127 -0
  82. data/rust/rubydex/src/stats.rs +11 -0
  83. data/rust/rubydex/src/test_utils/context.rs +226 -0
  84. data/rust/rubydex/src/test_utils/graph_test.rs +730 -0
  85. data/rust/rubydex/src/test_utils/local_graph_test.rs +602 -0
  86. data/rust/rubydex/src/test_utils.rs +52 -0
  87. data/rust/rubydex/src/visualization/dot.rs +192 -0
  88. data/rust/rubydex/src/visualization.rs +6 -0
  89. data/rust/rubydex/tests/cli.rs +185 -0
  90. data/rust/rubydex-mcp/Cargo.toml +28 -0
  91. data/rust/rubydex-mcp/src/main.rs +48 -0
  92. data/rust/rubydex-mcp/src/server.rs +1145 -0
  93. data/rust/rubydex-mcp/src/tools.rs +49 -0
  94. data/rust/rubydex-mcp/tests/mcp.rs +302 -0
  95. data/rust/rubydex-sys/Cargo.toml +20 -0
  96. data/rust/rubydex-sys/build.rs +14 -0
  97. data/rust/rubydex-sys/cbindgen.toml +12 -0
  98. data/rust/rubydex-sys/src/declaration_api.rs +485 -0
  99. data/rust/rubydex-sys/src/definition_api.rs +443 -0
  100. data/rust/rubydex-sys/src/diagnostic_api.rs +99 -0
  101. data/rust/rubydex-sys/src/document_api.rs +85 -0
  102. data/rust/rubydex-sys/src/graph_api.rs +948 -0
  103. data/rust/rubydex-sys/src/lib.rs +79 -0
  104. data/rust/rubydex-sys/src/location_api.rs +79 -0
  105. data/rust/rubydex-sys/src/name_api.rs +135 -0
  106. data/rust/rubydex-sys/src/reference_api.rs +267 -0
  107. data/rust/rubydex-sys/src/utils.rs +70 -0
  108. data/rust/rustfmt.toml +2 -0
  109. metadata +159 -0
data/rust/Cargo.lock ADDED
@@ -0,0 +1,1851 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.3"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "android_system_properties"
16
+ version = "0.1.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anstream"
25
+ version = "0.6.19"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
28
+ dependencies = [
29
+ "anstyle",
30
+ "anstyle-parse",
31
+ "anstyle-query",
32
+ "anstyle-wincon",
33
+ "colorchoice",
34
+ "is_terminal_polyfill",
35
+ "utf8parse",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "anstyle"
40
+ version = "1.0.11"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
43
+
44
+ [[package]]
45
+ name = "anstyle-parse"
46
+ version = "0.2.7"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
49
+ dependencies = [
50
+ "utf8parse",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-query"
55
+ version = "1.1.3"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
58
+ dependencies = [
59
+ "windows-sys 0.59.0",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "anstyle-wincon"
64
+ version = "3.0.9"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
67
+ dependencies = [
68
+ "anstyle",
69
+ "once_cell_polyfill",
70
+ "windows-sys 0.59.0",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "assert_cmd"
75
+ version = "2.0.17"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66"
78
+ dependencies = [
79
+ "anstyle",
80
+ "bstr",
81
+ "doc-comment",
82
+ "libc",
83
+ "predicates",
84
+ "predicates-core",
85
+ "predicates-tree",
86
+ "wait-timeout",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "async-trait"
91
+ version = "0.1.89"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
94
+ dependencies = [
95
+ "proc-macro2",
96
+ "quote",
97
+ "syn",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "autocfg"
102
+ version = "1.5.0"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
105
+
106
+ [[package]]
107
+ name = "base64"
108
+ version = "0.22.1"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
111
+
112
+ [[package]]
113
+ name = "bindgen"
114
+ version = "0.72.1"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
117
+ dependencies = [
118
+ "bitflags",
119
+ "cexpr",
120
+ "clang-sys",
121
+ "itertools",
122
+ "log",
123
+ "prettyplease",
124
+ "proc-macro2",
125
+ "quote",
126
+ "regex",
127
+ "rustc-hash",
128
+ "shlex",
129
+ "syn",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "bitflags"
134
+ version = "2.9.1"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
137
+
138
+ [[package]]
139
+ name = "bstr"
140
+ version = "1.12.0"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
143
+ dependencies = [
144
+ "memchr",
145
+ "regex-automata",
146
+ "serde",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "bumpalo"
151
+ version = "3.19.1"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
154
+
155
+ [[package]]
156
+ name = "bytecount"
157
+ version = "0.6.9"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
160
+
161
+ [[package]]
162
+ name = "bytes"
163
+ version = "1.11.1"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
166
+
167
+ [[package]]
168
+ name = "cbindgen"
169
+ version = "0.29.0"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "975982cdb7ad6a142be15bdf84aea7ec6a9e5d4d797c004d43185b24cfe4e684"
172
+ dependencies = [
173
+ "clap",
174
+ "heck",
175
+ "indexmap",
176
+ "log",
177
+ "proc-macro2",
178
+ "quote",
179
+ "serde",
180
+ "serde_json",
181
+ "syn",
182
+ "tempfile",
183
+ "toml",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "cc"
188
+ version = "1.2.30"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "deec109607ca693028562ed836a5f1c4b8bd77755c4e132fc5ce11b0b6211ae7"
191
+ dependencies = [
192
+ "shlex",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "cexpr"
197
+ version = "0.6.0"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
200
+ dependencies = [
201
+ "nom",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "cfg-if"
206
+ version = "1.0.1"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
209
+
210
+ [[package]]
211
+ name = "chrono"
212
+ version = "0.4.43"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
215
+ dependencies = [
216
+ "iana-time-zone",
217
+ "js-sys",
218
+ "num-traits",
219
+ "serde",
220
+ "wasm-bindgen",
221
+ "windows-link 0.2.1",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "clang-sys"
226
+ version = "1.8.1"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
229
+ dependencies = [
230
+ "glob",
231
+ "libc",
232
+ "libloading",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "clap"
237
+ version = "4.5.41"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "be92d32e80243a54711e5d7ce823c35c41c9d929dc4ab58e1276f625841aadf9"
240
+ dependencies = [
241
+ "clap_builder",
242
+ "clap_derive",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "clap_builder"
247
+ version = "4.5.41"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "707eab41e9622f9139419d573eca0900137718000c517d47da73045f54331c3d"
250
+ dependencies = [
251
+ "anstream",
252
+ "anstyle",
253
+ "clap_lex",
254
+ "strsim",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "clap_derive"
259
+ version = "4.5.41"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "ef4f52386a59ca4c860f7393bcf8abd8dfd91ecccc0f774635ff68e92eeef491"
262
+ dependencies = [
263
+ "heck",
264
+ "proc-macro2",
265
+ "quote",
266
+ "syn",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "clap_lex"
271
+ version = "0.7.5"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
274
+
275
+ [[package]]
276
+ name = "colorchoice"
277
+ version = "1.0.4"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
280
+
281
+ [[package]]
282
+ name = "core-foundation-sys"
283
+ version = "0.8.7"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
286
+
287
+ [[package]]
288
+ name = "crossbeam-channel"
289
+ version = "0.5.15"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
292
+ dependencies = [
293
+ "crossbeam-utils",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "crossbeam-deque"
298
+ version = "0.8.6"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
301
+ dependencies = [
302
+ "crossbeam-epoch",
303
+ "crossbeam-utils",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "crossbeam-epoch"
308
+ version = "0.9.18"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
311
+ dependencies = [
312
+ "crossbeam-utils",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "crossbeam-utils"
317
+ version = "0.8.21"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
320
+
321
+ [[package]]
322
+ name = "darling"
323
+ version = "0.23.0"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
326
+ dependencies = [
327
+ "darling_core",
328
+ "darling_macro",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "darling_core"
333
+ version = "0.23.0"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
336
+ dependencies = [
337
+ "ident_case",
338
+ "proc-macro2",
339
+ "quote",
340
+ "strsim",
341
+ "syn",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "darling_macro"
346
+ version = "0.23.0"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
349
+ dependencies = [
350
+ "darling_core",
351
+ "quote",
352
+ "syn",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "difflib"
357
+ version = "0.4.0"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
360
+
361
+ [[package]]
362
+ name = "displaydoc"
363
+ version = "0.2.5"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
366
+ dependencies = [
367
+ "proc-macro2",
368
+ "quote",
369
+ "syn",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "doc-comment"
374
+ version = "0.3.3"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
377
+
378
+ [[package]]
379
+ name = "dyn-clone"
380
+ version = "1.0.20"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
383
+
384
+ [[package]]
385
+ name = "either"
386
+ version = "1.15.0"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
389
+
390
+ [[package]]
391
+ name = "equivalent"
392
+ version = "1.0.2"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
395
+
396
+ [[package]]
397
+ name = "errno"
398
+ version = "0.3.13"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
401
+ dependencies = [
402
+ "libc",
403
+ "windows-sys 0.60.2",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "fastrand"
408
+ version = "2.3.0"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
411
+
412
+ [[package]]
413
+ name = "float-cmp"
414
+ version = "0.10.0"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
417
+ dependencies = [
418
+ "num-traits",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "form_urlencoded"
423
+ version = "1.2.1"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
426
+ dependencies = [
427
+ "percent-encoding",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "futures"
432
+ version = "0.3.31"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
435
+ dependencies = [
436
+ "futures-channel",
437
+ "futures-core",
438
+ "futures-executor",
439
+ "futures-io",
440
+ "futures-sink",
441
+ "futures-task",
442
+ "futures-util",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "futures-channel"
447
+ version = "0.3.31"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
450
+ dependencies = [
451
+ "futures-core",
452
+ "futures-sink",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "futures-core"
457
+ version = "0.3.31"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
460
+
461
+ [[package]]
462
+ name = "futures-executor"
463
+ version = "0.3.31"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
466
+ dependencies = [
467
+ "futures-core",
468
+ "futures-task",
469
+ "futures-util",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "futures-io"
474
+ version = "0.3.31"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
477
+
478
+ [[package]]
479
+ name = "futures-macro"
480
+ version = "0.3.31"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
483
+ dependencies = [
484
+ "proc-macro2",
485
+ "quote",
486
+ "syn",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "futures-sink"
491
+ version = "0.3.31"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
494
+
495
+ [[package]]
496
+ name = "futures-task"
497
+ version = "0.3.31"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
500
+
501
+ [[package]]
502
+ name = "futures-util"
503
+ version = "0.3.31"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
506
+ dependencies = [
507
+ "futures-channel",
508
+ "futures-core",
509
+ "futures-io",
510
+ "futures-macro",
511
+ "futures-sink",
512
+ "futures-task",
513
+ "memchr",
514
+ "pin-project-lite",
515
+ "pin-utils",
516
+ "slab",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "getrandom"
521
+ version = "0.3.3"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
524
+ dependencies = [
525
+ "cfg-if",
526
+ "libc",
527
+ "r-efi",
528
+ "wasi",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "glob"
533
+ version = "0.3.2"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
536
+
537
+ [[package]]
538
+ name = "hashbrown"
539
+ version = "0.15.4"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
542
+
543
+ [[package]]
544
+ name = "heck"
545
+ version = "0.5.0"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
548
+
549
+ [[package]]
550
+ name = "iana-time-zone"
551
+ version = "0.1.65"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
554
+ dependencies = [
555
+ "android_system_properties",
556
+ "core-foundation-sys",
557
+ "iana-time-zone-haiku",
558
+ "js-sys",
559
+ "log",
560
+ "wasm-bindgen",
561
+ "windows-core",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "iana-time-zone-haiku"
566
+ version = "0.1.2"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
569
+ dependencies = [
570
+ "cc",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "icu_collections"
575
+ version = "2.0.0"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
578
+ dependencies = [
579
+ "displaydoc",
580
+ "potential_utf",
581
+ "yoke",
582
+ "zerofrom",
583
+ "zerovec",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "icu_locale_core"
588
+ version = "2.0.0"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
591
+ dependencies = [
592
+ "displaydoc",
593
+ "litemap",
594
+ "tinystr",
595
+ "writeable",
596
+ "zerovec",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "icu_normalizer"
601
+ version = "2.0.0"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
604
+ dependencies = [
605
+ "displaydoc",
606
+ "icu_collections",
607
+ "icu_normalizer_data",
608
+ "icu_properties",
609
+ "icu_provider",
610
+ "smallvec",
611
+ "zerovec",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "icu_normalizer_data"
616
+ version = "2.0.0"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
619
+
620
+ [[package]]
621
+ name = "icu_properties"
622
+ version = "2.0.1"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
625
+ dependencies = [
626
+ "displaydoc",
627
+ "icu_collections",
628
+ "icu_locale_core",
629
+ "icu_properties_data",
630
+ "icu_provider",
631
+ "potential_utf",
632
+ "zerotrie",
633
+ "zerovec",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "icu_properties_data"
638
+ version = "2.0.1"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
641
+
642
+ [[package]]
643
+ name = "icu_provider"
644
+ version = "2.0.0"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
647
+ dependencies = [
648
+ "displaydoc",
649
+ "icu_locale_core",
650
+ "stable_deref_trait",
651
+ "tinystr",
652
+ "writeable",
653
+ "yoke",
654
+ "zerofrom",
655
+ "zerotrie",
656
+ "zerovec",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "ident_case"
661
+ version = "1.0.1"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
664
+
665
+ [[package]]
666
+ name = "idna"
667
+ version = "1.0.3"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
670
+ dependencies = [
671
+ "idna_adapter",
672
+ "smallvec",
673
+ "utf8_iter",
674
+ ]
675
+
676
+ [[package]]
677
+ name = "idna_adapter"
678
+ version = "1.2.1"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
681
+ dependencies = [
682
+ "icu_normalizer",
683
+ "icu_properties",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "indexmap"
688
+ version = "2.10.0"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
691
+ dependencies = [
692
+ "equivalent",
693
+ "hashbrown",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "is_terminal_polyfill"
698
+ version = "1.70.1"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
701
+
702
+ [[package]]
703
+ name = "itertools"
704
+ version = "0.13.0"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
707
+ dependencies = [
708
+ "either",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "itoa"
713
+ version = "1.0.15"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
716
+
717
+ [[package]]
718
+ name = "js-sys"
719
+ version = "0.3.85"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
722
+ dependencies = [
723
+ "once_cell",
724
+ "wasm-bindgen",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "libc"
729
+ version = "0.2.174"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
732
+
733
+ [[package]]
734
+ name = "libloading"
735
+ version = "0.8.8"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
738
+ dependencies = [
739
+ "cfg-if",
740
+ "windows-targets 0.53.3",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "line-index"
745
+ version = "0.1.2"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "3e27e0ed5a392a7f5ba0b3808a2afccff16c64933312c84b57618b49d1209bd2"
748
+ dependencies = [
749
+ "nohash-hasher",
750
+ "text-size",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "linux-raw-sys"
755
+ version = "0.9.4"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
758
+
759
+ [[package]]
760
+ name = "litemap"
761
+ version = "0.8.0"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
764
+
765
+ [[package]]
766
+ name = "log"
767
+ version = "0.4.27"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
770
+
771
+ [[package]]
772
+ name = "memchr"
773
+ version = "2.7.5"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
776
+
777
+ [[package]]
778
+ name = "minimal-lexical"
779
+ version = "0.2.1"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
782
+
783
+ [[package]]
784
+ name = "nohash-hasher"
785
+ version = "0.2.0"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
788
+
789
+ [[package]]
790
+ name = "nom"
791
+ version = "7.1.3"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
794
+ dependencies = [
795
+ "memchr",
796
+ "minimal-lexical",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "normalize-line-endings"
801
+ version = "0.3.0"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
804
+
805
+ [[package]]
806
+ name = "num-traits"
807
+ version = "0.2.19"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
810
+ dependencies = [
811
+ "autocfg",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "once_cell"
816
+ version = "1.21.3"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
819
+
820
+ [[package]]
821
+ name = "once_cell_polyfill"
822
+ version = "1.70.1"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
825
+
826
+ [[package]]
827
+ name = "pastey"
828
+ version = "0.2.1"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "b867cad97c0791bbd3aaa6472142568c6c9e8f71937e98379f584cfb0cf35bec"
831
+
832
+ [[package]]
833
+ name = "percent-encoding"
834
+ version = "2.3.1"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
837
+
838
+ [[package]]
839
+ name = "pin-project-lite"
840
+ version = "0.2.16"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
843
+
844
+ [[package]]
845
+ name = "pin-utils"
846
+ version = "0.1.0"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
849
+
850
+ [[package]]
851
+ name = "potential_utf"
852
+ version = "0.1.2"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
855
+ dependencies = [
856
+ "zerovec",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "predicates"
861
+ version = "3.1.3"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
864
+ dependencies = [
865
+ "anstyle",
866
+ "difflib",
867
+ "float-cmp",
868
+ "normalize-line-endings",
869
+ "predicates-core",
870
+ "regex",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "predicates-core"
875
+ version = "1.0.9"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
878
+
879
+ [[package]]
880
+ name = "predicates-tree"
881
+ version = "1.0.12"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
884
+ dependencies = [
885
+ "predicates-core",
886
+ "termtree",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "prettyplease"
891
+ version = "0.2.36"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2"
894
+ dependencies = [
895
+ "proc-macro2",
896
+ "syn",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "proc-macro2"
901
+ version = "1.0.95"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
904
+ dependencies = [
905
+ "unicode-ident",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "quote"
910
+ version = "1.0.40"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
913
+ dependencies = [
914
+ "proc-macro2",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "r-efi"
919
+ version = "5.3.0"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
922
+
923
+ [[package]]
924
+ name = "ref-cast"
925
+ version = "1.0.25"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
928
+ dependencies = [
929
+ "ref-cast-impl",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "ref-cast-impl"
934
+ version = "1.0.25"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
937
+ dependencies = [
938
+ "proc-macro2",
939
+ "quote",
940
+ "syn",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "regex"
945
+ version = "1.11.1"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
948
+ dependencies = [
949
+ "aho-corasick",
950
+ "memchr",
951
+ "regex-automata",
952
+ "regex-syntax",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "regex-automata"
957
+ version = "0.4.9"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
960
+ dependencies = [
961
+ "aho-corasick",
962
+ "memchr",
963
+ "regex-syntax",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "regex-syntax"
968
+ version = "0.8.5"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
971
+
972
+ [[package]]
973
+ name = "rmcp"
974
+ version = "0.15.0"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "1bef41ebc9ebed2c1b1d90203e9d1756091e8a00bbc3107676151f39868ca0ee"
977
+ dependencies = [
978
+ "async-trait",
979
+ "base64",
980
+ "chrono",
981
+ "futures",
982
+ "pastey",
983
+ "pin-project-lite",
984
+ "rmcp-macros",
985
+ "schemars",
986
+ "serde",
987
+ "serde_json",
988
+ "thiserror",
989
+ "tokio",
990
+ "tokio-util",
991
+ "tracing",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "rmcp-macros"
996
+ version = "0.15.0"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "0e88ad84b8b6237a934534a62b379a5be6388915663c0cc598ceb9b3292bbbfe"
999
+ dependencies = [
1000
+ "darling",
1001
+ "proc-macro2",
1002
+ "quote",
1003
+ "serde_json",
1004
+ "syn",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "ruby-prism"
1009
+ version = "1.9.0"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "3b302f00359d0b5423a600314935ca5f994484e15da2db5345631d28c6e029d6"
1012
+ dependencies = [
1013
+ "ruby-prism-sys",
1014
+ "serde",
1015
+ "serde_json",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "ruby-prism-sys"
1020
+ version = "1.9.0"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "9f85fd9571455bdca2b3bf0b2f543cd13ac39d5de0026a8eb2deb94ffd264f00"
1023
+ dependencies = [
1024
+ "bindgen",
1025
+ "cc",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "ruby-rbs"
1030
+ version = "0.3.0"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "923050067d886173020f9fd428bddd135b535d16a1a8ac74ba16e67bb8ab27eb"
1033
+ dependencies = [
1034
+ "ruby-rbs-sys",
1035
+ "serde",
1036
+ "serde_yaml",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "ruby-rbs-sys"
1041
+ version = "0.3.0"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "d6dd91ae70c8232a7426445e7a687e0055c3619157fdcf43ab13776d09eeb939"
1044
+ dependencies = [
1045
+ "bindgen",
1046
+ "cc",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "rubydex"
1051
+ version = "0.1.0"
1052
+ dependencies = [
1053
+ "assert_cmd",
1054
+ "bitflags",
1055
+ "bytecount",
1056
+ "clap",
1057
+ "crossbeam-channel",
1058
+ "crossbeam-deque",
1059
+ "crossbeam-utils",
1060
+ "glob",
1061
+ "libc",
1062
+ "line-index",
1063
+ "predicates",
1064
+ "regex",
1065
+ "ruby-prism",
1066
+ "ruby-rbs",
1067
+ "rubydex",
1068
+ "tempfile",
1069
+ "url",
1070
+ "xxhash-rust",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "rubydex-mcp"
1075
+ version = "0.1.0"
1076
+ dependencies = [
1077
+ "assert_cmd",
1078
+ "clap",
1079
+ "rmcp",
1080
+ "rubydex",
1081
+ "schemars",
1082
+ "serde",
1083
+ "serde_json",
1084
+ "tokio",
1085
+ "url",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "rubydex-sys"
1090
+ version = "0.1.0"
1091
+ dependencies = [
1092
+ "cbindgen",
1093
+ "libc",
1094
+ "line-index",
1095
+ "rubydex",
1096
+ "url",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "rustc-hash"
1101
+ version = "2.1.1"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1104
+
1105
+ [[package]]
1106
+ name = "rustix"
1107
+ version = "1.0.8"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
1110
+ dependencies = [
1111
+ "bitflags",
1112
+ "errno",
1113
+ "libc",
1114
+ "linux-raw-sys",
1115
+ "windows-sys 0.60.2",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "rustversion"
1120
+ version = "1.0.22"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1123
+
1124
+ [[package]]
1125
+ name = "ryu"
1126
+ version = "1.0.20"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1129
+
1130
+ [[package]]
1131
+ name = "schemars"
1132
+ version = "1.2.1"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
1135
+ dependencies = [
1136
+ "chrono",
1137
+ "dyn-clone",
1138
+ "ref-cast",
1139
+ "schemars_derive",
1140
+ "serde",
1141
+ "serde_json",
1142
+ ]
1143
+
1144
+ [[package]]
1145
+ name = "schemars_derive"
1146
+ version = "1.2.1"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
1149
+ dependencies = [
1150
+ "proc-macro2",
1151
+ "quote",
1152
+ "serde_derive_internals",
1153
+ "syn",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "serde"
1158
+ version = "1.0.219"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1161
+ dependencies = [
1162
+ "serde_derive",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "serde_derive"
1167
+ version = "1.0.219"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1170
+ dependencies = [
1171
+ "proc-macro2",
1172
+ "quote",
1173
+ "syn",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "serde_derive_internals"
1178
+ version = "0.29.1"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1181
+ dependencies = [
1182
+ "proc-macro2",
1183
+ "quote",
1184
+ "syn",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "serde_json"
1189
+ version = "1.0.141"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3"
1192
+ dependencies = [
1193
+ "itoa",
1194
+ "memchr",
1195
+ "ryu",
1196
+ "serde",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "serde_spanned"
1201
+ version = "0.6.9"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1204
+ dependencies = [
1205
+ "serde",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "serde_yaml"
1210
+ version = "0.9.34+deprecated"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
1213
+ dependencies = [
1214
+ "indexmap",
1215
+ "itoa",
1216
+ "ryu",
1217
+ "serde",
1218
+ "unsafe-libyaml",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "shlex"
1223
+ version = "1.3.0"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1226
+
1227
+ [[package]]
1228
+ name = "slab"
1229
+ version = "0.4.12"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1232
+
1233
+ [[package]]
1234
+ name = "smallvec"
1235
+ version = "1.15.1"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1238
+
1239
+ [[package]]
1240
+ name = "stable_deref_trait"
1241
+ version = "1.2.0"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1244
+
1245
+ [[package]]
1246
+ name = "strsim"
1247
+ version = "0.11.1"
1248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1249
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1250
+
1251
+ [[package]]
1252
+ name = "syn"
1253
+ version = "2.0.104"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
1256
+ dependencies = [
1257
+ "proc-macro2",
1258
+ "quote",
1259
+ "unicode-ident",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "synstructure"
1264
+ version = "0.13.2"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1267
+ dependencies = [
1268
+ "proc-macro2",
1269
+ "quote",
1270
+ "syn",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "tempfile"
1275
+ version = "3.20.0"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
1278
+ dependencies = [
1279
+ "fastrand",
1280
+ "getrandom",
1281
+ "once_cell",
1282
+ "rustix",
1283
+ "windows-sys 0.59.0",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "termtree"
1288
+ version = "0.5.1"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1291
+
1292
+ [[package]]
1293
+ name = "text-size"
1294
+ version = "1.1.1"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
1297
+
1298
+ [[package]]
1299
+ name = "thiserror"
1300
+ version = "2.0.18"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1303
+ dependencies = [
1304
+ "thiserror-impl",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "thiserror-impl"
1309
+ version = "2.0.18"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1312
+ dependencies = [
1313
+ "proc-macro2",
1314
+ "quote",
1315
+ "syn",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "tinystr"
1320
+ version = "0.8.1"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
1323
+ dependencies = [
1324
+ "displaydoc",
1325
+ "zerovec",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "tokio"
1330
+ version = "1.49.0"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1333
+ dependencies = [
1334
+ "bytes",
1335
+ "pin-project-lite",
1336
+ "tokio-macros",
1337
+ ]
1338
+
1339
+ [[package]]
1340
+ name = "tokio-macros"
1341
+ version = "2.6.0"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
1344
+ dependencies = [
1345
+ "proc-macro2",
1346
+ "quote",
1347
+ "syn",
1348
+ ]
1349
+
1350
+ [[package]]
1351
+ name = "tokio-util"
1352
+ version = "0.7.18"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1355
+ dependencies = [
1356
+ "bytes",
1357
+ "futures-core",
1358
+ "futures-sink",
1359
+ "pin-project-lite",
1360
+ "tokio",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "toml"
1365
+ version = "0.8.23"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1368
+ dependencies = [
1369
+ "serde",
1370
+ "serde_spanned",
1371
+ "toml_datetime",
1372
+ "toml_edit",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "toml_datetime"
1377
+ version = "0.6.11"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1380
+ dependencies = [
1381
+ "serde",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "toml_edit"
1386
+ version = "0.22.27"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1389
+ dependencies = [
1390
+ "indexmap",
1391
+ "serde",
1392
+ "serde_spanned",
1393
+ "toml_datetime",
1394
+ "toml_write",
1395
+ "winnow",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "toml_write"
1400
+ version = "0.1.2"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1403
+
1404
+ [[package]]
1405
+ name = "tracing"
1406
+ version = "0.1.44"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1409
+ dependencies = [
1410
+ "pin-project-lite",
1411
+ "tracing-attributes",
1412
+ "tracing-core",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "tracing-attributes"
1417
+ version = "0.1.31"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1420
+ dependencies = [
1421
+ "proc-macro2",
1422
+ "quote",
1423
+ "syn",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "tracing-core"
1428
+ version = "0.1.36"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1431
+ dependencies = [
1432
+ "once_cell",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "unicode-ident"
1437
+ version = "1.0.18"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1440
+
1441
+ [[package]]
1442
+ name = "unsafe-libyaml"
1443
+ version = "0.2.11"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
1446
+
1447
+ [[package]]
1448
+ name = "url"
1449
+ version = "2.5.4"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
1452
+ dependencies = [
1453
+ "form_urlencoded",
1454
+ "idna",
1455
+ "percent-encoding",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "utf8_iter"
1460
+ version = "1.0.4"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1463
+
1464
+ [[package]]
1465
+ name = "utf8parse"
1466
+ version = "0.2.2"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1469
+
1470
+ [[package]]
1471
+ name = "wait-timeout"
1472
+ version = "0.2.1"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1475
+ dependencies = [
1476
+ "libc",
1477
+ ]
1478
+
1479
+ [[package]]
1480
+ name = "wasi"
1481
+ version = "0.14.2+wasi-0.2.4"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
1484
+ dependencies = [
1485
+ "wit-bindgen-rt",
1486
+ ]
1487
+
1488
+ [[package]]
1489
+ name = "wasm-bindgen"
1490
+ version = "0.2.108"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
1493
+ dependencies = [
1494
+ "cfg-if",
1495
+ "once_cell",
1496
+ "rustversion",
1497
+ "wasm-bindgen-macro",
1498
+ "wasm-bindgen-shared",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "wasm-bindgen-macro"
1503
+ version = "0.2.108"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
1506
+ dependencies = [
1507
+ "quote",
1508
+ "wasm-bindgen-macro-support",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "wasm-bindgen-macro-support"
1513
+ version = "0.2.108"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
1516
+ dependencies = [
1517
+ "bumpalo",
1518
+ "proc-macro2",
1519
+ "quote",
1520
+ "syn",
1521
+ "wasm-bindgen-shared",
1522
+ ]
1523
+
1524
+ [[package]]
1525
+ name = "wasm-bindgen-shared"
1526
+ version = "0.2.108"
1527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1528
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
1529
+ dependencies = [
1530
+ "unicode-ident",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "windows-core"
1535
+ version = "0.62.2"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1538
+ dependencies = [
1539
+ "windows-implement",
1540
+ "windows-interface",
1541
+ "windows-link 0.2.1",
1542
+ "windows-result",
1543
+ "windows-strings",
1544
+ ]
1545
+
1546
+ [[package]]
1547
+ name = "windows-implement"
1548
+ version = "0.60.2"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1551
+ dependencies = [
1552
+ "proc-macro2",
1553
+ "quote",
1554
+ "syn",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "windows-interface"
1559
+ version = "0.59.3"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1562
+ dependencies = [
1563
+ "proc-macro2",
1564
+ "quote",
1565
+ "syn",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "windows-link"
1570
+ version = "0.1.3"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
1573
+
1574
+ [[package]]
1575
+ name = "windows-link"
1576
+ version = "0.2.1"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1579
+
1580
+ [[package]]
1581
+ name = "windows-result"
1582
+ version = "0.4.1"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1585
+ dependencies = [
1586
+ "windows-link 0.2.1",
1587
+ ]
1588
+
1589
+ [[package]]
1590
+ name = "windows-strings"
1591
+ version = "0.5.1"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1594
+ dependencies = [
1595
+ "windows-link 0.2.1",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "windows-sys"
1600
+ version = "0.59.0"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1603
+ dependencies = [
1604
+ "windows-targets 0.52.6",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "windows-sys"
1609
+ version = "0.60.2"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1612
+ dependencies = [
1613
+ "windows-targets 0.53.3",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "windows-targets"
1618
+ version = "0.52.6"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1621
+ dependencies = [
1622
+ "windows_aarch64_gnullvm 0.52.6",
1623
+ "windows_aarch64_msvc 0.52.6",
1624
+ "windows_i686_gnu 0.52.6",
1625
+ "windows_i686_gnullvm 0.52.6",
1626
+ "windows_i686_msvc 0.52.6",
1627
+ "windows_x86_64_gnu 0.52.6",
1628
+ "windows_x86_64_gnullvm 0.52.6",
1629
+ "windows_x86_64_msvc 0.52.6",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "windows-targets"
1634
+ version = "0.53.3"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
1637
+ dependencies = [
1638
+ "windows-link 0.1.3",
1639
+ "windows_aarch64_gnullvm 0.53.0",
1640
+ "windows_aarch64_msvc 0.53.0",
1641
+ "windows_i686_gnu 0.53.0",
1642
+ "windows_i686_gnullvm 0.53.0",
1643
+ "windows_i686_msvc 0.53.0",
1644
+ "windows_x86_64_gnu 0.53.0",
1645
+ "windows_x86_64_gnullvm 0.53.0",
1646
+ "windows_x86_64_msvc 0.53.0",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "windows_aarch64_gnullvm"
1651
+ version = "0.52.6"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1654
+
1655
+ [[package]]
1656
+ name = "windows_aarch64_gnullvm"
1657
+ version = "0.53.0"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
1660
+
1661
+ [[package]]
1662
+ name = "windows_aarch64_msvc"
1663
+ version = "0.52.6"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1666
+
1667
+ [[package]]
1668
+ name = "windows_aarch64_msvc"
1669
+ version = "0.53.0"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
1672
+
1673
+ [[package]]
1674
+ name = "windows_i686_gnu"
1675
+ version = "0.52.6"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1678
+
1679
+ [[package]]
1680
+ name = "windows_i686_gnu"
1681
+ version = "0.53.0"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
1684
+
1685
+ [[package]]
1686
+ name = "windows_i686_gnullvm"
1687
+ version = "0.52.6"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1690
+
1691
+ [[package]]
1692
+ name = "windows_i686_gnullvm"
1693
+ version = "0.53.0"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
1696
+
1697
+ [[package]]
1698
+ name = "windows_i686_msvc"
1699
+ version = "0.52.6"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1702
+
1703
+ [[package]]
1704
+ name = "windows_i686_msvc"
1705
+ version = "0.53.0"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
1708
+
1709
+ [[package]]
1710
+ name = "windows_x86_64_gnu"
1711
+ version = "0.52.6"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1714
+
1715
+ [[package]]
1716
+ name = "windows_x86_64_gnu"
1717
+ version = "0.53.0"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
1720
+
1721
+ [[package]]
1722
+ name = "windows_x86_64_gnullvm"
1723
+ version = "0.52.6"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1726
+
1727
+ [[package]]
1728
+ name = "windows_x86_64_gnullvm"
1729
+ version = "0.53.0"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
1732
+
1733
+ [[package]]
1734
+ name = "windows_x86_64_msvc"
1735
+ version = "0.52.6"
1736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1737
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1738
+
1739
+ [[package]]
1740
+ name = "windows_x86_64_msvc"
1741
+ version = "0.53.0"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
1744
+
1745
+ [[package]]
1746
+ name = "winnow"
1747
+ version = "0.7.12"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
1750
+ dependencies = [
1751
+ "memchr",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "wit-bindgen-rt"
1756
+ version = "0.39.0"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
1759
+ dependencies = [
1760
+ "bitflags",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "writeable"
1765
+ version = "0.6.1"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
1768
+
1769
+ [[package]]
1770
+ name = "xxhash-rust"
1771
+ version = "0.8.15"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
1774
+
1775
+ [[package]]
1776
+ name = "yoke"
1777
+ version = "0.8.0"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
1780
+ dependencies = [
1781
+ "serde",
1782
+ "stable_deref_trait",
1783
+ "yoke-derive",
1784
+ "zerofrom",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "yoke-derive"
1789
+ version = "0.8.0"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
1792
+ dependencies = [
1793
+ "proc-macro2",
1794
+ "quote",
1795
+ "syn",
1796
+ "synstructure",
1797
+ ]
1798
+
1799
+ [[package]]
1800
+ name = "zerofrom"
1801
+ version = "0.1.6"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
1804
+ dependencies = [
1805
+ "zerofrom-derive",
1806
+ ]
1807
+
1808
+ [[package]]
1809
+ name = "zerofrom-derive"
1810
+ version = "0.1.6"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
1813
+ dependencies = [
1814
+ "proc-macro2",
1815
+ "quote",
1816
+ "syn",
1817
+ "synstructure",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "zerotrie"
1822
+ version = "0.2.2"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
1825
+ dependencies = [
1826
+ "displaydoc",
1827
+ "yoke",
1828
+ "zerofrom",
1829
+ ]
1830
+
1831
+ [[package]]
1832
+ name = "zerovec"
1833
+ version = "0.11.2"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
1836
+ dependencies = [
1837
+ "yoke",
1838
+ "zerofrom",
1839
+ "zerovec-derive",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "zerovec-derive"
1844
+ version = "0.11.1"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
1847
+ dependencies = [
1848
+ "proc-macro2",
1849
+ "quote",
1850
+ "syn",
1851
+ ]