geny-harness 0.2.3__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 (159) hide show
  1. geny_harness-0.2.3/Cargo.lock +1936 -0
  2. geny_harness-0.2.3/Cargo.toml +22 -0
  3. geny_harness-0.2.3/PKG-INFO +59 -0
  4. geny_harness-0.2.3/README.md +35 -0
  5. geny_harness-0.2.3/crates/geny-harness-core/Cargo.toml +23 -0
  6. geny_harness-0.2.3/crates/geny-harness-core/src/core/artifact.rs +160 -0
  7. geny_harness-0.2.3/crates/geny-harness-core/src/core/builder.rs +160 -0
  8. geny_harness-0.2.3/crates/geny-harness-core/src/core/config.rs +147 -0
  9. geny_harness-0.2.3/crates/geny-harness-core/src/core/errors.rs +301 -0
  10. geny_harness-0.2.3/crates/geny-harness-core/src/core/mod.rs +21 -0
  11. geny_harness-0.2.3/crates/geny-harness-core/src/core/pipeline.rs +519 -0
  12. geny_harness-0.2.3/crates/geny-harness-core/src/core/presets.rs +110 -0
  13. geny_harness-0.2.3/crates/geny-harness-core/src/core/result.rs +159 -0
  14. geny_harness-0.2.3/crates/geny-harness-core/src/core/stage.rs +143 -0
  15. geny_harness-0.2.3/crates/geny-harness-core/src/core/state.rs +377 -0
  16. geny_harness-0.2.3/crates/geny-harness-core/src/events/bus.rs +278 -0
  17. geny_harness-0.2.3/crates/geny-harness-core/src/events/mod.rs +7 -0
  18. geny_harness-0.2.3/crates/geny-harness-core/src/events/types.rs +109 -0
  19. geny_harness-0.2.3/crates/geny-harness-core/src/lib.rs +10 -0
  20. geny_harness-0.2.3/crates/geny-harness-core/src/session/freshness.rs +133 -0
  21. geny_harness-0.2.3/crates/geny-harness-core/src/session/manager.rs +96 -0
  22. geny_harness-0.2.3/crates/geny-harness-core/src/session/mod.rs +10 -0
  23. geny_harness-0.2.3/crates/geny-harness-core/src/session/session.rs +83 -0
  24. geny_harness-0.2.3/crates/geny-harness-core/src/stages/mod.rs +24 -0
  25. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s01_input/artifact/default/mod.rs +7 -0
  26. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s01_input/artifact/default/normalizer.rs +177 -0
  27. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s01_input/artifact/default/validator.rs +225 -0
  28. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s01_input/artifact/mod.rs +3 -0
  29. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s01_input/interface.rs +18 -0
  30. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s01_input/mod.rs +10 -0
  31. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s01_input/stage.rs +95 -0
  32. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s01_input/types.rs +77 -0
  33. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s02_context/artifact/default/compactor.rs +159 -0
  34. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s02_context/artifact/default/context_strategy.rs +148 -0
  35. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s02_context/artifact/default/mod.rs +9 -0
  36. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s02_context/artifact/default/retriever.rs +101 -0
  37. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s02_context/artifact/mod.rs +3 -0
  38. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s02_context/interface.rs +32 -0
  39. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s02_context/mod.rs +10 -0
  40. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s02_context/stage.rs +134 -0
  41. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s02_context/types.rs +41 -0
  42. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s03_system/artifact/default/blocks.rs +221 -0
  43. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s03_system/artifact/default/builder.rs +131 -0
  44. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s03_system/artifact/default/mod.rs +9 -0
  45. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s03_system/artifact/mod.rs +3 -0
  46. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s03_system/interface.rs +25 -0
  47. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s03_system/mod.rs +9 -0
  48. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s03_system/stage.rs +86 -0
  49. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s03_system/types.rs +5 -0
  50. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s04_guard/artifact/default/chain.rs +55 -0
  51. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s04_guard/artifact/default/guards.rs +267 -0
  52. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s04_guard/artifact/default/mod.rs +7 -0
  53. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s04_guard/artifact/mod.rs +3 -0
  54. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s04_guard/interface.rs +20 -0
  55. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s04_guard/mod.rs +10 -0
  56. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s04_guard/stage.rs +86 -0
  57. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s04_guard/types.rs +42 -0
  58. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s05_cache/artifact/default/cache_strategies.rs +212 -0
  59. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s05_cache/artifact/default/mod.rs +5 -0
  60. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s05_cache/artifact/mod.rs +3 -0
  61. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s05_cache/interface.rs +10 -0
  62. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s05_cache/mod.rs +8 -0
  63. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s05_cache/stage.rs +74 -0
  64. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s06_api/artifact/default/mod.rs +7 -0
  65. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s06_api/artifact/default/providers.rs +287 -0
  66. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s06_api/artifact/default/retry.rs +195 -0
  67. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s06_api/artifact/mod.rs +3 -0
  68. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s06_api/interface.rs +32 -0
  69. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s06_api/mod.rs +10 -0
  70. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s06_api/stage.rs +212 -0
  71. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s06_api/types.rs +341 -0
  72. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s07_token/artifact/default/calculators.rs +161 -0
  73. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s07_token/artifact/default/mod.rs +7 -0
  74. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s07_token/artifact/default/trackers.rs +137 -0
  75. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s07_token/artifact/mod.rs +3 -0
  76. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s07_token/interface.rs +16 -0
  77. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s07_token/mod.rs +8 -0
  78. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s07_token/stage.rs +101 -0
  79. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s08_think/artifact/default/mod.rs +5 -0
  80. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s08_think/artifact/default/processors.rs +168 -0
  81. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s08_think/artifact/mod.rs +3 -0
  82. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s08_think/interface.rs +19 -0
  83. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s08_think/mod.rs +10 -0
  84. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s08_think/stage.rs +136 -0
  85. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s08_think/types.rs +63 -0
  86. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s09_parse/artifact/default/mod.rs +7 -0
  87. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s09_parse/artifact/default/parser.rs +261 -0
  88. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s09_parse/artifact/default/signal_detector.rs +243 -0
  89. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s09_parse/artifact/mod.rs +3 -0
  90. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s09_parse/interface.rs +16 -0
  91. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s09_parse/mod.rs +10 -0
  92. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s09_parse/stage.rs +117 -0
  93. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s09_parse/types.rs +105 -0
  94. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s10_tool/artifact/default/executor.rs +175 -0
  95. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s10_tool/artifact/default/mod.rs +7 -0
  96. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s10_tool/artifact/default/router.rs +90 -0
  97. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s10_tool/artifact/mod.rs +3 -0
  98. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s10_tool/interface.rs +25 -0
  99. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s10_tool/mod.rs +9 -0
  100. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s10_tool/stage.rs +115 -0
  101. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s10_tool/types.rs +8 -0
  102. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s11_agent/artifact/default/mod.rs +5 -0
  103. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s11_agent/artifact/default/orchestrator.rs +225 -0
  104. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s11_agent/artifact/mod.rs +3 -0
  105. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s11_agent/interface.rs +22 -0
  106. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s11_agent/mod.rs +10 -0
  107. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s11_agent/stage.rs +100 -0
  108. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s11_agent/types.rs +46 -0
  109. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s12_evaluate/artifact/default/evaluation.rs +378 -0
  110. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s12_evaluate/artifact/default/mod.rs +7 -0
  111. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s12_evaluate/artifact/default/scorer.rs +147 -0
  112. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s12_evaluate/artifact/mod.rs +3 -0
  113. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s12_evaluate/interface.rs +21 -0
  114. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s12_evaluate/mod.rs +10 -0
  115. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s12_evaluate/stage.rs +112 -0
  116. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s12_evaluate/types.rs +83 -0
  117. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s13_loop/artifact/default/controller.rs +205 -0
  118. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s13_loop/artifact/default/mod.rs +5 -0
  119. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s13_loop/artifact/mod.rs +3 -0
  120. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s13_loop/interface.rs +15 -0
  121. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s13_loop/mod.rs +8 -0
  122. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s13_loop/stage.rs +92 -0
  123. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s14_emit/artifact/default/emitter.rs +345 -0
  124. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s14_emit/artifact/default/mod.rs +5 -0
  125. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s14_emit/artifact/mod.rs +3 -0
  126. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s14_emit/interface.rs +14 -0
  127. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s14_emit/mod.rs +10 -0
  128. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s14_emit/stage.rs +79 -0
  129. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s14_emit/types.rs +75 -0
  130. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s15_memory/artifact/default/mod.rs +7 -0
  131. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s15_memory/artifact/default/persistence.rs +181 -0
  132. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s15_memory/artifact/default/strategy.rs +127 -0
  133. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s15_memory/artifact/mod.rs +3 -0
  134. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s15_memory/interface.rs +22 -0
  135. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s15_memory/mod.rs +8 -0
  136. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s15_memory/stage.rs +117 -0
  137. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s16_yield/artifact/default/formatter.rs +132 -0
  138. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s16_yield/artifact/default/mod.rs +5 -0
  139. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s16_yield/artifact/mod.rs +3 -0
  140. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s16_yield/interface.rs +9 -0
  141. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s16_yield/mod.rs +8 -0
  142. geny_harness-0.2.3/crates/geny-harness-core/src/stages/s16_yield/stage.rs +78 -0
  143. geny_harness-0.2.3/crates/geny-harness-core/src/tools/base.rs +116 -0
  144. geny_harness-0.2.3/crates/geny-harness-core/src/tools/mcp/adapter.rs +59 -0
  145. geny_harness-0.2.3/crates/geny-harness-core/src/tools/mcp/manager.rs +142 -0
  146. geny_harness-0.2.3/crates/geny-harness-core/src/tools/mcp/mod.rs +7 -0
  147. geny_harness-0.2.3/crates/geny-harness-core/src/tools/mod.rs +8 -0
  148. geny_harness-0.2.3/crates/geny-harness-core/src/tools/registry.rs +113 -0
  149. geny_harness-0.2.3/crates/geny-harness-py/Cargo.toml +20 -0
  150. geny_harness-0.2.3/crates/geny-harness-py/src/lib.rs +1424 -0
  151. geny_harness-0.2.3/pyproject.toml +50 -0
  152. geny_harness-0.2.3/python/geny_harness/__init__.py +63 -0
  153. geny_harness-0.2.3/python/geny_harness/core/__init__.py +41 -0
  154. geny_harness-0.2.3/python/geny_harness/events/__init__.py +7 -0
  155. geny_harness-0.2.3/python/geny_harness/geny_harness.pdb +0 -0
  156. geny_harness-0.2.3/python/geny_harness/py.typed +0 -0
  157. geny_harness-0.2.3/python/geny_harness/session/__init__.py +7 -0
  158. geny_harness-0.2.3/python/geny_harness/stages/__init__.py +11 -0
  159. geny_harness-0.2.3/python/geny_harness/tools/__init__.py +7 -0
@@ -0,0 +1,1936 @@
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 = "android_system_properties"
16
+ version = "0.1.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anyhow"
25
+ version = "1.0.102"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
28
+
29
+ [[package]]
30
+ name = "async-trait"
31
+ version = "0.1.89"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
34
+ dependencies = [
35
+ "proc-macro2",
36
+ "quote",
37
+ "syn",
38
+ ]
39
+
40
+ [[package]]
41
+ name = "atomic-waker"
42
+ version = "1.1.2"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
45
+
46
+ [[package]]
47
+ name = "autocfg"
48
+ version = "1.5.0"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
51
+
52
+ [[package]]
53
+ name = "base64"
54
+ version = "0.22.1"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
57
+
58
+ [[package]]
59
+ name = "bitflags"
60
+ version = "2.11.0"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
63
+
64
+ [[package]]
65
+ name = "bumpalo"
66
+ version = "3.20.2"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
69
+
70
+ [[package]]
71
+ name = "bytes"
72
+ version = "1.11.1"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
75
+
76
+ [[package]]
77
+ name = "cc"
78
+ version = "1.2.59"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
81
+ dependencies = [
82
+ "find-msvc-tools",
83
+ "shlex",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "cfg-if"
88
+ version = "1.0.4"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
91
+
92
+ [[package]]
93
+ name = "cfg_aliases"
94
+ version = "0.2.1"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
97
+
98
+ [[package]]
99
+ name = "chrono"
100
+ version = "0.4.44"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
103
+ dependencies = [
104
+ "iana-time-zone",
105
+ "js-sys",
106
+ "num-traits",
107
+ "serde",
108
+ "wasm-bindgen",
109
+ "windows-link",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "core-foundation-sys"
114
+ version = "0.8.7"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
117
+
118
+ [[package]]
119
+ name = "displaydoc"
120
+ version = "0.2.5"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
123
+ dependencies = [
124
+ "proc-macro2",
125
+ "quote",
126
+ "syn",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "equivalent"
131
+ version = "1.0.2"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
134
+
135
+ [[package]]
136
+ name = "errno"
137
+ version = "0.3.14"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
140
+ dependencies = [
141
+ "libc",
142
+ "windows-sys 0.61.2",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "find-msvc-tools"
147
+ version = "0.1.9"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
150
+
151
+ [[package]]
152
+ name = "foldhash"
153
+ version = "0.1.5"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
156
+
157
+ [[package]]
158
+ name = "form_urlencoded"
159
+ version = "1.2.2"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
162
+ dependencies = [
163
+ "percent-encoding",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "futures-channel"
168
+ version = "0.3.32"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
171
+ dependencies = [
172
+ "futures-core",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "futures-core"
177
+ version = "0.3.32"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
180
+
181
+ [[package]]
182
+ name = "futures-macro"
183
+ version = "0.3.32"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
186
+ dependencies = [
187
+ "proc-macro2",
188
+ "quote",
189
+ "syn",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "futures-task"
194
+ version = "0.3.32"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
197
+
198
+ [[package]]
199
+ name = "futures-util"
200
+ version = "0.3.32"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
203
+ dependencies = [
204
+ "futures-core",
205
+ "futures-macro",
206
+ "futures-task",
207
+ "pin-project-lite",
208
+ "slab",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "geny-harness-core"
213
+ version = "0.2.3"
214
+ dependencies = [
215
+ "async-trait",
216
+ "chrono",
217
+ "log",
218
+ "rand 0.8.5",
219
+ "regex",
220
+ "reqwest",
221
+ "serde",
222
+ "serde_json",
223
+ "thiserror",
224
+ "tokio",
225
+ "uuid",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "geny-harness-py"
230
+ version = "0.2.3"
231
+ dependencies = [
232
+ "geny-harness-core",
233
+ "pyo3",
234
+ "pyo3-async-runtimes",
235
+ "pythonize",
236
+ "serde",
237
+ "serde_json",
238
+ "tokio",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "getrandom"
243
+ version = "0.2.17"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
246
+ dependencies = [
247
+ "cfg-if",
248
+ "js-sys",
249
+ "libc",
250
+ "wasi",
251
+ "wasm-bindgen",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "getrandom"
256
+ version = "0.3.4"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
259
+ dependencies = [
260
+ "cfg-if",
261
+ "js-sys",
262
+ "libc",
263
+ "r-efi 5.3.0",
264
+ "wasip2",
265
+ "wasm-bindgen",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "getrandom"
270
+ version = "0.4.2"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
273
+ dependencies = [
274
+ "cfg-if",
275
+ "libc",
276
+ "r-efi 6.0.0",
277
+ "wasip2",
278
+ "wasip3",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "hashbrown"
283
+ version = "0.15.5"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
286
+ dependencies = [
287
+ "foldhash",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "hashbrown"
292
+ version = "0.17.0"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
295
+
296
+ [[package]]
297
+ name = "heck"
298
+ version = "0.5.0"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
301
+
302
+ [[package]]
303
+ name = "http"
304
+ version = "1.4.0"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
307
+ dependencies = [
308
+ "bytes",
309
+ "itoa",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "http-body"
314
+ version = "1.0.1"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
317
+ dependencies = [
318
+ "bytes",
319
+ "http",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "http-body-util"
324
+ version = "0.1.3"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
327
+ dependencies = [
328
+ "bytes",
329
+ "futures-core",
330
+ "http",
331
+ "http-body",
332
+ "pin-project-lite",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "httparse"
337
+ version = "1.10.1"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
340
+
341
+ [[package]]
342
+ name = "hyper"
343
+ version = "1.9.0"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
346
+ dependencies = [
347
+ "atomic-waker",
348
+ "bytes",
349
+ "futures-channel",
350
+ "futures-core",
351
+ "http",
352
+ "http-body",
353
+ "httparse",
354
+ "itoa",
355
+ "pin-project-lite",
356
+ "smallvec",
357
+ "tokio",
358
+ "want",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "hyper-rustls"
363
+ version = "0.27.7"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
366
+ dependencies = [
367
+ "http",
368
+ "hyper",
369
+ "hyper-util",
370
+ "rustls",
371
+ "rustls-pki-types",
372
+ "tokio",
373
+ "tokio-rustls",
374
+ "tower-service",
375
+ "webpki-roots",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "hyper-util"
380
+ version = "0.1.20"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
383
+ dependencies = [
384
+ "base64",
385
+ "bytes",
386
+ "futures-channel",
387
+ "futures-util",
388
+ "http",
389
+ "http-body",
390
+ "hyper",
391
+ "ipnet",
392
+ "libc",
393
+ "percent-encoding",
394
+ "pin-project-lite",
395
+ "socket2",
396
+ "tokio",
397
+ "tower-service",
398
+ "tracing",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "iana-time-zone"
403
+ version = "0.1.65"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
406
+ dependencies = [
407
+ "android_system_properties",
408
+ "core-foundation-sys",
409
+ "iana-time-zone-haiku",
410
+ "js-sys",
411
+ "log",
412
+ "wasm-bindgen",
413
+ "windows-core",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "iana-time-zone-haiku"
418
+ version = "0.1.2"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
421
+ dependencies = [
422
+ "cc",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "icu_collections"
427
+ version = "2.2.0"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
430
+ dependencies = [
431
+ "displaydoc",
432
+ "potential_utf",
433
+ "utf8_iter",
434
+ "yoke",
435
+ "zerofrom",
436
+ "zerovec",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "icu_locale_core"
441
+ version = "2.2.0"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
444
+ dependencies = [
445
+ "displaydoc",
446
+ "litemap",
447
+ "tinystr",
448
+ "writeable",
449
+ "zerovec",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "icu_normalizer"
454
+ version = "2.2.0"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
457
+ dependencies = [
458
+ "icu_collections",
459
+ "icu_normalizer_data",
460
+ "icu_properties",
461
+ "icu_provider",
462
+ "smallvec",
463
+ "zerovec",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "icu_normalizer_data"
468
+ version = "2.2.0"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
471
+
472
+ [[package]]
473
+ name = "icu_properties"
474
+ version = "2.2.0"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
477
+ dependencies = [
478
+ "icu_collections",
479
+ "icu_locale_core",
480
+ "icu_properties_data",
481
+ "icu_provider",
482
+ "zerotrie",
483
+ "zerovec",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "icu_properties_data"
488
+ version = "2.2.0"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
491
+
492
+ [[package]]
493
+ name = "icu_provider"
494
+ version = "2.2.0"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
497
+ dependencies = [
498
+ "displaydoc",
499
+ "icu_locale_core",
500
+ "writeable",
501
+ "yoke",
502
+ "zerofrom",
503
+ "zerotrie",
504
+ "zerovec",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "id-arena"
509
+ version = "2.3.0"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
512
+
513
+ [[package]]
514
+ name = "idna"
515
+ version = "1.1.0"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
518
+ dependencies = [
519
+ "idna_adapter",
520
+ "smallvec",
521
+ "utf8_iter",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "idna_adapter"
526
+ version = "1.2.1"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
529
+ dependencies = [
530
+ "icu_normalizer",
531
+ "icu_properties",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "indexmap"
536
+ version = "2.14.0"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
539
+ dependencies = [
540
+ "equivalent",
541
+ "hashbrown 0.17.0",
542
+ "serde",
543
+ "serde_core",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "ipnet"
548
+ version = "2.12.0"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
551
+
552
+ [[package]]
553
+ name = "iri-string"
554
+ version = "0.7.12"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
557
+ dependencies = [
558
+ "memchr",
559
+ "serde",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "itoa"
564
+ version = "1.0.18"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
567
+
568
+ [[package]]
569
+ name = "js-sys"
570
+ version = "0.3.94"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
573
+ dependencies = [
574
+ "cfg-if",
575
+ "futures-util",
576
+ "once_cell",
577
+ "wasm-bindgen",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "leb128fmt"
582
+ version = "0.1.0"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
585
+
586
+ [[package]]
587
+ name = "libc"
588
+ version = "0.2.184"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
591
+
592
+ [[package]]
593
+ name = "litemap"
594
+ version = "0.8.2"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
597
+
598
+ [[package]]
599
+ name = "lock_api"
600
+ version = "0.4.14"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
603
+ dependencies = [
604
+ "scopeguard",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "log"
609
+ version = "0.4.29"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
612
+
613
+ [[package]]
614
+ name = "lru-slab"
615
+ version = "0.1.2"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
618
+
619
+ [[package]]
620
+ name = "memchr"
621
+ version = "2.8.0"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
624
+
625
+ [[package]]
626
+ name = "mio"
627
+ version = "1.2.0"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
630
+ dependencies = [
631
+ "libc",
632
+ "wasi",
633
+ "windows-sys 0.61.2",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "num-traits"
638
+ version = "0.2.19"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
641
+ dependencies = [
642
+ "autocfg",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "once_cell"
647
+ version = "1.21.4"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
650
+
651
+ [[package]]
652
+ name = "parking_lot"
653
+ version = "0.12.5"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
656
+ dependencies = [
657
+ "lock_api",
658
+ "parking_lot_core",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "parking_lot_core"
663
+ version = "0.9.12"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
666
+ dependencies = [
667
+ "cfg-if",
668
+ "libc",
669
+ "redox_syscall",
670
+ "smallvec",
671
+ "windows-link",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "percent-encoding"
676
+ version = "2.3.2"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
679
+
680
+ [[package]]
681
+ name = "pin-project-lite"
682
+ version = "0.2.17"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
685
+
686
+ [[package]]
687
+ name = "portable-atomic"
688
+ version = "1.13.1"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
691
+
692
+ [[package]]
693
+ name = "potential_utf"
694
+ version = "0.1.5"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
697
+ dependencies = [
698
+ "zerovec",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "ppv-lite86"
703
+ version = "0.2.21"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
706
+ dependencies = [
707
+ "zerocopy",
708
+ ]
709
+
710
+ [[package]]
711
+ name = "prettyplease"
712
+ version = "0.2.37"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
715
+ dependencies = [
716
+ "proc-macro2",
717
+ "syn",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "proc-macro2"
722
+ version = "1.0.106"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
725
+ dependencies = [
726
+ "unicode-ident",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "pyo3"
731
+ version = "0.28.3"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
734
+ dependencies = [
735
+ "libc",
736
+ "once_cell",
737
+ "portable-atomic",
738
+ "pyo3-build-config",
739
+ "pyo3-ffi",
740
+ "pyo3-macros",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "pyo3-async-runtimes"
745
+ version = "0.28.0"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "9e7364a95bf00e8377bbf9b0f09d7ff9715a29d8fcf93b47d1a967363b973178"
748
+ dependencies = [
749
+ "futures-channel",
750
+ "futures-util",
751
+ "once_cell",
752
+ "pin-project-lite",
753
+ "pyo3",
754
+ "tokio",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "pyo3-build-config"
759
+ version = "0.28.3"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
762
+ dependencies = [
763
+ "target-lexicon",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "pyo3-ffi"
768
+ version = "0.28.3"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
771
+ dependencies = [
772
+ "libc",
773
+ "pyo3-build-config",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "pyo3-macros"
778
+ version = "0.28.3"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
781
+ dependencies = [
782
+ "proc-macro2",
783
+ "pyo3-macros-backend",
784
+ "quote",
785
+ "syn",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "pyo3-macros-backend"
790
+ version = "0.28.3"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
793
+ dependencies = [
794
+ "heck",
795
+ "proc-macro2",
796
+ "pyo3-build-config",
797
+ "quote",
798
+ "syn",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "pythonize"
803
+ version = "0.28.0"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "0b79f670c9626c8b651c0581011b57b6ba6970bb69faf01a7c4c0cfc81c43f95"
806
+ dependencies = [
807
+ "pyo3",
808
+ "serde",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "quinn"
813
+ version = "0.11.9"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
816
+ dependencies = [
817
+ "bytes",
818
+ "cfg_aliases",
819
+ "pin-project-lite",
820
+ "quinn-proto",
821
+ "quinn-udp",
822
+ "rustc-hash",
823
+ "rustls",
824
+ "socket2",
825
+ "thiserror",
826
+ "tokio",
827
+ "tracing",
828
+ "web-time",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "quinn-proto"
833
+ version = "0.11.14"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
836
+ dependencies = [
837
+ "bytes",
838
+ "getrandom 0.3.4",
839
+ "lru-slab",
840
+ "rand 0.9.2",
841
+ "ring",
842
+ "rustc-hash",
843
+ "rustls",
844
+ "rustls-pki-types",
845
+ "slab",
846
+ "thiserror",
847
+ "tinyvec",
848
+ "tracing",
849
+ "web-time",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "quinn-udp"
854
+ version = "0.5.14"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
857
+ dependencies = [
858
+ "cfg_aliases",
859
+ "libc",
860
+ "once_cell",
861
+ "socket2",
862
+ "tracing",
863
+ "windows-sys 0.52.0",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "quote"
868
+ version = "1.0.45"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
871
+ dependencies = [
872
+ "proc-macro2",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "r-efi"
877
+ version = "5.3.0"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
880
+
881
+ [[package]]
882
+ name = "r-efi"
883
+ version = "6.0.0"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
886
+
887
+ [[package]]
888
+ name = "rand"
889
+ version = "0.8.5"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
892
+ dependencies = [
893
+ "libc",
894
+ "rand_chacha 0.3.1",
895
+ "rand_core 0.6.4",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "rand"
900
+ version = "0.9.2"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
903
+ dependencies = [
904
+ "rand_chacha 0.9.0",
905
+ "rand_core 0.9.5",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "rand_chacha"
910
+ version = "0.3.1"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
913
+ dependencies = [
914
+ "ppv-lite86",
915
+ "rand_core 0.6.4",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "rand_chacha"
920
+ version = "0.9.0"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
923
+ dependencies = [
924
+ "ppv-lite86",
925
+ "rand_core 0.9.5",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "rand_core"
930
+ version = "0.6.4"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
933
+ dependencies = [
934
+ "getrandom 0.2.17",
935
+ ]
936
+
937
+ [[package]]
938
+ name = "rand_core"
939
+ version = "0.9.5"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
942
+ dependencies = [
943
+ "getrandom 0.3.4",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "redox_syscall"
948
+ version = "0.5.18"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
951
+ dependencies = [
952
+ "bitflags",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "regex"
957
+ version = "1.12.3"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
960
+ dependencies = [
961
+ "aho-corasick",
962
+ "memchr",
963
+ "regex-automata",
964
+ "regex-syntax",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "regex-automata"
969
+ version = "0.4.14"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
972
+ dependencies = [
973
+ "aho-corasick",
974
+ "memchr",
975
+ "regex-syntax",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "regex-syntax"
980
+ version = "0.8.10"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
983
+
984
+ [[package]]
985
+ name = "reqwest"
986
+ version = "0.12.28"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
989
+ dependencies = [
990
+ "base64",
991
+ "bytes",
992
+ "futures-core",
993
+ "http",
994
+ "http-body",
995
+ "http-body-util",
996
+ "hyper",
997
+ "hyper-rustls",
998
+ "hyper-util",
999
+ "js-sys",
1000
+ "log",
1001
+ "percent-encoding",
1002
+ "pin-project-lite",
1003
+ "quinn",
1004
+ "rustls",
1005
+ "rustls-pki-types",
1006
+ "serde",
1007
+ "serde_json",
1008
+ "serde_urlencoded",
1009
+ "sync_wrapper",
1010
+ "tokio",
1011
+ "tokio-rustls",
1012
+ "tower",
1013
+ "tower-http",
1014
+ "tower-service",
1015
+ "url",
1016
+ "wasm-bindgen",
1017
+ "wasm-bindgen-futures",
1018
+ "web-sys",
1019
+ "webpki-roots",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "ring"
1024
+ version = "0.17.14"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1027
+ dependencies = [
1028
+ "cc",
1029
+ "cfg-if",
1030
+ "getrandom 0.2.17",
1031
+ "libc",
1032
+ "untrusted",
1033
+ "windows-sys 0.52.0",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "rustc-hash"
1038
+ version = "2.1.1"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1041
+
1042
+ [[package]]
1043
+ name = "rustls"
1044
+ version = "0.23.37"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
1047
+ dependencies = [
1048
+ "once_cell",
1049
+ "ring",
1050
+ "rustls-pki-types",
1051
+ "rustls-webpki",
1052
+ "subtle",
1053
+ "zeroize",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "rustls-pki-types"
1058
+ version = "1.14.0"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1061
+ dependencies = [
1062
+ "web-time",
1063
+ "zeroize",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "rustls-webpki"
1068
+ version = "0.103.10"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
1071
+ dependencies = [
1072
+ "ring",
1073
+ "rustls-pki-types",
1074
+ "untrusted",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "rustversion"
1079
+ version = "1.0.22"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1082
+
1083
+ [[package]]
1084
+ name = "ryu"
1085
+ version = "1.0.23"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1088
+
1089
+ [[package]]
1090
+ name = "scopeguard"
1091
+ version = "1.2.0"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1094
+
1095
+ [[package]]
1096
+ name = "semver"
1097
+ version = "1.0.28"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1100
+
1101
+ [[package]]
1102
+ name = "serde"
1103
+ version = "1.0.228"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1106
+ dependencies = [
1107
+ "serde_core",
1108
+ "serde_derive",
1109
+ ]
1110
+
1111
+ [[package]]
1112
+ name = "serde_core"
1113
+ version = "1.0.228"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1116
+ dependencies = [
1117
+ "serde_derive",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "serde_derive"
1122
+ version = "1.0.228"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1125
+ dependencies = [
1126
+ "proc-macro2",
1127
+ "quote",
1128
+ "syn",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "serde_json"
1133
+ version = "1.0.149"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1136
+ dependencies = [
1137
+ "itoa",
1138
+ "memchr",
1139
+ "serde",
1140
+ "serde_core",
1141
+ "zmij",
1142
+ ]
1143
+
1144
+ [[package]]
1145
+ name = "serde_urlencoded"
1146
+ version = "0.7.1"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1149
+ dependencies = [
1150
+ "form_urlencoded",
1151
+ "itoa",
1152
+ "ryu",
1153
+ "serde",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "shlex"
1158
+ version = "1.3.0"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1161
+
1162
+ [[package]]
1163
+ name = "signal-hook-registry"
1164
+ version = "1.4.8"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1167
+ dependencies = [
1168
+ "errno",
1169
+ "libc",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "slab"
1174
+ version = "0.4.12"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1177
+
1178
+ [[package]]
1179
+ name = "smallvec"
1180
+ version = "1.15.1"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1183
+
1184
+ [[package]]
1185
+ name = "socket2"
1186
+ version = "0.6.3"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1189
+ dependencies = [
1190
+ "libc",
1191
+ "windows-sys 0.61.2",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "stable_deref_trait"
1196
+ version = "1.2.1"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1199
+
1200
+ [[package]]
1201
+ name = "subtle"
1202
+ version = "2.6.1"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1205
+
1206
+ [[package]]
1207
+ name = "syn"
1208
+ version = "2.0.117"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1211
+ dependencies = [
1212
+ "proc-macro2",
1213
+ "quote",
1214
+ "unicode-ident",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "sync_wrapper"
1219
+ version = "1.0.2"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1222
+ dependencies = [
1223
+ "futures-core",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "synstructure"
1228
+ version = "0.13.2"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1231
+ dependencies = [
1232
+ "proc-macro2",
1233
+ "quote",
1234
+ "syn",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "target-lexicon"
1239
+ version = "0.13.5"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1242
+
1243
+ [[package]]
1244
+ name = "thiserror"
1245
+ version = "2.0.18"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1248
+ dependencies = [
1249
+ "thiserror-impl",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "thiserror-impl"
1254
+ version = "2.0.18"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1257
+ dependencies = [
1258
+ "proc-macro2",
1259
+ "quote",
1260
+ "syn",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "tinystr"
1265
+ version = "0.8.3"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1268
+ dependencies = [
1269
+ "displaydoc",
1270
+ "zerovec",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "tinyvec"
1275
+ version = "1.11.0"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1278
+ dependencies = [
1279
+ "tinyvec_macros",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "tinyvec_macros"
1284
+ version = "0.1.1"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1287
+
1288
+ [[package]]
1289
+ name = "tokio"
1290
+ version = "1.51.1"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "f66bf9585cda4b724d3e78ab34b73fb2bbaba9011b9bfdf69dc836382ea13b8c"
1293
+ dependencies = [
1294
+ "bytes",
1295
+ "libc",
1296
+ "mio",
1297
+ "parking_lot",
1298
+ "pin-project-lite",
1299
+ "signal-hook-registry",
1300
+ "socket2",
1301
+ "tokio-macros",
1302
+ "windows-sys 0.61.2",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "tokio-macros"
1307
+ version = "2.7.0"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1310
+ dependencies = [
1311
+ "proc-macro2",
1312
+ "quote",
1313
+ "syn",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "tokio-rustls"
1318
+ version = "0.26.4"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1321
+ dependencies = [
1322
+ "rustls",
1323
+ "tokio",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "tower"
1328
+ version = "0.5.3"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1331
+ dependencies = [
1332
+ "futures-core",
1333
+ "futures-util",
1334
+ "pin-project-lite",
1335
+ "sync_wrapper",
1336
+ "tokio",
1337
+ "tower-layer",
1338
+ "tower-service",
1339
+ ]
1340
+
1341
+ [[package]]
1342
+ name = "tower-http"
1343
+ version = "0.6.8"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
1346
+ dependencies = [
1347
+ "bitflags",
1348
+ "bytes",
1349
+ "futures-util",
1350
+ "http",
1351
+ "http-body",
1352
+ "iri-string",
1353
+ "pin-project-lite",
1354
+ "tower",
1355
+ "tower-layer",
1356
+ "tower-service",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "tower-layer"
1361
+ version = "0.3.3"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1364
+
1365
+ [[package]]
1366
+ name = "tower-service"
1367
+ version = "0.3.3"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1370
+
1371
+ [[package]]
1372
+ name = "tracing"
1373
+ version = "0.1.44"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1376
+ dependencies = [
1377
+ "pin-project-lite",
1378
+ "tracing-core",
1379
+ ]
1380
+
1381
+ [[package]]
1382
+ name = "tracing-core"
1383
+ version = "0.1.36"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1386
+ dependencies = [
1387
+ "once_cell",
1388
+ ]
1389
+
1390
+ [[package]]
1391
+ name = "try-lock"
1392
+ version = "0.2.5"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1395
+
1396
+ [[package]]
1397
+ name = "unicode-ident"
1398
+ version = "1.0.24"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1401
+
1402
+ [[package]]
1403
+ name = "unicode-xid"
1404
+ version = "0.2.6"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1407
+
1408
+ [[package]]
1409
+ name = "untrusted"
1410
+ version = "0.9.0"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1413
+
1414
+ [[package]]
1415
+ name = "url"
1416
+ version = "2.5.8"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1419
+ dependencies = [
1420
+ "form_urlencoded",
1421
+ "idna",
1422
+ "percent-encoding",
1423
+ "serde",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "utf8_iter"
1428
+ version = "1.0.4"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1431
+
1432
+ [[package]]
1433
+ name = "uuid"
1434
+ version = "1.23.0"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
1437
+ dependencies = [
1438
+ "getrandom 0.4.2",
1439
+ "js-sys",
1440
+ "wasm-bindgen",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "want"
1445
+ version = "0.3.1"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1448
+ dependencies = [
1449
+ "try-lock",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "wasi"
1454
+ version = "0.11.1+wasi-snapshot-preview1"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1457
+
1458
+ [[package]]
1459
+ name = "wasip2"
1460
+ version = "1.0.2+wasi-0.2.9"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1463
+ dependencies = [
1464
+ "wit-bindgen",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "wasip3"
1469
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1472
+ dependencies = [
1473
+ "wit-bindgen",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "wasm-bindgen"
1478
+ version = "0.2.117"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
1481
+ dependencies = [
1482
+ "cfg-if",
1483
+ "once_cell",
1484
+ "rustversion",
1485
+ "wasm-bindgen-macro",
1486
+ "wasm-bindgen-shared",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "wasm-bindgen-futures"
1491
+ version = "0.4.67"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
1494
+ dependencies = [
1495
+ "js-sys",
1496
+ "wasm-bindgen",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "wasm-bindgen-macro"
1501
+ version = "0.2.117"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
1504
+ dependencies = [
1505
+ "quote",
1506
+ "wasm-bindgen-macro-support",
1507
+ ]
1508
+
1509
+ [[package]]
1510
+ name = "wasm-bindgen-macro-support"
1511
+ version = "0.2.117"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
1514
+ dependencies = [
1515
+ "bumpalo",
1516
+ "proc-macro2",
1517
+ "quote",
1518
+ "syn",
1519
+ "wasm-bindgen-shared",
1520
+ ]
1521
+
1522
+ [[package]]
1523
+ name = "wasm-bindgen-shared"
1524
+ version = "0.2.117"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
1527
+ dependencies = [
1528
+ "unicode-ident",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "wasm-encoder"
1533
+ version = "0.244.0"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1536
+ dependencies = [
1537
+ "leb128fmt",
1538
+ "wasmparser",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "wasm-metadata"
1543
+ version = "0.244.0"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1546
+ dependencies = [
1547
+ "anyhow",
1548
+ "indexmap",
1549
+ "wasm-encoder",
1550
+ "wasmparser",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "wasmparser"
1555
+ version = "0.244.0"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1558
+ dependencies = [
1559
+ "bitflags",
1560
+ "hashbrown 0.15.5",
1561
+ "indexmap",
1562
+ "semver",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "web-sys"
1567
+ version = "0.3.94"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
1570
+ dependencies = [
1571
+ "js-sys",
1572
+ "wasm-bindgen",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "web-time"
1577
+ version = "1.1.0"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1580
+ dependencies = [
1581
+ "js-sys",
1582
+ "wasm-bindgen",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "webpki-roots"
1587
+ version = "1.0.6"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
1590
+ dependencies = [
1591
+ "rustls-pki-types",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "windows-core"
1596
+ version = "0.62.2"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1599
+ dependencies = [
1600
+ "windows-implement",
1601
+ "windows-interface",
1602
+ "windows-link",
1603
+ "windows-result",
1604
+ "windows-strings",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "windows-implement"
1609
+ version = "0.60.2"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1612
+ dependencies = [
1613
+ "proc-macro2",
1614
+ "quote",
1615
+ "syn",
1616
+ ]
1617
+
1618
+ [[package]]
1619
+ name = "windows-interface"
1620
+ version = "0.59.3"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1623
+ dependencies = [
1624
+ "proc-macro2",
1625
+ "quote",
1626
+ "syn",
1627
+ ]
1628
+
1629
+ [[package]]
1630
+ name = "windows-link"
1631
+ version = "0.2.1"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1634
+
1635
+ [[package]]
1636
+ name = "windows-result"
1637
+ version = "0.4.1"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1640
+ dependencies = [
1641
+ "windows-link",
1642
+ ]
1643
+
1644
+ [[package]]
1645
+ name = "windows-strings"
1646
+ version = "0.5.1"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1649
+ dependencies = [
1650
+ "windows-link",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "windows-sys"
1655
+ version = "0.52.0"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1658
+ dependencies = [
1659
+ "windows-targets",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "windows-sys"
1664
+ version = "0.61.2"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1667
+ dependencies = [
1668
+ "windows-link",
1669
+ ]
1670
+
1671
+ [[package]]
1672
+ name = "windows-targets"
1673
+ version = "0.52.6"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1676
+ dependencies = [
1677
+ "windows_aarch64_gnullvm",
1678
+ "windows_aarch64_msvc",
1679
+ "windows_i686_gnu",
1680
+ "windows_i686_gnullvm",
1681
+ "windows_i686_msvc",
1682
+ "windows_x86_64_gnu",
1683
+ "windows_x86_64_gnullvm",
1684
+ "windows_x86_64_msvc",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "windows_aarch64_gnullvm"
1689
+ version = "0.52.6"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1692
+
1693
+ [[package]]
1694
+ name = "windows_aarch64_msvc"
1695
+ version = "0.52.6"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1698
+
1699
+ [[package]]
1700
+ name = "windows_i686_gnu"
1701
+ version = "0.52.6"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1704
+
1705
+ [[package]]
1706
+ name = "windows_i686_gnullvm"
1707
+ version = "0.52.6"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1710
+
1711
+ [[package]]
1712
+ name = "windows_i686_msvc"
1713
+ version = "0.52.6"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1716
+
1717
+ [[package]]
1718
+ name = "windows_x86_64_gnu"
1719
+ version = "0.52.6"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1722
+
1723
+ [[package]]
1724
+ name = "windows_x86_64_gnullvm"
1725
+ version = "0.52.6"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1728
+
1729
+ [[package]]
1730
+ name = "windows_x86_64_msvc"
1731
+ version = "0.52.6"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1734
+
1735
+ [[package]]
1736
+ name = "wit-bindgen"
1737
+ version = "0.51.0"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1740
+ dependencies = [
1741
+ "wit-bindgen-rust-macro",
1742
+ ]
1743
+
1744
+ [[package]]
1745
+ name = "wit-bindgen-core"
1746
+ version = "0.51.0"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1749
+ dependencies = [
1750
+ "anyhow",
1751
+ "heck",
1752
+ "wit-parser",
1753
+ ]
1754
+
1755
+ [[package]]
1756
+ name = "wit-bindgen-rust"
1757
+ version = "0.51.0"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1760
+ dependencies = [
1761
+ "anyhow",
1762
+ "heck",
1763
+ "indexmap",
1764
+ "prettyplease",
1765
+ "syn",
1766
+ "wasm-metadata",
1767
+ "wit-bindgen-core",
1768
+ "wit-component",
1769
+ ]
1770
+
1771
+ [[package]]
1772
+ name = "wit-bindgen-rust-macro"
1773
+ version = "0.51.0"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1776
+ dependencies = [
1777
+ "anyhow",
1778
+ "prettyplease",
1779
+ "proc-macro2",
1780
+ "quote",
1781
+ "syn",
1782
+ "wit-bindgen-core",
1783
+ "wit-bindgen-rust",
1784
+ ]
1785
+
1786
+ [[package]]
1787
+ name = "wit-component"
1788
+ version = "0.244.0"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1791
+ dependencies = [
1792
+ "anyhow",
1793
+ "bitflags",
1794
+ "indexmap",
1795
+ "log",
1796
+ "serde",
1797
+ "serde_derive",
1798
+ "serde_json",
1799
+ "wasm-encoder",
1800
+ "wasm-metadata",
1801
+ "wasmparser",
1802
+ "wit-parser",
1803
+ ]
1804
+
1805
+ [[package]]
1806
+ name = "wit-parser"
1807
+ version = "0.244.0"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1810
+ dependencies = [
1811
+ "anyhow",
1812
+ "id-arena",
1813
+ "indexmap",
1814
+ "log",
1815
+ "semver",
1816
+ "serde",
1817
+ "serde_derive",
1818
+ "serde_json",
1819
+ "unicode-xid",
1820
+ "wasmparser",
1821
+ ]
1822
+
1823
+ [[package]]
1824
+ name = "writeable"
1825
+ version = "0.6.3"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
1828
+
1829
+ [[package]]
1830
+ name = "yoke"
1831
+ version = "0.8.2"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
1834
+ dependencies = [
1835
+ "stable_deref_trait",
1836
+ "yoke-derive",
1837
+ "zerofrom",
1838
+ ]
1839
+
1840
+ [[package]]
1841
+ name = "yoke-derive"
1842
+ version = "0.8.2"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
1845
+ dependencies = [
1846
+ "proc-macro2",
1847
+ "quote",
1848
+ "syn",
1849
+ "synstructure",
1850
+ ]
1851
+
1852
+ [[package]]
1853
+ name = "zerocopy"
1854
+ version = "0.8.48"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1857
+ dependencies = [
1858
+ "zerocopy-derive",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "zerocopy-derive"
1863
+ version = "0.8.48"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1866
+ dependencies = [
1867
+ "proc-macro2",
1868
+ "quote",
1869
+ "syn",
1870
+ ]
1871
+
1872
+ [[package]]
1873
+ name = "zerofrom"
1874
+ version = "0.1.7"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
1877
+ dependencies = [
1878
+ "zerofrom-derive",
1879
+ ]
1880
+
1881
+ [[package]]
1882
+ name = "zerofrom-derive"
1883
+ version = "0.1.7"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
1886
+ dependencies = [
1887
+ "proc-macro2",
1888
+ "quote",
1889
+ "syn",
1890
+ "synstructure",
1891
+ ]
1892
+
1893
+ [[package]]
1894
+ name = "zeroize"
1895
+ version = "1.8.2"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
1898
+
1899
+ [[package]]
1900
+ name = "zerotrie"
1901
+ version = "0.2.4"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
1904
+ dependencies = [
1905
+ "displaydoc",
1906
+ "yoke",
1907
+ "zerofrom",
1908
+ ]
1909
+
1910
+ [[package]]
1911
+ name = "zerovec"
1912
+ version = "0.11.6"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
1915
+ dependencies = [
1916
+ "yoke",
1917
+ "zerofrom",
1918
+ "zerovec-derive",
1919
+ ]
1920
+
1921
+ [[package]]
1922
+ name = "zerovec-derive"
1923
+ version = "0.11.3"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
1926
+ dependencies = [
1927
+ "proc-macro2",
1928
+ "quote",
1929
+ "syn",
1930
+ ]
1931
+
1932
+ [[package]]
1933
+ name = "zmij"
1934
+ version = "1.0.21"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"