inlay 0.1.0a1__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 (73) hide show
  1. inlay-0.1.0a1/Cargo.lock +816 -0
  2. inlay-0.1.0a1/Cargo.toml +42 -0
  3. inlay-0.1.0a1/PKG-INFO +6 -0
  4. inlay-0.1.0a1/README.md +14 -0
  5. inlay-0.1.0a1/crates/dedup/Cargo.lock +46 -0
  6. inlay-0.1.0a1/crates/dedup/Cargo.toml +9 -0
  7. inlay-0.1.0a1/crates/dedup/src/lib.rs +90 -0
  8. inlay-0.1.0a1/crates/instrument/Cargo.lock +42 -0
  9. inlay-0.1.0a1/crates/instrument/Cargo.toml +8 -0
  10. inlay-0.1.0a1/crates/instrument/src/lib.rs +59 -0
  11. inlay-0.1.0a1/crates/instrument-macros/Cargo.lock +35 -0
  12. inlay-0.1.0a1/crates/instrument-macros/Cargo.toml +12 -0
  13. inlay-0.1.0a1/crates/instrument-macros/src/lib.rs +58 -0
  14. inlay-0.1.0a1/crates/solver/Cargo.lock +144 -0
  15. inlay-0.1.0a1/crates/solver/Cargo.toml +17 -0
  16. inlay-0.1.0a1/crates/solver/src/cache.rs +294 -0
  17. inlay-0.1.0a1/crates/solver/src/context.rs +227 -0
  18. inlay-0.1.0a1/crates/solver/src/example.rs +599 -0
  19. inlay-0.1.0a1/crates/solver/src/lib.rs +13 -0
  20. inlay-0.1.0a1/crates/solver/src/lookup_support.rs +352 -0
  21. inlay-0.1.0a1/crates/solver/src/rule.rs +238 -0
  22. inlay-0.1.0a1/crates/solver/src/search_graph.rs +659 -0
  23. inlay-0.1.0a1/crates/solver/src/solve.rs +638 -0
  24. inlay-0.1.0a1/crates/solver/src/stack.rs +79 -0
  25. inlay-0.1.0a1/crates/solver/src/traits/arena.rs +28 -0
  26. inlay-0.1.0a1/crates/solver/src/traits/env.rs +44 -0
  27. inlay-0.1.0a1/crates/solver/src/traits/mod.rs +9 -0
  28. inlay-0.1.0a1/crates/solver/src/traits/rule.rs +20 -0
  29. inlay-0.1.0a1/crates/solver/src/traits/support.rs +6 -0
  30. inlay-0.1.0a1/inlay/__init__.py +91 -0
  31. inlay-0.1.0a1/inlay/_native.pyi +233 -0
  32. inlay-0.1.0a1/inlay/compile.py +63 -0
  33. inlay-0.1.0a1/inlay/default.py +70 -0
  34. inlay-0.1.0a1/inlay/py.typed +0 -0
  35. inlay-0.1.0a1/inlay/registry.py +527 -0
  36. inlay-0.1.0a1/inlay/rules.py +224 -0
  37. inlay-0.1.0a1/inlay/type_utils/__init__.py +47 -0
  38. inlay-0.1.0a1/inlay/type_utils/errors.py +13 -0
  39. inlay-0.1.0a1/inlay/type_utils/markers.py +87 -0
  40. inlay-0.1.0a1/inlay/type_utils/normalize.py +928 -0
  41. inlay-0.1.0a1/pyproject.toml +57 -0
  42. inlay-0.1.0a1/src/compile/flatten.rs +1623 -0
  43. inlay-0.1.0a1/src/compile/ingest.rs +584 -0
  44. inlay-0.1.0a1/src/compile/mod.rs +189 -0
  45. inlay-0.1.0a1/src/lib.rs +81 -0
  46. inlay-0.1.0a1/src/normalized.rs +976 -0
  47. inlay-0.1.0a1/src/qualifier.rs +537 -0
  48. inlay-0.1.0a1/src/registry/converter.rs +255 -0
  49. inlay-0.1.0a1/src/registry/entries.rs +142 -0
  50. inlay-0.1.0a1/src/registry/mod.rs +6 -0
  51. inlay-0.1.0a1/src/registry/source.rs +213 -0
  52. inlay-0.1.0a1/src/rules/builder.rs +202 -0
  53. inlay-0.1.0a1/src/rules/env.rs +1775 -0
  54. inlay-0.1.0a1/src/rules/mod.rs +587 -0
  55. inlay-0.1.0a1/src/rules/rule.rs +1730 -0
  56. inlay-0.1.0a1/src/runtime/executor.rs +325 -0
  57. inlay-0.1.0a1/src/runtime/lazy_ref.rs +43 -0
  58. inlay-0.1.0a1/src/runtime/mod.rs +5 -0
  59. inlay-0.1.0a1/src/runtime/proxy.rs +334 -0
  60. inlay-0.1.0a1/src/runtime/resources.rs +151 -0
  61. inlay-0.1.0a1/src/runtime/transition/mod.rs +611 -0
  62. inlay-0.1.0a1/src/runtime/transition/wrappers.rs +347 -0
  63. inlay-0.1.0a1/src/types/deep_eq.rs +179 -0
  64. inlay-0.1.0a1/src/types/deep_hash.rs +263 -0
  65. inlay-0.1.0a1/src/types/definitions.rs +379 -0
  66. inlay-0.1.0a1/src/types/monomorphize.rs +1130 -0
  67. inlay-0.1.0a1/src/types/shallow_eq.rs +297 -0
  68. inlay-0.1.0a1/src/types/shallow_hash.rs +228 -0
  69. inlay-0.1.0a1/src/types/storage.rs +252 -0
  70. inlay-0.1.0a1/src/types/traverse.rs +155 -0
  71. inlay-0.1.0a1/src/types/type_key_map.rs +189 -0
  72. inlay-0.1.0a1/src/types/unify.rs +304 -0
  73. inlay-0.1.0a1/src/types.rs +38 -0
@@ -0,0 +1,816 @@
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.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "allocator-api2"
16
+ version = "0.2.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
19
+
20
+ [[package]]
21
+ name = "android_system_properties"
22
+ version = "0.1.5"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
25
+ dependencies = [
26
+ "libc",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anyhow"
31
+ version = "1.0.102"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
34
+
35
+ [[package]]
36
+ name = "autocfg"
37
+ version = "1.5.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
40
+
41
+ [[package]]
42
+ name = "bumpalo"
43
+ version = "3.20.2"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
46
+
47
+ [[package]]
48
+ name = "bytes"
49
+ version = "1.11.1"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
52
+
53
+ [[package]]
54
+ name = "cc"
55
+ version = "1.2.60"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
58
+ dependencies = [
59
+ "find-msvc-tools",
60
+ "shlex",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "cfg-if"
65
+ version = "1.0.4"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
68
+
69
+ [[package]]
70
+ name = "chrono"
71
+ version = "0.4.44"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
74
+ dependencies = [
75
+ "iana-time-zone",
76
+ "js-sys",
77
+ "num-traits",
78
+ "wasm-bindgen",
79
+ "windows-link",
80
+ ]
81
+
82
+ [[package]]
83
+ name = "context-solver"
84
+ version = "0.1.0"
85
+ dependencies = [
86
+ "derive-where",
87
+ "inlay-instrument",
88
+ "rustc-hash",
89
+ "thiserror",
90
+ "tracing",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "core-foundation-sys"
95
+ version = "0.8.7"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
98
+
99
+ [[package]]
100
+ name = "derive-where"
101
+ version = "1.6.1"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
104
+ dependencies = [
105
+ "proc-macro2",
106
+ "quote",
107
+ "syn",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "either"
112
+ version = "1.15.0"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
115
+
116
+ [[package]]
117
+ name = "equivalent"
118
+ version = "1.0.2"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
121
+
122
+ [[package]]
123
+ name = "find-msvc-tools"
124
+ version = "0.1.9"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
127
+
128
+ [[package]]
129
+ name = "foldhash"
130
+ version = "0.2.0"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
133
+
134
+ [[package]]
135
+ name = "getrandom"
136
+ version = "0.2.17"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
139
+ dependencies = [
140
+ "cfg-if",
141
+ "libc",
142
+ "wasi",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "hashbrown"
147
+ version = "0.16.1"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
150
+ dependencies = [
151
+ "allocator-api2",
152
+ "equivalent",
153
+ "foldhash",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "heck"
158
+ version = "0.5.0"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
161
+
162
+ [[package]]
163
+ name = "iana-time-zone"
164
+ version = "0.1.65"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
167
+ dependencies = [
168
+ "android_system_properties",
169
+ "core-foundation-sys",
170
+ "iana-time-zone-haiku",
171
+ "js-sys",
172
+ "log",
173
+ "wasm-bindgen",
174
+ "windows-core",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "iana-time-zone-haiku"
179
+ version = "0.1.2"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
182
+ dependencies = [
183
+ "cc",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "indexmap"
188
+ version = "2.13.0"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
191
+ dependencies = [
192
+ "equivalent",
193
+ "hashbrown",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "inlay"
198
+ version = "0.1.0"
199
+ dependencies = [
200
+ "context-solver",
201
+ "derive-where",
202
+ "indexmap",
203
+ "inlay-dedup",
204
+ "inlay-instrument",
205
+ "pyo3",
206
+ "rustc-hash",
207
+ "thiserror",
208
+ "tracing",
209
+ "tracing-perfetto",
210
+ "tracing-subscriber",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "inlay-dedup"
215
+ version = "0.1.0"
216
+ dependencies = [
217
+ "hashbrown",
218
+ "rustc-hash",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "inlay-instrument"
223
+ version = "0.1.0"
224
+ dependencies = [
225
+ "inlay-instrument-macros",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "inlay-instrument-macros"
230
+ version = "0.1.0"
231
+ dependencies = [
232
+ "proc-macro2",
233
+ "quote",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "itertools"
238
+ version = "0.12.1"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
241
+ dependencies = [
242
+ "either",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "js-sys"
247
+ version = "0.3.95"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
250
+ dependencies = [
251
+ "once_cell",
252
+ "wasm-bindgen",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "lazy_static"
257
+ version = "1.5.0"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
260
+
261
+ [[package]]
262
+ name = "libc"
263
+ version = "0.2.183"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
266
+
267
+ [[package]]
268
+ name = "log"
269
+ version = "0.4.29"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
272
+
273
+ [[package]]
274
+ name = "matchers"
275
+ version = "0.2.0"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
278
+ dependencies = [
279
+ "regex-automata",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "memchr"
284
+ version = "2.8.0"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
287
+
288
+ [[package]]
289
+ name = "nu-ansi-term"
290
+ version = "0.50.3"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
293
+ dependencies = [
294
+ "windows-sys",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "num-traits"
299
+ version = "0.2.19"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
302
+ dependencies = [
303
+ "autocfg",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "once_cell"
308
+ version = "1.21.3"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
311
+
312
+ [[package]]
313
+ name = "pin-project-lite"
314
+ version = "0.2.17"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
317
+
318
+ [[package]]
319
+ name = "portable-atomic"
320
+ version = "1.13.1"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
323
+
324
+ [[package]]
325
+ name = "ppv-lite86"
326
+ version = "0.2.21"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
329
+ dependencies = [
330
+ "zerocopy",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "proc-macro2"
335
+ version = "1.0.106"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
338
+ dependencies = [
339
+ "unicode-ident",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "prost"
344
+ version = "0.12.6"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "deb1435c188b76130da55f17a466d252ff7b1418b2ad3e037d127b94e3411f29"
347
+ dependencies = [
348
+ "bytes",
349
+ "prost-derive",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "prost-derive"
354
+ version = "0.12.6"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1"
357
+ dependencies = [
358
+ "anyhow",
359
+ "itertools",
360
+ "proc-macro2",
361
+ "quote",
362
+ "syn",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "pyo3"
367
+ version = "0.28.2"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
370
+ dependencies = [
371
+ "libc",
372
+ "once_cell",
373
+ "portable-atomic",
374
+ "pyo3-build-config",
375
+ "pyo3-ffi",
376
+ "pyo3-macros",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "pyo3-build-config"
381
+ version = "0.28.2"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
384
+ dependencies = [
385
+ "target-lexicon",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "pyo3-ffi"
390
+ version = "0.28.2"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
393
+ dependencies = [
394
+ "libc",
395
+ "pyo3-build-config",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "pyo3-macros"
400
+ version = "0.28.2"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
403
+ dependencies = [
404
+ "proc-macro2",
405
+ "pyo3-macros-backend",
406
+ "quote",
407
+ "syn",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "pyo3-macros-backend"
412
+ version = "0.28.2"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
415
+ dependencies = [
416
+ "heck",
417
+ "proc-macro2",
418
+ "pyo3-build-config",
419
+ "quote",
420
+ "syn",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "quote"
425
+ version = "1.0.45"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
428
+ dependencies = [
429
+ "proc-macro2",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "rand"
434
+ version = "0.8.6"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
437
+ dependencies = [
438
+ "libc",
439
+ "rand_chacha",
440
+ "rand_core",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "rand_chacha"
445
+ version = "0.3.1"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
448
+ dependencies = [
449
+ "ppv-lite86",
450
+ "rand_core",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "rand_core"
455
+ version = "0.6.4"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
458
+ dependencies = [
459
+ "getrandom",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "regex-automata"
464
+ version = "0.4.14"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
467
+ dependencies = [
468
+ "aho-corasick",
469
+ "memchr",
470
+ "regex-syntax",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "regex-syntax"
475
+ version = "0.8.10"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
478
+
479
+ [[package]]
480
+ name = "rustc-hash"
481
+ version = "2.1.2"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
484
+
485
+ [[package]]
486
+ name = "rustversion"
487
+ version = "1.0.22"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
490
+
491
+ [[package]]
492
+ name = "sharded-slab"
493
+ version = "0.1.7"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
496
+ dependencies = [
497
+ "lazy_static",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "shlex"
502
+ version = "1.3.0"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
505
+
506
+ [[package]]
507
+ name = "smallvec"
508
+ version = "1.15.1"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
511
+
512
+ [[package]]
513
+ name = "syn"
514
+ version = "2.0.117"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
517
+ dependencies = [
518
+ "proc-macro2",
519
+ "quote",
520
+ "unicode-ident",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "target-lexicon"
525
+ version = "0.13.5"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
528
+
529
+ [[package]]
530
+ name = "thiserror"
531
+ version = "2.0.18"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
534
+ dependencies = [
535
+ "thiserror-impl",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "thiserror-impl"
540
+ version = "2.0.18"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
543
+ dependencies = [
544
+ "proc-macro2",
545
+ "quote",
546
+ "syn",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "thread-id"
551
+ version = "4.2.2"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "cfe8f25bbdd100db7e1d34acf7fd2dc59c4bf8f7483f505eaa7d4f12f76cc0ea"
554
+ dependencies = [
555
+ "libc",
556
+ "winapi",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "thread_local"
561
+ version = "1.1.9"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
564
+ dependencies = [
565
+ "cfg-if",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "tracing"
570
+ version = "0.1.44"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
573
+ dependencies = [
574
+ "pin-project-lite",
575
+ "tracing-attributes",
576
+ "tracing-core",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "tracing-attributes"
581
+ version = "0.1.31"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
584
+ dependencies = [
585
+ "proc-macro2",
586
+ "quote",
587
+ "syn",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "tracing-core"
592
+ version = "0.1.36"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
595
+ dependencies = [
596
+ "once_cell",
597
+ "valuable",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "tracing-log"
602
+ version = "0.2.0"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
605
+ dependencies = [
606
+ "log",
607
+ "once_cell",
608
+ "tracing-core",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "tracing-perfetto"
613
+ version = "0.1.5"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "cf599f51530a7211f5aa92c84abdfc1137362d471f0473a4b1be8d625167fb0d"
616
+ dependencies = [
617
+ "anyhow",
618
+ "bytes",
619
+ "chrono",
620
+ "prost",
621
+ "rand",
622
+ "thread-id",
623
+ "tracing",
624
+ "tracing-subscriber",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "tracing-subscriber"
629
+ version = "0.3.23"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
632
+ dependencies = [
633
+ "matchers",
634
+ "nu-ansi-term",
635
+ "once_cell",
636
+ "regex-automata",
637
+ "sharded-slab",
638
+ "smallvec",
639
+ "thread_local",
640
+ "tracing",
641
+ "tracing-core",
642
+ "tracing-log",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "unicode-ident"
647
+ version = "1.0.24"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
650
+
651
+ [[package]]
652
+ name = "valuable"
653
+ version = "0.1.1"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
656
+
657
+ [[package]]
658
+ name = "wasi"
659
+ version = "0.11.1+wasi-snapshot-preview1"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
662
+
663
+ [[package]]
664
+ name = "wasm-bindgen"
665
+ version = "0.2.118"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
668
+ dependencies = [
669
+ "cfg-if",
670
+ "once_cell",
671
+ "rustversion",
672
+ "wasm-bindgen-macro",
673
+ "wasm-bindgen-shared",
674
+ ]
675
+
676
+ [[package]]
677
+ name = "wasm-bindgen-macro"
678
+ version = "0.2.118"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
681
+ dependencies = [
682
+ "quote",
683
+ "wasm-bindgen-macro-support",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "wasm-bindgen-macro-support"
688
+ version = "0.2.118"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
691
+ dependencies = [
692
+ "bumpalo",
693
+ "proc-macro2",
694
+ "quote",
695
+ "syn",
696
+ "wasm-bindgen-shared",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "wasm-bindgen-shared"
701
+ version = "0.2.118"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
704
+ dependencies = [
705
+ "unicode-ident",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "winapi"
710
+ version = "0.3.9"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
713
+ dependencies = [
714
+ "winapi-i686-pc-windows-gnu",
715
+ "winapi-x86_64-pc-windows-gnu",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "winapi-i686-pc-windows-gnu"
720
+ version = "0.4.0"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
723
+
724
+ [[package]]
725
+ name = "winapi-x86_64-pc-windows-gnu"
726
+ version = "0.4.0"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
729
+
730
+ [[package]]
731
+ name = "windows-core"
732
+ version = "0.62.2"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
735
+ dependencies = [
736
+ "windows-implement",
737
+ "windows-interface",
738
+ "windows-link",
739
+ "windows-result",
740
+ "windows-strings",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "windows-implement"
745
+ version = "0.60.2"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
748
+ dependencies = [
749
+ "proc-macro2",
750
+ "quote",
751
+ "syn",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "windows-interface"
756
+ version = "0.59.3"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
759
+ dependencies = [
760
+ "proc-macro2",
761
+ "quote",
762
+ "syn",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "windows-link"
767
+ version = "0.2.1"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
770
+
771
+ [[package]]
772
+ name = "windows-result"
773
+ version = "0.4.1"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
776
+ dependencies = [
777
+ "windows-link",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "windows-strings"
782
+ version = "0.5.1"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
785
+ dependencies = [
786
+ "windows-link",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "windows-sys"
791
+ version = "0.61.2"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
794
+ dependencies = [
795
+ "windows-link",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "zerocopy"
800
+ version = "0.8.48"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
803
+ dependencies = [
804
+ "zerocopy-derive",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "zerocopy-derive"
809
+ version = "0.8.48"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
812
+ dependencies = [
813
+ "proc-macro2",
814
+ "quote",
815
+ "syn",
816
+ ]