foxglove-sdk 0.16.2__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.

Potentially problematic release.


This version of foxglove-sdk might be problematic. Click here for more details.

Files changed (306) hide show
  1. foxglove_sdk-0.16.2/Cargo.lock +3483 -0
  2. foxglove_sdk-0.16.2/Cargo.toml +90 -0
  3. foxglove_sdk-0.16.2/PKG-INFO +53 -0
  4. foxglove_sdk-0.16.2/README.md +35 -0
  5. foxglove_sdk-0.16.2/custom_build.py +72 -0
  6. foxglove_sdk-0.16.2/pyproject.toml +74 -0
  7. foxglove_sdk-0.16.2/python/foxglove/__init__.py +245 -0
  8. foxglove_sdk-0.16.2/python/foxglove/_foxglove_py/__init__.pyi +211 -0
  9. foxglove_sdk-0.16.2/python/foxglove/_foxglove_py/channels.pyi +2792 -0
  10. foxglove_sdk-0.16.2/python/foxglove/_foxglove_py/cloud.pyi +9 -0
  11. foxglove_sdk-0.16.2/python/foxglove/_foxglove_py/mcap.pyi +120 -0
  12. foxglove_sdk-0.16.2/python/foxglove/_foxglove_py/schemas.pyi +1009 -0
  13. foxglove_sdk-0.16.2/python/foxglove/_foxglove_py/schemas_wkt.pyi +85 -0
  14. foxglove_sdk-0.16.2/python/foxglove/_foxglove_py/websocket.pyi +394 -0
  15. foxglove_sdk-0.16.2/python/foxglove/benchmarks/test_mcap_serialization.py +160 -0
  16. foxglove_sdk-0.16.2/python/foxglove/channel.py +241 -0
  17. foxglove_sdk-0.16.2/python/foxglove/channels/__init__.py +94 -0
  18. foxglove_sdk-0.16.2/python/foxglove/cloud.py +61 -0
  19. foxglove_sdk-0.16.2/python/foxglove/mcap.py +12 -0
  20. foxglove_sdk-0.16.2/python/foxglove/notebook/__init__.py +0 -0
  21. foxglove_sdk-0.16.2/python/foxglove/notebook/foxglove_widget.py +100 -0
  22. foxglove_sdk-0.16.2/python/foxglove/notebook/notebook_buffer.py +114 -0
  23. foxglove_sdk-0.16.2/python/foxglove/notebook/static/widget.js +1 -0
  24. foxglove_sdk-0.16.2/python/foxglove/py.typed +0 -0
  25. foxglove_sdk-0.16.2/python/foxglove/schemas/__init__.py +163 -0
  26. foxglove_sdk-0.16.2/python/foxglove/tests/__init__.py +0 -0
  27. foxglove_sdk-0.16.2/python/foxglove/tests/test_channel.py +243 -0
  28. foxglove_sdk-0.16.2/python/foxglove/tests/test_context.py +10 -0
  29. foxglove_sdk-0.16.2/python/foxglove/tests/test_logging.py +62 -0
  30. foxglove_sdk-0.16.2/python/foxglove/tests/test_mcap.py +368 -0
  31. foxglove_sdk-0.16.2/python/foxglove/tests/test_parameters.py +178 -0
  32. foxglove_sdk-0.16.2/python/foxglove/tests/test_schemas.py +17 -0
  33. foxglove_sdk-0.16.2/python/foxglove/tests/test_server.py +141 -0
  34. foxglove_sdk-0.16.2/python/foxglove/tests/test_time.py +137 -0
  35. foxglove_sdk-0.16.2/python/foxglove/websocket.py +220 -0
  36. foxglove_sdk-0.16.2/python/foxglove-sdk/.gitignore +15 -0
  37. foxglove_sdk-0.16.2/python/foxglove-sdk/CONTRIBUTING.md +91 -0
  38. foxglove_sdk-0.16.2/python/foxglove-sdk/Cargo.toml +43 -0
  39. foxglove_sdk-0.16.2/python/foxglove-sdk/README.md +35 -0
  40. foxglove_sdk-0.16.2/python/foxglove-sdk/conftest.py +30 -0
  41. foxglove_sdk-0.16.2/python/foxglove-sdk/custom_build.py +72 -0
  42. foxglove_sdk-0.16.2/python/foxglove-sdk/notebook-frontend/package.json +24 -0
  43. foxglove_sdk-0.16.2/python/foxglove-sdk/notebook-frontend/tsconfig.json +12 -0
  44. foxglove_sdk-0.16.2/python/foxglove-sdk/notebook-frontend/widget.ts +83 -0
  45. foxglove_sdk-0.16.2/python/foxglove-sdk/python/docs/__init__.py +0 -0
  46. foxglove_sdk-0.16.2/python/foxglove-sdk/python/docs/api/channels.rst +2 -0
  47. foxglove_sdk-0.16.2/python/foxglove-sdk/python/docs/api/index.rst +222 -0
  48. foxglove_sdk-0.16.2/python/foxglove-sdk/python/docs/api/schemas.rst +2 -0
  49. foxglove_sdk-0.16.2/python/foxglove-sdk/python/docs/conf.py +48 -0
  50. foxglove_sdk-0.16.2/python/foxglove-sdk/python/docs/examples.rst +44 -0
  51. foxglove_sdk-0.16.2/python/foxglove-sdk/python/docs/index.rst +98 -0
  52. foxglove_sdk-0.16.2/python/foxglove-sdk/python/docs/version.py +1 -0
  53. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/__init__.py +245 -0
  54. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/_foxglove_py/__init__.pyi +211 -0
  55. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/_foxglove_py/channels.pyi +2792 -0
  56. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/_foxglove_py/cloud.pyi +9 -0
  57. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/_foxglove_py/mcap.pyi +120 -0
  58. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/_foxglove_py/schemas.pyi +1009 -0
  59. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/_foxglove_py/schemas_wkt.pyi +85 -0
  60. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/_foxglove_py/websocket.pyi +394 -0
  61. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/benchmarks/test_mcap_serialization.py +160 -0
  62. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/channel.py +241 -0
  63. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/channels/__init__.py +94 -0
  64. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/cloud.py +61 -0
  65. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/mcap.py +12 -0
  66. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/notebook/__init__.py +0 -0
  67. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/notebook/foxglove_widget.py +100 -0
  68. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/notebook/notebook_buffer.py +114 -0
  69. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/py.typed +0 -0
  70. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/schemas/__init__.py +163 -0
  71. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/tests/__init__.py +0 -0
  72. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/tests/test_channel.py +243 -0
  73. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/tests/test_context.py +10 -0
  74. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/tests/test_logging.py +62 -0
  75. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/tests/test_mcap.py +368 -0
  76. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/tests/test_parameters.py +178 -0
  77. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/tests/test_schemas.py +17 -0
  78. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/tests/test_server.py +141 -0
  79. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/tests/test_time.py +137 -0
  80. foxglove_sdk-0.16.2/python/foxglove-sdk/python/foxglove/websocket.py +220 -0
  81. foxglove_sdk-0.16.2/python/foxglove-sdk/src/cloud_sink.rs +132 -0
  82. foxglove_sdk-0.16.2/python/foxglove-sdk/src/errors.rs +14 -0
  83. foxglove_sdk-0.16.2/python/foxglove-sdk/src/generated/channels.rs +4494 -0
  84. foxglove_sdk-0.16.2/python/foxglove-sdk/src/generated/schemas.rs +3100 -0
  85. foxglove_sdk-0.16.2/python/foxglove-sdk/src/generated.rs +2 -0
  86. foxglove_sdk-0.16.2/python/foxglove-sdk/src/lib.rs +313 -0
  87. foxglove_sdk-0.16.2/python/foxglove-sdk/src/logging.rs +119 -0
  88. foxglove_sdk-0.16.2/python/foxglove-sdk/src/mcap.rs +242 -0
  89. foxglove_sdk-0.16.2/python/foxglove-sdk/src/schemas_wkt.rs +203 -0
  90. foxglove_sdk-0.16.2/python/foxglove-sdk/src/sink_channel_filter.rs +86 -0
  91. foxglove_sdk-0.16.2/python/foxglove-sdk/src/websocket.rs +1339 -0
  92. foxglove_sdk-0.16.2/python/foxglove-sdk/uv.lock +1527 -0
  93. foxglove_sdk-0.16.2/rust/foxglove/CONTRIBUTING.md +22 -0
  94. foxglove_sdk-0.16.2/rust/foxglove/Cargo.toml +83 -0
  95. foxglove_sdk-0.16.2/rust/foxglove/README.md +18 -0
  96. foxglove_sdk-0.16.2/rust/foxglove/src/app_url.rs +129 -0
  97. foxglove_sdk-0.16.2/rust/foxglove/src/channel/channel_descriptor.rs +67 -0
  98. foxglove_sdk-0.16.2/rust/foxglove/src/channel/lazy_channel.rs +168 -0
  99. foxglove_sdk-0.16.2/rust/foxglove/src/channel/raw_channel.rs +242 -0
  100. foxglove_sdk-0.16.2/rust/foxglove/src/channel.rs +365 -0
  101. foxglove_sdk-0.16.2/rust/foxglove/src/channel_builder.rs +112 -0
  102. foxglove_sdk-0.16.2/rust/foxglove/src/cloud_sink.rs +279 -0
  103. foxglove_sdk-0.16.2/rust/foxglove/src/context/lazy_context.rs +69 -0
  104. foxglove_sdk-0.16.2/rust/foxglove/src/context/subscriptions/tests.rs +93 -0
  105. foxglove_sdk-0.16.2/rust/foxglove/src/context/subscriptions.rs +131 -0
  106. foxglove_sdk-0.16.2/rust/foxglove/src/context.rs +721 -0
  107. foxglove_sdk-0.16.2/rust/foxglove/src/convert.rs +36 -0
  108. foxglove_sdk-0.16.2/rust/foxglove/src/decode.rs +12 -0
  109. foxglove_sdk-0.16.2/rust/foxglove/src/encode/schemars.rs +71 -0
  110. foxglove_sdk-0.16.2/rust/foxglove/src/encode.rs +104 -0
  111. foxglove_sdk-0.16.2/rust/foxglove/src/lib.rs +460 -0
  112. foxglove_sdk-0.16.2/rust/foxglove/src/library_version.rs +24 -0
  113. foxglove_sdk-0.16.2/rust/foxglove/src/log_macro.rs +349 -0
  114. foxglove_sdk-0.16.2/rust/foxglove/src/log_sink_set.rs +67 -0
  115. foxglove_sdk-0.16.2/rust/foxglove/src/mcap_writer/mcap_sink.rs +735 -0
  116. foxglove_sdk-0.16.2/rust/foxglove/src/mcap_writer.rs +216 -0
  117. foxglove_sdk-0.16.2/rust/foxglove/src/metadata.rs +64 -0
  118. foxglove_sdk-0.16.2/rust/foxglove/src/protobuf.rs +526 -0
  119. foxglove_sdk-0.16.2/rust/foxglove/src/runtime.rs +61 -0
  120. foxglove_sdk-0.16.2/rust/foxglove/src/schema.rs +55 -0
  121. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/ArrowPrimitive.bin +37 -0
  122. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/CameraCalibration.bin +19 -0
  123. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/CircleAnnotation.bin +29 -0
  124. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/Color.bin +8 -0
  125. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/CompressedImage.bin +14 -0
  126. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/CompressedVideo.bin +14 -0
  127. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/CubePrimitive.bin +33 -0
  128. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/CylinderPrimitive.bin +35 -0
  129. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/FrameTransform.bin +29 -0
  130. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/FrameTransforms.bin +35 -0
  131. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/GeoJSON.bin +5 -0
  132. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/Grid.bin +0 -0
  133. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/ImageAnnotations.bin +0 -0
  134. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/KeyValuePair.bin +6 -0
  135. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/LaserScan.bin +37 -0
  136. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/LinePrimitive.bin +0 -0
  137. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/LocationFix.bin +0 -0
  138. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/LocationFixes.bin +0 -0
  139. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/Log.bin +0 -0
  140. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/ModelPrimitive.bin +38 -0
  141. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/PackedElementField.bin +0 -0
  142. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/Point2.bin +6 -0
  143. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/Point3.bin +7 -0
  144. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/PointCloud.bin +0 -0
  145. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/PointsAnnotation.bin +0 -0
  146. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/Pose.bin +20 -0
  147. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/PoseInFrame.bin +32 -0
  148. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/PosesInFrame.bin +32 -0
  149. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/Quaternion.bin +9 -0
  150. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/RawAudio.bin +16 -0
  151. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/RawImage.bin +17 -0
  152. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/SceneEntity.bin +0 -0
  153. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/SceneEntityDeletion.bin +0 -0
  154. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/SceneUpdate.bin +0 -0
  155. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/SpherePrimitive.bin +33 -0
  156. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/TextAnnotation.bin +29 -0
  157. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/TextPrimitive.bin +36 -0
  158. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/TriangleListPrimitive.bin +41 -0
  159. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/Vector2.bin +6 -0
  160. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/Vector3.bin +7 -0
  161. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/data/VoxelGrid.bin +0 -0
  162. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/descriptors.rs +42 -0
  163. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/foxglove.rs +1304 -0
  164. foxglove_sdk-0.16.2/rust/foxglove/src/schemas/impls.rs +1316 -0
  165. foxglove_sdk-0.16.2/rust/foxglove/src/schemas.rs +17 -0
  166. foxglove_sdk-0.16.2/rust/foxglove/src/schemas_wkt/chrono/tests.rs +116 -0
  167. foxglove_sdk-0.16.2/rust/foxglove/src/schemas_wkt/chrono.rs +57 -0
  168. foxglove_sdk-0.16.2/rust/foxglove/src/schemas_wkt/tests.rs +304 -0
  169. foxglove_sdk-0.16.2/rust/foxglove/src/schemas_wkt.rs +544 -0
  170. foxglove_sdk-0.16.2/rust/foxglove/src/sink.rs +130 -0
  171. foxglove_sdk-0.16.2/rust/foxglove/src/sink_channel_filter.rs +23 -0
  172. foxglove_sdk-0.16.2/rust/foxglove/src/stream.rs +272 -0
  173. foxglove_sdk-0.16.2/rust/foxglove/src/tests/logging.rs +129 -0
  174. foxglove_sdk-0.16.2/rust/foxglove/src/tests/schemas.rs +11 -0
  175. foxglove_sdk-0.16.2/rust/foxglove/src/tests/sinks.rs +86 -0
  176. foxglove_sdk-0.16.2/rust/foxglove/src/tests.rs +27 -0
  177. foxglove_sdk-0.16.2/rust/foxglove/src/testutil/global_context.rs +27 -0
  178. foxglove_sdk-0.16.2/rust/foxglove/src/testutil/mcap.rs +8 -0
  179. foxglove_sdk-0.16.2/rust/foxglove/src/testutil/sink.rs +135 -0
  180. foxglove_sdk-0.16.2/rust/foxglove/src/testutil/websocket.rs +270 -0
  181. foxglove_sdk-0.16.2/rust/foxglove/src/testutil.rs +13 -0
  182. foxglove_sdk-0.16.2/rust/foxglove/src/throttler.rs +46 -0
  183. foxglove_sdk-0.16.2/rust/foxglove/src/time.rs +11 -0
  184. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/advertise.rs +89 -0
  185. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/capability.rs +43 -0
  186. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/channel_view.rs +29 -0
  187. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/client.rs +75 -0
  188. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/client_channel.rs +67 -0
  189. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/connected_client/poller.rs +95 -0
  190. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/connected_client/send_lossy.rs +117 -0
  191. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/connected_client.rs +823 -0
  192. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/connection_graph.rs +341 -0
  193. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/cow_vec.rs +173 -0
  194. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/fetch_asset.rs +130 -0
  195. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/handshake.rs +43 -0
  196. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/semaphore.rs +107 -0
  197. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/server.rs +803 -0
  198. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/server_listener.rs +75 -0
  199. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/service/handler.rs +113 -0
  200. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/service/request.rs +79 -0
  201. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/service/response.rs +119 -0
  202. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/service/schema.rs +62 -0
  203. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/service/tests.rs +43 -0
  204. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/service.rs +271 -0
  205. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/streams/mod.rs +32 -0
  206. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/streams/no_tls.rs +38 -0
  207. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/streams/rust_tls.rs +70 -0
  208. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/subscription.rs +39 -0
  209. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/tests.rs +1901 -0
  210. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/advertise.rs +203 -0
  211. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/fetch_asset.rs +51 -0
  212. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/get_parameters.rs +76 -0
  213. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/message_data.rs +82 -0
  214. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/playback_control_request.rs +213 -0
  215. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/service_call_request.rs +119 -0
  216. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/set_parameters.rs +87 -0
  217. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__advertise__tests__encode.snap +31 -0
  218. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__fetch_asset__tests__encode.snap +9 -0
  219. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__get_parameters__tests__encode.snap +11 -0
  220. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__get_parameters__tests__encode_with_id.snap +12 -0
  221. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__message_data__tests__encode.snap +27 -0
  222. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__playback_control_request__tests__encode_pause.snap +32 -0
  223. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__playback_control_request__tests__encode_play.snap +32 -0
  224. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__playback_control_request__tests__encode_play_with_seek.snap +32 -0
  225. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__service_call_request__tests__encode.snap +39 -0
  226. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__set_parameters__tests__encode.snap +50 -0
  227. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__set_parameters__tests__encode_with_id.snap +51 -0
  228. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__subscribe__tests__encode.snap +17 -0
  229. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__subscribe_connection_graph__tests__encode.snap +7 -0
  230. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__subscribe_parameter_updates__tests__encode.snap +11 -0
  231. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__unadvertise__tests__encode.snap +12 -0
  232. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__unsubscribe__tests__encode.snap +12 -0
  233. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__unsubscribe_connection_graph__tests__encode.snap +7 -0
  234. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/snapshots/foxglove__websocket__ws_protocol__client__unsubscribe_parameter_updates__tests__encode.snap +11 -0
  235. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/subscribe.rs +67 -0
  236. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/subscribe_connection_graph.rs +36 -0
  237. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/subscribe_parameter_updates.rs +52 -0
  238. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/unadvertise.rs +48 -0
  239. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/unsubscribe.rs +48 -0
  240. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/unsubscribe_connection_graph.rs +36 -0
  241. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client/unsubscribe_parameter_updates.rs +54 -0
  242. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/client.rs +168 -0
  243. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/message.rs +28 -0
  244. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/parameter.rs +659 -0
  245. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/parse_error.rs +34 -0
  246. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/schema.rs +116 -0
  247. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/advertise.rs +201 -0
  248. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/advertise_services.rs +305 -0
  249. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/connection_graph_update.rs +124 -0
  250. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/fetch_asset_response.rs +200 -0
  251. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/message_data.rs +93 -0
  252. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/parameter_values.rs +84 -0
  253. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/playback_state.rs +213 -0
  254. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/remove_status.rs +48 -0
  255. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/server_info.rs +189 -0
  256. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/service_call_failure.rs +58 -0
  257. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/service_call_response.rs +119 -0
  258. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__advertise__tests__encode.snap +32 -0
  259. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__advertise_services__tests__encode.snap +88 -0
  260. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__connection_graph_update__tests__encode.snap +42 -0
  261. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__fetch_asset_response__tests__encode_asset_data.snap +20 -0
  262. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__fetch_asset_response__tests__encode_error_message.snap +21 -0
  263. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__message_data__tests__encode.snap +35 -0
  264. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__parameter_values__tests__encode.snap +38 -0
  265. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__parameter_values__tests__encode_with_id.snap +39 -0
  266. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__playback_state__tests__encode_did_seek.snap +25 -0
  267. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__playback_state__tests__encode_playing.snap +25 -0
  268. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__playback_state__tests__encode_playing_with_request_id.snap +39 -0
  269. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__remove_status__tests__encode.snap +12 -0
  270. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__server_info__tests__encode.snap +9 -0
  271. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__server_info__tests__encode_full.snap +28 -0
  272. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__service_call_failure__tests__encode.snap +10 -0
  273. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__service_call_response__tests__encode.snap +39 -0
  274. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__status__tests__encode.snap +9 -0
  275. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__status__tests__encode_with_id.snap +10 -0
  276. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__time__tests__encode.snap +15 -0
  277. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__unadvertise__tests__encode.snap +12 -0
  278. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/snapshots/foxglove__websocket__ws_protocol__server__unadvertise_services__tests__encode.snap +11 -0
  279. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/status.rs +106 -0
  280. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/time.rs +63 -0
  281. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/unadvertise.rs +48 -0
  282. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server/unadvertise_services.rs +50 -0
  283. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/server.rs +175 -0
  284. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/snapshots/foxglove__websocket__ws_protocol__parameter__tests__bool.snap +8 -0
  285. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/snapshots/foxglove__websocket__ws_protocol__parameter__tests__byte_array.snap +9 -0
  286. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/snapshots/foxglove__websocket__ws_protocol__parameter__tests__dict.snap +15 -0
  287. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/snapshots/foxglove__websocket__ws_protocol__parameter__tests__empty.snap +7 -0
  288. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/snapshots/foxglove__websocket__ws_protocol__parameter__tests__float.snap +9 -0
  289. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/snapshots/foxglove__websocket__ws_protocol__parameter__tests__float_array.snap +12 -0
  290. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/snapshots/foxglove__websocket__ws_protocol__parameter__tests__integer.snap +9 -0
  291. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/snapshots/foxglove__websocket__ws_protocol__parameter__tests__integer_array.snap +12 -0
  292. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/snapshots/foxglove__websocket__ws_protocol__parameter__tests__string.snap +8 -0
  293. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol/tungstenite.rs +203 -0
  294. foxglove_sdk-0.16.2/rust/foxglove/src/websocket/ws_protocol.rs +12 -0
  295. foxglove_sdk-0.16.2/rust/foxglove/src/websocket.rs +43 -0
  296. foxglove_sdk-0.16.2/rust/foxglove/src/websocket_client.rs +135 -0
  297. foxglove_sdk-0.16.2/rust/foxglove/src/websocket_server.rs +378 -0
  298. foxglove_sdk-0.16.2/rust/foxglove_derive/Cargo.toml +26 -0
  299. foxglove_sdk-0.16.2/rust/foxglove_derive/README.md +8 -0
  300. foxglove_sdk-0.16.2/rust/foxglove_derive/src/lib.rs +312 -0
  301. foxglove_sdk-0.16.2/rust/foxglove_derive/tests/common/fixed_size_buffer.rs +32 -0
  302. foxglove_sdk-0.16.2/rust/foxglove_derive/tests/common/mod.rs +2 -0
  303. foxglove_sdk-0.16.2/rust/foxglove_derive/tests/enum_fields_test.rs +68 -0
  304. foxglove_sdk-0.16.2/rust/foxglove_derive/tests/scalar_fields_test.rs +292 -0
  305. foxglove_sdk-0.16.2/rust/foxglove_derive/tests/string_fields_test.rs +117 -0
  306. foxglove_sdk-0.16.2/rust/foxglove_derive/tests/struct_fields_test.rs +391 -0
@@ -0,0 +1,3483 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.24.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
+
20
+ [[package]]
21
+ name = "aho-corasick"
22
+ version = "1.1.3"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
25
+ dependencies = [
26
+ "memchr",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "android-tzdata"
31
+ version = "0.1.1"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
34
+
35
+ [[package]]
36
+ name = "android_system_properties"
37
+ version = "0.1.5"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
40
+ dependencies = [
41
+ "libc",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstream"
46
+ version = "0.6.20"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
49
+ dependencies = [
50
+ "anstyle",
51
+ "anstyle-parse",
52
+ "anstyle-query",
53
+ "anstyle-wincon",
54
+ "colorchoice",
55
+ "is_terminal_polyfill",
56
+ "utf8parse",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle"
61
+ version = "1.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
64
+
65
+ [[package]]
66
+ name = "anstyle-parse"
67
+ version = "0.2.7"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
70
+ dependencies = [
71
+ "utf8parse",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "anstyle-query"
76
+ version = "1.1.4"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
79
+ dependencies = [
80
+ "windows-sys 0.60.2",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "anstyle-wincon"
85
+ version = "3.0.10"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
88
+ dependencies = [
89
+ "anstyle",
90
+ "once_cell_polyfill",
91
+ "windows-sys 0.60.2",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "anyhow"
96
+ version = "1.0.99"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
99
+
100
+ [[package]]
101
+ name = "arc-swap"
102
+ version = "1.7.1"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
105
+
106
+ [[package]]
107
+ name = "array-init"
108
+ version = "2.1.0"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc"
111
+
112
+ [[package]]
113
+ name = "asn1-rs"
114
+ version = "0.7.1"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60"
117
+ dependencies = [
118
+ "asn1-rs-derive",
119
+ "asn1-rs-impl",
120
+ "displaydoc",
121
+ "nom",
122
+ "num-traits",
123
+ "rusticata-macros",
124
+ "thiserror 2.0.14",
125
+ "time",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "asn1-rs-derive"
130
+ version = "0.6.0"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
133
+ dependencies = [
134
+ "proc-macro2",
135
+ "quote",
136
+ "syn 2.0.104",
137
+ "synstructure",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "asn1-rs-impl"
142
+ version = "0.2.0"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
145
+ dependencies = [
146
+ "proc-macro2",
147
+ "quote",
148
+ "syn 2.0.104",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "assert_matches"
153
+ version = "1.5.0"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"
156
+
157
+ [[package]]
158
+ name = "autocfg"
159
+ version = "1.5.0"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
162
+
163
+ [[package]]
164
+ name = "aws-lc-fips-sys"
165
+ version = "0.13.7"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "2608e5a7965cc9d58c56234d346c9c89b824c4c8652b6f047b3bd0a777c0644f"
168
+ dependencies = [
169
+ "bindgen",
170
+ "cc",
171
+ "cmake",
172
+ "dunce",
173
+ "fs_extra",
174
+ "regex",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "aws-lc-rs"
179
+ version = "1.13.3"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "5c953fe1ba023e6b7730c0d4b031d06f267f23a46167dcbd40316644b10a17ba"
182
+ dependencies = [
183
+ "aws-lc-fips-sys",
184
+ "aws-lc-sys",
185
+ "untrusted 0.7.1",
186
+ "zeroize",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "aws-lc-sys"
191
+ version = "0.30.0"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "dbfd150b5dbdb988bcc8fb1fe787eb6b7ee6180ca24da683b61ea5405f3d43ff"
194
+ dependencies = [
195
+ "bindgen",
196
+ "cc",
197
+ "cmake",
198
+ "dunce",
199
+ "fs_extra",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "backtrace"
204
+ version = "0.3.75"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
207
+ dependencies = [
208
+ "addr2line",
209
+ "cfg-if",
210
+ "libc",
211
+ "miniz_oxide",
212
+ "object",
213
+ "rustc-demangle",
214
+ "windows-targets 0.52.6",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "base64"
219
+ version = "0.22.1"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
222
+
223
+ [[package]]
224
+ name = "bimap"
225
+ version = "0.6.3"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "230c5f1ca6a325a32553f8640d31ac9b49f2411e901e427570154868b46da4f7"
228
+
229
+ [[package]]
230
+ name = "bindgen"
231
+ version = "0.69.5"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
234
+ dependencies = [
235
+ "bitflags",
236
+ "cexpr",
237
+ "clang-sys",
238
+ "itertools 0.12.1",
239
+ "lazy_static",
240
+ "lazycell",
241
+ "log",
242
+ "prettyplease",
243
+ "proc-macro2",
244
+ "quote",
245
+ "regex",
246
+ "rustc-hash",
247
+ "shlex",
248
+ "syn 2.0.104",
249
+ "which",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "binrw"
254
+ version = "0.12.0"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "9e8318fda24dc135cdd838f57a2b5ccb6e8f04ff6b6c65528c4bd9b5fcdc5cf6"
257
+ dependencies = [
258
+ "array-init",
259
+ "binrw_derive",
260
+ "bytemuck",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "binrw_derive"
265
+ version = "0.12.0"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "db0832bed83248115532dfb25af54fae1c83d67a2e4e3e2f591c13062e372e7e"
268
+ dependencies = [
269
+ "either",
270
+ "owo-colors",
271
+ "proc-macro2",
272
+ "quote",
273
+ "syn 1.0.109",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "bitflags"
278
+ version = "2.9.1"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
281
+
282
+ [[package]]
283
+ name = "block-buffer"
284
+ version = "0.10.4"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
287
+ dependencies = [
288
+ "generic-array",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "bumpalo"
293
+ version = "3.19.0"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
296
+
297
+ [[package]]
298
+ name = "bytemuck"
299
+ version = "1.23.2"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677"
302
+
303
+ [[package]]
304
+ name = "byteorder"
305
+ version = "1.5.0"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
308
+
309
+ [[package]]
310
+ name = "bytes"
311
+ version = "1.10.1"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
314
+
315
+ [[package]]
316
+ name = "cbindgen"
317
+ version = "0.29.0"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "975982cdb7ad6a142be15bdf84aea7ec6a9e5d4d797c004d43185b24cfe4e684"
320
+ dependencies = [
321
+ "clap",
322
+ "heck",
323
+ "indexmap 2.10.0",
324
+ "log",
325
+ "proc-macro2",
326
+ "quote",
327
+ "serde",
328
+ "serde_json",
329
+ "syn 2.0.104",
330
+ "tempfile",
331
+ "toml",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "cc"
336
+ version = "1.2.32"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "2352e5597e9c544d5e6d9c95190d5d27738ade584fa8db0a16e130e5c2b5296e"
339
+ dependencies = [
340
+ "jobserver",
341
+ "libc",
342
+ "shlex",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "cexpr"
347
+ version = "0.6.0"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
350
+ dependencies = [
351
+ "nom",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "cfg-if"
356
+ version = "1.0.1"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
359
+
360
+ [[package]]
361
+ name = "cfg_aliases"
362
+ version = "0.2.1"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
365
+
366
+ [[package]]
367
+ name = "chrono"
368
+ version = "0.4.41"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
371
+ dependencies = [
372
+ "android-tzdata",
373
+ "iana-time-zone",
374
+ "js-sys",
375
+ "num-traits",
376
+ "serde",
377
+ "wasm-bindgen",
378
+ "windows-link",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "clang-sys"
383
+ version = "1.8.1"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
386
+ dependencies = [
387
+ "glob",
388
+ "libc",
389
+ "libloading",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "clap"
394
+ version = "4.5.45"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "1fc0e74a703892159f5ae7d3aac52c8e6c392f5ae5f359c70b5881d60aaac318"
397
+ dependencies = [
398
+ "clap_builder",
399
+ "clap_derive",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "clap_builder"
404
+ version = "4.5.44"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "b3e7f4214277f3c7aa526a59dd3fbe306a370daee1f8b7b8c987069cd8e888a8"
407
+ dependencies = [
408
+ "anstream",
409
+ "anstyle",
410
+ "clap_lex",
411
+ "strsim",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "clap_derive"
416
+ version = "4.5.45"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "14cb31bb0a7d536caef2639baa7fad459e15c3144efefa6dbd1c84562c4739f6"
419
+ dependencies = [
420
+ "heck",
421
+ "proc-macro2",
422
+ "quote",
423
+ "syn 2.0.104",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "clap_lex"
428
+ version = "0.7.5"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
431
+
432
+ [[package]]
433
+ name = "cmake"
434
+ version = "0.1.54"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
437
+ dependencies = [
438
+ "cc",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "colorchoice"
443
+ version = "1.0.4"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
446
+
447
+ [[package]]
448
+ name = "console"
449
+ version = "0.15.11"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
452
+ dependencies = [
453
+ "encode_unicode",
454
+ "libc",
455
+ "once_cell",
456
+ "windows-sys 0.59.0",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "core-foundation"
461
+ version = "0.10.1"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
464
+ dependencies = [
465
+ "core-foundation-sys",
466
+ "libc",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "core-foundation-sys"
471
+ version = "0.8.7"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
474
+
475
+ [[package]]
476
+ name = "cpufeatures"
477
+ version = "0.2.17"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
480
+ dependencies = [
481
+ "libc",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "crc32fast"
486
+ version = "1.5.0"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
489
+ dependencies = [
490
+ "cfg-if",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "crypto-common"
495
+ version = "0.1.6"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
498
+ dependencies = [
499
+ "generic-array",
500
+ "typenum",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "ctrlc"
505
+ version = "3.4.7"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "46f93780a459b7d656ef7f071fe699c4d3d2cb201c4b24d085b6ddc505276e73"
508
+ dependencies = [
509
+ "nix",
510
+ "windows-sys 0.59.0",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "darling"
515
+ version = "0.20.11"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
518
+ dependencies = [
519
+ "darling_core",
520
+ "darling_macro",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "darling_core"
525
+ version = "0.20.11"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
528
+ dependencies = [
529
+ "fnv",
530
+ "ident_case",
531
+ "proc-macro2",
532
+ "quote",
533
+ "strsim",
534
+ "syn 2.0.104",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "darling_macro"
539
+ version = "0.20.11"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
542
+ dependencies = [
543
+ "darling_core",
544
+ "quote",
545
+ "syn 2.0.104",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "data-encoding"
550
+ version = "2.9.0"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
553
+
554
+ [[package]]
555
+ name = "delegate"
556
+ version = "0.13.4"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "6178a82cf56c836a3ba61a7935cdb1c49bfaa6fa4327cd5bf554a503087de26b"
559
+ dependencies = [
560
+ "proc-macro2",
561
+ "quote",
562
+ "syn 2.0.104",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "der-parser"
567
+ version = "10.0.0"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6"
570
+ dependencies = [
571
+ "asn1-rs",
572
+ "displaydoc",
573
+ "nom",
574
+ "num-bigint",
575
+ "num-traits",
576
+ "rusticata-macros",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "deranged"
581
+ version = "0.4.0"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
584
+ dependencies = [
585
+ "powerfmt",
586
+ "serde",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "digest"
591
+ version = "0.10.7"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
594
+ dependencies = [
595
+ "block-buffer",
596
+ "crypto-common",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "displaydoc"
601
+ version = "0.2.5"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
604
+ dependencies = [
605
+ "proc-macro2",
606
+ "quote",
607
+ "syn 2.0.104",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "dunce"
612
+ version = "1.0.5"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
615
+
616
+ [[package]]
617
+ name = "dyn-clone"
618
+ version = "1.0.20"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
621
+
622
+ [[package]]
623
+ name = "either"
624
+ version = "1.15.0"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
627
+
628
+ [[package]]
629
+ name = "encode_unicode"
630
+ version = "1.0.0"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
633
+
634
+ [[package]]
635
+ name = "enumset"
636
+ version = "1.1.7"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "d6ee17054f550fd7400e1906e2f9356c7672643ed34008a9e8abe147ccd2d821"
639
+ dependencies = [
640
+ "enumset_derive",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "enumset_derive"
645
+ version = "0.12.0"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "76d07902c93376f1e96c34abc4d507c0911df3816cef50b01f5a2ff3ad8c370d"
648
+ dependencies = [
649
+ "darling",
650
+ "proc-macro2",
651
+ "quote",
652
+ "syn 2.0.104",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "env_filter"
657
+ version = "0.1.4"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
660
+ dependencies = [
661
+ "log",
662
+ "regex",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "env_logger"
667
+ version = "0.11.8"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
670
+ dependencies = [
671
+ "anstream",
672
+ "anstyle",
673
+ "env_filter",
674
+ "jiff",
675
+ "log",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "equivalent"
680
+ version = "1.0.2"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
683
+
684
+ [[package]]
685
+ name = "errno"
686
+ version = "0.3.13"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
689
+ dependencies = [
690
+ "libc",
691
+ "windows-sys 0.60.2",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "example_agent"
696
+ version = "0.0.0"
697
+ dependencies = [
698
+ "clap",
699
+ "env_logger",
700
+ "foxglove 0.16.2",
701
+ "serde_json",
702
+ "tokio",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "example_channelless"
707
+ version = "0.0.0"
708
+ dependencies = [
709
+ "env_logger",
710
+ "foxglove 0.16.2",
711
+ "mcap 0.24.0",
712
+ "schemars 1.0.4",
713
+ "serde",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "example_client_publish"
718
+ version = "0.0.0"
719
+ dependencies = [
720
+ "clap",
721
+ "env_logger",
722
+ "foxglove 0.16.2",
723
+ "serde_json",
724
+ "tokio",
725
+ "tokio-util",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "example_mcap"
730
+ version = "0.0.0"
731
+ dependencies = [
732
+ "clap",
733
+ "ctrlc",
734
+ "env_logger",
735
+ "foxglove 0.16.2",
736
+ "schemars 1.0.4",
737
+ "serde",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "example_message_filtering"
742
+ version = "0.0.0"
743
+ dependencies = [
744
+ "ctrlc",
745
+ "env_logger",
746
+ "foxglove 0.16.2",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "example_param_server"
751
+ version = "0.0.0"
752
+ dependencies = [
753
+ "clap",
754
+ "env_logger",
755
+ "foxglove 0.16.2",
756
+ "tokio",
757
+ "tokio-util",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "example_prost"
762
+ version = "0.0.0"
763
+ dependencies = [
764
+ "foxglove 0.16.2",
765
+ "prost",
766
+ "prost-build",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "example_quickstart"
771
+ version = "0.0.0"
772
+ dependencies = [
773
+ "ctrlc",
774
+ "env_logger",
775
+ "foxglove 0.16.2",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "example_structured_logging"
780
+ version = "0.16.2"
781
+ dependencies = [
782
+ "bytes",
783
+ "env_logger",
784
+ "foxglove 0.16.2",
785
+ "schemars 1.0.4",
786
+ "serde",
787
+ "serde_json",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "example_ws_server"
792
+ version = "0.0.0"
793
+ dependencies = [
794
+ "clap",
795
+ "env_logger",
796
+ "foxglove 0.16.2",
797
+ "quaternion",
798
+ "tokio",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "example_ws_server_blocking"
803
+ version = "0.0.0"
804
+ dependencies = [
805
+ "clap",
806
+ "ctrlc",
807
+ "env_logger",
808
+ "foxglove 0.16.2",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "example_ws_server_fetch_asset"
813
+ version = "0.0.0"
814
+ dependencies = [
815
+ "clap",
816
+ "env_logger",
817
+ "foxglove 0.16.2",
818
+ "tokio",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "example_ws_services"
823
+ version = "0.0.0"
824
+ dependencies = [
825
+ "anyhow",
826
+ "bytes",
827
+ "clap",
828
+ "env_logger",
829
+ "foxglove 0.16.2",
830
+ "futures",
831
+ "parking_lot",
832
+ "schemars 1.0.4",
833
+ "serde",
834
+ "serde_json",
835
+ "strum",
836
+ "tokio",
837
+ "tokio-tungstenite",
838
+ "tracing",
839
+ ]
840
+
841
+ [[package]]
842
+ name = "example_ws_stream_mcap"
843
+ version = "0.0.0"
844
+ dependencies = [
845
+ "anyhow",
846
+ "bytes",
847
+ "clap",
848
+ "ctrlc",
849
+ "env_logger",
850
+ "foxglove 0.16.2",
851
+ "mcap 0.24.0",
852
+ "tracing",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "fastrand"
857
+ version = "2.3.0"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
860
+
861
+ [[package]]
862
+ name = "fixedbitset"
863
+ version = "0.5.7"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
866
+
867
+ [[package]]
868
+ name = "flume"
869
+ version = "0.11.1"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
872
+ dependencies = [
873
+ "futures-core",
874
+ "futures-sink",
875
+ "nanorand",
876
+ "spin",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "fnv"
881
+ version = "1.0.7"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
884
+
885
+ [[package]]
886
+ name = "foldhash"
887
+ version = "0.1.5"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
890
+
891
+ [[package]]
892
+ name = "foxglove"
893
+ version = "0.9.1"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "1511e8860b660a8248eea930e79f411f28a6e7a18225d580ab2941abe393a38b"
896
+ dependencies = [
897
+ "arc-swap",
898
+ "bimap",
899
+ "bytes",
900
+ "delegate",
901
+ "foxglove_derive 0.9.1",
902
+ "mcap 0.23.4",
903
+ "parking_lot",
904
+ "prost",
905
+ "prost-types",
906
+ "serde",
907
+ "serde_json",
908
+ "smallbytes",
909
+ "smallvec",
910
+ "thiserror 2.0.14",
911
+ "tracing",
912
+ "urlencoding",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "foxglove"
917
+ version = "0.16.2"
918
+ dependencies = [
919
+ "arc-swap",
920
+ "assert_matches",
921
+ "aws-lc-rs",
922
+ "base64",
923
+ "bimap",
924
+ "bytes",
925
+ "chrono",
926
+ "delegate",
927
+ "flume",
928
+ "foxglove_derive 0.16.2",
929
+ "futures",
930
+ "futures-util",
931
+ "insta",
932
+ "maplit",
933
+ "mcap 0.24.0",
934
+ "parking_lot",
935
+ "prost",
936
+ "prost-types",
937
+ "rcgen",
938
+ "schemars 1.0.4",
939
+ "serde",
940
+ "serde_json",
941
+ "serde_repr",
942
+ "serde_with",
943
+ "smallbytes",
944
+ "smallvec",
945
+ "tempfile",
946
+ "thiserror 2.0.14",
947
+ "tokio",
948
+ "tokio-rustls",
949
+ "tokio-tungstenite",
950
+ "tokio-util",
951
+ "tracing",
952
+ "tracing-test",
953
+ "urlencoding",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "foxglove-sdk-python"
958
+ version = "0.16.2"
959
+ dependencies = [
960
+ "base64",
961
+ "bytes",
962
+ "foxglove 0.16.2",
963
+ "log",
964
+ "maplit",
965
+ "prost-types",
966
+ "pyo3",
967
+ "pyo3-log",
968
+ "thiserror 2.0.14",
969
+ "tokio",
970
+ "tokio-tungstenite",
971
+ "tokio-util",
972
+ "tracing",
973
+ "walkdir",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "foxglove_c"
978
+ version = "0.16.2"
979
+ dependencies = [
980
+ "base64",
981
+ "bitflags",
982
+ "cbindgen",
983
+ "env_logger",
984
+ "foxglove 0.16.2",
985
+ "log",
986
+ "maplit",
987
+ "mcap 0.24.0",
988
+ "tracing",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "foxglove_data_loader"
993
+ version = "0.1.0"
994
+ dependencies = [
995
+ "anyhow",
996
+ "foxglove 0.9.1",
997
+ "prost",
998
+ "serde",
999
+ "serde_json",
1000
+ "wit-bindgen",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "foxglove_derive"
1005
+ version = "0.9.1"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "f0ece3f941204fde237b3c5fd4a72456089b15fcd5b891865dcbf2bf2b27b71b"
1008
+ dependencies = [
1009
+ "proc-macro2",
1010
+ "prost-types",
1011
+ "quote",
1012
+ "syn 2.0.104",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "foxglove_derive"
1017
+ version = "0.16.2"
1018
+ dependencies = [
1019
+ "bytes",
1020
+ "foxglove 0.16.2",
1021
+ "proc-macro2",
1022
+ "prost",
1023
+ "prost-reflect",
1024
+ "prost-types",
1025
+ "quote",
1026
+ "syn 2.0.104",
1027
+ "tracing",
1028
+ "tracing-test",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "foxglove_proto_gen"
1033
+ version = "0.0.0"
1034
+ dependencies = [
1035
+ "anyhow",
1036
+ "itertools 0.14.0",
1037
+ "prost",
1038
+ "prost-build",
1039
+ "prost-types",
1040
+ "regex",
1041
+ "tempfile",
1042
+ "walkdir",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "fs_extra"
1047
+ version = "1.3.0"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
1050
+
1051
+ [[package]]
1052
+ name = "futures"
1053
+ version = "0.3.31"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
1056
+ dependencies = [
1057
+ "futures-channel",
1058
+ "futures-core",
1059
+ "futures-executor",
1060
+ "futures-io",
1061
+ "futures-sink",
1062
+ "futures-task",
1063
+ "futures-util",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "futures-channel"
1068
+ version = "0.3.31"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
1071
+ dependencies = [
1072
+ "futures-core",
1073
+ "futures-sink",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "futures-core"
1078
+ version = "0.3.31"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
1081
+
1082
+ [[package]]
1083
+ name = "futures-executor"
1084
+ version = "0.3.31"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
1087
+ dependencies = [
1088
+ "futures-core",
1089
+ "futures-task",
1090
+ "futures-util",
1091
+ ]
1092
+
1093
+ [[package]]
1094
+ name = "futures-io"
1095
+ version = "0.3.31"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
1098
+
1099
+ [[package]]
1100
+ name = "futures-macro"
1101
+ version = "0.3.31"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1104
+ dependencies = [
1105
+ "proc-macro2",
1106
+ "quote",
1107
+ "syn 2.0.104",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "futures-sink"
1112
+ version = "0.3.31"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
1115
+
1116
+ [[package]]
1117
+ name = "futures-task"
1118
+ version = "0.3.31"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
1121
+
1122
+ [[package]]
1123
+ name = "futures-util"
1124
+ version = "0.3.31"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
1127
+ dependencies = [
1128
+ "futures-channel",
1129
+ "futures-core",
1130
+ "futures-io",
1131
+ "futures-macro",
1132
+ "futures-sink",
1133
+ "futures-task",
1134
+ "memchr",
1135
+ "pin-project-lite",
1136
+ "pin-utils",
1137
+ "slab",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "generic-array"
1142
+ version = "0.14.7"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1145
+ dependencies = [
1146
+ "typenum",
1147
+ "version_check",
1148
+ ]
1149
+
1150
+ [[package]]
1151
+ name = "getrandom"
1152
+ version = "0.2.16"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1155
+ dependencies = [
1156
+ "cfg-if",
1157
+ "js-sys",
1158
+ "libc",
1159
+ "wasi 0.11.1+wasi-snapshot-preview1",
1160
+ "wasm-bindgen",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "getrandom"
1165
+ version = "0.3.3"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
1168
+ dependencies = [
1169
+ "cfg-if",
1170
+ "libc",
1171
+ "r-efi",
1172
+ "wasi 0.14.2+wasi-0.2.4",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "gimli"
1177
+ version = "0.31.1"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
1180
+
1181
+ [[package]]
1182
+ name = "glob"
1183
+ version = "0.3.2"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1186
+
1187
+ [[package]]
1188
+ name = "hashbrown"
1189
+ version = "0.12.3"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1192
+
1193
+ [[package]]
1194
+ name = "hashbrown"
1195
+ version = "0.15.5"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1198
+ dependencies = [
1199
+ "foldhash",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "heck"
1204
+ version = "0.5.0"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1207
+
1208
+ [[package]]
1209
+ name = "hermit-abi"
1210
+ version = "0.5.2"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1213
+
1214
+ [[package]]
1215
+ name = "hex"
1216
+ version = "0.4.3"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1219
+
1220
+ [[package]]
1221
+ name = "home"
1222
+ version = "0.5.11"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
1225
+ dependencies = [
1226
+ "windows-sys 0.59.0",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "http"
1231
+ version = "1.3.1"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1234
+ dependencies = [
1235
+ "bytes",
1236
+ "fnv",
1237
+ "itoa",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "httparse"
1242
+ version = "1.10.1"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1245
+
1246
+ [[package]]
1247
+ name = "iana-time-zone"
1248
+ version = "0.1.63"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
1251
+ dependencies = [
1252
+ "android_system_properties",
1253
+ "core-foundation-sys",
1254
+ "iana-time-zone-haiku",
1255
+ "js-sys",
1256
+ "log",
1257
+ "wasm-bindgen",
1258
+ "windows-core",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "iana-time-zone-haiku"
1263
+ version = "0.1.2"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1266
+ dependencies = [
1267
+ "cc",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "id-arena"
1272
+ version = "2.2.1"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005"
1275
+
1276
+ [[package]]
1277
+ name = "ident_case"
1278
+ version = "1.0.1"
1279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1280
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1281
+
1282
+ [[package]]
1283
+ name = "indexmap"
1284
+ version = "1.9.3"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1287
+ dependencies = [
1288
+ "autocfg",
1289
+ "hashbrown 0.12.3",
1290
+ "serde",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "indexmap"
1295
+ version = "2.10.0"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
1298
+ dependencies = [
1299
+ "equivalent",
1300
+ "hashbrown 0.15.5",
1301
+ "serde",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "indoc"
1306
+ version = "2.0.6"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1309
+
1310
+ [[package]]
1311
+ name = "insta"
1312
+ version = "1.43.1"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "154934ea70c58054b556dd430b99a98c2a7ff5309ac9891597e339b5c28f4371"
1315
+ dependencies = [
1316
+ "console",
1317
+ "once_cell",
1318
+ "serde",
1319
+ "similar",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "io-uring"
1324
+ version = "0.7.9"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
1327
+ dependencies = [
1328
+ "bitflags",
1329
+ "cfg-if",
1330
+ "libc",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "is_terminal_polyfill"
1335
+ version = "1.70.1"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1338
+
1339
+ [[package]]
1340
+ name = "itertools"
1341
+ version = "0.12.1"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1344
+ dependencies = [
1345
+ "either",
1346
+ ]
1347
+
1348
+ [[package]]
1349
+ name = "itertools"
1350
+ version = "0.14.0"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1353
+ dependencies = [
1354
+ "either",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "itoa"
1359
+ version = "1.0.15"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1362
+
1363
+ [[package]]
1364
+ name = "jiff"
1365
+ version = "0.2.15"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
1368
+ dependencies = [
1369
+ "jiff-static",
1370
+ "log",
1371
+ "portable-atomic",
1372
+ "portable-atomic-util",
1373
+ "serde",
1374
+ ]
1375
+
1376
+ [[package]]
1377
+ name = "jiff-static"
1378
+ version = "0.2.15"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
1381
+ dependencies = [
1382
+ "proc-macro2",
1383
+ "quote",
1384
+ "syn 2.0.104",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "jobserver"
1389
+ version = "0.1.33"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1392
+ dependencies = [
1393
+ "getrandom 0.3.3",
1394
+ "libc",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "js-sys"
1399
+ version = "0.3.77"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1402
+ dependencies = [
1403
+ "once_cell",
1404
+ "wasm-bindgen",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "lazy_static"
1409
+ version = "1.5.0"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1412
+
1413
+ [[package]]
1414
+ name = "lazycell"
1415
+ version = "1.3.0"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1418
+
1419
+ [[package]]
1420
+ name = "leb128fmt"
1421
+ version = "0.1.0"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1424
+
1425
+ [[package]]
1426
+ name = "libc"
1427
+ version = "0.2.175"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
1430
+
1431
+ [[package]]
1432
+ name = "libloading"
1433
+ version = "0.8.8"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
1436
+ dependencies = [
1437
+ "cfg-if",
1438
+ "windows-targets 0.53.3",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "linux-raw-sys"
1443
+ version = "0.4.15"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1446
+
1447
+ [[package]]
1448
+ name = "linux-raw-sys"
1449
+ version = "0.9.4"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1452
+
1453
+ [[package]]
1454
+ name = "lock_api"
1455
+ version = "0.4.13"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1458
+ dependencies = [
1459
+ "autocfg",
1460
+ "scopeguard",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "log"
1465
+ version = "0.4.27"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1468
+
1469
+ [[package]]
1470
+ name = "lz4"
1471
+ version = "1.28.1"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
1474
+ dependencies = [
1475
+ "lz4-sys",
1476
+ ]
1477
+
1478
+ [[package]]
1479
+ name = "lz4-sys"
1480
+ version = "1.11.1+lz4-1.10.0"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
1483
+ dependencies = [
1484
+ "cc",
1485
+ "libc",
1486
+ ]
1487
+
1488
+ [[package]]
1489
+ name = "maplit"
1490
+ version = "1.0.2"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1493
+
1494
+ [[package]]
1495
+ name = "matchers"
1496
+ version = "0.2.0"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1499
+ dependencies = [
1500
+ "regex-automata",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "mcap"
1505
+ version = "0.23.4"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "2a3ca583fed649ed7cd8c976b59422996472c6b08067308443e0b60c56e0a4ca"
1508
+ dependencies = [
1509
+ "bimap",
1510
+ "binrw",
1511
+ "byteorder",
1512
+ "crc32fast",
1513
+ "enumset",
1514
+ "log",
1515
+ "num_cpus",
1516
+ "paste",
1517
+ "static_assertions",
1518
+ "thiserror 1.0.69",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "mcap"
1523
+ version = "0.24.0"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "43908ab970f3a880b02834055a1e04221a3056f442a65ae9111f63e550e7daa5"
1526
+ dependencies = [
1527
+ "bimap",
1528
+ "binrw",
1529
+ "byteorder",
1530
+ "crc32fast",
1531
+ "enumset",
1532
+ "log",
1533
+ "lz4",
1534
+ "num_cpus",
1535
+ "paste",
1536
+ "static_assertions",
1537
+ "thiserror 1.0.69",
1538
+ "zstd",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "memchr"
1543
+ version = "2.7.5"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1546
+
1547
+ [[package]]
1548
+ name = "memoffset"
1549
+ version = "0.9.1"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1552
+ dependencies = [
1553
+ "autocfg",
1554
+ ]
1555
+
1556
+ [[package]]
1557
+ name = "minimal-lexical"
1558
+ version = "0.2.1"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1561
+
1562
+ [[package]]
1563
+ name = "miniz_oxide"
1564
+ version = "0.8.9"
1565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1566
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1567
+ dependencies = [
1568
+ "adler2",
1569
+ ]
1570
+
1571
+ [[package]]
1572
+ name = "mio"
1573
+ version = "1.0.4"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1576
+ dependencies = [
1577
+ "libc",
1578
+ "wasi 0.11.1+wasi-snapshot-preview1",
1579
+ "windows-sys 0.59.0",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "multimap"
1584
+ version = "0.10.1"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
1587
+
1588
+ [[package]]
1589
+ name = "nanorand"
1590
+ version = "0.7.0"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
1593
+ dependencies = [
1594
+ "getrandom 0.2.16",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "nix"
1599
+ version = "0.30.1"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
1602
+ dependencies = [
1603
+ "bitflags",
1604
+ "cfg-if",
1605
+ "cfg_aliases",
1606
+ "libc",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "nom"
1611
+ version = "7.1.3"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1614
+ dependencies = [
1615
+ "memchr",
1616
+ "minimal-lexical",
1617
+ ]
1618
+
1619
+ [[package]]
1620
+ name = "nu-ansi-term"
1621
+ version = "0.50.1"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
1624
+ dependencies = [
1625
+ "windows-sys 0.52.0",
1626
+ ]
1627
+
1628
+ [[package]]
1629
+ name = "num-bigint"
1630
+ version = "0.4.6"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1633
+ dependencies = [
1634
+ "num-integer",
1635
+ "num-traits",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "num-conv"
1640
+ version = "0.1.0"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1643
+
1644
+ [[package]]
1645
+ name = "num-integer"
1646
+ version = "0.1.46"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1649
+ dependencies = [
1650
+ "num-traits",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "num-traits"
1655
+ version = "0.2.19"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1658
+ dependencies = [
1659
+ "autocfg",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "num_cpus"
1664
+ version = "1.17.0"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1667
+ dependencies = [
1668
+ "hermit-abi",
1669
+ "libc",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "object"
1674
+ version = "0.36.7"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1677
+ dependencies = [
1678
+ "memchr",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "oid-registry"
1683
+ version = "0.8.1"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7"
1686
+ dependencies = [
1687
+ "asn1-rs",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "once_cell"
1692
+ version = "1.21.3"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1695
+
1696
+ [[package]]
1697
+ name = "once_cell_polyfill"
1698
+ version = "1.70.1"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1701
+
1702
+ [[package]]
1703
+ name = "openssl-probe"
1704
+ version = "0.1.6"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1707
+
1708
+ [[package]]
1709
+ name = "owo-colors"
1710
+ version = "3.5.0"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
1713
+
1714
+ [[package]]
1715
+ name = "parking_lot"
1716
+ version = "0.12.4"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1719
+ dependencies = [
1720
+ "lock_api",
1721
+ "parking_lot_core",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "parking_lot_core"
1726
+ version = "0.9.11"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1729
+ dependencies = [
1730
+ "cfg-if",
1731
+ "libc",
1732
+ "redox_syscall",
1733
+ "smallvec",
1734
+ "windows-targets 0.52.6",
1735
+ ]
1736
+
1737
+ [[package]]
1738
+ name = "paste"
1739
+ version = "1.0.15"
1740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1741
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1742
+
1743
+ [[package]]
1744
+ name = "pem"
1745
+ version = "3.0.5"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
1748
+ dependencies = [
1749
+ "base64",
1750
+ "serde",
1751
+ ]
1752
+
1753
+ [[package]]
1754
+ name = "petgraph"
1755
+ version = "0.7.1"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
1758
+ dependencies = [
1759
+ "fixedbitset",
1760
+ "indexmap 2.10.0",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "pin-project-lite"
1765
+ version = "0.2.16"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1768
+
1769
+ [[package]]
1770
+ name = "pin-utils"
1771
+ version = "0.1.0"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1774
+
1775
+ [[package]]
1776
+ name = "piston-float"
1777
+ version = "1.0.1"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "ad78bf43dcf80e8f950c92b84f938a0fc7590b7f6866fbcbeca781609c115590"
1780
+
1781
+ [[package]]
1782
+ name = "pkg-config"
1783
+ version = "0.3.32"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1786
+
1787
+ [[package]]
1788
+ name = "portable-atomic"
1789
+ version = "1.11.1"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1792
+
1793
+ [[package]]
1794
+ name = "portable-atomic-util"
1795
+ version = "0.2.4"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1798
+ dependencies = [
1799
+ "portable-atomic",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "powerfmt"
1804
+ version = "0.2.0"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1807
+
1808
+ [[package]]
1809
+ name = "ppv-lite86"
1810
+ version = "0.2.21"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1813
+ dependencies = [
1814
+ "zerocopy",
1815
+ ]
1816
+
1817
+ [[package]]
1818
+ name = "prettyplease"
1819
+ version = "0.2.36"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2"
1822
+ dependencies = [
1823
+ "proc-macro2",
1824
+ "syn 2.0.104",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "proc-macro2"
1829
+ version = "1.0.97"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "d61789d7719defeb74ea5fe81f2fdfdbd28a803847077cecce2ff14e1472f6f1"
1832
+ dependencies = [
1833
+ "unicode-ident",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "prost"
1838
+ version = "0.13.5"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
1841
+ dependencies = [
1842
+ "bytes",
1843
+ "prost-derive",
1844
+ ]
1845
+
1846
+ [[package]]
1847
+ name = "prost-build"
1848
+ version = "0.13.5"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
1851
+ dependencies = [
1852
+ "heck",
1853
+ "itertools 0.14.0",
1854
+ "log",
1855
+ "multimap",
1856
+ "once_cell",
1857
+ "petgraph",
1858
+ "prettyplease",
1859
+ "prost",
1860
+ "prost-types",
1861
+ "regex",
1862
+ "syn 2.0.104",
1863
+ "tempfile",
1864
+ ]
1865
+
1866
+ [[package]]
1867
+ name = "prost-derive"
1868
+ version = "0.13.5"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
1871
+ dependencies = [
1872
+ "anyhow",
1873
+ "itertools 0.14.0",
1874
+ "proc-macro2",
1875
+ "quote",
1876
+ "syn 2.0.104",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "prost-reflect"
1881
+ version = "0.15.3"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "37587d5a8a1b3dc9863403d084fc2254b91ab75a702207098837950767e2260b"
1884
+ dependencies = [
1885
+ "prost",
1886
+ "prost-types",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "prost-types"
1891
+ version = "0.13.5"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
1894
+ dependencies = [
1895
+ "prost",
1896
+ ]
1897
+
1898
+ [[package]]
1899
+ name = "pyo3"
1900
+ version = "0.25.1"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
1903
+ dependencies = [
1904
+ "indoc",
1905
+ "libc",
1906
+ "memoffset",
1907
+ "once_cell",
1908
+ "portable-atomic",
1909
+ "pyo3-build-config",
1910
+ "pyo3-ffi",
1911
+ "pyo3-macros",
1912
+ "unindent",
1913
+ ]
1914
+
1915
+ [[package]]
1916
+ name = "pyo3-build-config"
1917
+ version = "0.25.1"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
1920
+ dependencies = [
1921
+ "once_cell",
1922
+ "target-lexicon",
1923
+ ]
1924
+
1925
+ [[package]]
1926
+ name = "pyo3-ffi"
1927
+ version = "0.25.1"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
1930
+ dependencies = [
1931
+ "libc",
1932
+ "pyo3-build-config",
1933
+ ]
1934
+
1935
+ [[package]]
1936
+ name = "pyo3-log"
1937
+ version = "0.12.4"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "45192e5e4a4d2505587e27806c7b710c231c40c56f3bfc19535d0bb25df52264"
1940
+ dependencies = [
1941
+ "arc-swap",
1942
+ "log",
1943
+ "pyo3",
1944
+ ]
1945
+
1946
+ [[package]]
1947
+ name = "pyo3-macros"
1948
+ version = "0.25.1"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
1951
+ dependencies = [
1952
+ "proc-macro2",
1953
+ "pyo3-macros-backend",
1954
+ "quote",
1955
+ "syn 2.0.104",
1956
+ ]
1957
+
1958
+ [[package]]
1959
+ name = "pyo3-macros-backend"
1960
+ version = "0.25.1"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
1963
+ dependencies = [
1964
+ "heck",
1965
+ "proc-macro2",
1966
+ "pyo3-build-config",
1967
+ "quote",
1968
+ "syn 2.0.104",
1969
+ ]
1970
+
1971
+ [[package]]
1972
+ name = "quaternion"
1973
+ version = "2.0.0"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "a6a23cd933813dea6a8e24391c80634deba6a70ca5a14b2b944b8cb6d871e071"
1976
+ dependencies = [
1977
+ "vecmath",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "quote"
1982
+ version = "1.0.40"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1985
+ dependencies = [
1986
+ "proc-macro2",
1987
+ ]
1988
+
1989
+ [[package]]
1990
+ name = "r-efi"
1991
+ version = "5.3.0"
1992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1993
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1994
+
1995
+ [[package]]
1996
+ name = "rand"
1997
+ version = "0.9.2"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2000
+ dependencies = [
2001
+ "rand_chacha",
2002
+ "rand_core",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "rand_chacha"
2007
+ version = "0.9.0"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2010
+ dependencies = [
2011
+ "ppv-lite86",
2012
+ "rand_core",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "rand_core"
2017
+ version = "0.9.3"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2020
+ dependencies = [
2021
+ "getrandom 0.3.3",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "rcgen"
2026
+ version = "0.14.3"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "0068c5b3cab1d4e271e0bb6539c87563c43411cad90b057b15c79958fbeb41f7"
2029
+ dependencies = [
2030
+ "pem",
2031
+ "ring",
2032
+ "rustls-pki-types",
2033
+ "time",
2034
+ "x509-parser",
2035
+ "yasna",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "redox_syscall"
2040
+ version = "0.5.17"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
2043
+ dependencies = [
2044
+ "bitflags",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "ref-cast"
2049
+ version = "1.0.24"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
2052
+ dependencies = [
2053
+ "ref-cast-impl",
2054
+ ]
2055
+
2056
+ [[package]]
2057
+ name = "ref-cast-impl"
2058
+ version = "1.0.24"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
2061
+ dependencies = [
2062
+ "proc-macro2",
2063
+ "quote",
2064
+ "syn 2.0.104",
2065
+ ]
2066
+
2067
+ [[package]]
2068
+ name = "regex"
2069
+ version = "1.11.1"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2072
+ dependencies = [
2073
+ "aho-corasick",
2074
+ "memchr",
2075
+ "regex-automata",
2076
+ "regex-syntax",
2077
+ ]
2078
+
2079
+ [[package]]
2080
+ name = "regex-automata"
2081
+ version = "0.4.9"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2084
+ dependencies = [
2085
+ "aho-corasick",
2086
+ "memchr",
2087
+ "regex-syntax",
2088
+ ]
2089
+
2090
+ [[package]]
2091
+ name = "regex-syntax"
2092
+ version = "0.8.5"
2093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2094
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2095
+
2096
+ [[package]]
2097
+ name = "ring"
2098
+ version = "0.17.14"
2099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2100
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2101
+ dependencies = [
2102
+ "cc",
2103
+ "cfg-if",
2104
+ "getrandom 0.2.16",
2105
+ "libc",
2106
+ "untrusted 0.9.0",
2107
+ "windows-sys 0.52.0",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "rustc-demangle"
2112
+ version = "0.1.26"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
2115
+
2116
+ [[package]]
2117
+ name = "rustc-hash"
2118
+ version = "1.1.0"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2121
+
2122
+ [[package]]
2123
+ name = "rusticata-macros"
2124
+ version = "4.1.0"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
2127
+ dependencies = [
2128
+ "nom",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "rustix"
2133
+ version = "0.38.44"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2136
+ dependencies = [
2137
+ "bitflags",
2138
+ "errno",
2139
+ "libc",
2140
+ "linux-raw-sys 0.4.15",
2141
+ "windows-sys 0.59.0",
2142
+ ]
2143
+
2144
+ [[package]]
2145
+ name = "rustix"
2146
+ version = "1.0.8"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
2149
+ dependencies = [
2150
+ "bitflags",
2151
+ "errno",
2152
+ "libc",
2153
+ "linux-raw-sys 0.9.4",
2154
+ "windows-sys 0.60.2",
2155
+ ]
2156
+
2157
+ [[package]]
2158
+ name = "rustls"
2159
+ version = "0.23.31"
2160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2161
+ checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
2162
+ dependencies = [
2163
+ "aws-lc-rs",
2164
+ "log",
2165
+ "once_cell",
2166
+ "rustls-pki-types",
2167
+ "rustls-webpki",
2168
+ "subtle",
2169
+ "zeroize",
2170
+ ]
2171
+
2172
+ [[package]]
2173
+ name = "rustls-native-certs"
2174
+ version = "0.8.1"
2175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2176
+ checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
2177
+ dependencies = [
2178
+ "openssl-probe",
2179
+ "rustls-pki-types",
2180
+ "schannel",
2181
+ "security-framework",
2182
+ ]
2183
+
2184
+ [[package]]
2185
+ name = "rustls-pki-types"
2186
+ version = "1.12.0"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
2189
+ dependencies = [
2190
+ "zeroize",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "rustls-webpki"
2195
+ version = "0.103.4"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
2198
+ dependencies = [
2199
+ "aws-lc-rs",
2200
+ "ring",
2201
+ "rustls-pki-types",
2202
+ "untrusted 0.9.0",
2203
+ ]
2204
+
2205
+ [[package]]
2206
+ name = "rustversion"
2207
+ version = "1.0.22"
2208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2209
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2210
+
2211
+ [[package]]
2212
+ name = "ryu"
2213
+ version = "1.0.20"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2216
+
2217
+ [[package]]
2218
+ name = "same-file"
2219
+ version = "1.0.6"
2220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2221
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2222
+ dependencies = [
2223
+ "winapi-util",
2224
+ ]
2225
+
2226
+ [[package]]
2227
+ name = "schannel"
2228
+ version = "0.1.27"
2229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2230
+ checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
2231
+ dependencies = [
2232
+ "windows-sys 0.59.0",
2233
+ ]
2234
+
2235
+ [[package]]
2236
+ name = "schemars"
2237
+ version = "0.9.0"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
2240
+ dependencies = [
2241
+ "dyn-clone",
2242
+ "ref-cast",
2243
+ "serde",
2244
+ "serde_json",
2245
+ ]
2246
+
2247
+ [[package]]
2248
+ name = "schemars"
2249
+ version = "1.0.4"
2250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2251
+ checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0"
2252
+ dependencies = [
2253
+ "dyn-clone",
2254
+ "ref-cast",
2255
+ "schemars_derive",
2256
+ "serde",
2257
+ "serde_json",
2258
+ ]
2259
+
2260
+ [[package]]
2261
+ name = "schemars_derive"
2262
+ version = "1.0.4"
2263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2264
+ checksum = "33d020396d1d138dc19f1165df7545479dcd58d93810dc5d646a16e55abefa80"
2265
+ dependencies = [
2266
+ "proc-macro2",
2267
+ "quote",
2268
+ "serde_derive_internals",
2269
+ "syn 2.0.104",
2270
+ ]
2271
+
2272
+ [[package]]
2273
+ name = "scopeguard"
2274
+ version = "1.2.0"
2275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2276
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2277
+
2278
+ [[package]]
2279
+ name = "security-framework"
2280
+ version = "3.3.0"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "80fb1d92c5028aa318b4b8bd7302a5bfcf48be96a37fc6fc790f806b0004ee0c"
2283
+ dependencies = [
2284
+ "bitflags",
2285
+ "core-foundation",
2286
+ "core-foundation-sys",
2287
+ "libc",
2288
+ "security-framework-sys",
2289
+ ]
2290
+
2291
+ [[package]]
2292
+ name = "security-framework-sys"
2293
+ version = "2.14.0"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
2296
+ dependencies = [
2297
+ "core-foundation-sys",
2298
+ "libc",
2299
+ ]
2300
+
2301
+ [[package]]
2302
+ name = "semver"
2303
+ version = "1.0.26"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
2306
+
2307
+ [[package]]
2308
+ name = "serde"
2309
+ version = "1.0.219"
2310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2311
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2312
+ dependencies = [
2313
+ "serde_derive",
2314
+ ]
2315
+
2316
+ [[package]]
2317
+ name = "serde_derive"
2318
+ version = "1.0.219"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2321
+ dependencies = [
2322
+ "proc-macro2",
2323
+ "quote",
2324
+ "syn 2.0.104",
2325
+ ]
2326
+
2327
+ [[package]]
2328
+ name = "serde_derive_internals"
2329
+ version = "0.29.1"
2330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2331
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
2332
+ dependencies = [
2333
+ "proc-macro2",
2334
+ "quote",
2335
+ "syn 2.0.104",
2336
+ ]
2337
+
2338
+ [[package]]
2339
+ name = "serde_json"
2340
+ version = "1.0.142"
2341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2342
+ checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7"
2343
+ dependencies = [
2344
+ "itoa",
2345
+ "memchr",
2346
+ "ryu",
2347
+ "serde",
2348
+ ]
2349
+
2350
+ [[package]]
2351
+ name = "serde_repr"
2352
+ version = "0.1.20"
2353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2354
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
2355
+ dependencies = [
2356
+ "proc-macro2",
2357
+ "quote",
2358
+ "syn 2.0.104",
2359
+ ]
2360
+
2361
+ [[package]]
2362
+ name = "serde_spanned"
2363
+ version = "0.6.9"
2364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2365
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2366
+ dependencies = [
2367
+ "serde",
2368
+ ]
2369
+
2370
+ [[package]]
2371
+ name = "serde_with"
2372
+ version = "3.14.0"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5"
2375
+ dependencies = [
2376
+ "base64",
2377
+ "chrono",
2378
+ "hex",
2379
+ "indexmap 1.9.3",
2380
+ "indexmap 2.10.0",
2381
+ "schemars 0.9.0",
2382
+ "schemars 1.0.4",
2383
+ "serde",
2384
+ "serde_derive",
2385
+ "serde_json",
2386
+ "serde_with_macros",
2387
+ "time",
2388
+ ]
2389
+
2390
+ [[package]]
2391
+ name = "serde_with_macros"
2392
+ version = "3.14.0"
2393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2394
+ checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f"
2395
+ dependencies = [
2396
+ "darling",
2397
+ "proc-macro2",
2398
+ "quote",
2399
+ "syn 2.0.104",
2400
+ ]
2401
+
2402
+ [[package]]
2403
+ name = "sha1"
2404
+ version = "0.10.6"
2405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2406
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2407
+ dependencies = [
2408
+ "cfg-if",
2409
+ "cpufeatures",
2410
+ "digest",
2411
+ ]
2412
+
2413
+ [[package]]
2414
+ name = "sharded-slab"
2415
+ version = "0.1.7"
2416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2417
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2418
+ dependencies = [
2419
+ "lazy_static",
2420
+ ]
2421
+
2422
+ [[package]]
2423
+ name = "shlex"
2424
+ version = "1.3.0"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2427
+
2428
+ [[package]]
2429
+ name = "signal-hook-registry"
2430
+ version = "1.4.6"
2431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2432
+ checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
2433
+ dependencies = [
2434
+ "libc",
2435
+ ]
2436
+
2437
+ [[package]]
2438
+ name = "similar"
2439
+ version = "2.7.0"
2440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2441
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
2442
+
2443
+ [[package]]
2444
+ name = "slab"
2445
+ version = "0.4.11"
2446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2447
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2448
+
2449
+ [[package]]
2450
+ name = "smallbytes"
2451
+ version = "0.1.0"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "058d68c846e75e40719a9f772887608604e8af199157a2fa58a3ae4bad6ee934"
2454
+ dependencies = [
2455
+ "bytes",
2456
+ "smallvec",
2457
+ ]
2458
+
2459
+ [[package]]
2460
+ name = "smallvec"
2461
+ version = "1.15.1"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2464
+
2465
+ [[package]]
2466
+ name = "socket2"
2467
+ version = "0.6.0"
2468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2469
+ checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
2470
+ dependencies = [
2471
+ "libc",
2472
+ "windows-sys 0.59.0",
2473
+ ]
2474
+
2475
+ [[package]]
2476
+ name = "spin"
2477
+ version = "0.9.8"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2480
+ dependencies = [
2481
+ "lock_api",
2482
+ ]
2483
+
2484
+ [[package]]
2485
+ name = "static_assertions"
2486
+ version = "1.1.0"
2487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2488
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2489
+
2490
+ [[package]]
2491
+ name = "strsim"
2492
+ version = "0.11.1"
2493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2494
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2495
+
2496
+ [[package]]
2497
+ name = "strum"
2498
+ version = "0.27.2"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
2501
+ dependencies = [
2502
+ "strum_macros",
2503
+ ]
2504
+
2505
+ [[package]]
2506
+ name = "strum_macros"
2507
+ version = "0.27.2"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
2510
+ dependencies = [
2511
+ "heck",
2512
+ "proc-macro2",
2513
+ "quote",
2514
+ "syn 2.0.104",
2515
+ ]
2516
+
2517
+ [[package]]
2518
+ name = "subtle"
2519
+ version = "2.6.1"
2520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2521
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2522
+
2523
+ [[package]]
2524
+ name = "syn"
2525
+ version = "1.0.109"
2526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2527
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2528
+ dependencies = [
2529
+ "proc-macro2",
2530
+ "quote",
2531
+ "unicode-ident",
2532
+ ]
2533
+
2534
+ [[package]]
2535
+ name = "syn"
2536
+ version = "2.0.104"
2537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2538
+ checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
2539
+ dependencies = [
2540
+ "proc-macro2",
2541
+ "quote",
2542
+ "unicode-ident",
2543
+ ]
2544
+
2545
+ [[package]]
2546
+ name = "synstructure"
2547
+ version = "0.13.2"
2548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2549
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2550
+ dependencies = [
2551
+ "proc-macro2",
2552
+ "quote",
2553
+ "syn 2.0.104",
2554
+ ]
2555
+
2556
+ [[package]]
2557
+ name = "target-lexicon"
2558
+ version = "0.13.2"
2559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2560
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
2561
+
2562
+ [[package]]
2563
+ name = "tempfile"
2564
+ version = "3.20.0"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
2567
+ dependencies = [
2568
+ "fastrand",
2569
+ "getrandom 0.3.3",
2570
+ "once_cell",
2571
+ "rustix 1.0.8",
2572
+ "windows-sys 0.59.0",
2573
+ ]
2574
+
2575
+ [[package]]
2576
+ name = "thiserror"
2577
+ version = "1.0.69"
2578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2579
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2580
+ dependencies = [
2581
+ "thiserror-impl 1.0.69",
2582
+ ]
2583
+
2584
+ [[package]]
2585
+ name = "thiserror"
2586
+ version = "2.0.14"
2587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2588
+ checksum = "0b0949c3a6c842cbde3f1686d6eea5a010516deb7085f79db747562d4102f41e"
2589
+ dependencies = [
2590
+ "thiserror-impl 2.0.14",
2591
+ ]
2592
+
2593
+ [[package]]
2594
+ name = "thiserror-impl"
2595
+ version = "1.0.69"
2596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2597
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2598
+ dependencies = [
2599
+ "proc-macro2",
2600
+ "quote",
2601
+ "syn 2.0.104",
2602
+ ]
2603
+
2604
+ [[package]]
2605
+ name = "thiserror-impl"
2606
+ version = "2.0.14"
2607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2608
+ checksum = "cc5b44b4ab9c2fdd0e0512e6bece8388e214c0749f5862b114cc5b7a25daf227"
2609
+ dependencies = [
2610
+ "proc-macro2",
2611
+ "quote",
2612
+ "syn 2.0.104",
2613
+ ]
2614
+
2615
+ [[package]]
2616
+ name = "thread_local"
2617
+ version = "1.1.9"
2618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2619
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2620
+ dependencies = [
2621
+ "cfg-if",
2622
+ ]
2623
+
2624
+ [[package]]
2625
+ name = "time"
2626
+ version = "0.3.41"
2627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2628
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
2629
+ dependencies = [
2630
+ "deranged",
2631
+ "itoa",
2632
+ "num-conv",
2633
+ "powerfmt",
2634
+ "serde",
2635
+ "time-core",
2636
+ "time-macros",
2637
+ ]
2638
+
2639
+ [[package]]
2640
+ name = "time-core"
2641
+ version = "0.1.4"
2642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2643
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
2644
+
2645
+ [[package]]
2646
+ name = "time-macros"
2647
+ version = "0.2.22"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
2650
+ dependencies = [
2651
+ "num-conv",
2652
+ "time-core",
2653
+ ]
2654
+
2655
+ [[package]]
2656
+ name = "tokio"
2657
+ version = "1.47.1"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
2660
+ dependencies = [
2661
+ "backtrace",
2662
+ "bytes",
2663
+ "io-uring",
2664
+ "libc",
2665
+ "mio",
2666
+ "parking_lot",
2667
+ "pin-project-lite",
2668
+ "signal-hook-registry",
2669
+ "slab",
2670
+ "socket2",
2671
+ "tokio-macros",
2672
+ "windows-sys 0.59.0",
2673
+ ]
2674
+
2675
+ [[package]]
2676
+ name = "tokio-macros"
2677
+ version = "2.5.0"
2678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2679
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2680
+ dependencies = [
2681
+ "proc-macro2",
2682
+ "quote",
2683
+ "syn 2.0.104",
2684
+ ]
2685
+
2686
+ [[package]]
2687
+ name = "tokio-rustls"
2688
+ version = "0.26.2"
2689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2690
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
2691
+ dependencies = [
2692
+ "rustls",
2693
+ "tokio",
2694
+ ]
2695
+
2696
+ [[package]]
2697
+ name = "tokio-tungstenite"
2698
+ version = "0.28.0"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857"
2701
+ dependencies = [
2702
+ "futures-util",
2703
+ "log",
2704
+ "rustls",
2705
+ "rustls-native-certs",
2706
+ "rustls-pki-types",
2707
+ "tokio",
2708
+ "tokio-rustls",
2709
+ "tungstenite",
2710
+ ]
2711
+
2712
+ [[package]]
2713
+ name = "tokio-util"
2714
+ version = "0.7.16"
2715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2716
+ checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
2717
+ dependencies = [
2718
+ "bytes",
2719
+ "futures-core",
2720
+ "futures-sink",
2721
+ "futures-util",
2722
+ "pin-project-lite",
2723
+ "tokio",
2724
+ ]
2725
+
2726
+ [[package]]
2727
+ name = "toml"
2728
+ version = "0.8.23"
2729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2730
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2731
+ dependencies = [
2732
+ "serde",
2733
+ "serde_spanned",
2734
+ "toml_datetime",
2735
+ "toml_edit",
2736
+ ]
2737
+
2738
+ [[package]]
2739
+ name = "toml_datetime"
2740
+ version = "0.6.11"
2741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2742
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2743
+ dependencies = [
2744
+ "serde",
2745
+ ]
2746
+
2747
+ [[package]]
2748
+ name = "toml_edit"
2749
+ version = "0.22.27"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2752
+ dependencies = [
2753
+ "indexmap 2.10.0",
2754
+ "serde",
2755
+ "serde_spanned",
2756
+ "toml_datetime",
2757
+ "toml_write",
2758
+ "winnow",
2759
+ ]
2760
+
2761
+ [[package]]
2762
+ name = "toml_write"
2763
+ version = "0.1.2"
2764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2765
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2766
+
2767
+ [[package]]
2768
+ name = "tracing"
2769
+ version = "0.1.41"
2770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2771
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2772
+ dependencies = [
2773
+ "log",
2774
+ "pin-project-lite",
2775
+ "tracing-attributes",
2776
+ "tracing-core",
2777
+ ]
2778
+
2779
+ [[package]]
2780
+ name = "tracing-attributes"
2781
+ version = "0.1.30"
2782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2783
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
2784
+ dependencies = [
2785
+ "proc-macro2",
2786
+ "quote",
2787
+ "syn 2.0.104",
2788
+ ]
2789
+
2790
+ [[package]]
2791
+ name = "tracing-core"
2792
+ version = "0.1.34"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
2795
+ dependencies = [
2796
+ "once_cell",
2797
+ "valuable",
2798
+ ]
2799
+
2800
+ [[package]]
2801
+ name = "tracing-log"
2802
+ version = "0.2.0"
2803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2804
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2805
+ dependencies = [
2806
+ "log",
2807
+ "once_cell",
2808
+ "tracing-core",
2809
+ ]
2810
+
2811
+ [[package]]
2812
+ name = "tracing-subscriber"
2813
+ version = "0.3.20"
2814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2815
+ checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
2816
+ dependencies = [
2817
+ "matchers",
2818
+ "nu-ansi-term",
2819
+ "once_cell",
2820
+ "regex-automata",
2821
+ "sharded-slab",
2822
+ "smallvec",
2823
+ "thread_local",
2824
+ "tracing",
2825
+ "tracing-core",
2826
+ "tracing-log",
2827
+ ]
2828
+
2829
+ [[package]]
2830
+ name = "tracing-test"
2831
+ version = "0.2.5"
2832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2833
+ checksum = "557b891436fe0d5e0e363427fc7f217abf9ccd510d5136549847bdcbcd011d68"
2834
+ dependencies = [
2835
+ "tracing-core",
2836
+ "tracing-subscriber",
2837
+ "tracing-test-macro",
2838
+ ]
2839
+
2840
+ [[package]]
2841
+ name = "tracing-test-macro"
2842
+ version = "0.2.5"
2843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2844
+ checksum = "04659ddb06c87d233c566112c1c9c5b9e98256d9af50ec3bc9c8327f873a7568"
2845
+ dependencies = [
2846
+ "quote",
2847
+ "syn 2.0.104",
2848
+ ]
2849
+
2850
+ [[package]]
2851
+ name = "tungstenite"
2852
+ version = "0.28.0"
2853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2854
+ checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
2855
+ dependencies = [
2856
+ "bytes",
2857
+ "data-encoding",
2858
+ "http",
2859
+ "httparse",
2860
+ "log",
2861
+ "rand",
2862
+ "rustls",
2863
+ "rustls-pki-types",
2864
+ "sha1",
2865
+ "thiserror 2.0.14",
2866
+ "utf-8",
2867
+ ]
2868
+
2869
+ [[package]]
2870
+ name = "typenum"
2871
+ version = "1.18.0"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
2874
+
2875
+ [[package]]
2876
+ name = "unicode-ident"
2877
+ version = "1.0.18"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
2880
+
2881
+ [[package]]
2882
+ name = "unicode-xid"
2883
+ version = "0.2.6"
2884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2885
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2886
+
2887
+ [[package]]
2888
+ name = "unindent"
2889
+ version = "0.2.4"
2890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2891
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2892
+
2893
+ [[package]]
2894
+ name = "untrusted"
2895
+ version = "0.7.1"
2896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2897
+ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2898
+
2899
+ [[package]]
2900
+ name = "untrusted"
2901
+ version = "0.9.0"
2902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2904
+
2905
+ [[package]]
2906
+ name = "urlencoding"
2907
+ version = "2.1.3"
2908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2909
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2910
+
2911
+ [[package]]
2912
+ name = "utf-8"
2913
+ version = "0.7.6"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2916
+
2917
+ [[package]]
2918
+ name = "utf8parse"
2919
+ version = "0.2.2"
2920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2921
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2922
+
2923
+ [[package]]
2924
+ name = "valuable"
2925
+ version = "0.1.1"
2926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2927
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2928
+
2929
+ [[package]]
2930
+ name = "vecmath"
2931
+ version = "1.0.0"
2932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2933
+ checksum = "956ae1e0d85bca567dee1dcf87fb1ca2e792792f66f87dced8381f99cd91156a"
2934
+ dependencies = [
2935
+ "piston-float",
2936
+ ]
2937
+
2938
+ [[package]]
2939
+ name = "version_check"
2940
+ version = "0.9.5"
2941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2942
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2943
+
2944
+ [[package]]
2945
+ name = "walkdir"
2946
+ version = "2.5.0"
2947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2948
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2949
+ dependencies = [
2950
+ "same-file",
2951
+ "winapi-util",
2952
+ ]
2953
+
2954
+ [[package]]
2955
+ name = "wasi"
2956
+ version = "0.11.1+wasi-snapshot-preview1"
2957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2958
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2959
+
2960
+ [[package]]
2961
+ name = "wasi"
2962
+ version = "0.14.2+wasi-0.2.4"
2963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2964
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
2965
+ dependencies = [
2966
+ "wit-bindgen-rt",
2967
+ ]
2968
+
2969
+ [[package]]
2970
+ name = "wasm-bindgen"
2971
+ version = "0.2.100"
2972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2973
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2974
+ dependencies = [
2975
+ "cfg-if",
2976
+ "once_cell",
2977
+ "rustversion",
2978
+ "wasm-bindgen-macro",
2979
+ ]
2980
+
2981
+ [[package]]
2982
+ name = "wasm-bindgen-backend"
2983
+ version = "0.2.100"
2984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2985
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2986
+ dependencies = [
2987
+ "bumpalo",
2988
+ "log",
2989
+ "proc-macro2",
2990
+ "quote",
2991
+ "syn 2.0.104",
2992
+ "wasm-bindgen-shared",
2993
+ ]
2994
+
2995
+ [[package]]
2996
+ name = "wasm-bindgen-macro"
2997
+ version = "0.2.100"
2998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2999
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3000
+ dependencies = [
3001
+ "quote",
3002
+ "wasm-bindgen-macro-support",
3003
+ ]
3004
+
3005
+ [[package]]
3006
+ name = "wasm-bindgen-macro-support"
3007
+ version = "0.2.100"
3008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3009
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3010
+ dependencies = [
3011
+ "proc-macro2",
3012
+ "quote",
3013
+ "syn 2.0.104",
3014
+ "wasm-bindgen-backend",
3015
+ "wasm-bindgen-shared",
3016
+ ]
3017
+
3018
+ [[package]]
3019
+ name = "wasm-bindgen-shared"
3020
+ version = "0.2.100"
3021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3022
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3023
+ dependencies = [
3024
+ "unicode-ident",
3025
+ ]
3026
+
3027
+ [[package]]
3028
+ name = "wasm-encoder"
3029
+ version = "0.243.0"
3030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3031
+ checksum = "c55db9c896d70bd9fa535ce83cd4e1f2ec3726b0edd2142079f594fc3be1cb35"
3032
+ dependencies = [
3033
+ "leb128fmt",
3034
+ "wasmparser",
3035
+ ]
3036
+
3037
+ [[package]]
3038
+ name = "wasm-metadata"
3039
+ version = "0.243.0"
3040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3041
+ checksum = "eae05bf9579f45a62e8d0a4e3f52eaa8da518883ac5afa482ec8256c329ecd56"
3042
+ dependencies = [
3043
+ "anyhow",
3044
+ "indexmap 2.10.0",
3045
+ "wasm-encoder",
3046
+ "wasmparser",
3047
+ ]
3048
+
3049
+ [[package]]
3050
+ name = "wasmparser"
3051
+ version = "0.243.0"
3052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3053
+ checksum = "f6d8db401b0528ec316dfbe579e6ab4152d61739cfe076706d2009127970159d"
3054
+ dependencies = [
3055
+ "bitflags",
3056
+ "hashbrown 0.15.5",
3057
+ "indexmap 2.10.0",
3058
+ "semver",
3059
+ ]
3060
+
3061
+ [[package]]
3062
+ name = "which"
3063
+ version = "4.4.2"
3064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3065
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
3066
+ dependencies = [
3067
+ "either",
3068
+ "home",
3069
+ "once_cell",
3070
+ "rustix 0.38.44",
3071
+ ]
3072
+
3073
+ [[package]]
3074
+ name = "winapi-util"
3075
+ version = "0.1.9"
3076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3077
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
3078
+ dependencies = [
3079
+ "windows-sys 0.59.0",
3080
+ ]
3081
+
3082
+ [[package]]
3083
+ name = "windows-core"
3084
+ version = "0.61.2"
3085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3086
+ checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
3087
+ dependencies = [
3088
+ "windows-implement",
3089
+ "windows-interface",
3090
+ "windows-link",
3091
+ "windows-result",
3092
+ "windows-strings",
3093
+ ]
3094
+
3095
+ [[package]]
3096
+ name = "windows-implement"
3097
+ version = "0.60.0"
3098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3099
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
3100
+ dependencies = [
3101
+ "proc-macro2",
3102
+ "quote",
3103
+ "syn 2.0.104",
3104
+ ]
3105
+
3106
+ [[package]]
3107
+ name = "windows-interface"
3108
+ version = "0.59.1"
3109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3110
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
3111
+ dependencies = [
3112
+ "proc-macro2",
3113
+ "quote",
3114
+ "syn 2.0.104",
3115
+ ]
3116
+
3117
+ [[package]]
3118
+ name = "windows-link"
3119
+ version = "0.1.3"
3120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3121
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
3122
+
3123
+ [[package]]
3124
+ name = "windows-result"
3125
+ version = "0.3.4"
3126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3127
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
3128
+ dependencies = [
3129
+ "windows-link",
3130
+ ]
3131
+
3132
+ [[package]]
3133
+ name = "windows-strings"
3134
+ version = "0.4.2"
3135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3136
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
3137
+ dependencies = [
3138
+ "windows-link",
3139
+ ]
3140
+
3141
+ [[package]]
3142
+ name = "windows-sys"
3143
+ version = "0.52.0"
3144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3145
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3146
+ dependencies = [
3147
+ "windows-targets 0.52.6",
3148
+ ]
3149
+
3150
+ [[package]]
3151
+ name = "windows-sys"
3152
+ version = "0.59.0"
3153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3154
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3155
+ dependencies = [
3156
+ "windows-targets 0.52.6",
3157
+ ]
3158
+
3159
+ [[package]]
3160
+ name = "windows-sys"
3161
+ version = "0.60.2"
3162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3163
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3164
+ dependencies = [
3165
+ "windows-targets 0.53.3",
3166
+ ]
3167
+
3168
+ [[package]]
3169
+ name = "windows-targets"
3170
+ version = "0.52.6"
3171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3172
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3173
+ dependencies = [
3174
+ "windows_aarch64_gnullvm 0.52.6",
3175
+ "windows_aarch64_msvc 0.52.6",
3176
+ "windows_i686_gnu 0.52.6",
3177
+ "windows_i686_gnullvm 0.52.6",
3178
+ "windows_i686_msvc 0.52.6",
3179
+ "windows_x86_64_gnu 0.52.6",
3180
+ "windows_x86_64_gnullvm 0.52.6",
3181
+ "windows_x86_64_msvc 0.52.6",
3182
+ ]
3183
+
3184
+ [[package]]
3185
+ name = "windows-targets"
3186
+ version = "0.53.3"
3187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3188
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
3189
+ dependencies = [
3190
+ "windows-link",
3191
+ "windows_aarch64_gnullvm 0.53.0",
3192
+ "windows_aarch64_msvc 0.53.0",
3193
+ "windows_i686_gnu 0.53.0",
3194
+ "windows_i686_gnullvm 0.53.0",
3195
+ "windows_i686_msvc 0.53.0",
3196
+ "windows_x86_64_gnu 0.53.0",
3197
+ "windows_x86_64_gnullvm 0.53.0",
3198
+ "windows_x86_64_msvc 0.53.0",
3199
+ ]
3200
+
3201
+ [[package]]
3202
+ name = "windows_aarch64_gnullvm"
3203
+ version = "0.52.6"
3204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3205
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3206
+
3207
+ [[package]]
3208
+ name = "windows_aarch64_gnullvm"
3209
+ version = "0.53.0"
3210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3211
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
3212
+
3213
+ [[package]]
3214
+ name = "windows_aarch64_msvc"
3215
+ version = "0.52.6"
3216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3217
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3218
+
3219
+ [[package]]
3220
+ name = "windows_aarch64_msvc"
3221
+ version = "0.53.0"
3222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3223
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
3224
+
3225
+ [[package]]
3226
+ name = "windows_i686_gnu"
3227
+ version = "0.52.6"
3228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3229
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3230
+
3231
+ [[package]]
3232
+ name = "windows_i686_gnu"
3233
+ version = "0.53.0"
3234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3235
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
3236
+
3237
+ [[package]]
3238
+ name = "windows_i686_gnullvm"
3239
+ version = "0.52.6"
3240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3241
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3242
+
3243
+ [[package]]
3244
+ name = "windows_i686_gnullvm"
3245
+ version = "0.53.0"
3246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3247
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
3248
+
3249
+ [[package]]
3250
+ name = "windows_i686_msvc"
3251
+ version = "0.52.6"
3252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3253
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3254
+
3255
+ [[package]]
3256
+ name = "windows_i686_msvc"
3257
+ version = "0.53.0"
3258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3259
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
3260
+
3261
+ [[package]]
3262
+ name = "windows_x86_64_gnu"
3263
+ version = "0.52.6"
3264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3265
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3266
+
3267
+ [[package]]
3268
+ name = "windows_x86_64_gnu"
3269
+ version = "0.53.0"
3270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3271
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
3272
+
3273
+ [[package]]
3274
+ name = "windows_x86_64_gnullvm"
3275
+ version = "0.52.6"
3276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3277
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3278
+
3279
+ [[package]]
3280
+ name = "windows_x86_64_gnullvm"
3281
+ version = "0.53.0"
3282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3283
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
3284
+
3285
+ [[package]]
3286
+ name = "windows_x86_64_msvc"
3287
+ version = "0.52.6"
3288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3289
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3290
+
3291
+ [[package]]
3292
+ name = "windows_x86_64_msvc"
3293
+ version = "0.53.0"
3294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3295
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
3296
+
3297
+ [[package]]
3298
+ name = "winnow"
3299
+ version = "0.7.12"
3300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3301
+ checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
3302
+ dependencies = [
3303
+ "memchr",
3304
+ ]
3305
+
3306
+ [[package]]
3307
+ name = "wit-bindgen"
3308
+ version = "0.49.0"
3309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3310
+ checksum = "c64be1abfe5d4fdb2d41581fac134e8c9204da1e604b5500926478b7f264e36f"
3311
+ dependencies = [
3312
+ "bitflags",
3313
+ "wit-bindgen-rust-macro",
3314
+ ]
3315
+
3316
+ [[package]]
3317
+ name = "wit-bindgen-core"
3318
+ version = "0.49.0"
3319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3320
+ checksum = "886e8e938e4e9fe54143c080cbb99d7db5d19242b62ef225dbb28e17b3223bd8"
3321
+ dependencies = [
3322
+ "anyhow",
3323
+ "heck",
3324
+ "wit-parser",
3325
+ ]
3326
+
3327
+ [[package]]
3328
+ name = "wit-bindgen-rt"
3329
+ version = "0.39.0"
3330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3331
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3332
+ dependencies = [
3333
+ "bitflags",
3334
+ ]
3335
+
3336
+ [[package]]
3337
+ name = "wit-bindgen-rust"
3338
+ version = "0.49.0"
3339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3340
+ checksum = "145cac8fb12d99aea13a3f9e0d07463fa030edeebab2c03805eda0e1cc229bba"
3341
+ dependencies = [
3342
+ "anyhow",
3343
+ "heck",
3344
+ "indexmap 2.10.0",
3345
+ "prettyplease",
3346
+ "syn 2.0.104",
3347
+ "wasm-metadata",
3348
+ "wit-bindgen-core",
3349
+ "wit-component",
3350
+ ]
3351
+
3352
+ [[package]]
3353
+ name = "wit-bindgen-rust-macro"
3354
+ version = "0.49.0"
3355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3356
+ checksum = "6042452ac4e58891cdb6321bb98aabb9827dbaf6f4e971734d8dd86813319aea"
3357
+ dependencies = [
3358
+ "anyhow",
3359
+ "prettyplease",
3360
+ "proc-macro2",
3361
+ "quote",
3362
+ "syn 2.0.104",
3363
+ "wit-bindgen-core",
3364
+ "wit-bindgen-rust",
3365
+ ]
3366
+
3367
+ [[package]]
3368
+ name = "wit-component"
3369
+ version = "0.243.0"
3370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3371
+ checksum = "36f9fc53513e461ce51dcf17a3e331752cb829f1d187069e54af5608fc998fe4"
3372
+ dependencies = [
3373
+ "anyhow",
3374
+ "bitflags",
3375
+ "indexmap 2.10.0",
3376
+ "log",
3377
+ "serde",
3378
+ "serde_derive",
3379
+ "serde_json",
3380
+ "wasm-encoder",
3381
+ "wasm-metadata",
3382
+ "wasmparser",
3383
+ "wit-parser",
3384
+ ]
3385
+
3386
+ [[package]]
3387
+ name = "wit-parser"
3388
+ version = "0.243.0"
3389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3390
+ checksum = "df983a8608e513d8997f435bb74207bf0933d0e49ca97aa9d8a6157164b9b7fc"
3391
+ dependencies = [
3392
+ "anyhow",
3393
+ "id-arena",
3394
+ "indexmap 2.10.0",
3395
+ "log",
3396
+ "semver",
3397
+ "serde",
3398
+ "serde_derive",
3399
+ "serde_json",
3400
+ "unicode-xid",
3401
+ "wasmparser",
3402
+ ]
3403
+
3404
+ [[package]]
3405
+ name = "x509-parser"
3406
+ version = "0.17.0"
3407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3408
+ checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460"
3409
+ dependencies = [
3410
+ "asn1-rs",
3411
+ "data-encoding",
3412
+ "der-parser",
3413
+ "lazy_static",
3414
+ "nom",
3415
+ "oid-registry",
3416
+ "ring",
3417
+ "rusticata-macros",
3418
+ "thiserror 2.0.14",
3419
+ "time",
3420
+ ]
3421
+
3422
+ [[package]]
3423
+ name = "yasna"
3424
+ version = "0.5.2"
3425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3426
+ checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
3427
+ dependencies = [
3428
+ "time",
3429
+ ]
3430
+
3431
+ [[package]]
3432
+ name = "zerocopy"
3433
+ version = "0.8.26"
3434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3435
+ checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
3436
+ dependencies = [
3437
+ "zerocopy-derive",
3438
+ ]
3439
+
3440
+ [[package]]
3441
+ name = "zerocopy-derive"
3442
+ version = "0.8.26"
3443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3444
+ checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
3445
+ dependencies = [
3446
+ "proc-macro2",
3447
+ "quote",
3448
+ "syn 2.0.104",
3449
+ ]
3450
+
3451
+ [[package]]
3452
+ name = "zeroize"
3453
+ version = "1.8.1"
3454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3455
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
3456
+
3457
+ [[package]]
3458
+ name = "zstd"
3459
+ version = "0.13.3"
3460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3461
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3462
+ dependencies = [
3463
+ "zstd-safe",
3464
+ ]
3465
+
3466
+ [[package]]
3467
+ name = "zstd-safe"
3468
+ version = "7.2.4"
3469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3470
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
3471
+ dependencies = [
3472
+ "zstd-sys",
3473
+ ]
3474
+
3475
+ [[package]]
3476
+ name = "zstd-sys"
3477
+ version = "2.0.15+zstd.1.5.7"
3478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3479
+ checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
3480
+ dependencies = [
3481
+ "cc",
3482
+ "pkg-config",
3483
+ ]