rubydex 0.2.8-aarch64-linux → 0.3.0-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 (71) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +69 -3
  3. data/THIRD_PARTY_LICENSES.html +168 -1381
  4. data/exe/rdx +136 -34
  5. data/ext/rubydex/declaration.c +1 -1
  6. data/ext/rubydex/definition.c +32 -4
  7. data/ext/rubydex/extconf.rb +0 -8
  8. data/ext/rubydex/graph.c +29 -18
  9. data/ext/rubydex/query.c +105 -0
  10. data/ext/rubydex/query.h +8 -0
  11. data/ext/rubydex/reference.c +60 -0
  12. data/ext/rubydex/rubydex.c +2 -0
  13. data/ext/rubydex/utils.c +12 -0
  14. data/ext/rubydex/utils.h +5 -0
  15. data/lib/rubydex/3.2/rubydex.so +0 -0
  16. data/lib/rubydex/3.3/rubydex.so +0 -0
  17. data/lib/rubydex/3.4/rubydex.so +0 -0
  18. data/lib/rubydex/4.0/rubydex.so +0 -0
  19. data/lib/rubydex/librubydex_sys.so +0 -0
  20. data/lib/rubydex/mcp_server/protocol.rb +156 -0
  21. data/lib/rubydex/mcp_server/tools/base_tool.rb +109 -0
  22. data/lib/rubydex/mcp_server/tools/codebase_stats_tool.rb +30 -0
  23. data/lib/rubydex/mcp_server/tools/find_constant_references_tool.rb +46 -0
  24. data/lib/rubydex/mcp_server/tools/get_declaration_tool.rb +68 -0
  25. data/lib/rubydex/mcp_server/tools/get_descendants_tool.rb +46 -0
  26. data/lib/rubydex/mcp_server/tools/get_file_declarations_tool.rb +55 -0
  27. data/lib/rubydex/mcp_server/tools/search_declarations_tool.rb +55 -0
  28. data/lib/rubydex/mcp_server.rb +219 -0
  29. data/lib/rubydex/version.rb +1 -1
  30. data/rbi/rubydex.rbi +26 -4
  31. data/rust/Cargo.lock +5 -552
  32. data/rust/Cargo.toml +0 -1
  33. data/rust/rubydex/Cargo.toml +1 -0
  34. data/rust/rubydex/benches/graph_memory.rs +22 -4
  35. data/rust/rubydex/src/compile_assertions.rs +15 -0
  36. data/rust/rubydex/src/config.rs +54 -34
  37. data/rust/rubydex/src/diagnostic.rs +1 -1
  38. data/rust/rubydex/src/indexing/rbs_indexer.rs +14 -2
  39. data/rust/rubydex/src/indexing/ruby_indexer.rs +49 -58
  40. data/rust/rubydex/src/indexing/ruby_indexer_tests.rs +72 -16
  41. data/rust/rubydex/src/listing.rs +159 -102
  42. data/rust/rubydex/src/main.rs +3 -125
  43. data/rust/rubydex/src/model/declaration.rs +0 -11
  44. data/rust/rubydex/src/model/definitions.rs +27 -26
  45. data/rust/rubydex/src/model/document.rs +43 -7
  46. data/rust/rubydex/src/model/graph.rs +47 -35
  47. data/rust/rubydex/src/model/id.rs +55 -0
  48. data/rust/rubydex/src/model/ids.rs +21 -9
  49. data/rust/rubydex/src/model/name.rs +35 -7
  50. data/rust/rubydex/src/model/references.rs +16 -13
  51. data/rust/rubydex/src/operation/applier.rs +0 -2
  52. data/rust/rubydex/src/operation/ruby_builder.rs +48 -59
  53. data/rust/rubydex/src/query/cypher/schema.rs +790 -0
  54. data/rust/rubydex/src/query/cypher/schema_info.rs +161 -0
  55. data/rust/rubydex/src/query/cypher/tests.rs +228 -0
  56. data/rust/rubydex/src/query/cypher.rs +57 -0
  57. data/rust/rubydex/src/query.rs +2 -0
  58. data/rust/rubydex/src/resolution.rs +248 -227
  59. data/rust/rubydex/src/resolution_tests.rs +263 -65
  60. data/rust/rubydex-sys/src/declaration_api.rs +6 -3
  61. data/rust/rubydex-sys/src/definition_api.rs +27 -7
  62. data/rust/rubydex-sys/src/graph_api.rs +175 -27
  63. data/rust/rubydex-sys/src/reference_api.rs +58 -12
  64. metadata +17 -10
  65. data/exe/rubydex_mcp +0 -17
  66. data/lib/rubydex/bin/rubydex_mcp +0 -0
  67. data/rust/rubydex-mcp/Cargo.toml +0 -34
  68. data/rust/rubydex-mcp/src/main.rs +0 -48
  69. data/rust/rubydex-mcp/src/server.rs +0 -1148
  70. data/rust/rubydex-mcp/src/tools.rs +0 -49
  71. data/rust/rubydex-mcp/tests/mcp.rs +0 -302
data/rust/Cargo.lock CHANGED
@@ -11,15 +11,6 @@ dependencies = [
11
11
  "memchr",
12
12
  ]
13
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
14
  [[package]]
24
15
  name = "anstream"
25
16
  version = "0.6.19"
@@ -86,29 +77,12 @@ dependencies = [
86
77
  "wait-timeout",
87
78
  ]
88
79
 
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
80
  [[package]]
101
81
  name = "autocfg"
102
82
  version = "1.5.0"
103
83
  source = "registry+https://github.com/rust-lang/crates.io-index"
104
84
  checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
105
85
 
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
86
  [[package]]
113
87
  name = "bindgen"
114
88
  version = "0.72.1"
@@ -146,24 +120,12 @@ dependencies = [
146
120
  "serde",
147
121
  ]
148
122
 
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
123
  [[package]]
156
124
  name = "bytecount"
157
125
  version = "0.6.9"
158
126
  source = "registry+https://github.com/rust-lang/crates.io-index"
159
127
  checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
160
128
 
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
129
  [[package]]
168
130
  name = "cbindgen"
169
131
  version = "0.29.0"
@@ -207,20 +169,6 @@ version = "1.0.1"
207
169
  source = "registry+https://github.com/rust-lang/crates.io-index"
208
170
  checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
209
171
 
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
172
  [[package]]
225
173
  name = "clang-sys"
226
174
  version = "1.8.1"
@@ -278,12 +226,6 @@ version = "1.0.4"
278
226
  source = "registry+https://github.com/rust-lang/crates.io-index"
279
227
  checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
280
228
 
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
229
  [[package]]
288
230
  name = "crossbeam-channel"
289
231
  version = "0.5.15"
@@ -319,38 +261,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
319
261
  checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
320
262
 
321
263
  [[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"
264
+ name = "cypher-parser"
265
+ version = "0.2.0"
347
266
  source = "registry+https://github.com/rust-lang/crates.io-index"
348
- checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
349
- dependencies = [
350
- "darling_core",
351
- "quote",
352
- "syn",
353
- ]
267
+ checksum = "fed0d1e561d51e651bdf70f8439da293fd0f1fe34d8431059061eadaefc7abb1"
354
268
 
355
269
  [[package]]
356
270
  name = "difflib"
@@ -375,12 +289,6 @@ version = "0.3.3"
375
289
  source = "registry+https://github.com/rust-lang/crates.io-index"
376
290
  checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
377
291
 
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
292
  [[package]]
385
293
  name = "either"
386
294
  version = "1.15.0"
@@ -427,95 +335,6 @@ dependencies = [
427
335
  "percent-encoding",
428
336
  ]
429
337
 
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
338
  [[package]]
520
339
  name = "getrandom"
521
340
  version = "0.3.3"
@@ -546,30 +365,6 @@ version = "0.5.0"
546
365
  source = "registry+https://github.com/rust-lang/crates.io-index"
547
366
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
548
367
 
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
368
  [[package]]
574
369
  name = "icu_collections"
575
370
  version = "2.0.0"
@@ -656,12 +451,6 @@ dependencies = [
656
451
  "zerovec",
657
452
  ]
658
453
 
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
454
  [[package]]
666
455
  name = "idna"
667
456
  version = "1.0.3"
@@ -714,16 +503,6 @@ version = "1.0.15"
714
503
  source = "registry+https://github.com/rust-lang/crates.io-index"
715
504
  checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
716
505
 
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
506
  [[package]]
728
507
  name = "libc"
729
508
  version = "0.2.174"
@@ -829,30 +608,12 @@ version = "1.0.15"
829
608
  source = "registry+https://github.com/rust-lang/crates.io-index"
830
609
  checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
831
610
 
832
- [[package]]
833
- name = "pastey"
834
- version = "0.2.1"
835
- source = "registry+https://github.com/rust-lang/crates.io-index"
836
- checksum = "b867cad97c0791bbd3aaa6472142568c6c9e8f71937e98379f584cfb0cf35bec"
837
-
838
611
  [[package]]
839
612
  name = "percent-encoding"
840
613
  version = "2.3.1"
841
614
  source = "registry+https://github.com/rust-lang/crates.io-index"
842
615
  checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
843
616
 
844
- [[package]]
845
- name = "pin-project-lite"
846
- version = "0.2.16"
847
- source = "registry+https://github.com/rust-lang/crates.io-index"
848
- checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
849
-
850
- [[package]]
851
- name = "pin-utils"
852
- version = "0.1.0"
853
- source = "registry+https://github.com/rust-lang/crates.io-index"
854
- checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
855
-
856
617
  [[package]]
857
618
  name = "potential_utf"
858
619
  version = "0.1.2"
@@ -926,26 +687,6 @@ version = "5.3.0"
926
687
  source = "registry+https://github.com/rust-lang/crates.io-index"
927
688
  checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
928
689
 
929
- [[package]]
930
- name = "ref-cast"
931
- version = "1.0.25"
932
- source = "registry+https://github.com/rust-lang/crates.io-index"
933
- checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
934
- dependencies = [
935
- "ref-cast-impl",
936
- ]
937
-
938
- [[package]]
939
- name = "ref-cast-impl"
940
- version = "1.0.25"
941
- source = "registry+https://github.com/rust-lang/crates.io-index"
942
- checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
943
- dependencies = [
944
- "proc-macro2",
945
- "quote",
946
- "syn",
947
- ]
948
-
949
690
  [[package]]
950
691
  name = "regex"
951
692
  version = "1.11.1"
@@ -975,41 +716,6 @@ version = "0.8.5"
975
716
  source = "registry+https://github.com/rust-lang/crates.io-index"
976
717
  checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
977
718
 
978
- [[package]]
979
- name = "rmcp"
980
- version = "1.4.0"
981
- source = "registry+https://github.com/rust-lang/crates.io-index"
982
- checksum = "f542f74cf247da16f19bbc87e298cd201e912314f4083e88cdd671f44f5fcb53"
983
- dependencies = [
984
- "async-trait",
985
- "base64",
986
- "chrono",
987
- "futures",
988
- "pastey",
989
- "pin-project-lite",
990
- "rmcp-macros",
991
- "schemars",
992
- "serde",
993
- "serde_json",
994
- "thiserror",
995
- "tokio",
996
- "tokio-util",
997
- "tracing",
998
- ]
999
-
1000
- [[package]]
1001
- name = "rmcp-macros"
1002
- version = "1.6.0"
1003
- source = "registry+https://github.com/rust-lang/crates.io-index"
1004
- checksum = "7caa6743cc0888e433105fe1bc551a7f607940b126a37bc97b478e86064627eb"
1005
- dependencies = [
1006
- "darling",
1007
- "proc-macro2",
1008
- "quote",
1009
- "serde_json",
1010
- "syn",
1011
- ]
1012
-
1013
719
  [[package]]
1014
720
  name = "ruby-prism"
1015
721
  version = "1.9.0"
@@ -1063,6 +769,7 @@ dependencies = [
1063
769
  "crossbeam-channel",
1064
770
  "crossbeam-deque",
1065
771
  "crossbeam-utils",
772
+ "cypher-parser",
1066
773
  "glob",
1067
774
  "libc",
1068
775
  "line-index",
@@ -1080,21 +787,6 @@ dependencies = [
1080
787
  "xxhash-rust",
1081
788
  ]
1082
789
 
1083
- [[package]]
1084
- name = "rubydex-mcp"
1085
- version = "0.2.6"
1086
- dependencies = [
1087
- "assert_cmd",
1088
- "clap",
1089
- "rmcp",
1090
- "rubydex",
1091
- "schemars",
1092
- "serde",
1093
- "serde_json",
1094
- "tokio",
1095
- "url",
1096
- ]
1097
-
1098
790
  [[package]]
1099
791
  name = "rubydex-sys"
1100
792
  version = "0.2.6"
@@ -1125,44 +817,12 @@ dependencies = [
1125
817
  "windows-sys 0.60.2",
1126
818
  ]
1127
819
 
1128
- [[package]]
1129
- name = "rustversion"
1130
- version = "1.0.22"
1131
- source = "registry+https://github.com/rust-lang/crates.io-index"
1132
- checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1133
-
1134
820
  [[package]]
1135
821
  name = "ryu"
1136
822
  version = "1.0.20"
1137
823
  source = "registry+https://github.com/rust-lang/crates.io-index"
1138
824
  checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1139
825
 
1140
- [[package]]
1141
- name = "schemars"
1142
- version = "1.2.1"
1143
- source = "registry+https://github.com/rust-lang/crates.io-index"
1144
- checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
1145
- dependencies = [
1146
- "chrono",
1147
- "dyn-clone",
1148
- "ref-cast",
1149
- "schemars_derive",
1150
- "serde",
1151
- "serde_json",
1152
- ]
1153
-
1154
- [[package]]
1155
- name = "schemars_derive"
1156
- version = "1.2.1"
1157
- source = "registry+https://github.com/rust-lang/crates.io-index"
1158
- checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
1159
- dependencies = [
1160
- "proc-macro2",
1161
- "quote",
1162
- "serde_derive_internals",
1163
- "syn",
1164
- ]
1165
-
1166
826
  [[package]]
1167
827
  name = "serde"
1168
828
  version = "1.0.228"
@@ -1193,17 +853,6 @@ dependencies = [
1193
853
  "syn",
1194
854
  ]
1195
855
 
1196
- [[package]]
1197
- name = "serde_derive_internals"
1198
- version = "0.29.1"
1199
- source = "registry+https://github.com/rust-lang/crates.io-index"
1200
- checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1201
- dependencies = [
1202
- "proc-macro2",
1203
- "quote",
1204
- "syn",
1205
- ]
1206
-
1207
856
  [[package]]
1208
857
  name = "serde_json"
1209
858
  version = "1.0.141"
@@ -1253,12 +902,6 @@ version = "1.3.0"
1253
902
  source = "registry+https://github.com/rust-lang/crates.io-index"
1254
903
  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1255
904
 
1256
- [[package]]
1257
- name = "slab"
1258
- version = "0.4.12"
1259
- source = "registry+https://github.com/rust-lang/crates.io-index"
1260
- checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1261
-
1262
905
  [[package]]
1263
906
  name = "smallvec"
1264
907
  version = "1.15.1"
@@ -1324,26 +967,6 @@ version = "1.1.1"
1324
967
  source = "registry+https://github.com/rust-lang/crates.io-index"
1325
968
  checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
1326
969
 
1327
- [[package]]
1328
- name = "thiserror"
1329
- version = "2.0.18"
1330
- source = "registry+https://github.com/rust-lang/crates.io-index"
1331
- checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1332
- dependencies = [
1333
- "thiserror-impl",
1334
- ]
1335
-
1336
- [[package]]
1337
- name = "thiserror-impl"
1338
- version = "2.0.18"
1339
- source = "registry+https://github.com/rust-lang/crates.io-index"
1340
- checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1341
- dependencies = [
1342
- "proc-macro2",
1343
- "quote",
1344
- "syn",
1345
- ]
1346
-
1347
970
  [[package]]
1348
971
  name = "tikv-jemalloc-ctl"
1349
972
  version = "0.7.0"
@@ -1385,41 +1008,6 @@ dependencies = [
1385
1008
  "zerovec",
1386
1009
  ]
1387
1010
 
1388
- [[package]]
1389
- name = "tokio"
1390
- version = "1.49.0"
1391
- source = "registry+https://github.com/rust-lang/crates.io-index"
1392
- checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1393
- dependencies = [
1394
- "bytes",
1395
- "pin-project-lite",
1396
- "tokio-macros",
1397
- ]
1398
-
1399
- [[package]]
1400
- name = "tokio-macros"
1401
- version = "2.6.0"
1402
- source = "registry+https://github.com/rust-lang/crates.io-index"
1403
- checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
1404
- dependencies = [
1405
- "proc-macro2",
1406
- "quote",
1407
- "syn",
1408
- ]
1409
-
1410
- [[package]]
1411
- name = "tokio-util"
1412
- version = "0.7.18"
1413
- source = "registry+https://github.com/rust-lang/crates.io-index"
1414
- checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1415
- dependencies = [
1416
- "bytes",
1417
- "futures-core",
1418
- "futures-sink",
1419
- "pin-project-lite",
1420
- "tokio",
1421
- ]
1422
-
1423
1011
  [[package]]
1424
1012
  name = "toml"
1425
1013
  version = "0.8.23"
@@ -1500,37 +1088,6 @@ version = "1.1.1+spec-1.1.0"
1500
1088
  source = "registry+https://github.com/rust-lang/crates.io-index"
1501
1089
  checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
1502
1090
 
1503
- [[package]]
1504
- name = "tracing"
1505
- version = "0.1.44"
1506
- source = "registry+https://github.com/rust-lang/crates.io-index"
1507
- checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1508
- dependencies = [
1509
- "pin-project-lite",
1510
- "tracing-attributes",
1511
- "tracing-core",
1512
- ]
1513
-
1514
- [[package]]
1515
- name = "tracing-attributes"
1516
- version = "0.1.31"
1517
- source = "registry+https://github.com/rust-lang/crates.io-index"
1518
- checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1519
- dependencies = [
1520
- "proc-macro2",
1521
- "quote",
1522
- "syn",
1523
- ]
1524
-
1525
- [[package]]
1526
- name = "tracing-core"
1527
- version = "0.1.36"
1528
- source = "registry+https://github.com/rust-lang/crates.io-index"
1529
- checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1530
- dependencies = [
1531
- "once_cell",
1532
- ]
1533
-
1534
1091
  [[package]]
1535
1092
  name = "unicode-ident"
1536
1093
  version = "1.0.18"
@@ -1584,116 +1141,12 @@ dependencies = [
1584
1141
  "wit-bindgen-rt",
1585
1142
  ]
1586
1143
 
1587
- [[package]]
1588
- name = "wasm-bindgen"
1589
- version = "0.2.108"
1590
- source = "registry+https://github.com/rust-lang/crates.io-index"
1591
- checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
1592
- dependencies = [
1593
- "cfg-if",
1594
- "once_cell",
1595
- "rustversion",
1596
- "wasm-bindgen-macro",
1597
- "wasm-bindgen-shared",
1598
- ]
1599
-
1600
- [[package]]
1601
- name = "wasm-bindgen-macro"
1602
- version = "0.2.108"
1603
- source = "registry+https://github.com/rust-lang/crates.io-index"
1604
- checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
1605
- dependencies = [
1606
- "quote",
1607
- "wasm-bindgen-macro-support",
1608
- ]
1609
-
1610
- [[package]]
1611
- name = "wasm-bindgen-macro-support"
1612
- version = "0.2.108"
1613
- source = "registry+https://github.com/rust-lang/crates.io-index"
1614
- checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
1615
- dependencies = [
1616
- "bumpalo",
1617
- "proc-macro2",
1618
- "quote",
1619
- "syn",
1620
- "wasm-bindgen-shared",
1621
- ]
1622
-
1623
- [[package]]
1624
- name = "wasm-bindgen-shared"
1625
- version = "0.2.108"
1626
- source = "registry+https://github.com/rust-lang/crates.io-index"
1627
- checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
1628
- dependencies = [
1629
- "unicode-ident",
1630
- ]
1631
-
1632
- [[package]]
1633
- name = "windows-core"
1634
- version = "0.62.2"
1635
- source = "registry+https://github.com/rust-lang/crates.io-index"
1636
- checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1637
- dependencies = [
1638
- "windows-implement",
1639
- "windows-interface",
1640
- "windows-link 0.2.1",
1641
- "windows-result",
1642
- "windows-strings",
1643
- ]
1644
-
1645
- [[package]]
1646
- name = "windows-implement"
1647
- version = "0.60.2"
1648
- source = "registry+https://github.com/rust-lang/crates.io-index"
1649
- checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1650
- dependencies = [
1651
- "proc-macro2",
1652
- "quote",
1653
- "syn",
1654
- ]
1655
-
1656
- [[package]]
1657
- name = "windows-interface"
1658
- version = "0.59.3"
1659
- source = "registry+https://github.com/rust-lang/crates.io-index"
1660
- checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1661
- dependencies = [
1662
- "proc-macro2",
1663
- "quote",
1664
- "syn",
1665
- ]
1666
-
1667
1144
  [[package]]
1668
1145
  name = "windows-link"
1669
1146
  version = "0.1.3"
1670
1147
  source = "registry+https://github.com/rust-lang/crates.io-index"
1671
1148
  checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
1672
1149
 
1673
- [[package]]
1674
- name = "windows-link"
1675
- version = "0.2.1"
1676
- source = "registry+https://github.com/rust-lang/crates.io-index"
1677
- checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1678
-
1679
- [[package]]
1680
- name = "windows-result"
1681
- version = "0.4.1"
1682
- source = "registry+https://github.com/rust-lang/crates.io-index"
1683
- checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1684
- dependencies = [
1685
- "windows-link 0.2.1",
1686
- ]
1687
-
1688
- [[package]]
1689
- name = "windows-strings"
1690
- version = "0.5.1"
1691
- source = "registry+https://github.com/rust-lang/crates.io-index"
1692
- checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1693
- dependencies = [
1694
- "windows-link 0.2.1",
1695
- ]
1696
-
1697
1150
  [[package]]
1698
1151
  name = "windows-sys"
1699
1152
  version = "0.59.0"
@@ -1734,7 +1187,7 @@ version = "0.53.3"
1734
1187
  source = "registry+https://github.com/rust-lang/crates.io-index"
1735
1188
  checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
1736
1189
  dependencies = [
1737
- "windows-link 0.1.3",
1190
+ "windows-link",
1738
1191
  "windows_aarch64_gnullvm 0.53.0",
1739
1192
  "windows_aarch64_msvc 0.53.0",
1740
1193
  "windows_i686_gnu 0.53.0",