code2graph-rs 0.0.0b13__tar.gz → 0.0.0b15__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (134) hide show
  1. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/Cargo.lock +874 -6
  2. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/Cargo.toml +18 -3
  3. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/PKG-INFO +1 -1
  4. {code2graph_rs-0.0.0b13/query → code2graph_rs-0.0.0b15}/README.md +13 -0
  5. code2graph_rs-0.0.0b15/benches/pipeline.rs +159 -0
  6. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/extensions/code2graph/code2graph-node.ts +2 -1
  7. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/extensions/code2graph/scan-worker.mjs +1 -1
  8. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/extensions/code2graph/types.ts +1 -1
  9. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/test/native-adapter.test.ts +2 -2
  10. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/test/query-index-lifecycle.test.ts +1 -1
  11. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/python/Cargo.toml +2 -1
  12. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/python/src/api.rs +43 -1
  13. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/python/src/convert.rs +3 -1
  14. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/docs/supported-languages.md +10 -6
  15. code2graph_rs-0.0.0b15/flux.toml +21 -0
  16. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/pyproject.toml +1 -1
  17. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/query/Cargo.toml +2 -2
  18. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15/query}/README.md +13 -0
  19. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/query/src/impact.rs +332 -87
  20. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/query/src/lib.rs +3 -1
  21. code2graph_rs-0.0.0b15/query/src/read.rs +393 -0
  22. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/query/src/relation.rs +1 -1
  23. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/scripts/release/tests/test_contracts.py +32 -1
  24. code2graph_rs-0.0.0b15/src/extract/binding.rs +176 -0
  25. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/cpp.rs +182 -4
  26. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/csharp.rs +173 -5
  27. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/dart.rs +198 -16
  28. code2graph_rs-0.0.0b15/src/extract/dispatch.rs +230 -0
  29. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/go.rs +145 -6
  30. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/hcl.rs +4 -0
  31. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/java.rs +195 -21
  32. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/javascript.rs +10 -1
  33. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/kotlin.rs +175 -4
  34. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/mod.rs +13 -3
  35. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/php.rs +168 -3
  36. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/python.rs +670 -15
  37. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/ruby.rs +76 -2
  38. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/rust.rs +1206 -144
  39. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/scala.rs +192 -5
  40. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/sql.rs +74 -13
  41. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/support.rs +266 -0
  42. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/svelte.rs +1 -1
  43. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/swift.rs +184 -4
  44. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/typescript.rs +968 -20
  45. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/graph/types.rs +59 -7
  46. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/graph/validate.rs +40 -3
  47. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/lang.rs +16 -0
  48. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/lib.rs +5 -2
  49. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/package/enrich.rs +14 -0
  50. code2graph_rs-0.0.0b15/src/resolve/conformance.rs +1339 -0
  51. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/external.rs +16 -0
  52. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/incremental/mod.rs +1 -1
  53. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/incremental/state.rs +12 -5
  54. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/incremental/stitch.rs +204 -24
  55. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/incremental/store.rs +110 -8
  56. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/incremental/subgraph.rs +142 -6
  57. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/incremental/tracked.rs +19 -17
  58. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/layered.rs +127 -71
  59. code2graph_rs-0.0.0b15/src/resolve/local_typed_call.rs +1031 -0
  60. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/mod.rs +7 -4
  61. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/normalized_name.rs +21 -0
  62. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/scope_graph.rs +345 -12
  63. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/support.rs +12 -1
  64. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/symbol_table.rs +306 -22
  65. code2graph_rs-0.0.0b13/src/extract/dispatch.rs +0 -134
  66. code2graph_rs-0.0.0b13/src/resolve/conformance.rs +0 -571
  67. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/CODE_OF_CONDUCT.md +0 -0
  68. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/CONTRIBUTING.md +0 -0
  69. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/LICENSE +0 -0
  70. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/assets/discord-cta.svg +0 -0
  71. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/LICENSE +0 -0
  72. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/README.md +0 -0
  73. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/extensions/code2graph/commands.ts +0 -0
  74. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/extensions/code2graph/index.ts +0 -0
  75. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/extensions/code2graph/relations.ts +0 -0
  76. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/extensions/code2graph/scan-service.ts +0 -0
  77. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/extensions/code2graph/scan.ts +0 -0
  78. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/extensions/code2graph/schema.ts +0 -0
  79. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/extensions/code2graph/tools.ts +0 -0
  80. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/media/code2graph-preview.webp +0 -0
  81. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/media/code2graph-preview.zen +0 -0
  82. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/package.json +0 -0
  83. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/scripts/stage-release.mjs +0 -0
  84. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/test/extension.test.ts +0 -0
  85. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/test/graph-index-parity.test.ts +0 -0
  86. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/test/identity.test.ts +0 -0
  87. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/test/pack.test.mjs +0 -0
  88. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/test/pi-package-smoke.test.mjs +0 -0
  89. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/test/relations.test.ts +0 -0
  90. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/test/scan-service.test.ts +0 -0
  91. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/test/scan-worker.test.ts +0 -0
  92. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/test/stage-release.test.mjs +0 -0
  93. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/pi/tsconfig.json +0 -0
  94. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/python/README.md +0 -0
  95. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/python/src/lib.rs +0 -0
  96. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/python/src/query.rs +0 -0
  97. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/bindings/python/tests/test_query.py +0 -0
  98. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/docs/ffi-support-matrix.md +0 -0
  99. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/query/src/error.rs +0 -0
  100. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/query/src/index/build.rs +0 -0
  101. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/query/src/index/lookup.rs +0 -0
  102. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/query/src/index/mod.rs +0 -0
  103. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/query/src/index/update.rs +0 -0
  104. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/query/src/order.rs +0 -0
  105. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/scripts/release/artifact_manifest.py +0 -0
  106. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/scripts/release/version_contract.py +0 -0
  107. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/error.rs +0 -0
  108. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/c.rs +0 -0
  109. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/lua.rs +0 -0
  110. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/luau.rs +0 -0
  111. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/pascal.rs +0 -0
  112. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/shell.rs +0 -0
  113. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/extract/solidity.rs +0 -0
  114. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/ffi/c.rs +0 -0
  115. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/ffi/jni.rs +0 -0
  116. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/ffi/mod.rs +0 -0
  117. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/ffi/node_api.rs +0 -0
  118. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/ffi/python.rs +0 -0
  119. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/ffi/spec.rs +0 -0
  120. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/ffi/sync_tests.rs +0 -0
  121. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/ffi/wasm.rs +0 -0
  122. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/grammar.rs +0 -0
  123. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/graph/mod.rs +0 -0
  124. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/package/manifest.rs +0 -0
  125. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/package/mod.rs +0 -0
  126. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/ffi_bridge/mod.rs +0 -0
  127. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/ffi_bridge/resolver.rs +0 -0
  128. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/incremental/delta.rs +0 -0
  129. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/resolve/resolver.rs +0 -0
  130. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/symbol/descriptor.rs +0 -0
  131. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/symbol/id.rs +0 -0
  132. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/symbol/mod.rs +0 -0
  133. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/src/symbol/serde_impl.rs +0 -0
  134. {code2graph_rs-0.0.0b13 → code2graph_rs-0.0.0b15}/tests/resolver_input_contracts.rs +0 -0
@@ -23,6 +23,15 @@ dependencies = [
23
23
  "memchr",
24
24
  ]
25
25
 
26
+ [[package]]
27
+ name = "android_system_properties"
28
+ version = "0.1.5"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
31
+ dependencies = [
32
+ "libc",
33
+ ]
34
+
26
35
  [[package]]
27
36
  name = "anstream"
28
37
  version = "1.0.0"
@@ -73,6 +82,12 @@ dependencies = [
73
82
  "windows-sys 0.61.2",
74
83
  ]
75
84
 
85
+ [[package]]
86
+ name = "anyhow"
87
+ version = "1.0.104"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
90
+
76
91
  [[package]]
77
92
  name = "arrayref"
78
93
  version = "0.3.9"
@@ -85,6 +100,12 @@ version = "0.7.8"
85
100
  source = "registry+https://github.com/rust-lang/crates.io-index"
86
101
  checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
87
102
 
103
+ [[package]]
104
+ name = "autocfg"
105
+ version = "1.5.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
108
+
88
109
  [[package]]
89
110
  name = "bitflags"
90
111
  version = "2.13.0"
@@ -115,6 +136,47 @@ dependencies = [
115
136
  "serde_core",
116
137
  ]
117
138
 
139
+ [[package]]
140
+ name = "bumpalo"
141
+ version = "3.20.3"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
144
+
145
+ [[package]]
146
+ name = "bytecheck"
147
+ version = "0.8.2"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "0caa33a2c0edca0419d15ac723dff03f1956f7978329b1e3b5fdaaaed9d3ca8b"
150
+ dependencies = [
151
+ "bytecheck_derive",
152
+ "ptr_meta",
153
+ "rancor",
154
+ "simdutf8",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "bytecheck_derive"
159
+ version = "0.8.2"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "89385e82b5d1821d2219e0b095efa2cc1f246cbf99080f3be46a1a85c0d392d9"
162
+ dependencies = [
163
+ "proc-macro2",
164
+ "quote",
165
+ "syn",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "byteorder"
170
+ version = "1.5.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
173
+
174
+ [[package]]
175
+ name = "bytes"
176
+ version = "1.12.1"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
179
+
118
180
  [[package]]
119
181
  name = "cc"
120
182
  version = "1.2.67"
@@ -131,6 +193,20 @@ version = "1.0.4"
131
193
  source = "registry+https://github.com/rust-lang/crates.io-index"
132
194
  checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
133
195
 
196
+ [[package]]
197
+ name = "chrono"
198
+ version = "0.4.45"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
201
+ dependencies = [
202
+ "iana-time-zone",
203
+ "js-sys",
204
+ "num-traits",
205
+ "serde",
206
+ "wasm-bindgen",
207
+ "windows-link",
208
+ ]
209
+
134
210
  [[package]]
135
211
  name = "clap"
136
212
  version = "4.6.1"
@@ -173,8 +249,9 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
173
249
 
174
250
  [[package]]
175
251
  name = "code2graph"
176
- version = "0.0.0-beta.13"
252
+ version = "0.0.0-beta.15"
177
253
  dependencies = [
254
+ "fluxbench",
178
255
  "serde",
179
256
  "serde_json",
180
257
  "thiserror 2.0.18",
@@ -206,7 +283,7 @@ dependencies = [
206
283
 
207
284
  [[package]]
208
285
  name = "code2graph-cli"
209
- version = "0.0.0-beta.13"
286
+ version = "0.0.0-beta.15"
210
287
  dependencies = [
211
288
  "blake3",
212
289
  "clap",
@@ -220,13 +297,14 @@ dependencies = [
220
297
  "serde_json",
221
298
  "tempfile",
222
299
  "thiserror 2.0.18",
300
+ "toml",
223
301
  "windows-sys 0.59.0",
224
302
  "zerompk",
225
303
  ]
226
304
 
227
305
  [[package]]
228
306
  name = "code2graph-eval"
229
- version = "0.0.0-beta.13"
307
+ version = "0.0.0-beta.15"
230
308
  dependencies = [
231
309
  "code2graph",
232
310
  "protobuf",
@@ -235,7 +313,7 @@ dependencies = [
235
313
 
236
314
  [[package]]
237
315
  name = "code2graph-node"
238
- version = "0.0.0-beta.13"
316
+ version = "0.0.0-beta.15"
239
317
  dependencies = [
240
318
  "code2graph",
241
319
  "code2graph-query",
@@ -247,18 +325,19 @@ dependencies = [
247
325
 
248
326
  [[package]]
249
327
  name = "code2graph-py"
250
- version = "0.0.0-beta.13"
328
+ version = "0.0.0-beta.15"
251
329
  dependencies = [
252
330
  "code2graph",
253
331
  "code2graph-query",
254
332
  "pyo3",
255
333
  "pythonize",
334
+ "serde",
256
335
  "serde_json",
257
336
  ]
258
337
 
259
338
  [[package]]
260
339
  name = "code2graph-query"
261
- version = "0.0.0-beta.13"
340
+ version = "0.0.0-beta.15"
262
341
  dependencies = [
263
342
  "code2graph",
264
343
  "thiserror 2.0.18",
@@ -270,6 +349,19 @@ version = "1.0.5"
270
349
  source = "registry+https://github.com/rust-lang/crates.io-index"
271
350
  checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
272
351
 
352
+ [[package]]
353
+ name = "console"
354
+ version = "0.15.11"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
357
+ dependencies = [
358
+ "encode_unicode",
359
+ "libc",
360
+ "once_cell",
361
+ "unicode-width",
362
+ "windows-sys 0.59.0",
363
+ ]
364
+
273
365
  [[package]]
274
366
  name = "constant_time_eq"
275
367
  version = "0.4.2"
@@ -285,6 +377,12 @@ dependencies = [
285
377
  "unicode-segmentation",
286
378
  ]
287
379
 
380
+ [[package]]
381
+ name = "core-foundation-sys"
382
+ version = "0.8.7"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
385
+
288
386
  [[package]]
289
387
  name = "cpufeatures"
290
388
  version = "0.3.0"
@@ -371,6 +469,18 @@ version = "0.0.6"
371
469
  source = "registry+https://github.com/rust-lang/crates.io-index"
372
470
  checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
373
471
 
472
+ [[package]]
473
+ name = "either"
474
+ version = "1.16.0"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
477
+
478
+ [[package]]
479
+ name = "encode_unicode"
480
+ version = "1.0.0"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
483
+
374
484
  [[package]]
375
485
  name = "equivalent"
376
486
  version = "1.0.2"
@@ -387,6 +497,12 @@ dependencies = [
387
497
  "windows-sys 0.61.2",
388
498
  ]
389
499
 
500
+ [[package]]
501
+ name = "evalexpr"
502
+ version = "11.3.1"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "b6aff27af350e7b53e82aac3e5ab6389abd8f280640ac034508dff0608c4c7e5"
505
+
390
506
  [[package]]
391
507
  name = "fallible-iterator"
392
508
  version = "0.3.0"
@@ -411,6 +527,161 @@ version = "0.1.9"
411
527
  source = "registry+https://github.com/rust-lang/crates.io-index"
412
528
  checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
413
529
 
530
+ [[package]]
531
+ name = "fluxbench"
532
+ version = "0.1.3"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "323b4f98b988b9779c6aa3f93781ef7421e36e73a5c610497857b2c01398acdc"
535
+ dependencies = [
536
+ "fluxbench-cli",
537
+ "fluxbench-core",
538
+ "fluxbench-ipc",
539
+ "fluxbench-logic",
540
+ "fluxbench-macros",
541
+ "fluxbench-stats",
542
+ "inventory",
543
+ "tokio",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "fluxbench-cli"
548
+ version = "0.1.3"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "42072e01658451938143f620a08f13b308e30a7fe41f3de87a79f351c5753328"
551
+ dependencies = [
552
+ "anyhow",
553
+ "chrono",
554
+ "clap",
555
+ "fluxbench-core",
556
+ "fluxbench-ipc",
557
+ "fluxbench-logic",
558
+ "fluxbench-report",
559
+ "fluxbench-stats",
560
+ "fxhash",
561
+ "indicatif",
562
+ "inventory",
563
+ "libc",
564
+ "rayon",
565
+ "regex",
566
+ "serde",
567
+ "serde_json",
568
+ "thiserror 2.0.18",
569
+ "tokio",
570
+ "toml",
571
+ "tracing",
572
+ "tracing-subscriber",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "fluxbench-core"
577
+ version = "0.1.3"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "780bc18df5d1aa766ab5394389fb989c51d5d6ac3b00e51340f97c6510268edf"
580
+ dependencies = [
581
+ "fluxbench-ipc",
582
+ "inventory",
583
+ "libc",
584
+ "serde",
585
+ "thiserror 2.0.18",
586
+ "tokio",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "fluxbench-ipc"
591
+ version = "0.1.3"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "7c44dcc5fe5705f4933b7768a4fdb552ab97c098d4d3e49b93096152527b89fe"
594
+ dependencies = [
595
+ "rkyv",
596
+ "thiserror 2.0.18",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "fluxbench-logic"
601
+ version = "0.1.3"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "ab4809eb2b1c33ee46c51cc28ee5d8c8ea8dbc4977151af00a03a1d1f5d487ab"
604
+ dependencies = [
605
+ "evalexpr",
606
+ "fluxbench-core",
607
+ "fluxbench-stats",
608
+ "fxhash",
609
+ "inventory",
610
+ "regex",
611
+ "serde",
612
+ "thiserror 2.0.18",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "fluxbench-macros"
617
+ version = "0.1.3"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "71729e5cb94b94beb14f6a9319a129e6cf3e116112f56578182edadeaaddc79a"
620
+ dependencies = [
621
+ "proc-macro2",
622
+ "quote",
623
+ "syn",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "fluxbench-report"
628
+ version = "0.1.3"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "02bf8934a0c315e390d691e3c9993e52b59ed88ecb8993d882a69721559342d0"
631
+ dependencies = [
632
+ "chrono",
633
+ "fluxbench-core",
634
+ "fluxbench-logic",
635
+ "fluxbench-stats",
636
+ "serde",
637
+ "serde_json",
638
+ "thiserror 2.0.18",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "fluxbench-stats"
643
+ version = "0.1.3"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "bec71a4355a6558d47beea9abda1fda67580e124fefdb9e93f0aaab4cc872063"
646
+ dependencies = [
647
+ "rand",
648
+ "rayon",
649
+ "thiserror 2.0.18",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "futures-core"
654
+ version = "0.3.33"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
657
+
658
+ [[package]]
659
+ name = "futures-task"
660
+ version = "0.3.33"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
663
+
664
+ [[package]]
665
+ name = "futures-util"
666
+ version = "0.3.33"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
669
+ dependencies = [
670
+ "futures-core",
671
+ "futures-task",
672
+ "pin-project-lite",
673
+ "slab",
674
+ ]
675
+
676
+ [[package]]
677
+ name = "fxhash"
678
+ version = "0.2.1"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
681
+ dependencies = [
682
+ "byteorder",
683
+ ]
684
+
414
685
  [[package]]
415
686
  name = "getrandom"
416
687
  version = "0.2.17"
@@ -476,6 +747,30 @@ version = "0.5.0"
476
747
  source = "registry+https://github.com/rust-lang/crates.io-index"
477
748
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
478
749
 
750
+ [[package]]
751
+ name = "iana-time-zone"
752
+ version = "0.1.65"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
755
+ dependencies = [
756
+ "android_system_properties",
757
+ "core-foundation-sys",
758
+ "iana-time-zone-haiku",
759
+ "js-sys",
760
+ "log",
761
+ "wasm-bindgen",
762
+ "windows-core",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "iana-time-zone-haiku"
767
+ version = "0.1.2"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
770
+ dependencies = [
771
+ "cc",
772
+ ]
773
+
479
774
  [[package]]
480
775
  name = "ignore"
481
776
  version = "0.4.28"
@@ -502,6 +797,28 @@ dependencies = [
502
797
  "hashbrown 0.17.1",
503
798
  ]
504
799
 
800
+ [[package]]
801
+ name = "indicatif"
802
+ version = "0.17.11"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
805
+ dependencies = [
806
+ "console",
807
+ "number_prefix",
808
+ "portable-atomic",
809
+ "unicode-width",
810
+ "web-time",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "inventory"
815
+ version = "0.3.24"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
818
+ dependencies = [
819
+ "rustversion",
820
+ ]
821
+
505
822
  [[package]]
506
823
  name = "is_terminal_polyfill"
507
824
  version = "1.70.2"
@@ -514,6 +831,23 @@ version = "1.0.18"
514
831
  source = "registry+https://github.com/rust-lang/crates.io-index"
515
832
  checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
516
833
 
834
+ [[package]]
835
+ name = "js-sys"
836
+ version = "0.3.103"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
839
+ dependencies = [
840
+ "cfg-if",
841
+ "futures-util",
842
+ "wasm-bindgen",
843
+ ]
844
+
845
+ [[package]]
846
+ name = "lazy_static"
847
+ version = "1.5.0"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
850
+
517
851
  [[package]]
518
852
  name = "libc"
519
853
  version = "0.2.186"
@@ -556,18 +890,67 @@ version = "0.12.1"
556
890
  source = "registry+https://github.com/rust-lang/crates.io-index"
557
891
  checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
558
892
 
893
+ [[package]]
894
+ name = "lock_api"
895
+ version = "0.4.14"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
898
+ dependencies = [
899
+ "scopeguard",
900
+ ]
901
+
559
902
  [[package]]
560
903
  name = "log"
561
904
  version = "0.4.33"
562
905
  source = "registry+https://github.com/rust-lang/crates.io-index"
563
906
  checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
564
907
 
908
+ [[package]]
909
+ name = "matchers"
910
+ version = "0.2.0"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
913
+ dependencies = [
914
+ "regex-automata",
915
+ ]
916
+
565
917
  [[package]]
566
918
  name = "memchr"
567
919
  version = "2.8.3"
568
920
  source = "registry+https://github.com/rust-lang/crates.io-index"
569
921
  checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
570
922
 
923
+ [[package]]
924
+ name = "mio"
925
+ version = "1.2.2"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
928
+ dependencies = [
929
+ "libc",
930
+ "wasi",
931
+ "windows-sys 0.61.2",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "munge"
936
+ version = "0.4.7"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "5e17401f259eba956ca16491461b6e8f72913a0a114e39736ce404410f915a0c"
939
+ dependencies = [
940
+ "munge_macro",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "munge_macro"
945
+ version = "0.4.7"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "4568f25ccbd45ab5d5603dc34318c1ec56b117531781260002151b8530a9f931"
948
+ dependencies = [
949
+ "proc-macro2",
950
+ "quote",
951
+ "syn",
952
+ ]
953
+
571
954
  [[package]]
572
955
  name = "napi"
573
956
  version = "3.4.0"
@@ -632,6 +1015,30 @@ version = "0.2.0"
632
1015
  source = "registry+https://github.com/rust-lang/crates.io-index"
633
1016
  checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
634
1017
 
1018
+ [[package]]
1019
+ name = "nu-ansi-term"
1020
+ version = "0.50.3"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1023
+ dependencies = [
1024
+ "windows-sys 0.61.2",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "num-traits"
1029
+ version = "0.2.19"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1032
+ dependencies = [
1033
+ "autocfg",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "number_prefix"
1038
+ version = "0.4.0"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1041
+
635
1042
  [[package]]
636
1043
  name = "once_cell"
637
1044
  version = "1.21.4"
@@ -650,6 +1057,35 @@ version = "0.2.0"
650
1057
  source = "registry+https://github.com/rust-lang/crates.io-index"
651
1058
  checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
652
1059
 
1060
+ [[package]]
1061
+ name = "parking_lot"
1062
+ version = "0.12.5"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1065
+ dependencies = [
1066
+ "lock_api",
1067
+ "parking_lot_core",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "parking_lot_core"
1072
+ version = "0.9.12"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1075
+ dependencies = [
1076
+ "cfg-if",
1077
+ "libc",
1078
+ "redox_syscall",
1079
+ "smallvec",
1080
+ "windows-link",
1081
+ ]
1082
+
1083
+ [[package]]
1084
+ name = "pin-project-lite"
1085
+ version = "0.2.17"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1088
+
653
1089
  [[package]]
654
1090
  name = "pkg-config"
655
1091
  version = "0.3.33"
@@ -662,6 +1098,15 @@ version = "1.13.1"
662
1098
  source = "registry+https://github.com/rust-lang/crates.io-index"
663
1099
  checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
664
1100
 
1101
+ [[package]]
1102
+ name = "ppv-lite86"
1103
+ version = "0.2.21"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1106
+ dependencies = [
1107
+ "zerocopy",
1108
+ ]
1109
+
665
1110
  [[package]]
666
1111
  name = "proc-macro2"
667
1112
  version = "1.0.106"
@@ -691,6 +1136,26 @@ dependencies = [
691
1136
  "thiserror 1.0.69",
692
1137
  ]
693
1138
 
1139
+ [[package]]
1140
+ name = "ptr_meta"
1141
+ version = "0.3.1"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "0b9a0cf95a1196af61d4f1cbdab967179516d9a4a4312af1f31948f8f6224a79"
1144
+ dependencies = [
1145
+ "ptr_meta_derive",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "ptr_meta_derive"
1150
+ version = "0.3.1"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "7347867d0a7e1208d93b46767be83e2b8f978c3dad35f775ac8d8847551d6fe1"
1153
+ dependencies = [
1154
+ "proc-macro2",
1155
+ "quote",
1156
+ "syn",
1157
+ ]
1158
+
694
1159
  [[package]]
695
1160
  name = "pyo3"
696
1161
  version = "0.29.0"
@@ -773,6 +1238,74 @@ version = "6.0.0"
773
1238
  source = "registry+https://github.com/rust-lang/crates.io-index"
774
1239
  checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
775
1240
 
1241
+ [[package]]
1242
+ name = "rancor"
1243
+ version = "0.1.2"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "daff8b7b3ccf5f7ba270b3e7a0a4d4c701c5797e38dec27c7e2c3dbb830fed1c"
1246
+ dependencies = [
1247
+ "ptr_meta",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "rand"
1252
+ version = "0.8.7"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
1255
+ dependencies = [
1256
+ "libc",
1257
+ "rand_chacha",
1258
+ "rand_core",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "rand_chacha"
1263
+ version = "0.3.1"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1266
+ dependencies = [
1267
+ "ppv-lite86",
1268
+ "rand_core",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "rand_core"
1273
+ version = "0.6.4"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1276
+ dependencies = [
1277
+ "getrandom 0.2.17",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "rayon"
1282
+ version = "1.12.0"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1285
+ dependencies = [
1286
+ "either",
1287
+ "rayon-core",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "rayon-core"
1292
+ version = "1.13.0"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1295
+ dependencies = [
1296
+ "crossbeam-deque",
1297
+ "crossbeam-utils",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "redox_syscall"
1302
+ version = "0.5.18"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1305
+ dependencies = [
1306
+ "bitflags",
1307
+ ]
1308
+
776
1309
  [[package]]
777
1310
  name = "redox_users"
778
1311
  version = "0.5.2"
@@ -813,6 +1346,45 @@ version = "0.8.11"
813
1346
  source = "registry+https://github.com/rust-lang/crates.io-index"
814
1347
  checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
815
1348
 
1349
+ [[package]]
1350
+ name = "rend"
1351
+ version = "0.5.4"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "663ba70707f96e871406fe10d68128412e619b06d1d47cb91c3a4c6501176240"
1354
+ dependencies = [
1355
+ "bytecheck",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "rkyv"
1360
+ version = "0.8.17"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "815cc8a37159a463064825246cadb07961e25cd9885908606f6d08a98d8f8874"
1363
+ dependencies = [
1364
+ "bytecheck",
1365
+ "bytes",
1366
+ "hashbrown 0.17.1",
1367
+ "indexmap",
1368
+ "munge",
1369
+ "ptr_meta",
1370
+ "rancor",
1371
+ "rend",
1372
+ "rkyv_derive",
1373
+ "tinyvec",
1374
+ "uuid",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "rkyv_derive"
1379
+ version = "0.8.17"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "c0ed1a78a1b19d184b0daa629dd9a024573173ec7d485b287cb369fb3607cc1c"
1382
+ dependencies = [
1383
+ "proc-macro2",
1384
+ "quote",
1385
+ "syn",
1386
+ ]
1387
+
816
1388
  [[package]]
817
1389
  name = "rusqlite"
818
1390
  version = "0.32.1"
@@ -846,6 +1418,12 @@ dependencies = [
846
1418
  "windows-sys 0.61.2",
847
1419
  ]
848
1420
 
1421
+ [[package]]
1422
+ name = "rustversion"
1423
+ version = "1.0.23"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1426
+
849
1427
  [[package]]
850
1428
  name = "same-file"
851
1429
  version = "1.0.6"
@@ -864,6 +1442,12 @@ dependencies = [
864
1442
  "protobuf",
865
1443
  ]
866
1444
 
1445
+ [[package]]
1446
+ name = "scopeguard"
1447
+ version = "1.2.0"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1450
+
867
1451
  [[package]]
868
1452
  name = "semver"
869
1453
  version = "1.0.28"
@@ -923,18 +1507,59 @@ dependencies = [
923
1507
  "serde",
924
1508
  ]
925
1509
 
1510
+ [[package]]
1511
+ name = "sharded-slab"
1512
+ version = "0.1.7"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1515
+ dependencies = [
1516
+ "lazy_static",
1517
+ ]
1518
+
926
1519
  [[package]]
927
1520
  name = "shlex"
928
1521
  version = "2.0.1"
929
1522
  source = "registry+https://github.com/rust-lang/crates.io-index"
930
1523
  checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
931
1524
 
1525
+ [[package]]
1526
+ name = "signal-hook-registry"
1527
+ version = "1.4.8"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1530
+ dependencies = [
1531
+ "errno",
1532
+ "libc",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "simdutf8"
1537
+ version = "0.1.5"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1540
+
1541
+ [[package]]
1542
+ name = "slab"
1543
+ version = "0.4.12"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1546
+
932
1547
  [[package]]
933
1548
  name = "smallvec"
934
1549
  version = "1.15.2"
935
1550
  source = "registry+https://github.com/rust-lang/crates.io-index"
936
1551
  checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
937
1552
 
1553
+ [[package]]
1554
+ name = "socket2"
1555
+ version = "0.6.5"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
1558
+ dependencies = [
1559
+ "libc",
1560
+ "windows-sys 0.61.2",
1561
+ ]
1562
+
938
1563
  [[package]]
939
1564
  name = "streaming-iterator"
940
1565
  version = "0.1.9"
@@ -1017,6 +1642,58 @@ dependencies = [
1017
1642
  "syn",
1018
1643
  ]
1019
1644
 
1645
+ [[package]]
1646
+ name = "thread_local"
1647
+ version = "1.1.10"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
1650
+ dependencies = [
1651
+ "cfg-if",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "tinyvec"
1656
+ version = "1.12.0"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
1659
+ dependencies = [
1660
+ "tinyvec_macros",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "tinyvec_macros"
1665
+ version = "0.1.1"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1668
+
1669
+ [[package]]
1670
+ name = "tokio"
1671
+ version = "1.53.0"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "d988bcd52dbe076d3d46903332f58c912b87a2c49b1428419a5845154762ffee"
1674
+ dependencies = [
1675
+ "bytes",
1676
+ "libc",
1677
+ "mio",
1678
+ "parking_lot",
1679
+ "pin-project-lite",
1680
+ "signal-hook-registry",
1681
+ "socket2",
1682
+ "tokio-macros",
1683
+ "windows-sys 0.61.2",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "tokio-macros"
1688
+ version = "2.7.1"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba"
1691
+ dependencies = [
1692
+ "proc-macro2",
1693
+ "quote",
1694
+ "syn",
1695
+ ]
1696
+
1020
1697
  [[package]]
1021
1698
  name = "toml"
1022
1699
  version = "0.8.23"
@@ -1058,6 +1735,67 @@ version = "0.1.2"
1058
1735
  source = "registry+https://github.com/rust-lang/crates.io-index"
1059
1736
  checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1060
1737
 
1738
+ [[package]]
1739
+ name = "tracing"
1740
+ version = "0.1.44"
1741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1743
+ dependencies = [
1744
+ "pin-project-lite",
1745
+ "tracing-attributes",
1746
+ "tracing-core",
1747
+ ]
1748
+
1749
+ [[package]]
1750
+ name = "tracing-attributes"
1751
+ version = "0.1.31"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1754
+ dependencies = [
1755
+ "proc-macro2",
1756
+ "quote",
1757
+ "syn",
1758
+ ]
1759
+
1760
+ [[package]]
1761
+ name = "tracing-core"
1762
+ version = "0.1.36"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1765
+ dependencies = [
1766
+ "once_cell",
1767
+ "valuable",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "tracing-log"
1772
+ version = "0.2.0"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1775
+ dependencies = [
1776
+ "log",
1777
+ "once_cell",
1778
+ "tracing-core",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "tracing-subscriber"
1783
+ version = "0.3.23"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1786
+ dependencies = [
1787
+ "matchers",
1788
+ "nu-ansi-term",
1789
+ "once_cell",
1790
+ "regex-automata",
1791
+ "sharded-slab",
1792
+ "smallvec",
1793
+ "thread_local",
1794
+ "tracing",
1795
+ "tracing-core",
1796
+ "tracing-log",
1797
+ ]
1798
+
1061
1799
  [[package]]
1062
1800
  name = "tree-sitter"
1063
1801
  version = "0.26.10"
@@ -1310,12 +2048,34 @@ version = "1.13.3"
1310
2048
  source = "registry+https://github.com/rust-lang/crates.io-index"
1311
2049
  checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
1312
2050
 
2051
+ [[package]]
2052
+ name = "unicode-width"
2053
+ version = "0.2.2"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2056
+
1313
2057
  [[package]]
1314
2058
  name = "utf8parse"
1315
2059
  version = "0.2.2"
1316
2060
  source = "registry+https://github.com/rust-lang/crates.io-index"
1317
2061
  checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1318
2062
 
2063
+ [[package]]
2064
+ name = "uuid"
2065
+ version = "1.24.0"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
2068
+ dependencies = [
2069
+ "js-sys",
2070
+ "wasm-bindgen",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "valuable"
2075
+ version = "0.1.1"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2078
+
1319
2079
  [[package]]
1320
2080
  name = "vcpkg"
1321
2081
  version = "0.2.15"
@@ -1344,6 +2104,61 @@ version = "0.11.1+wasi-snapshot-preview1"
1344
2104
  source = "registry+https://github.com/rust-lang/crates.io-index"
1345
2105
  checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1346
2106
 
2107
+ [[package]]
2108
+ name = "wasm-bindgen"
2109
+ version = "0.2.126"
2110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2111
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2112
+ dependencies = [
2113
+ "cfg-if",
2114
+ "once_cell",
2115
+ "rustversion",
2116
+ "wasm-bindgen-macro",
2117
+ "wasm-bindgen-shared",
2118
+ ]
2119
+
2120
+ [[package]]
2121
+ name = "wasm-bindgen-macro"
2122
+ version = "0.2.126"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2125
+ dependencies = [
2126
+ "quote",
2127
+ "wasm-bindgen-macro-support",
2128
+ ]
2129
+
2130
+ [[package]]
2131
+ name = "wasm-bindgen-macro-support"
2132
+ version = "0.2.126"
2133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2135
+ dependencies = [
2136
+ "bumpalo",
2137
+ "proc-macro2",
2138
+ "quote",
2139
+ "syn",
2140
+ "wasm-bindgen-shared",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "wasm-bindgen-shared"
2145
+ version = "0.2.126"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2148
+ dependencies = [
2149
+ "unicode-ident",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "web-time"
2154
+ version = "1.1.0"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2157
+ dependencies = [
2158
+ "js-sys",
2159
+ "wasm-bindgen",
2160
+ ]
2161
+
1347
2162
  [[package]]
1348
2163
  name = "winapi-util"
1349
2164
  version = "0.1.11"
@@ -1353,12 +2168,65 @@ dependencies = [
1353
2168
  "windows-sys 0.61.2",
1354
2169
  ]
1355
2170
 
2171
+ [[package]]
2172
+ name = "windows-core"
2173
+ version = "0.62.2"
2174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2175
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2176
+ dependencies = [
2177
+ "windows-implement",
2178
+ "windows-interface",
2179
+ "windows-link",
2180
+ "windows-result",
2181
+ "windows-strings",
2182
+ ]
2183
+
2184
+ [[package]]
2185
+ name = "windows-implement"
2186
+ version = "0.60.2"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2189
+ dependencies = [
2190
+ "proc-macro2",
2191
+ "quote",
2192
+ "syn",
2193
+ ]
2194
+
2195
+ [[package]]
2196
+ name = "windows-interface"
2197
+ version = "0.59.3"
2198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2199
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2200
+ dependencies = [
2201
+ "proc-macro2",
2202
+ "quote",
2203
+ "syn",
2204
+ ]
2205
+
1356
2206
  [[package]]
1357
2207
  name = "windows-link"
1358
2208
  version = "0.2.1"
1359
2209
  source = "registry+https://github.com/rust-lang/crates.io-index"
1360
2210
  checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1361
2211
 
2212
+ [[package]]
2213
+ name = "windows-result"
2214
+ version = "0.4.1"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2217
+ dependencies = [
2218
+ "windows-link",
2219
+ ]
2220
+
2221
+ [[package]]
2222
+ name = "windows-strings"
2223
+ version = "0.5.1"
2224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2225
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2226
+ dependencies = [
2227
+ "windows-link",
2228
+ ]
2229
+
1362
2230
  [[package]]
1363
2231
  name = "windows-sys"
1364
2232
  version = "0.59.0"