tstrans 0.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (749) hide show
  1. tstrans-0.2.0/Cargo.lock +3032 -0
  2. tstrans-0.2.0/Cargo.toml +33 -0
  3. tstrans-0.2.0/PKG-INFO +273 -0
  4. tstrans-0.2.0/README.md +240 -0
  5. tstrans-0.2.0/bindings/python/.gitignore +21 -0
  6. tstrans-0.2.0/bindings/python/Cargo.toml +71 -0
  7. tstrans-0.2.0/bindings/python/README.md +240 -0
  8. tstrans-0.2.0/bindings/python/build.rs +37 -0
  9. tstrans-0.2.0/bindings/python/src/codec.rs +3576 -0
  10. tstrans-0.2.0/bindings/python/src/errors.rs +716 -0
  11. tstrans-0.2.0/bindings/python/src/hls/config.rs +123 -0
  12. tstrans-0.2.0/bindings/python/src/hls/mod.rs +135 -0
  13. tstrans-0.2.0/bindings/python/src/hls/mux_publisher.rs +314 -0
  14. tstrans-0.2.0/bindings/python/src/hls/publisher.rs +391 -0
  15. tstrans-0.2.0/bindings/python/src/hls/publisher_abc.rs +94 -0
  16. tstrans-0.2.0/bindings/python/src/klv.rs +1300 -0
  17. tstrans-0.2.0/bindings/python/src/lib.rs +113 -0
  18. tstrans-0.2.0/bindings/python/src/mpegts.rs +1061 -0
  19. tstrans-0.2.0/bindings/python/src/mux.rs +1961 -0
  20. tstrans-0.2.0/bindings/python/src/pipeline.rs +345 -0
  21. tstrans-0.2.0/bindings/python/src/raw_bytes.rs +119 -0
  22. tstrans-0.2.0/bindings/python/src/rist/mod.rs +738 -0
  23. tstrans-0.2.0/bindings/python/src/rtp/client.rs +902 -0
  24. tstrans-0.2.0/bindings/python/src/rtp/demux_receiver.rs +474 -0
  25. tstrans-0.2.0/bindings/python/src/rtp/mod.rs +31 -0
  26. tstrans-0.2.0/bindings/python/src/rtp/mux_sender.rs +554 -0
  27. tstrans-0.2.0/bindings/python/src/rtp/server.rs +1012 -0
  28. tstrans-0.2.0/bindings/python/src/rtp/transport.rs +454 -0
  29. tstrans-0.2.0/bindings/python/src/srt/demux_receiver.rs +520 -0
  30. tstrans-0.2.0/bindings/python/src/srt/errors.rs +159 -0
  31. tstrans-0.2.0/bindings/python/src/srt/lowlevel.rs +789 -0
  32. tstrans-0.2.0/bindings/python/src/srt/managed_basic.rs +604 -0
  33. tstrans-0.2.0/bindings/python/src/srt/managed_convenience.rs +941 -0
  34. tstrans-0.2.0/bindings/python/src/srt/mod.rs +43 -0
  35. tstrans-0.2.0/bindings/python/src/srt/mux_sender.rs +581 -0
  36. tstrans-0.2.0/bindings/python/src/srt/policy.rs +264 -0
  37. tstrans-0.2.0/bindings/python/src/srt/transport.rs +783 -0
  38. tstrans-0.2.0/bindings/python/src/tcp/mod.rs +806 -0
  39. tstrans-0.2.0/bindings/python/src/udp/mod.rs +544 -0
  40. tstrans-0.2.0/bindings/python/tests/_builders/__init__.py +0 -0
  41. tstrans-0.2.0/bindings/python/tests/_builders/build_audio_aac_large.py +170 -0
  42. tstrans-0.2.0/bindings/python/tests/_builders/synthetic_klv_universal.py +90 -0
  43. tstrans-0.2.0/bindings/python/tests/_builders/unknown_stream.py +243 -0
  44. tstrans-0.2.0/bindings/python/tests/conftest.py +109 -0
  45. tstrans-0.2.0/bindings/python/tests/fixtures/aac_minimal.ts +0 -0
  46. tstrans-0.2.0/bindings/python/tests/fixtures/audio_aac_large.ts +0 -0
  47. tstrans-0.2.0/bindings/python/tests/test_au_cell_tolerance.py +403 -0
  48. tstrans-0.2.0/bindings/python/tests/test_au_reassembly.py +133 -0
  49. tstrans-0.2.0/bindings/python/tests/test_byte_sink.py +439 -0
  50. tstrans-0.2.0/bindings/python/tests/test_codec_aac.py +305 -0
  51. tstrans-0.2.0/bindings/python/tests/test_codec_av1.py +265 -0
  52. tstrans-0.2.0/bindings/python/tests/test_codec_errors.py +69 -0
  53. tstrans-0.2.0/bindings/python/tests/test_codec_h264.py +370 -0
  54. tstrans-0.2.0/bindings/python/tests/test_codec_h265.py +436 -0
  55. tstrans-0.2.0/bindings/python/tests/test_codec_h266.py +395 -0
  56. tstrans-0.2.0/bindings/python/tests/test_codec_mpeg2_audio.py +318 -0
  57. tstrans-0.2.0/bindings/python/tests/test_codec_shared.py +81 -0
  58. tstrans-0.2.0/bindings/python/tests/test_contract_collection.py +35 -0
  59. tstrans-0.2.0/bindings/python/tests/test_dataclass_validation.py +57 -0
  60. tstrans-0.2.0/bindings/python/tests/test_deadlock_stats.py +234 -0
  61. tstrans-0.2.0/bindings/python/tests/test_demux_audio_gil.py +41 -0
  62. tstrans-0.2.0/bindings/python/tests/test_demux_config_parity.py +322 -0
  63. tstrans-0.2.0/bindings/python/tests/test_demux_config_validation.py +127 -0
  64. tstrans-0.2.0/bindings/python/tests/test_demux_event_hierarchy.py +134 -0
  65. tstrans-0.2.0/bindings/python/tests/test_demux_strict_rejection.py +132 -0
  66. tstrans-0.2.0/bindings/python/tests/test_demux_unknown_sample.py +42 -0
  67. tstrans-0.2.0/bindings/python/tests/test_demuxer_config.py +36 -0
  68. tstrans-0.2.0/bindings/python/tests/test_demuxer_smoke.py +144 -0
  69. tstrans-0.2.0/bindings/python/tests/test_error_wiring.py +25 -0
  70. tstrans-0.2.0/bindings/python/tests/test_exceptions.py +112 -0
  71. tstrans-0.2.0/bindings/python/tests/test_extract_klv_error_modes.py +291 -0
  72. tstrans-0.2.0/bindings/python/tests/test_from_program_map.py +402 -0
  73. tstrans-0.2.0/bindings/python/tests/test_gil_release.py +418 -0
  74. tstrans-0.2.0/bindings/python/tests/test_handle_forge.py +130 -0
  75. tstrans-0.2.0/bindings/python/tests/test_hls_basic.py +417 -0
  76. tstrans-0.2.0/bindings/python/tests/test_io_helpers.py +123 -0
  77. tstrans-0.2.0/bindings/python/tests/test_io_iter_uas_datalink.py +116 -0
  78. tstrans-0.2.0/bindings/python/tests/test_io_transmux.py +685 -0
  79. tstrans-0.2.0/bindings/python/tests/test_klv_encode_st0102_st0605.py +159 -0
  80. tstrans-0.2.0/bindings/python/tests/test_klv_encode_st0601.py +96 -0
  81. tstrans-0.2.0/bindings/python/tests/test_klv_encode_st0903.py +228 -0
  82. tstrans-0.2.0/bindings/python/tests/test_klv_error_types.py +75 -0
  83. tstrans-0.2.0/bindings/python/tests/test_klv_event_parse.py +93 -0
  84. tstrans-0.2.0/bindings/python/tests/test_klv_patch.py +65 -0
  85. tstrans-0.2.0/bindings/python/tests/test_klv_round_trip_unknown.py +413 -0
  86. tstrans-0.2.0/bindings/python/tests/test_klv_st0102.py +142 -0
  87. tstrans-0.2.0/bindings/python/tests/test_klv_st0102_enums.py +51 -0
  88. tstrans-0.2.0/bindings/python/tests/test_klv_st0601.py +174 -0
  89. tstrans-0.2.0/bindings/python/tests/test_klv_st0601_composites.py +65 -0
  90. tstrans-0.2.0/bindings/python/tests/test_klv_st0605.py +107 -0
  91. tstrans-0.2.0/bindings/python/tests/test_klv_st0903.py +103 -0
  92. tstrans-0.2.0/bindings/python/tests/test_klv_ul_constants.py +78 -0
  93. tstrans-0.2.0/bindings/python/tests/test_klv_universal_strict.py +114 -0
  94. tstrans-0.2.0/bindings/python/tests/test_klv_vtarget_pack.py +173 -0
  95. tstrans-0.2.0/bindings/python/tests/test_klv_with.py +65 -0
  96. tstrans-0.2.0/bindings/python/tests/test_local_fixtures_transmux.py +135 -0
  97. tstrans-0.2.0/bindings/python/tests/test_mpegts_dataclasses.py +120 -0
  98. tstrans-0.2.0/bindings/python/tests/test_mpegts_enums.py +73 -0
  99. tstrans-0.2.0/bindings/python/tests/test_mpegts_muxer_config.py +357 -0
  100. tstrans-0.2.0/bindings/python/tests/test_mpegts_muxer_push.py +1112 -0
  101. tstrans-0.2.0/bindings/python/tests/test_mpegts_muxer_sink.py +333 -0
  102. tstrans-0.2.0/bindings/python/tests/test_mpegts_muxer_stats.py +109 -0
  103. tstrans-0.2.0/bindings/python/tests/test_mpegts_roundtrip.py +184 -0
  104. tstrans-0.2.0/bindings/python/tests/test_muxer_file_sink_memoryview.py +116 -0
  105. tstrans-0.2.0/bindings/python/tests/test_packaging.py +7 -0
  106. tstrans-0.2.0/bindings/python/tests/test_pandas_codec.py +173 -0
  107. tstrans-0.2.0/bindings/python/tests/test_pandas_events.py +223 -0
  108. tstrans-0.2.0/bindings/python/tests/test_pandas_klv.py +284 -0
  109. tstrans-0.2.0/bindings/python/tests/test_pandas_missing_extra.py +81 -0
  110. tstrans-0.2.0/bindings/python/tests/test_pandas_numpy_views.py +127 -0
  111. tstrans-0.2.0/bindings/python/tests/test_parse_klv_universal.py +116 -0
  112. tstrans-0.2.0/bindings/python/tests/test_pipeline_pairer.py +302 -0
  113. tstrans-0.2.0/bindings/python/tests/test_pts90khz.py +96 -0
  114. tstrans-0.2.0/bindings/python/tests/test_raw_first.py +485 -0
  115. tstrans-0.2.0/bindings/python/tests/test_rist_basic.py +365 -0
  116. tstrans-0.2.0/bindings/python/tests/test_rtp_demux_receiver.py +262 -0
  117. tstrans-0.2.0/bindings/python/tests/test_rtp_integration.py +294 -0
  118. tstrans-0.2.0/bindings/python/tests/test_rtp_mux_sender.py +320 -0
  119. tstrans-0.2.0/bindings/python/tests/test_rtp_transport.py +317 -0
  120. tstrans-0.2.0/bindings/python/tests/test_rtsp_client.py +231 -0
  121. tstrans-0.2.0/bindings/python/tests/test_rtsp_loopback.py +47 -0
  122. tstrans-0.2.0/bindings/python/tests/test_rtsp_server.py +605 -0
  123. tstrans-0.2.0/bindings/python/tests/test_runtime_signatures.py +42 -0
  124. tstrans-0.2.0/bindings/python/tests/test_sample_payload_audio_fallback.py +181 -0
  125. tstrans-0.2.0/bindings/python/tests/test_sample_payload_typed.py +230 -0
  126. tstrans-0.2.0/bindings/python/tests/test_scenarios.py +767 -0
  127. tstrans-0.2.0/bindings/python/tests/test_srt_builder.py +300 -0
  128. tstrans-0.2.0/bindings/python/tests/test_srt_errors.py +145 -0
  129. tstrans-0.2.0/bindings/python/tests/test_srt_integration.py +521 -0
  130. tstrans-0.2.0/bindings/python/tests/test_srt_listener.py +328 -0
  131. tstrans-0.2.0/bindings/python/tests/test_srt_managed_basic.py +320 -0
  132. tstrans-0.2.0/bindings/python/tests/test_srt_managed_convenience.py +540 -0
  133. tstrans-0.2.0/bindings/python/tests/test_srt_mux_demux.py +618 -0
  134. tstrans-0.2.0/bindings/python/tests/test_srt_policy.py +172 -0
  135. tstrans-0.2.0/bindings/python/tests/test_srt_transport.py +450 -0
  136. tstrans-0.2.0/bindings/python/tests/test_submodule_imports.py +19 -0
  137. tstrans-0.2.0/bindings/python/tests/test_tcp_basic.py +422 -0
  138. tstrans-0.2.0/bindings/python/tests/test_transmux_handle_mapping.py +275 -0
  139. tstrans-0.2.0/bindings/python/tests/test_udp_basic.py +172 -0
  140. tstrans-0.2.0/bindings/python/tests/test_version.py +17 -0
  141. tstrans-0.2.0/bindings/python/tests/typing/mypy.ini +4 -0
  142. tstrans-0.2.0/bindings/python/tests/typing/smoke_codec.py +40 -0
  143. tstrans-0.2.0/bindings/python/tests/typing/smoke_io.py +41 -0
  144. tstrans-0.2.0/bindings/python/tests/typing/smoke_klv.py +60 -0
  145. tstrans-0.2.0/bindings/python/tests/typing/smoke_mpegts.py +90 -0
  146. tstrans-0.2.0/crates/rist-sys/.gitignore +1 -0
  147. tstrans-0.2.0/crates/rist-sys/Cargo.toml +46 -0
  148. tstrans-0.2.0/crates/rist-sys/build.rs +490 -0
  149. tstrans-0.2.0/crates/rist-sys/public-api.txt +628 -0
  150. tstrans-0.2.0/crates/rist-sys/src/lib.rs +31 -0
  151. tstrans-0.2.0/crates/rist-sys/tests/smoke.rs +28 -0
  152. tstrans-0.2.0/crates/rist-sys/wrapper.h +7 -0
  153. tstrans-0.2.0/crates/srt-sys/Cargo.toml +33 -0
  154. tstrans-0.2.0/crates/srt-sys/build.rs +223 -0
  155. tstrans-0.2.0/crates/srt-sys/src/lib.rs +37 -0
  156. tstrans-0.2.0/crates/srt-sys/tests/encrypted.rs +294 -0
  157. tstrans-0.2.0/crates/srt-sys/tests/smoke.rs +61 -0
  158. tstrans-0.2.0/crates/srt-sys/wrapper.h +10 -0
  159. tstrans-0.2.0/crates/tst-core/Cargo.toml +138 -0
  160. tstrans-0.2.0/crates/tst-core/benches/codec_parsers.rs +253 -0
  161. tstrans-0.2.0/crates/tst-core/benches/demuxer_ingest.rs +121 -0
  162. tstrans-0.2.0/crates/tst-core/benches/klv_decode.rs +156 -0
  163. tstrans-0.2.0/crates/tst-core/benches/mux_throughput.rs +90 -0
  164. tstrans-0.2.0/crates/tst-core/public-api.txt +6238 -0
  165. tstrans-0.2.0/crates/tst-core/src/cancel.rs +156 -0
  166. tstrans-0.2.0/crates/tst-core/src/codec/aac/adts.rs +315 -0
  167. tstrans-0.2.0/crates/tst-core/src/codec/aac/latm.rs +201 -0
  168. tstrans-0.2.0/crates/tst-core/src/codec/aac/mod.rs +371 -0
  169. tstrans-0.2.0/crates/tst-core/src/codec/aac/tables.rs +175 -0
  170. tstrans-0.2.0/crates/tst-core/src/codec/aac/tests/frames.rs +206 -0
  171. tstrans-0.2.0/crates/tst-core/src/codec/aac/tests/mod.rs +1 -0
  172. tstrans-0.2.0/crates/tst-core/src/codec/ac3/decode.rs +265 -0
  173. tstrans-0.2.0/crates/tst-core/src/codec/ac3/mod.rs +38 -0
  174. tstrans-0.2.0/crates/tst-core/src/codec/ac3/tests/mod.rs +1 -0
  175. tstrans-0.2.0/crates/tst-core/src/codec/ac3/tests/parse.rs +165 -0
  176. tstrans-0.2.0/crates/tst-core/src/codec/av1/decode/bitreader.rs +215 -0
  177. tstrans-0.2.0/crates/tst-core/src/codec/av1/decode/frame_header.rs +121 -0
  178. tstrans-0.2.0/crates/tst-core/src/codec/av1/decode/leb128.rs +100 -0
  179. tstrans-0.2.0/crates/tst-core/src/codec/av1/decode/mod.rs +11 -0
  180. tstrans-0.2.0/crates/tst-core/src/codec/av1/decode/obu_stream.rs +154 -0
  181. tstrans-0.2.0/crates/tst-core/src/codec/av1/decode/sequence_header.rs +335 -0
  182. tstrans-0.2.0/crates/tst-core/src/codec/av1/mod.rs +38 -0
  183. tstrans-0.2.0/crates/tst-core/src/codec/av1/model.rs +68 -0
  184. tstrans-0.2.0/crates/tst-core/src/codec/av1/tests/mod.rs +1 -0
  185. tstrans-0.2.0/crates/tst-core/src/codec/av1/tests/sequence_header.rs +547 -0
  186. tstrans-0.2.0/crates/tst-core/src/codec/bitreader.rs +220 -0
  187. tstrans-0.2.0/crates/tst-core/src/codec/h264/decode.rs +596 -0
  188. tstrans-0.2.0/crates/tst-core/src/codec/h264/mod.rs +32 -0
  189. tstrans-0.2.0/crates/tst-core/src/codec/h264/model.rs +89 -0
  190. tstrans-0.2.0/crates/tst-core/src/codec/h264/slice_header_light.rs +174 -0
  191. tstrans-0.2.0/crates/tst-core/src/codec/h264/tests/mod.rs +1 -0
  192. tstrans-0.2.0/crates/tst-core/src/codec/h264/tests/parse.rs +624 -0
  193. tstrans-0.2.0/crates/tst-core/src/codec/h265/mod.rs +173 -0
  194. tstrans-0.2.0/crates/tst-core/src/codec/h265/pps.rs +35 -0
  195. tstrans-0.2.0/crates/tst-core/src/codec/h265/profile_tier_level.rs +156 -0
  196. tstrans-0.2.0/crates/tst-core/src/codec/h265/short_term_rps.rs +196 -0
  197. tstrans-0.2.0/crates/tst-core/src/codec/h265/slice_header_light.rs +206 -0
  198. tstrans-0.2.0/crates/tst-core/src/codec/h265/sps.rs +272 -0
  199. tstrans-0.2.0/crates/tst-core/src/codec/h265/tests/collector.rs +73 -0
  200. tstrans-0.2.0/crates/tst-core/src/codec/h265/tests/mod.rs +4 -0
  201. tstrans-0.2.0/crates/tst-core/src/codec/h265/tests/parse_pps.rs +53 -0
  202. tstrans-0.2.0/crates/tst-core/src/codec/h265/tests/parse_sps.rs +910 -0
  203. tstrans-0.2.0/crates/tst-core/src/codec/h265/tests/parse_vps.rs +28 -0
  204. tstrans-0.2.0/crates/tst-core/src/codec/h265/vps.rs +73 -0
  205. tstrans-0.2.0/crates/tst-core/src/codec/h265/vui.rs +133 -0
  206. tstrans-0.2.0/crates/tst-core/src/codec/h266/mod.rs +129 -0
  207. tstrans-0.2.0/crates/tst-core/src/codec/h266/pps.rs +72 -0
  208. tstrans-0.2.0/crates/tst-core/src/codec/h266/profile_tier_level.rs +214 -0
  209. tstrans-0.2.0/crates/tst-core/src/codec/h266/slice_header_light.rs +203 -0
  210. tstrans-0.2.0/crates/tst-core/src/codec/h266/sps.rs +770 -0
  211. tstrans-0.2.0/crates/tst-core/src/codec/h266/tests/collector.rs +52 -0
  212. tstrans-0.2.0/crates/tst-core/src/codec/h266/tests/mod.rs +2 -0
  213. tstrans-0.2.0/crates/tst-core/src/codec/h266/tests/sps.rs +697 -0
  214. tstrans-0.2.0/crates/tst-core/src/codec/h266/vps.rs +89 -0
  215. tstrans-0.2.0/crates/tst-core/src/codec/h266/vui.rs +250 -0
  216. tstrans-0.2.0/crates/tst-core/src/codec/mod.rs +508 -0
  217. tstrans-0.2.0/crates/tst-core/src/codec/mpegaudio/decode.rs +759 -0
  218. tstrans-0.2.0/crates/tst-core/src/codec/mpegaudio/mod.rs +27 -0
  219. tstrans-0.2.0/crates/tst-core/src/codec/mpegaudio/model.rs +159 -0
  220. tstrans-0.2.0/crates/tst-core/src/codec/mpegaudio/tables.rs +51 -0
  221. tstrans-0.2.0/crates/tst-core/src/codec/util.rs +235 -0
  222. tstrans-0.2.0/crates/tst-core/src/error.rs +859 -0
  223. tstrans-0.2.0/crates/tst-core/src/float_ext.rs +35 -0
  224. tstrans-0.2.0/crates/tst-core/src/io_file.rs +355 -0
  225. tstrans-0.2.0/crates/tst-core/src/klv/checksum.rs +89 -0
  226. tstrans-0.2.0/crates/tst-core/src/klv/imapb.rs +1033 -0
  227. tstrans-0.2.0/crates/tst-core/src/klv/length.rs +517 -0
  228. tstrans-0.2.0/crates/tst-core/src/klv/mod.rs +46 -0
  229. tstrans-0.2.0/crates/tst-core/src/klv/pack.rs +301 -0
  230. tstrans-0.2.0/crates/tst-core/src/klv/st0102/decode.rs +330 -0
  231. tstrans-0.2.0/crates/tst-core/src/klv/st0102/encode.rs +291 -0
  232. tstrans-0.2.0/crates/tst-core/src/klv/st0102/enums.rs +301 -0
  233. tstrans-0.2.0/crates/tst-core/src/klv/st0102/mod.rs +105 -0
  234. tstrans-0.2.0/crates/tst-core/src/klv/st0102/model.rs +130 -0
  235. tstrans-0.2.0/crates/tst-core/src/klv/st0102/tags.rs +166 -0
  236. tstrans-0.2.0/crates/tst-core/src/klv/st0102/tests.rs +820 -0
  237. tstrans-0.2.0/crates/tst-core/src/klv/st0601/decode.rs +484 -0
  238. tstrans-0.2.0/crates/tst-core/src/klv/st0601/encode.rs +420 -0
  239. tstrans-0.2.0/crates/tst-core/src/klv/st0601/mapping.rs +253 -0
  240. tstrans-0.2.0/crates/tst-core/src/klv/st0601/mod.rs +69 -0
  241. tstrans-0.2.0/crates/tst-core/src/klv/st0601/model.rs +300 -0
  242. tstrans-0.2.0/crates/tst-core/src/klv/st0601/patch.rs +237 -0
  243. tstrans-0.2.0/crates/tst-core/src/klv/st0601/tags.rs +626 -0
  244. tstrans-0.2.0/crates/tst-core/src/klv/st0601/tests.rs +1559 -0
  245. tstrans-0.2.0/crates/tst-core/src/klv/st0605/decode.rs +48 -0
  246. tstrans-0.2.0/crates/tst-core/src/klv/st0605/encode.rs +15 -0
  247. tstrans-0.2.0/crates/tst-core/src/klv/st0605/mod.rs +151 -0
  248. tstrans-0.2.0/crates/tst-core/src/klv/st0605/model.rs +43 -0
  249. tstrans-0.2.0/crates/tst-core/src/klv/st0903/decode.rs +599 -0
  250. tstrans-0.2.0/crates/tst-core/src/klv/st0903/emit.rs +53 -0
  251. tstrans-0.2.0/crates/tst-core/src/klv/st0903/encode.rs +538 -0
  252. tstrans-0.2.0/crates/tst-core/src/klv/st0903/enums.rs +12 -0
  253. tstrans-0.2.0/crates/tst-core/src/klv/st0903/mod.rs +126 -0
  254. tstrans-0.2.0/crates/tst-core/src/klv/st0903/model.rs +83 -0
  255. tstrans-0.2.0/crates/tst-core/src/klv/st0903/tags.rs +228 -0
  256. tstrans-0.2.0/crates/tst-core/src/klv/st0903/tests.rs +1146 -0
  257. tstrans-0.2.0/crates/tst-core/src/klv/st0903/var_uint.rs +196 -0
  258. tstrans-0.2.0/crates/tst-core/src/klv/st0903/vtarget_pack/decode.rs +232 -0
  259. tstrans-0.2.0/crates/tst-core/src/klv/st0903/vtarget_pack/encode.rs +251 -0
  260. tstrans-0.2.0/crates/tst-core/src/klv/st0903/vtarget_pack/mod.rs +16 -0
  261. tstrans-0.2.0/crates/tst-core/src/klv/st0903/vtarget_pack/model.rs +431 -0
  262. tstrans-0.2.0/crates/tst-core/src/klv/st0903/vtarget_pack/tests.rs +337 -0
  263. tstrans-0.2.0/crates/tst-core/src/klv/universal_label.rs +253 -0
  264. tstrans-0.2.0/crates/tst-core/src/lib.rs +85 -0
  265. tstrans-0.2.0/crates/tst-core/src/mpegts/au_cell.rs +285 -0
  266. tstrans-0.2.0/crates/tst-core/src/mpegts/common/crc32.rs +141 -0
  267. tstrans-0.2.0/crates/tst-core/src/mpegts/common/handle_pack.rs +62 -0
  268. tstrans-0.2.0/crates/tst-core/src/mpegts/common/mod.rs +604 -0
  269. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/au_reassemble.rs +783 -0
  270. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/demuxer.rs +3468 -0
  271. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/event.rs +1444 -0
  272. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/low_level.rs +33 -0
  273. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/mod.rs +52 -0
  274. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/pat_reassemble.rs +271 -0
  275. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/payload.rs +1327 -0
  276. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/pes.rs +822 -0
  277. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/pes_emit.rs +825 -0
  278. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/pmt_classify.rs +381 -0
  279. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/psi.rs +969 -0
  280. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/psi_assembler.rs +291 -0
  281. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/psi_topology.rs +1220 -0
  282. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/stats_recorder.rs +60 -0
  283. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/strict.rs +230 -0
  284. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/sync_ingress.rs +286 -0
  285. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/ts.rs +420 -0
  286. tstrans-0.2.0/crates/tst-core/src/mpegts/demux/types.rs +357 -0
  287. tstrans-0.2.0/crates/tst-core/src/mpegts/descriptors/mod.rs +1084 -0
  288. tstrans-0.2.0/crates/tst-core/src/mpegts/descriptors/parse.rs +151 -0
  289. tstrans-0.2.0/crates/tst-core/src/mpegts/mod.rs +59 -0
  290. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/config.rs +1363 -0
  291. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/mod.rs +339 -0
  292. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/pes.rs +853 -0
  293. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/psi.rs +772 -0
  294. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/push_audio.rs +237 -0
  295. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/push_data.rs +260 -0
  296. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/push_klv.rs +320 -0
  297. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/push_subtitle.rs +260 -0
  298. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/push_video.rs +482 -0
  299. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/scheduling.rs +214 -0
  300. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/state.rs +1208 -0
  301. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/stats_accounting.rs +128 -0
  302. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/tests/config.rs +582 -0
  303. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/tests/handles.rs +98 -0
  304. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/tests/push.rs +1260 -0
  305. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/tests/stats.rs +245 -0
  306. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/tests/subtitle.rs +849 -0
  307. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/tests/validation.rs +283 -0
  308. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/ts.rs +467 -0
  309. tstrans-0.2.0/crates/tst-core/src/mpegts/mux/types.rs +946 -0
  310. tstrans-0.2.0/crates/tst-core/src/mpegts/stats.rs +271 -0
  311. tstrans-0.2.0/crates/tst-core/src/net/mod.rs +7 -0
  312. tstrans-0.2.0/crates/tst-core/src/net/udp_socket.rs +238 -0
  313. tstrans-0.2.0/crates/tst-core/src/publisher/mod.rs +154 -0
  314. tstrans-0.2.0/crates/tst-core/src/shared.rs +129 -0
  315. tstrans-0.2.0/crates/tst-core/src/transport.rs +451 -0
  316. tstrans-0.2.0/crates/tst-core/src/url/common.rs +472 -0
  317. tstrans-0.2.0/crates/tst-core/src/url/mod.rs +22 -0
  318. tstrans-0.2.0/crates/tst-core/tests/MOVEMENT_MAP.md +152 -0
  319. tstrans-0.2.0/crates/tst-core/tests/codec/audio_corpus_cross_check.rs +133 -0
  320. tstrans-0.2.0/crates/tst-core/tests/codec/audio_frame_roundtrip.rs +157 -0
  321. tstrans-0.2.0/crates/tst-core/tests/codec/av1_carriage_roundtrip.rs +481 -0
  322. tstrans-0.2.0/crates/tst-core/tests/codec/av1_codec_integration.rs +105 -0
  323. tstrans-0.2.0/crates/tst-core/tests/codec/av1_no_panic.rs +200 -0
  324. tstrans-0.2.0/crates/tst-core/tests/codec/codec_av1_corpus.rs +180 -0
  325. tstrans-0.2.0/crates/tst-core/tests/codec/codec_h266_corpus.rs +181 -0
  326. tstrans-0.2.0/crates/tst-core/tests/codec/codec_parameter_sets.rs +133 -0
  327. tstrans-0.2.0/crates/tst-core/tests/codec/codec_stats.rs +306 -0
  328. tstrans-0.2.0/crates/tst-core/tests/codec/codec_stats_mux.rs +231 -0
  329. tstrans-0.2.0/crates/tst-core/tests/codec/h265_real_x265_round_trip.rs +46 -0
  330. tstrans-0.2.0/crates/tst-core/tests/codec/h266_carriage_roundtrip.rs +128 -0
  331. tstrans-0.2.0/crates/tst-core/tests/codec/h266_codec_integration.rs +295 -0
  332. tstrans-0.2.0/crates/tst-core/tests/codec/h266_real_encoder_round_trip.rs +50 -0
  333. tstrans-0.2.0/crates/tst-core/tests/codec/h266_vui_overflow.rs +242 -0
  334. tstrans-0.2.0/crates/tst-core/tests/codec/local_codec_corpus.rs +163 -0
  335. tstrans-0.2.0/crates/tst-core/tests/codec.rs +38 -0
  336. tstrans-0.2.0/crates/tst-core/tests/common/mod.rs +77 -0
  337. tstrans-0.2.0/crates/tst-core/tests/conformance/conformance.rs +445 -0
  338. tstrans-0.2.0/crates/tst-core/tests/conformance/demux_error_discrimination.rs +270 -0
  339. tstrans-0.2.0/crates/tst-core/tests/conformance/demux_malformed_pes_recovery.rs +245 -0
  340. tstrans-0.2.0/crates/tst-core/tests/conformance.rs +12 -0
  341. tstrans-0.2.0/crates/tst-core/tests/fixtures/audio/README.md +54 -0
  342. tstrans-0.2.0/crates/tst-core/tests/fixtures/audio/aac-adts.ts +0 -0
  343. tstrans-0.2.0/crates/tst-core/tests/fixtures/audio/aac-latm.ts +0 -0
  344. tstrans-0.2.0/crates/tst-core/tests/fixtures/audio/ac3.ts +0 -0
  345. tstrans-0.2.0/crates/tst-core/tests/fixtures/audio/mp2.ts +0 -0
  346. tstrans-0.2.0/crates/tst-core/tests/fixtures/audio/mp3-conformant.ts +0 -0
  347. tstrans-0.2.0/crates/tst-core/tests/fixtures/audio/mp3-on-0x03.ts +0 -0
  348. tstrans-0.2.0/crates/tst-core/tests/fixtures/audio/mp3-on-0xF1.ts +0 -0
  349. tstrans-0.2.0/crates/tst-core/tests/fixtures/audio/regen.sh +74 -0
  350. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/README.md +23 -0
  351. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/_regen.sh +82 -0
  352. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/av1/av1_320x240_main_frame_header_keyframe.bin +1 -0
  353. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/av1/av1_320x240_main_seq_header.bin +0 -0
  354. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h264/h264_1080p_high40_bt709_pps.bin +1 -0
  355. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h264/h264_1080p_high40_bt709_sps.bin +0 -0
  356. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h264/h264_720p_main31_pps.bin +1 -0
  357. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h264/h264_720p_main31_sps.bin +0 -0
  358. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h265/README.md +32 -0
  359. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h265/h265_1080p_main10_50_pq_pps.bin +1 -0
  360. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h265/h265_1080p_main10_50_pq_sps.bin +0 -0
  361. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h265/h265_1080p_main10_50_pq_vps.bin +0 -0
  362. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h265/h265_1080p_main40_pps.bin +1 -0
  363. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h265/h265_1080p_main40_sps.bin +0 -0
  364. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h265/h265_1080p_main40_vps.bin +0 -0
  365. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h266/h266_320x240_main10_pps.bin +0 -0
  366. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h266/h266_320x240_main10_real_sps.bin +0 -0
  367. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h266/h266_320x240_main10_sps.bin +0 -0
  368. tstrans-0.2.0/crates/tst-core/tests/fixtures/codec/h266/h266_320x240_main10_vps.bin +0 -0
  369. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/.gitignore +3 -0
  370. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/README.md +92 -0
  371. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/_cache/.gitkeep +0 -0
  372. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/av1/av1-1-b10-00-quantizer-00.bin +0 -0
  373. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/av1/av1-1-b10-00-quantizer-00.json +17 -0
  374. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/av1/av1-1-b8-00-quantizer-00.bin +0 -0
  375. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/av1/av1-1-b8-00-quantizer-00.json +17 -0
  376. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h264/HCAFR1_HHI.bin +0 -0
  377. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h264/HCAFR1_HHI.json +18 -0
  378. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h264/MR1_BT_A.bin +1 -0
  379. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h264/MR1_BT_A.json +18 -0
  380. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h264/MR9_BT_B.bin +1 -0
  381. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h264/MR9_BT_B.json +18 -0
  382. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h265/AMVP_A_MTK_4.bin +0 -0
  383. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h265/AMVP_A_MTK_4.json +18 -0
  384. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h265/DBLK_A_MAIN10_VIXS_4.bin +0 -0
  385. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h265/DBLK_A_MAIN10_VIXS_4.json +18 -0
  386. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h265/QMATRIX_A_RExt_Sony_1.bin +0 -0
  387. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h265/QMATRIX_A_RExt_Sony_1.json +10 -0
  388. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h266/10b400_A_Bytedance_2.bin +0 -0
  389. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h266/10b400_A_Bytedance_2.json +18 -0
  390. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h266/8b420_A_Bytedance_2.bin +0 -0
  391. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h266/8b420_A_Bytedance_2.json +18 -0
  392. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h266/8b444_A_Kwai_2.bin +0 -0
  393. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/h266/8b444_A_Kwai_2.json +18 -0
  394. tstrans-0.2.0/crates/tst-core/tests/fixtures/conformance/manifest.toml +302 -0
  395. tstrans-0.2.0/crates/tst-core/tests/fixtures/regression/.gitkeep +0 -0
  396. tstrans-0.2.0/crates/tst-core/tests/fixtures/regression/README.md +40 -0
  397. tstrans-0.2.0/crates/tst-core/tests/fixtures/st0601/README.md +28 -0
  398. tstrans-0.2.0/crates/tst-core/tests/fixtures/st0601/synthetic_field_errors.klv +0 -0
  399. tstrans-0.2.0/crates/tst-core/tests/fixtures/st0601/synthetic_full.klv +0 -0
  400. tstrans-0.2.0/crates/tst-core/tests/fixtures/st0601/synthetic_funky_ul.klv +0 -0
  401. tstrans-0.2.0/crates/tst-core/tests/fixtures/st0601/synthetic_minimal.klv +0 -0
  402. tstrans-0.2.0/crates/tst-core/tests/fixtures/subtitles/README.md +64 -0
  403. tstrans-0.2.0/crates/tst-core/tests/fixtures/subtitles/cea708_standalone.ts +0 -0
  404. tstrans-0.2.0/crates/tst-core/tests/fixtures/subtitles/dvb_subtitling_eng.ts +0 -0
  405. tstrans-0.2.0/crates/tst-core/tests/fixtures/subtitles/dvb_subtitling_multi_lang.ts +0 -0
  406. tstrans-0.2.0/crates/tst-core/tests/fixtures/subtitles/dvb_teletext_eng.ts +0 -0
  407. tstrans-0.2.0/crates/tst-core/tests/fixtures/subtitles/non_conformant_subtitle_missing_descriptor.ts +0 -0
  408. tstrans-0.2.0/crates/tst-core/tests/fixtures/subtitles/regen.sh +26 -0
  409. tstrans-0.2.0/crates/tst-core/tests/fixtures/subtitles/subtitle_with_klv_same_program.ts +0 -0
  410. tstrans-0.2.0/crates/tst-core/tests/fixtures/subtitles/webvtt_in_ts_multi_cue.ts +0 -0
  411. tstrans-0.2.0/crates/tst-core/tests/fixtures/subtitles/webvtt_in_ts_simple.ts +0 -0
  412. tstrans-0.2.0/crates/tst-core/tests/fixtures/subtitles/webvtt_multi_program_with_klv.ts +0 -0
  413. tstrans-0.2.0/crates/tst-core/tests/io/io_file_smoke.rs +211 -0
  414. tstrans-0.2.0/crates/tst-core/tests/io/public_api_surface.rs +80 -0
  415. tstrans-0.2.0/crates/tst-core/tests/io/timing_smoke.rs +75 -0
  416. tstrans-0.2.0/crates/tst-core/tests/io.rs +12 -0
  417. tstrans-0.2.0/crates/tst-core/tests/klv/local_fixtures.rs +299 -0
  418. tstrans-0.2.0/crates/tst-core/tests/klv/proptest.rs +107 -0
  419. tstrans-0.2.0/crates/tst-core/tests/klv/st0102_via_st0601.rs +80 -0
  420. tstrans-0.2.0/crates/tst-core/tests/klv/st0601.rs +160 -0
  421. tstrans-0.2.0/crates/tst-core/tests/klv/st0903_standalone_ul.rs +96 -0
  422. tstrans-0.2.0/crates/tst-core/tests/klv/st0903_via_st0601.rs +135 -0
  423. tstrans-0.2.0/crates/tst-core/tests/klv/typed_set_proptest.rs +741 -0
  424. tstrans-0.2.0/crates/tst-core/tests/klv.rs +27 -0
  425. tstrans-0.2.0/crates/tst-core/tests/klv_proptest.proptest-regressions +9 -0
  426. tstrans-0.2.0/crates/tst-core/tests/mpegts/au_cell_round_trip.rs +693 -0
  427. tstrans-0.2.0/crates/tst-core/tests/mpegts/au_cell_tolerance.rs +605 -0
  428. tstrans-0.2.0/crates/tst-core/tests/mpegts/au_reassembly.rs +726 -0
  429. tstrans-0.2.0/crates/tst-core/tests/mpegts/audio_fixtures.rs +105 -0
  430. tstrans-0.2.0/crates/tst-core/tests/mpegts/audio_treat_as.rs +128 -0
  431. tstrans-0.2.0/crates/tst-core/tests/mpegts/av1_remux_fixpoint.rs +110 -0
  432. tstrans-0.2.0/crates/tst-core/tests/mpegts/av1_wrap_guard.rs +27 -0
  433. tstrans-0.2.0/crates/tst-core/tests/mpegts/demux.rs +163 -0
  434. tstrans-0.2.0/crates/tst-core/tests/mpegts/demux_audio.rs +212 -0
  435. tstrans-0.2.0/crates/tst-core/tests/mpegts/demux_caps.rs +64 -0
  436. tstrans-0.2.0/crates/tst-core/tests/mpegts/demux_local.rs +120 -0
  437. tstrans-0.2.0/crates/tst-core/tests/mpegts/demux_multi_program.rs +432 -0
  438. tstrans-0.2.0/crates/tst-core/tests/mpegts/demux_pes_validation.rs +663 -0
  439. tstrans-0.2.0/crates/tst-core/tests/mpegts/demux_psi_program_number.rs +286 -0
  440. tstrans-0.2.0/crates/tst-core/tests/mpegts/demux_robustness.rs +522 -0
  441. tstrans-0.2.0/crates/tst-core/tests/mpegts/demux_strict.rs +429 -0
  442. tstrans-0.2.0/crates/tst-core/tests/mpegts/demux_subtitle.rs +296 -0
  443. tstrans-0.2.0/crates/tst-core/tests/mpegts/from_program_map.rs +1093 -0
  444. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux.rs +460 -0
  445. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_audio.rs +129 -0
  446. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_builder_errors.rs +118 -0
  447. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_data.rs +299 -0
  448. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_demux_audio_roundtrip.rs +87 -0
  449. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_demux_subtitle_roundtrip.rs +164 -0
  450. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_demux_video_raw_roundtrip.rs +264 -0
  451. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_descriptor_invariant.rs +84 -0
  452. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_descriptors_roundtrip.rs +541 -0
  453. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_dvb_subtitle_pes.rs +124 -0
  454. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_dvb_teletext_pes.rs +164 -0
  455. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_error_kind_routing.rs +340 -0
  456. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_ffprobe.rs +820 -0
  457. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_klv_pes.rs +125 -0
  458. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_local.rs +182 -0
  459. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_multi_program.rs +606 -0
  460. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_multi_stream.rs +214 -0
  461. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_proptest.rs +133 -0
  462. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_shorthand_multi_program.rs +142 -0
  463. tstrans-0.2.0/crates/tst-core/tests/mpegts/mux_subtitle.rs +179 -0
  464. tstrans-0.2.0/crates/tst-core/tests/mpegts/psi_proptest.rs +335 -0
  465. tstrans-0.2.0/crates/tst-core/tests/mpegts/subtitle_fixtures.rs +290 -0
  466. tstrans-0.2.0/crates/tst-core/tests/mpegts/subtitle_treat_as.rs +122 -0
  467. tstrans-0.2.0/crates/tst-core/tests/mpegts.rs +88 -0
  468. tstrans-0.2.0/crates/tst-core/tests/regression/av1_external_decoder.rs +676 -0
  469. tstrans-0.2.0/crates/tst-core/tests/regression/ber_oid_symmetry.rs +695 -0
  470. tstrans-0.2.0/crates/tst-core/tests/regression/imapb_spec_vectors.rs +507 -0
  471. tstrans-0.2.0/crates/tst-core/tests/regression/st0903_incremental.rs +343 -0
  472. tstrans-0.2.0/crates/tst-core/tests/regression/subtitle_interop.rs +599 -0
  473. tstrans-0.2.0/crates/tst-core/tests/regression.rs +16 -0
  474. tstrans-0.2.0/crates/tst-core/tests/tools/corpus_to_fixture.rs +552 -0
  475. tstrans-0.2.0/crates/tst-core/tests/tools/corpus_to_fixture_help.txt +24 -0
  476. tstrans-0.2.0/crates/tst-core/tests/tools/gen_av1_fixtures.rs +43 -0
  477. tstrans-0.2.0/crates/tst-core/tests/tools/gen_h266_fixtures.rs +50 -0
  478. tstrans-0.2.0/crates/tst-core/tests/tools/gen_pts_rollover_fixture.rs +80 -0
  479. tstrans-0.2.0/crates/tst-core/tests/tools/gen_subtitle_fixtures.rs +400 -0
  480. tstrans-0.2.0/crates/tst-core/tests/tools/gen_synthetic_fixtures.rs +167 -0
  481. tstrans-0.2.0/crates/tst-core/tests/tools/measure_pcr_jitter.rs +137 -0
  482. tstrans-0.2.0/crates/tst-core/tests/tools/strip_conformance_parameter_sets.rs +571 -0
  483. tstrans-0.2.0/crates/tst-core/tests/tools/trace_h265_sps.rs +487 -0
  484. tstrans-0.2.0/crates/tst-pipeline/Cargo.toml +46 -0
  485. tstrans-0.2.0/crates/tst-pipeline/benches/pairer.rs +159 -0
  486. tstrans-0.2.0/crates/tst-pipeline/benches/syncer.rs +177 -0
  487. tstrans-0.2.0/crates/tst-pipeline/public-api.txt +2047 -0
  488. tstrans-0.2.0/crates/tst-pipeline/src/demux_receiver.rs +551 -0
  489. tstrans-0.2.0/crates/tst-pipeline/src/dyn_aliases.rs +24 -0
  490. tstrans-0.2.0/crates/tst-pipeline/src/ext/mod.rs +18 -0
  491. tstrans-0.2.0/crates/tst-pipeline/src/ext/pairing/demuxer.rs +123 -0
  492. tstrans-0.2.0/crates/tst-pipeline/src/ext/pairing/last_before.rs +260 -0
  493. tstrans-0.2.0/crates/tst-pipeline/src/ext/pairing/mod.rs +870 -0
  494. tstrans-0.2.0/crates/tst-pipeline/src/ext/pairing/nearest.rs +736 -0
  495. tstrans-0.2.0/crates/tst-pipeline/src/ext/pairing/types.rs +160 -0
  496. tstrans-0.2.0/crates/tst-pipeline/src/lib.rs +165 -0
  497. tstrans-0.2.0/crates/tst-pipeline/src/managed_demux_receiver.rs +757 -0
  498. tstrans-0.2.0/crates/tst-pipeline/src/managed_receive.rs +588 -0
  499. tstrans-0.2.0/crates/tst-pipeline/src/mutex.rs +40 -0
  500. tstrans-0.2.0/crates/tst-pipeline/src/mux_publisher.rs +443 -0
  501. tstrans-0.2.0/crates/tst-pipeline/src/mux_sender.rs +2066 -0
  502. tstrans-0.2.0/crates/tst-pipeline/src/raw_receiver.rs +509 -0
  503. tstrans-0.2.0/crates/tst-pipeline/src/raw_sender.rs +448 -0
  504. tstrans-0.2.0/crates/tst-pipeline/src/receiver/mod.rs +617 -0
  505. tstrans-0.2.0/crates/tst-pipeline/src/receiver/sync.rs +428 -0
  506. tstrans-0.2.0/crates/tst-pipeline/src/reconnect/gap_buffer.rs +124 -0
  507. tstrans-0.2.0/crates/tst-pipeline/src/reconnect/mod.rs +696 -0
  508. tstrans-0.2.0/crates/tst-pipeline/src/sender/framing.rs +441 -0
  509. tstrans-0.2.0/crates/tst-pipeline/src/sender/mod.rs +464 -0
  510. tstrans-0.2.0/crates/tst-pipeline/src/shell_error.rs +395 -0
  511. tstrans-0.2.0/crates/tst-pipeline/tests/demux_receiver_malformed_pes_recovery.rs +164 -0
  512. tstrans-0.2.0/crates/tst-pipeline/tests/managed_demux_receiver_reconnect.rs +516 -0
  513. tstrans-0.2.0/crates/tst-pipeline/tests/managed_receive_tracing.rs +87 -0
  514. tstrans-0.2.0/crates/tst-pipeline/tests/mux_sender_backpressure_tracing.rs +141 -0
  515. tstrans-0.2.0/crates/tst-pipeline/tests/mux_sender_golden.rs +64 -0
  516. tstrans-0.2.0/crates/tst-pipeline/tests/pairing_demuxer_round_trip.rs +236 -0
  517. tstrans-0.2.0/crates/tst-pipeline/tests/pairing_round_trip.rs +187 -0
  518. tstrans-0.2.0/crates/tst-pipeline/tests/pipeline_raw_sender.rs +45 -0
  519. tstrans-0.2.0/crates/tst-pipeline/tests/pipeline_receiver.rs +251 -0
  520. tstrans-0.2.0/crates/tst-pipeline/tests/pipeline_sender_unit.rs +68 -0
  521. tstrans-0.2.0/crates/tst-pipeline/tests/pipeline_ts_sender.rs +78 -0
  522. tstrans-0.2.0/crates/tst-pipeline/tests/poison_policy.rs +358 -0
  523. tstrans-0.2.0/crates/tst-pipeline/tests/reconnect_reject_overflow.rs +127 -0
  524. tstrans-0.2.0/crates/tst-pipeline/tests/reconnect_tracing.rs +84 -0
  525. tstrans-0.2.0/crates/tst-pipeline/tests/shell_error_display.rs +123 -0
  526. tstrans-0.2.0/crates/tst-pipeline/tests/shell_error_kind_derivation.rs +525 -0
  527. tstrans-0.2.0/crates/tst-pipeline/tests/shell_lifetime_spans.rs +135 -0
  528. tstrans-0.2.0/crates/tst-pipeline/tests/transport_error_discrimination.rs +256 -0
  529. tstrans-0.2.0/crates/tst-rist/Cargo.toml +31 -0
  530. tstrans-0.2.0/crates/tst-rist/public-api.txt +619 -0
  531. tstrans-0.2.0/crates/tst-rist/src/builder.rs +251 -0
  532. tstrans-0.2.0/crates/tst-rist/src/config.rs +202 -0
  533. tstrans-0.2.0/crates/tst-rist/src/error.rs +96 -0
  534. tstrans-0.2.0/crates/tst-rist/src/init.rs +142 -0
  535. tstrans-0.2.0/crates/tst-rist/src/lib.rs +41 -0
  536. tstrans-0.2.0/crates/tst-rist/src/recv.rs +393 -0
  537. tstrans-0.2.0/crates/tst-rist/src/stats.rs +346 -0
  538. tstrans-0.2.0/crates/tst-rist/src/transport.rs +494 -0
  539. tstrans-0.2.0/crates/tst-rist/src/url.rs +246 -0
  540. tstrans-0.2.0/crates/tst-rist/tests/loopback.rs +197 -0
  541. tstrans-0.2.0/crates/tst-rist/tests/pipeline_round_trip.rs +154 -0
  542. tstrans-0.2.0/crates/tst-rtp/Cargo.toml +105 -0
  543. tstrans-0.2.0/crates/tst-rtp/public-api.txt +2538 -0
  544. tstrans-0.2.0/crates/tst-rtp/src/builder.rs +705 -0
  545. tstrans-0.2.0/crates/tst-rtp/src/cancel.rs +188 -0
  546. tstrans-0.2.0/crates/tst-rtp/src/clock.rs +126 -0
  547. tstrans-0.2.0/crates/tst-rtp/src/error.rs +214 -0
  548. tstrans-0.2.0/crates/tst-rtp/src/init.rs +14 -0
  549. tstrans-0.2.0/crates/tst-rtp/src/lib.rs +63 -0
  550. tstrans-0.2.0/crates/tst-rtp/src/packet.rs +513 -0
  551. tstrans-0.2.0/crates/tst-rtp/src/rtcp/ingest.rs +238 -0
  552. tstrans-0.2.0/crates/tst-rtp/src/rtcp/mod.rs +750 -0
  553. tstrans-0.2.0/crates/tst-rtp/src/rtcp/reporter.rs +142 -0
  554. tstrans-0.2.0/crates/tst-rtp/src/rtcp/stats.rs +42 -0
  555. tstrans-0.2.0/crates/tst-rtp/src/rtsp/auth.rs +470 -0
  556. tstrans-0.2.0/crates/tst-rtp/src/rtsp/client/interleaved_pump.rs +1088 -0
  557. tstrans-0.2.0/crates/tst-rtp/src/rtsp/client/keepalive.rs +112 -0
  558. tstrans-0.2.0/crates/tst-rtp/src/rtsp/client/mod.rs +590 -0
  559. tstrans-0.2.0/crates/tst-rtp/src/rtsp/client/options_describe.rs +553 -0
  560. tstrans-0.2.0/crates/tst-rtp/src/rtsp/client/play.rs +142 -0
  561. tstrans-0.2.0/crates/tst-rtp/src/rtsp/client/session.rs +141 -0
  562. tstrans-0.2.0/crates/tst-rtp/src/rtsp/client/setup.rs +148 -0
  563. tstrans-0.2.0/crates/tst-rtp/src/rtsp/client/teardown.rs +70 -0
  564. tstrans-0.2.0/crates/tst-rtp/src/rtsp/client/tls.rs +154 -0
  565. tstrans-0.2.0/crates/tst-rtp/src/rtsp/client/transport_negotiation.rs +350 -0
  566. tstrans-0.2.0/crates/tst-rtp/src/rtsp/interleaved.rs +314 -0
  567. tstrans-0.2.0/crates/tst-rtp/src/rtsp/message.rs +1110 -0
  568. tstrans-0.2.0/crates/tst-rtp/src/rtsp/mod.rs +8 -0
  569. tstrans-0.2.0/crates/tst-rtp/src/rtsp/server/auth.rs +531 -0
  570. tstrans-0.2.0/crates/tst-rtp/src/rtsp/server/builder.rs +1 -0
  571. tstrans-0.2.0/crates/tst-rtp/src/rtsp/server/fanout.rs +337 -0
  572. tstrans-0.2.0/crates/tst-rtp/src/rtsp/server/handlers.rs +1297 -0
  573. tstrans-0.2.0/crates/tst-rtp/src/rtsp/server/interleaved_pump.rs +495 -0
  574. tstrans-0.2.0/crates/tst-rtp/src/rtsp/server/listener.rs +168 -0
  575. tstrans-0.2.0/crates/tst-rtp/src/rtsp/server/mod.rs +995 -0
  576. tstrans-0.2.0/crates/tst-rtp/src/rtsp/server/mount.rs +717 -0
  577. tstrans-0.2.0/crates/tst-rtp/src/rtsp/server/multicast.rs +413 -0
  578. tstrans-0.2.0/crates/tst-rtp/src/rtsp/server/runtime.rs +1 -0
  579. tstrans-0.2.0/crates/tst-rtp/src/rtsp/server/session.rs +583 -0
  580. tstrans-0.2.0/crates/tst-rtp/src/rtsp/server/tls.rs +199 -0
  581. tstrans-0.2.0/crates/tst-rtp/src/sdp/mod.rs +257 -0
  582. tstrans-0.2.0/crates/tst-rtp/src/sdp/pick.rs +88 -0
  583. tstrans-0.2.0/crates/tst-rtp/src/transport.rs +1204 -0
  584. tstrans-0.2.0/crates/tst-rtp/src/url.rs +754 -0
  585. tstrans-0.2.0/crates/tst-rtp/tests/INTEROP.md +13 -0
  586. tstrans-0.2.0/crates/tst-rtp/tests/MOVEMENT_MAP.md +75 -0
  587. tstrans-0.2.0/crates/tst-rtp/tests/fixtures/mod.rs +8 -0
  588. tstrans-0.2.0/crates/tst-rtp/tests/fixtures/rtsp_loopback_server.rs +326 -0
  589. tstrans-0.2.0/crates/tst-rtp/tests/fixtures/tls_certs.rs +56 -0
  590. tstrans-0.2.0/crates/tst-rtp/tests/rtcp/interleaved.rs +21 -0
  591. tstrans-0.2.0/crates/tst-rtp/tests/rtcp/loopback.rs +64 -0
  592. tstrans-0.2.0/crates/tst-rtp/tests/rtcp/via_rtsp.rs +20 -0
  593. tstrans-0.2.0/crates/tst-rtp/tests/rtcp.rs +17 -0
  594. tstrans-0.2.0/crates/tst-rtp/tests/rtp/loopback_multicast.rs +63 -0
  595. tstrans-0.2.0/crates/tst-rtp/tests/rtp/loopback_unicast.rs +227 -0
  596. tstrans-0.2.0/crates/tst-rtp/tests/rtp.rs +10 -0
  597. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_client/auth.rs +40 -0
  598. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_client/builder_timeouts.rs +80 -0
  599. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_client/fallback.rs +38 -0
  600. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_client/interleaved_e2e.rs +38 -0
  601. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_client/keepalive.rs +70 -0
  602. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_client/setup_play.rs +36 -0
  603. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_client/teardown.rs +26 -0
  604. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_client/tls.rs +36 -0
  605. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_client/tls_keepalive.rs +91 -0
  606. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_client.rs +29 -0
  607. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/auth_basic.rs +81 -0
  608. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/auth_digest.rs +90 -0
  609. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/bind.rs +83 -0
  610. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/concurrent.rs +176 -0
  611. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/lagging_peer.rs +125 -0
  612. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/loopback_interleaved.rs +56 -0
  613. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/loopback_udp.rs +134 -0
  614. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/mixed_transports.rs +20 -0
  615. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/mount.rs +128 -0
  616. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/multicast.rs +113 -0
  617. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/notice_5402.rs +271 -0
  618. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/oom_guard.rs +242 -0
  619. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/session_keepalive.rs +71 -0
  620. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/shutdown.rs +98 -0
  621. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server/tls.rs +143 -0
  622. tstrans-0.2.0/crates/tst-rtp/tests/rtsp_server.rs +41 -0
  623. tstrans-0.2.0/crates/tst-srt/.gitignore +2 -0
  624. tstrans-0.2.0/crates/tst-srt/Cargo.toml +44 -0
  625. tstrans-0.2.0/crates/tst-srt/public-api.txt +1650 -0
  626. tstrans-0.2.0/crates/tst-srt/src/addr.rs +142 -0
  627. tstrans-0.2.0/crates/tst-srt/src/builder.rs +489 -0
  628. tstrans-0.2.0/crates/tst-srt/src/config.rs +399 -0
  629. tstrans-0.2.0/crates/tst-srt/src/error.rs +1231 -0
  630. tstrans-0.2.0/crates/tst-srt/src/init.rs +58 -0
  631. tstrans-0.2.0/crates/tst-srt/src/lib.rs +49 -0
  632. tstrans-0.2.0/crates/tst-srt/src/listener.rs +412 -0
  633. tstrans-0.2.0/crates/tst-srt/src/options.rs +391 -0
  634. tstrans-0.2.0/crates/tst-srt/src/socket.rs +1141 -0
  635. tstrans-0.2.0/crates/tst-srt/src/transport.rs +465 -0
  636. tstrans-0.2.0/crates/tst-srt/src/url.rs +947 -0
  637. tstrans-0.2.0/crates/tst-srt/tests/MOVEMENT_MAP.md +98 -0
  638. tstrans-0.2.0/crates/tst-srt/tests/builder/io.rs +60 -0
  639. tstrans-0.2.0/crates/tst-srt/tests/builder/lifecycle.rs +57 -0
  640. tstrans-0.2.0/crates/tst-srt/tests/builder/linger.rs +36 -0
  641. tstrans-0.2.0/crates/tst-srt/tests/builder/listener.rs +33 -0
  642. tstrans-0.2.0/crates/tst-srt/tests/builder/options.rs +81 -0
  643. tstrans-0.2.0/crates/tst-srt/tests/builder/stream_id.rs +23 -0
  644. tstrans-0.2.0/crates/tst-srt/tests/builder/udp_buffer.rs +49 -0
  645. tstrans-0.2.0/crates/tst-srt/tests/builder.rs +26 -0
  646. tstrans-0.2.0/crates/tst-srt/tests/common/mod.rs +207 -0
  647. tstrans-0.2.0/crates/tst-srt/tests/loopback/cancellation_loopback.rs +119 -0
  648. tstrans-0.2.0/crates/tst-srt/tests/loopback/connect_timeout.rs +22 -0
  649. tstrans-0.2.0/crates/tst-srt/tests/loopback/encrypted_packet_filter.rs +31 -0
  650. tstrans-0.2.0/crates/tst-srt/tests/loopback/getaddrinfo_walk.rs +41 -0
  651. tstrans-0.2.0/crates/tst-srt/tests/loopback/handshake.rs +105 -0
  652. tstrans-0.2.0/crates/tst-srt/tests/loopback/ipv6_loopback.rs +57 -0
  653. tstrans-0.2.0/crates/tst-srt/tests/loopback/listener_accept_timeout.rs +103 -0
  654. tstrans-0.2.0/crates/tst-srt/tests/loopback/maxbw_roundtrip.rs +38 -0
  655. tstrans-0.2.0/crates/tst-srt/tests/loopback/payload_limit.rs +121 -0
  656. tstrans-0.2.0/crates/tst-srt/tests/loopback/srto_sender.rs +70 -0
  657. tstrans-0.2.0/crates/tst-srt/tests/loopback.rs +32 -0
  658. tstrans-0.2.0/crates/tst-srt/tests/pipeline/pipeline_managed.rs +71 -0
  659. tstrans-0.2.0/crates/tst-srt/tests/pipeline/pipeline_receiver_live.rs +193 -0
  660. tstrans-0.2.0/crates/tst-srt/tests/pipeline/pipeline_receiver_live_corpus.rs +336 -0
  661. tstrans-0.2.0/crates/tst-srt/tests/pipeline/pipeline_sender.rs +70 -0
  662. tstrans-0.2.0/crates/tst-srt/tests/pipeline.rs +20 -0
  663. tstrans-0.2.0/crates/tst-srt/tests/stats/socket_stats.rs +178 -0
  664. tstrans-0.2.0/crates/tst-srt/tests/stats/stats.rs +54 -0
  665. tstrans-0.2.0/crates/tst-srt/tests/stats.rs +16 -0
  666. tstrans-0.2.0/crates/tst-srt/tests/url/url_parser.rs +530 -0
  667. tstrans-0.2.0/crates/tst-srt/tests/url/url_parser_boundaries.rs +202 -0
  668. tstrans-0.2.0/crates/tst-srt/tests/url/url_vocabulary_coverage.rs +167 -0
  669. tstrans-0.2.0/crates/tst-srt/tests/url.rs +12 -0
  670. tstrans-0.2.0/crates/tst-tcp/Cargo.toml +87 -0
  671. tstrans-0.2.0/crates/tst-tcp/public-api.txt +834 -0
  672. tstrans-0.2.0/crates/tst-tcp/src/builder.rs +247 -0
  673. tstrans-0.2.0/crates/tst-tcp/src/config.rs +83 -0
  674. tstrans-0.2.0/crates/tst-tcp/src/error.rs +85 -0
  675. tstrans-0.2.0/crates/tst-tcp/src/hls/auth.rs +71 -0
  676. tstrans-0.2.0/crates/tst-tcp/src/hls/builder.rs +142 -0
  677. tstrans-0.2.0/crates/tst-tcp/src/hls/config.rs +208 -0
  678. tstrans-0.2.0/crates/tst-tcp/src/hls/error.rs +89 -0
  679. tstrans-0.2.0/crates/tst-tcp/src/hls/http_server.rs +202 -0
  680. tstrans-0.2.0/crates/tst-tcp/src/hls/mod.rs +29 -0
  681. tstrans-0.2.0/crates/tst-tcp/src/hls/playlist.rs +106 -0
  682. tstrans-0.2.0/crates/tst-tcp/src/hls/publisher.rs +289 -0
  683. tstrans-0.2.0/crates/tst-tcp/src/hls/segmenter.rs +482 -0
  684. tstrans-0.2.0/crates/tst-tcp/src/hls/stats.rs +14 -0
  685. tstrans-0.2.0/crates/tst-tcp/src/hls/tls.rs +31 -0
  686. tstrans-0.2.0/crates/tst-tcp/src/hls/url.rs +180 -0
  687. tstrans-0.2.0/crates/tst-tcp/src/lib.rs +47 -0
  688. tstrans-0.2.0/crates/tst-tcp/src/listener.rs +89 -0
  689. tstrans-0.2.0/crates/tst-tcp/src/recv_knobs.rs +32 -0
  690. tstrans-0.2.0/crates/tst-tcp/src/stats.rs +54 -0
  691. tstrans-0.2.0/crates/tst-tcp/src/tls.rs +118 -0
  692. tstrans-0.2.0/crates/tst-tcp/src/transport.rs +421 -0
  693. tstrans-0.2.0/crates/tst-tcp/src/url.rs +280 -0
  694. tstrans-0.2.0/crates/tst-tcp/tests/hls_e2e.rs +199 -0
  695. tstrans-0.2.0/crates/tst-tcp/tests/loopback.rs +84 -0
  696. tstrans-0.2.0/crates/tst-tcp/tests/partial_write.rs +109 -0
  697. tstrans-0.2.0/crates/tst-tcp/tests/pipeline_round_trip.rs +134 -0
  698. tstrans-0.2.0/crates/tst-test-helpers/Cargo.toml +11 -0
  699. tstrans-0.2.0/crates/tst-test-helpers/src/lib.rs +10 -0
  700. tstrans-0.2.0/crates/tst-test-helpers/src/mock_recv_transport.rs +363 -0
  701. tstrans-0.2.0/crates/tst-test-helpers/src/mock_transport.rs +161 -0
  702. tstrans-0.2.0/crates/tst-test-helpers/src/ports.rs +123 -0
  703. tstrans-0.2.0/crates/tst-test-helpers/src/synthetic_nal.rs +47 -0
  704. tstrans-0.2.0/crates/tst-test-helpers/src/ts_parser.rs +219 -0
  705. tstrans-0.2.0/crates/tst-udp/Cargo.toml +19 -0
  706. tstrans-0.2.0/crates/tst-udp/public-api.txt +480 -0
  707. tstrans-0.2.0/crates/tst-udp/src/builder.rs +136 -0
  708. tstrans-0.2.0/crates/tst-udp/src/config.rs +91 -0
  709. tstrans-0.2.0/crates/tst-udp/src/error.rs +85 -0
  710. tstrans-0.2.0/crates/tst-udp/src/lib.rs +35 -0
  711. tstrans-0.2.0/crates/tst-udp/src/recv.rs +249 -0
  712. tstrans-0.2.0/crates/tst-udp/src/stats.rs +71 -0
  713. tstrans-0.2.0/crates/tst-udp/src/transport.rs +156 -0
  714. tstrans-0.2.0/crates/tst-udp/src/transport_recv_knobs.rs +13 -0
  715. tstrans-0.2.0/crates/tst-udp/src/url.rs +306 -0
  716. tstrans-0.2.0/crates/tst-udp/tests/loopback_multicast.rs +89 -0
  717. tstrans-0.2.0/crates/tst-udp/tests/loopback_unicast.rs +56 -0
  718. tstrans-0.2.0/crates/tst-udp/tests/pipeline_round_trip.rs +126 -0
  719. tstrans-0.2.0/pyproject.toml +56 -0
  720. tstrans-0.2.0/python/tstrans/__init__.py +96 -0
  721. tstrans-0.2.0/python/tstrans/codec.py +235 -0
  722. tstrans-0.2.0/python/tstrans/codec.pyi +841 -0
  723. tstrans-0.2.0/python/tstrans/exceptions.py +528 -0
  724. tstrans-0.2.0/python/tstrans/hls.py +125 -0
  725. tstrans-0.2.0/python/tstrans/hls.pyi +370 -0
  726. tstrans-0.2.0/python/tstrans/io.py +730 -0
  727. tstrans-0.2.0/python/tstrans/io.pyi +99 -0
  728. tstrans-0.2.0/python/tstrans/klv.py +903 -0
  729. tstrans-0.2.0/python/tstrans/klv.pyi +399 -0
  730. tstrans-0.2.0/python/tstrans/mpegts.py +1482 -0
  731. tstrans-0.2.0/python/tstrans/mpegts.pyi +781 -0
  732. tstrans-0.2.0/python/tstrans/pandas/__init__.py +31 -0
  733. tstrans-0.2.0/python/tstrans/pandas/_imports.py +36 -0
  734. tstrans-0.2.0/python/tstrans/pandas/_nal_type_names.py +82 -0
  735. tstrans-0.2.0/python/tstrans/pandas/codec.py +190 -0
  736. tstrans-0.2.0/python/tstrans/pandas/events.py +163 -0
  737. tstrans-0.2.0/python/tstrans/pandas/klv.py +271 -0
  738. tstrans-0.2.0/python/tstrans/pipeline.py +256 -0
  739. tstrans-0.2.0/python/tstrans/py.typed +0 -0
  740. tstrans-0.2.0/python/tstrans/rist.py +44 -0
  741. tstrans-0.2.0/python/tstrans/rist.pyi +251 -0
  742. tstrans-0.2.0/python/tstrans/rtp.py +168 -0
  743. tstrans-0.2.0/python/tstrans/rtp.pyi +684 -0
  744. tstrans-0.2.0/python/tstrans/srt.py +82 -0
  745. tstrans-0.2.0/python/tstrans/srt.pyi +780 -0
  746. tstrans-0.2.0/python/tstrans/tcp.py +71 -0
  747. tstrans-0.2.0/python/tstrans/tcp.pyi +376 -0
  748. tstrans-0.2.0/python/tstrans/udp.py +61 -0
  749. tstrans-0.2.0/python/tstrans/udp.pyi +286 -0
@@ -0,0 +1,3032 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anes"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
19
+
20
+ [[package]]
21
+ name = "anstream"
22
+ version = "1.0.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "is_terminal_polyfill",
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "anstyle-parse"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
46
+ dependencies = [
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-query"
52
+ version = "1.1.5"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
55
+ dependencies = [
56
+ "windows-sys 0.61.2",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-wincon"
61
+ version = "3.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
64
+ dependencies = [
65
+ "anstyle",
66
+ "once_cell_polyfill",
67
+ "windows-sys 0.61.2",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anyhow"
72
+ version = "1.0.102"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
75
+
76
+ [[package]]
77
+ name = "atomic-waker"
78
+ version = "1.1.2"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
81
+
82
+ [[package]]
83
+ name = "autocfg"
84
+ version = "1.5.0"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
87
+
88
+ [[package]]
89
+ name = "base64"
90
+ version = "0.22.1"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
93
+
94
+ [[package]]
95
+ name = "bindgen"
96
+ version = "0.72.1"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
99
+ dependencies = [
100
+ "bitflags",
101
+ "cexpr",
102
+ "clang-sys",
103
+ "itertools 0.12.1",
104
+ "log",
105
+ "prettyplease",
106
+ "proc-macro2",
107
+ "quote",
108
+ "regex",
109
+ "rustc-hash",
110
+ "shlex",
111
+ "syn",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "bit-set"
116
+ version = "0.8.0"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
119
+ dependencies = [
120
+ "bit-vec",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "bit-vec"
125
+ version = "0.8.0"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
128
+
129
+ [[package]]
130
+ name = "bitflags"
131
+ version = "2.11.1"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
134
+
135
+ [[package]]
136
+ name = "block-buffer"
137
+ version = "0.10.4"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
140
+ dependencies = [
141
+ "generic-array",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "bstr"
146
+ version = "1.12.1"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
149
+ dependencies = [
150
+ "memchr",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "bumpalo"
155
+ version = "3.20.2"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
158
+
159
+ [[package]]
160
+ name = "bytes"
161
+ version = "1.11.1"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
164
+
165
+ [[package]]
166
+ name = "cast"
167
+ version = "0.3.0"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
170
+
171
+ [[package]]
172
+ name = "cbindgen"
173
+ version = "0.29.2"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "befbfd072a8e81c02f8c507aefce431fe5e7d051f83d48a23ffc9b9fe5a11799"
176
+ dependencies = [
177
+ "clap",
178
+ "heck",
179
+ "indexmap",
180
+ "log",
181
+ "proc-macro2",
182
+ "quote",
183
+ "serde",
184
+ "serde_json",
185
+ "syn",
186
+ "tempfile",
187
+ "toml 0.9.12+spec-1.1.0",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "cc"
192
+ version = "1.2.61"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
195
+ dependencies = [
196
+ "find-msvc-tools",
197
+ "shlex",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "cesu8"
202
+ version = "1.1.0"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
205
+
206
+ [[package]]
207
+ name = "cexpr"
208
+ version = "0.6.0"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
211
+ dependencies = [
212
+ "nom",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "cfg-if"
217
+ version = "1.0.4"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
220
+
221
+ [[package]]
222
+ name = "ciborium"
223
+ version = "0.2.2"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
226
+ dependencies = [
227
+ "ciborium-io",
228
+ "ciborium-ll",
229
+ "serde",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "ciborium-io"
234
+ version = "0.2.2"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
237
+
238
+ [[package]]
239
+ name = "ciborium-ll"
240
+ version = "0.2.2"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
243
+ dependencies = [
244
+ "ciborium-io",
245
+ "half",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "clang-sys"
250
+ version = "1.8.1"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
253
+ dependencies = [
254
+ "glob",
255
+ "libc",
256
+ "libloading",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "clap"
261
+ version = "4.6.1"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
264
+ dependencies = [
265
+ "clap_builder",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "clap_builder"
270
+ version = "4.6.0"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
273
+ dependencies = [
274
+ "anstream",
275
+ "anstyle",
276
+ "clap_lex",
277
+ "strsim",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "clap_lex"
282
+ version = "1.1.0"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
285
+
286
+ [[package]]
287
+ name = "cmake"
288
+ version = "0.1.58"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
291
+ dependencies = [
292
+ "cc",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "colorchoice"
297
+ version = "1.0.5"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
300
+
301
+ [[package]]
302
+ name = "combine"
303
+ version = "4.6.7"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
306
+ dependencies = [
307
+ "bytes",
308
+ "memchr",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "cookie-factory"
313
+ version = "0.3.3"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "9885fa71e26b8ab7855e2ec7cae6e9b380edff76cd052e07c683a0319d51b3a2"
316
+ dependencies = [
317
+ "futures",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "core-foundation"
322
+ version = "0.9.4"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
325
+ dependencies = [
326
+ "core-foundation-sys",
327
+ "libc",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "core-foundation-sys"
332
+ version = "0.8.7"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
335
+
336
+ [[package]]
337
+ name = "cpufeatures"
338
+ version = "0.2.17"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
341
+ dependencies = [
342
+ "libc",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "criterion"
347
+ version = "0.5.1"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
350
+ dependencies = [
351
+ "anes",
352
+ "cast",
353
+ "ciborium",
354
+ "clap",
355
+ "criterion-plot",
356
+ "is-terminal",
357
+ "itertools 0.10.5",
358
+ "num-traits",
359
+ "once_cell",
360
+ "oorandom",
361
+ "plotters",
362
+ "rayon",
363
+ "regex",
364
+ "serde",
365
+ "serde_derive",
366
+ "serde_json",
367
+ "tinytemplate",
368
+ "walkdir",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "criterion-plot"
373
+ version = "0.5.0"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
376
+ dependencies = [
377
+ "cast",
378
+ "itertools 0.10.5",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "critical-section"
383
+ version = "1.2.0"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
386
+
387
+ [[package]]
388
+ name = "crossbeam-deque"
389
+ version = "0.8.6"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
392
+ dependencies = [
393
+ "crossbeam-epoch",
394
+ "crossbeam-utils",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "crossbeam-epoch"
399
+ version = "0.9.18"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
402
+ dependencies = [
403
+ "crossbeam-utils",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "crossbeam-utils"
408
+ version = "0.8.21"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
411
+
412
+ [[package]]
413
+ name = "crunchy"
414
+ version = "0.2.4"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
417
+
418
+ [[package]]
419
+ name = "crypto-common"
420
+ version = "0.1.7"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
423
+ dependencies = [
424
+ "generic-array",
425
+ "typenum",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "deranged"
430
+ version = "0.4.0"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
433
+ dependencies = [
434
+ "powerfmt",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "digest"
439
+ version = "0.10.7"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
442
+ dependencies = [
443
+ "block-buffer",
444
+ "crypto-common",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "displaydoc"
449
+ version = "0.2.5"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
452
+ dependencies = [
453
+ "proc-macro2",
454
+ "quote",
455
+ "syn",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "either"
460
+ version = "1.15.0"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
463
+
464
+ [[package]]
465
+ name = "equivalent"
466
+ version = "1.0.2"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
469
+
470
+ [[package]]
471
+ name = "errno"
472
+ version = "0.3.14"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
475
+ dependencies = [
476
+ "libc",
477
+ "windows-sys 0.61.2",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "fallible-iterator"
482
+ version = "0.3.0"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
485
+
486
+ [[package]]
487
+ name = "fastrand"
488
+ version = "2.4.1"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
491
+
492
+ [[package]]
493
+ name = "find-msvc-tools"
494
+ version = "0.1.9"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
497
+
498
+ [[package]]
499
+ name = "fnv"
500
+ version = "1.0.7"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
503
+
504
+ [[package]]
505
+ name = "foldhash"
506
+ version = "0.1.5"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
509
+
510
+ [[package]]
511
+ name = "form_urlencoded"
512
+ version = "1.2.2"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
515
+ dependencies = [
516
+ "percent-encoding",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "futures"
521
+ version = "0.3.32"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
524
+ dependencies = [
525
+ "futures-channel",
526
+ "futures-core",
527
+ "futures-executor",
528
+ "futures-io",
529
+ "futures-sink",
530
+ "futures-task",
531
+ "futures-util",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "futures-channel"
536
+ version = "0.3.32"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
539
+ dependencies = [
540
+ "futures-core",
541
+ "futures-sink",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "futures-core"
546
+ version = "0.3.32"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
549
+
550
+ [[package]]
551
+ name = "futures-executor"
552
+ version = "0.3.32"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
555
+ dependencies = [
556
+ "futures-core",
557
+ "futures-task",
558
+ "futures-util",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "futures-io"
563
+ version = "0.3.32"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
566
+
567
+ [[package]]
568
+ name = "futures-macro"
569
+ version = "0.3.32"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
572
+ dependencies = [
573
+ "proc-macro2",
574
+ "quote",
575
+ "syn",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "futures-sink"
580
+ version = "0.3.32"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
583
+
584
+ [[package]]
585
+ name = "futures-task"
586
+ version = "0.3.32"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
589
+
590
+ [[package]]
591
+ name = "futures-util"
592
+ version = "0.3.32"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
595
+ dependencies = [
596
+ "futures-channel",
597
+ "futures-core",
598
+ "futures-io",
599
+ "futures-macro",
600
+ "futures-sink",
601
+ "futures-task",
602
+ "memchr",
603
+ "pin-project-lite",
604
+ "slab",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "generic-array"
609
+ version = "0.14.7"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
612
+ dependencies = [
613
+ "typenum",
614
+ "version_check",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "getrandom"
619
+ version = "0.2.17"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
622
+ dependencies = [
623
+ "cfg-if",
624
+ "libc",
625
+ "wasi",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "getrandom"
630
+ version = "0.3.4"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
633
+ dependencies = [
634
+ "cfg-if",
635
+ "libc",
636
+ "r-efi 5.3.0",
637
+ "wasip2",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "getrandom"
642
+ version = "0.4.2"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
645
+ dependencies = [
646
+ "cfg-if",
647
+ "libc",
648
+ "r-efi 6.0.0",
649
+ "wasip2",
650
+ "wasip3",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "glob"
655
+ version = "0.3.3"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
658
+
659
+ [[package]]
660
+ name = "half"
661
+ version = "2.7.1"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
664
+ dependencies = [
665
+ "cfg-if",
666
+ "crunchy",
667
+ "zerocopy",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "hashbrown"
672
+ version = "0.15.5"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
675
+ dependencies = [
676
+ "foldhash",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "hashbrown"
681
+ version = "0.17.0"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
684
+
685
+ [[package]]
686
+ name = "heck"
687
+ version = "0.5.0"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
690
+
691
+ [[package]]
692
+ name = "hermit-abi"
693
+ version = "0.5.2"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
696
+
697
+ [[package]]
698
+ name = "http"
699
+ version = "1.4.1"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
702
+ dependencies = [
703
+ "bytes",
704
+ "itoa",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "http-body"
709
+ version = "1.0.1"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
712
+ dependencies = [
713
+ "bytes",
714
+ "http",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "http-body-util"
719
+ version = "0.1.3"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
722
+ dependencies = [
723
+ "bytes",
724
+ "futures-core",
725
+ "http",
726
+ "http-body",
727
+ "pin-project-lite",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "httparse"
732
+ version = "1.10.1"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
735
+
736
+ [[package]]
737
+ name = "httpdate"
738
+ version = "1.0.3"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
741
+
742
+ [[package]]
743
+ name = "hyper"
744
+ version = "1.10.0"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "eb92f162bf56536459fc83c79b974bb12837acfed43d6bc370a7916d0ae15ecc"
747
+ dependencies = [
748
+ "atomic-waker",
749
+ "bytes",
750
+ "futures-channel",
751
+ "futures-core",
752
+ "http",
753
+ "http-body",
754
+ "httparse",
755
+ "httpdate",
756
+ "itoa",
757
+ "pin-project-lite",
758
+ "smallvec",
759
+ "tokio",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "hyper-util"
764
+ version = "0.1.20"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
767
+ dependencies = [
768
+ "bytes",
769
+ "http",
770
+ "http-body",
771
+ "hyper",
772
+ "pin-project-lite",
773
+ "tokio",
774
+ "tower-service",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "icu_collections"
779
+ version = "2.1.1"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
782
+ dependencies = [
783
+ "displaydoc",
784
+ "potential_utf",
785
+ "yoke",
786
+ "zerofrom",
787
+ "zerovec",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "icu_locale_core"
792
+ version = "2.1.1"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
795
+ dependencies = [
796
+ "displaydoc",
797
+ "litemap",
798
+ "tinystr",
799
+ "writeable",
800
+ "zerovec",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "icu_normalizer"
805
+ version = "2.1.1"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
808
+ dependencies = [
809
+ "icu_collections",
810
+ "icu_normalizer_data",
811
+ "icu_properties",
812
+ "icu_provider",
813
+ "smallvec",
814
+ "zerovec",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "icu_normalizer_data"
819
+ version = "2.1.1"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
822
+
823
+ [[package]]
824
+ name = "icu_properties"
825
+ version = "2.1.2"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
828
+ dependencies = [
829
+ "icu_collections",
830
+ "icu_locale_core",
831
+ "icu_properties_data",
832
+ "icu_provider",
833
+ "zerotrie",
834
+ "zerovec",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "icu_properties_data"
839
+ version = "2.1.2"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
842
+
843
+ [[package]]
844
+ name = "icu_provider"
845
+ version = "2.1.1"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
848
+ dependencies = [
849
+ "displaydoc",
850
+ "icu_locale_core",
851
+ "writeable",
852
+ "yoke",
853
+ "zerofrom",
854
+ "zerotrie",
855
+ "zerovec",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "id-arena"
860
+ version = "2.3.0"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
863
+
864
+ [[package]]
865
+ name = "idna"
866
+ version = "1.1.0"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
869
+ dependencies = [
870
+ "idna_adapter",
871
+ "smallvec",
872
+ "utf8_iter",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "idna_adapter"
877
+ version = "1.2.1"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
880
+ dependencies = [
881
+ "icu_normalizer",
882
+ "icu_properties",
883
+ ]
884
+
885
+ [[package]]
886
+ name = "indexmap"
887
+ version = "2.14.0"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
890
+ dependencies = [
891
+ "equivalent",
892
+ "hashbrown 0.17.0",
893
+ "serde",
894
+ "serde_core",
895
+ ]
896
+
897
+ [[package]]
898
+ name = "indoc"
899
+ version = "2.0.7"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
902
+ dependencies = [
903
+ "rustversion",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "is-terminal"
908
+ version = "0.4.17"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
911
+ dependencies = [
912
+ "hermit-abi",
913
+ "libc",
914
+ "windows-sys 0.61.2",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "is_terminal_polyfill"
919
+ version = "1.70.2"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
922
+
923
+ [[package]]
924
+ name = "itertools"
925
+ version = "0.10.5"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
928
+ dependencies = [
929
+ "either",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "itertools"
934
+ version = "0.12.1"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
937
+ dependencies = [
938
+ "either",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "itoa"
943
+ version = "1.0.18"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
946
+
947
+ [[package]]
948
+ name = "jni"
949
+ version = "0.21.1"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
952
+ dependencies = [
953
+ "cesu8",
954
+ "cfg-if",
955
+ "combine",
956
+ "jni-sys 0.3.1",
957
+ "log",
958
+ "thiserror 1.0.69",
959
+ "walkdir",
960
+ "windows-sys 0.45.0",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "jni-sys"
965
+ version = "0.3.1"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
968
+ dependencies = [
969
+ "jni-sys 0.4.1",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "jni-sys"
974
+ version = "0.4.1"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
977
+ dependencies = [
978
+ "jni-sys-macros",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "jni-sys-macros"
983
+ version = "0.4.1"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
986
+ dependencies = [
987
+ "quote",
988
+ "syn",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "js-sys"
993
+ version = "0.3.97"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
996
+ dependencies = [
997
+ "cfg-if",
998
+ "futures-util",
999
+ "once_cell",
1000
+ "wasm-bindgen",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "lazy_static"
1005
+ version = "1.5.0"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1008
+
1009
+ [[package]]
1010
+ name = "leb128fmt"
1011
+ version = "0.1.0"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1014
+
1015
+ [[package]]
1016
+ name = "libc"
1017
+ version = "0.2.186"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1020
+
1021
+ [[package]]
1022
+ name = "libloading"
1023
+ version = "0.8.9"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1026
+ dependencies = [
1027
+ "cfg-if",
1028
+ "windows-link",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "libm"
1033
+ version = "0.2.16"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1036
+
1037
+ [[package]]
1038
+ name = "linux-raw-sys"
1039
+ version = "0.12.1"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1042
+
1043
+ [[package]]
1044
+ name = "litemap"
1045
+ version = "0.8.2"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1048
+
1049
+ [[package]]
1050
+ name = "log"
1051
+ version = "0.4.29"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1054
+
1055
+ [[package]]
1056
+ name = "matchers"
1057
+ version = "0.2.0"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1060
+ dependencies = [
1061
+ "regex-automata",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "md-5"
1066
+ version = "0.10.6"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1069
+ dependencies = [
1070
+ "cfg-if",
1071
+ "digest",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "memchr"
1076
+ version = "2.8.0"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1079
+
1080
+ [[package]]
1081
+ name = "memoffset"
1082
+ version = "0.9.1"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1085
+ dependencies = [
1086
+ "autocfg",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "minimal-lexical"
1091
+ version = "0.2.1"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1094
+
1095
+ [[package]]
1096
+ name = "mio"
1097
+ version = "1.2.0"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1100
+ dependencies = [
1101
+ "libc",
1102
+ "wasi",
1103
+ "windows-sys 0.61.2",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "nom"
1108
+ version = "7.1.3"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1111
+ dependencies = [
1112
+ "memchr",
1113
+ "minimal-lexical",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "nu-ansi-term"
1118
+ version = "0.50.3"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1121
+ dependencies = [
1122
+ "windows-sys 0.61.2",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "num-conv"
1127
+ version = "0.1.0"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1130
+
1131
+ [[package]]
1132
+ name = "num-traits"
1133
+ version = "0.2.19"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1136
+ dependencies = [
1137
+ "autocfg",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "once_cell"
1142
+ version = "1.21.4"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1145
+
1146
+ [[package]]
1147
+ name = "once_cell_polyfill"
1148
+ version = "1.70.2"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1151
+
1152
+ [[package]]
1153
+ name = "oorandom"
1154
+ version = "11.1.5"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1157
+
1158
+ [[package]]
1159
+ name = "openssl-probe"
1160
+ version = "0.1.6"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1163
+
1164
+ [[package]]
1165
+ name = "os_socketaddr"
1166
+ version = "0.2.5"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "fa149f3ec09cadeb41968390fcd71e6ea038a9a373d1d4eb070f4d9484d4b244"
1169
+ dependencies = [
1170
+ "libc",
1171
+ "winapi",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "pem"
1176
+ version = "3.0.6"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
1179
+ dependencies = [
1180
+ "base64",
1181
+ "serde_core",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "percent-encoding"
1186
+ version = "2.3.2"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1189
+
1190
+ [[package]]
1191
+ name = "pin-project-lite"
1192
+ version = "0.2.17"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1195
+
1196
+ [[package]]
1197
+ name = "pkg-config"
1198
+ version = "0.3.33"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1201
+
1202
+ [[package]]
1203
+ name = "plotters"
1204
+ version = "0.3.7"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1207
+ dependencies = [
1208
+ "num-traits",
1209
+ "plotters-backend",
1210
+ "plotters-svg",
1211
+ "wasm-bindgen",
1212
+ "web-sys",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "plotters-backend"
1217
+ version = "0.3.7"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1220
+
1221
+ [[package]]
1222
+ name = "plotters-svg"
1223
+ version = "0.3.7"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1226
+ dependencies = [
1227
+ "plotters-backend",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "portable-atomic"
1232
+ version = "1.13.1"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1235
+
1236
+ [[package]]
1237
+ name = "potential_utf"
1238
+ version = "0.1.5"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1241
+ dependencies = [
1242
+ "zerovec",
1243
+ ]
1244
+
1245
+ [[package]]
1246
+ name = "powerfmt"
1247
+ version = "0.2.0"
1248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1249
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1250
+
1251
+ [[package]]
1252
+ name = "ppv-lite86"
1253
+ version = "0.2.21"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1256
+ dependencies = [
1257
+ "zerocopy",
1258
+ ]
1259
+
1260
+ [[package]]
1261
+ name = "prettyplease"
1262
+ version = "0.2.37"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1265
+ dependencies = [
1266
+ "proc-macro2",
1267
+ "syn",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "proc-macro2"
1272
+ version = "1.0.106"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1275
+ dependencies = [
1276
+ "unicode-ident",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "proptest"
1281
+ version = "1.11.0"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1284
+ dependencies = [
1285
+ "bit-set",
1286
+ "bit-vec",
1287
+ "bitflags",
1288
+ "num-traits",
1289
+ "rand",
1290
+ "rand_chacha",
1291
+ "rand_xorshift",
1292
+ "regex-syntax",
1293
+ "rusty-fork",
1294
+ "tempfile",
1295
+ "unarray",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "pyo3"
1300
+ version = "0.22.6"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
1303
+ dependencies = [
1304
+ "cfg-if",
1305
+ "indoc",
1306
+ "libc",
1307
+ "memoffset",
1308
+ "once_cell",
1309
+ "portable-atomic",
1310
+ "pyo3-build-config",
1311
+ "pyo3-ffi",
1312
+ "pyo3-macros",
1313
+ "unindent",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "pyo3-build-config"
1318
+ version = "0.22.6"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
1321
+ dependencies = [
1322
+ "once_cell",
1323
+ "target-lexicon",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "pyo3-ffi"
1328
+ version = "0.22.6"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
1331
+ dependencies = [
1332
+ "libc",
1333
+ "pyo3-build-config",
1334
+ ]
1335
+
1336
+ [[package]]
1337
+ name = "pyo3-macros"
1338
+ version = "0.22.6"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
1341
+ dependencies = [
1342
+ "proc-macro2",
1343
+ "pyo3-macros-backend",
1344
+ "quote",
1345
+ "syn",
1346
+ ]
1347
+
1348
+ [[package]]
1349
+ name = "pyo3-macros-backend"
1350
+ version = "0.22.6"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
1353
+ dependencies = [
1354
+ "heck",
1355
+ "proc-macro2",
1356
+ "pyo3-build-config",
1357
+ "quote",
1358
+ "syn",
1359
+ ]
1360
+
1361
+ [[package]]
1362
+ name = "quick-error"
1363
+ version = "1.2.3"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1366
+
1367
+ [[package]]
1368
+ name = "quote"
1369
+ version = "1.0.45"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1372
+ dependencies = [
1373
+ "proc-macro2",
1374
+ ]
1375
+
1376
+ [[package]]
1377
+ name = "r-efi"
1378
+ version = "5.3.0"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1381
+
1382
+ [[package]]
1383
+ name = "r-efi"
1384
+ version = "6.0.0"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1387
+
1388
+ [[package]]
1389
+ name = "rand"
1390
+ version = "0.9.4"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1393
+ dependencies = [
1394
+ "rand_chacha",
1395
+ "rand_core",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "rand_chacha"
1400
+ version = "0.9.0"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1403
+ dependencies = [
1404
+ "ppv-lite86",
1405
+ "rand_core",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "rand_core"
1410
+ version = "0.9.5"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1413
+ dependencies = [
1414
+ "getrandom 0.3.4",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "rand_xorshift"
1419
+ version = "0.4.0"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1422
+ dependencies = [
1423
+ "rand_core",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "rayon"
1428
+ version = "1.12.0"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1431
+ dependencies = [
1432
+ "either",
1433
+ "rayon-core",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "rayon-core"
1438
+ version = "1.13.0"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1441
+ dependencies = [
1442
+ "crossbeam-deque",
1443
+ "crossbeam-utils",
1444
+ ]
1445
+
1446
+ [[package]]
1447
+ name = "rcgen"
1448
+ version = "0.13.2"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2"
1451
+ dependencies = [
1452
+ "pem",
1453
+ "ring",
1454
+ "rustls-pki-types",
1455
+ "time",
1456
+ "yasna",
1457
+ ]
1458
+
1459
+ [[package]]
1460
+ name = "regex"
1461
+ version = "1.12.3"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1464
+ dependencies = [
1465
+ "aho-corasick",
1466
+ "memchr",
1467
+ "regex-automata",
1468
+ "regex-syntax",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "regex-automata"
1473
+ version = "0.4.14"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1476
+ dependencies = [
1477
+ "aho-corasick",
1478
+ "memchr",
1479
+ "regex-syntax",
1480
+ ]
1481
+
1482
+ [[package]]
1483
+ name = "regex-syntax"
1484
+ version = "0.8.10"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1487
+
1488
+ [[package]]
1489
+ name = "ring"
1490
+ version = "0.17.14"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1493
+ dependencies = [
1494
+ "cc",
1495
+ "cfg-if",
1496
+ "getrandom 0.2.17",
1497
+ "libc",
1498
+ "untrusted",
1499
+ "windows-sys 0.52.0",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "rist-sys"
1504
+ version = "0.2.0"
1505
+ dependencies = [
1506
+ "bindgen",
1507
+ "cc",
1508
+ "cmake",
1509
+ "libc",
1510
+ "pkg-config",
1511
+ ]
1512
+
1513
+ [[package]]
1514
+ name = "rtsp-types"
1515
+ version = "0.1.3"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "f47bf238c3da7994ef66a71724f385cb1ee25dcf04a156402d2727ad84dc1433"
1518
+ dependencies = [
1519
+ "cookie-factory",
1520
+ "nom",
1521
+ "tinyvec",
1522
+ "url",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "rustc-hash"
1527
+ version = "2.1.2"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1530
+
1531
+ [[package]]
1532
+ name = "rustix"
1533
+ version = "1.1.4"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1536
+ dependencies = [
1537
+ "bitflags",
1538
+ "errno",
1539
+ "libc",
1540
+ "linux-raw-sys",
1541
+ "windows-sys 0.61.2",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "rustls"
1546
+ version = "0.23.40"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1549
+ dependencies = [
1550
+ "once_cell",
1551
+ "ring",
1552
+ "rustls-pki-types",
1553
+ "rustls-webpki",
1554
+ "subtle",
1555
+ "zeroize",
1556
+ ]
1557
+
1558
+ [[package]]
1559
+ name = "rustls-native-certs"
1560
+ version = "0.7.3"
1561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+ checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5"
1563
+ dependencies = [
1564
+ "openssl-probe",
1565
+ "rustls-pemfile",
1566
+ "rustls-pki-types",
1567
+ "schannel",
1568
+ "security-framework",
1569
+ ]
1570
+
1571
+ [[package]]
1572
+ name = "rustls-pemfile"
1573
+ version = "2.2.0"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
1576
+ dependencies = [
1577
+ "rustls-pki-types",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "rustls-pki-types"
1582
+ version = "1.14.1"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1585
+ dependencies = [
1586
+ "zeroize",
1587
+ ]
1588
+
1589
+ [[package]]
1590
+ name = "rustls-webpki"
1591
+ version = "0.103.13"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1594
+ dependencies = [
1595
+ "ring",
1596
+ "rustls-pki-types",
1597
+ "untrusted",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "rustversion"
1602
+ version = "1.0.22"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1605
+
1606
+ [[package]]
1607
+ name = "rusty-fork"
1608
+ version = "0.3.1"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1611
+ dependencies = [
1612
+ "fnv",
1613
+ "quick-error",
1614
+ "tempfile",
1615
+ "wait-timeout",
1616
+ ]
1617
+
1618
+ [[package]]
1619
+ name = "same-file"
1620
+ version = "1.0.6"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1623
+ dependencies = [
1624
+ "winapi-util",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "schannel"
1629
+ version = "0.1.29"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1632
+ dependencies = [
1633
+ "windows-sys 0.61.2",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "sdp-types"
1638
+ version = "0.1.8"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "9bb6c636ace20de73fb9536017f9ef069b258308a6c341a4aaf3d2fd11afc570"
1641
+ dependencies = [
1642
+ "bstr",
1643
+ "fallible-iterator",
1644
+ ]
1645
+
1646
+ [[package]]
1647
+ name = "secrecy"
1648
+ version = "0.10.3"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "e891af845473308773346dc847b2c23ee78fe442e0472ac50e22a18a93d3ae5a"
1651
+ dependencies = [
1652
+ "zeroize",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "security-framework"
1657
+ version = "2.11.1"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
1660
+ dependencies = [
1661
+ "bitflags",
1662
+ "core-foundation",
1663
+ "core-foundation-sys",
1664
+ "libc",
1665
+ "security-framework-sys",
1666
+ ]
1667
+
1668
+ [[package]]
1669
+ name = "security-framework-sys"
1670
+ version = "2.17.0"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1673
+ dependencies = [
1674
+ "core-foundation-sys",
1675
+ "libc",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "semver"
1680
+ version = "1.0.28"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1683
+
1684
+ [[package]]
1685
+ name = "serde"
1686
+ version = "1.0.228"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1689
+ dependencies = [
1690
+ "serde_core",
1691
+ "serde_derive",
1692
+ ]
1693
+
1694
+ [[package]]
1695
+ name = "serde_core"
1696
+ version = "1.0.228"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1699
+ dependencies = [
1700
+ "serde_derive",
1701
+ ]
1702
+
1703
+ [[package]]
1704
+ name = "serde_derive"
1705
+ version = "1.0.228"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1708
+ dependencies = [
1709
+ "proc-macro2",
1710
+ "quote",
1711
+ "syn",
1712
+ ]
1713
+
1714
+ [[package]]
1715
+ name = "serde_json"
1716
+ version = "1.0.149"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1719
+ dependencies = [
1720
+ "itoa",
1721
+ "memchr",
1722
+ "serde",
1723
+ "serde_core",
1724
+ "zmij",
1725
+ ]
1726
+
1727
+ [[package]]
1728
+ name = "serde_spanned"
1729
+ version = "0.6.9"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1732
+ dependencies = [
1733
+ "serde",
1734
+ ]
1735
+
1736
+ [[package]]
1737
+ name = "serde_spanned"
1738
+ version = "1.1.1"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1741
+ dependencies = [
1742
+ "serde_core",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "sha2"
1747
+ version = "0.10.9"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1750
+ dependencies = [
1751
+ "cfg-if",
1752
+ "cpufeatures",
1753
+ "digest",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "sharded-slab"
1758
+ version = "0.1.7"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1761
+ dependencies = [
1762
+ "lazy_static",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "shlex"
1767
+ version = "1.3.0"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1770
+
1771
+ [[package]]
1772
+ name = "slab"
1773
+ version = "0.4.12"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1776
+
1777
+ [[package]]
1778
+ name = "smallvec"
1779
+ version = "1.15.1"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1782
+
1783
+ [[package]]
1784
+ name = "socket2"
1785
+ version = "0.5.10"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
1788
+ dependencies = [
1789
+ "libc",
1790
+ "windows-sys 0.52.0",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "socket2"
1795
+ version = "0.6.3"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1798
+ dependencies = [
1799
+ "libc",
1800
+ "windows-sys 0.61.2",
1801
+ ]
1802
+
1803
+ [[package]]
1804
+ name = "spin"
1805
+ version = "0.9.8"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1808
+
1809
+ [[package]]
1810
+ name = "srt-sys"
1811
+ version = "0.2.0"
1812
+ dependencies = [
1813
+ "bindgen",
1814
+ "cmake",
1815
+ "libc",
1816
+ "pkg-config",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "stable_deref_trait"
1821
+ version = "1.2.1"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1824
+
1825
+ [[package]]
1826
+ name = "strsim"
1827
+ version = "0.11.1"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1830
+
1831
+ [[package]]
1832
+ name = "subtle"
1833
+ version = "2.6.1"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1836
+
1837
+ [[package]]
1838
+ name = "syn"
1839
+ version = "2.0.117"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1842
+ dependencies = [
1843
+ "proc-macro2",
1844
+ "quote",
1845
+ "unicode-ident",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "synstructure"
1850
+ version = "0.13.2"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1853
+ dependencies = [
1854
+ "proc-macro2",
1855
+ "quote",
1856
+ "syn",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "target-lexicon"
1861
+ version = "0.12.16"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1864
+
1865
+ [[package]]
1866
+ name = "tempfile"
1867
+ version = "3.27.0"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1870
+ dependencies = [
1871
+ "fastrand",
1872
+ "getrandom 0.4.2",
1873
+ "once_cell",
1874
+ "rustix",
1875
+ "windows-sys 0.61.2",
1876
+ ]
1877
+
1878
+ [[package]]
1879
+ name = "thiserror"
1880
+ version = "1.0.69"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1883
+ dependencies = [
1884
+ "thiserror-impl 1.0.69",
1885
+ ]
1886
+
1887
+ [[package]]
1888
+ name = "thiserror"
1889
+ version = "2.0.18"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1892
+ dependencies = [
1893
+ "thiserror-impl 2.0.18",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "thiserror-impl"
1898
+ version = "1.0.69"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1901
+ dependencies = [
1902
+ "proc-macro2",
1903
+ "quote",
1904
+ "syn",
1905
+ ]
1906
+
1907
+ [[package]]
1908
+ name = "thiserror-impl"
1909
+ version = "2.0.18"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1912
+ dependencies = [
1913
+ "proc-macro2",
1914
+ "quote",
1915
+ "syn",
1916
+ ]
1917
+
1918
+ [[package]]
1919
+ name = "thread_local"
1920
+ version = "1.1.9"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1923
+ dependencies = [
1924
+ "cfg-if",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "time"
1929
+ version = "0.3.41"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
1932
+ dependencies = [
1933
+ "deranged",
1934
+ "num-conv",
1935
+ "powerfmt",
1936
+ "serde",
1937
+ "time-core",
1938
+ ]
1939
+
1940
+ [[package]]
1941
+ name = "time-core"
1942
+ version = "0.1.4"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
1945
+
1946
+ [[package]]
1947
+ name = "tinystr"
1948
+ version = "0.8.3"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1951
+ dependencies = [
1952
+ "displaydoc",
1953
+ "zerovec",
1954
+ ]
1955
+
1956
+ [[package]]
1957
+ name = "tinytemplate"
1958
+ version = "1.2.1"
1959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1960
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1961
+ dependencies = [
1962
+ "serde",
1963
+ "serde_json",
1964
+ ]
1965
+
1966
+ [[package]]
1967
+ name = "tinyvec"
1968
+ version = "1.11.0"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1971
+ dependencies = [
1972
+ "tinyvec_macros",
1973
+ ]
1974
+
1975
+ [[package]]
1976
+ name = "tinyvec_macros"
1977
+ version = "0.1.1"
1978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1979
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1980
+
1981
+ [[package]]
1982
+ name = "tokio"
1983
+ version = "1.52.3"
1984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1985
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1986
+ dependencies = [
1987
+ "bytes",
1988
+ "libc",
1989
+ "mio",
1990
+ "pin-project-lite",
1991
+ "socket2 0.6.3",
1992
+ "tokio-macros",
1993
+ "windows-sys 0.61.2",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "tokio-macros"
1998
+ version = "2.7.0"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2001
+ dependencies = [
2002
+ "proc-macro2",
2003
+ "quote",
2004
+ "syn",
2005
+ ]
2006
+
2007
+ [[package]]
2008
+ name = "tokio-rustls"
2009
+ version = "0.26.4"
2010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2011
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2012
+ dependencies = [
2013
+ "rustls",
2014
+ "tokio",
2015
+ ]
2016
+
2017
+ [[package]]
2018
+ name = "tokio-util"
2019
+ version = "0.7.18"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2022
+ dependencies = [
2023
+ "bytes",
2024
+ "futures-core",
2025
+ "futures-sink",
2026
+ "pin-project-lite",
2027
+ "tokio",
2028
+ ]
2029
+
2030
+ [[package]]
2031
+ name = "toml"
2032
+ version = "0.8.23"
2033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2034
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2035
+ dependencies = [
2036
+ "serde",
2037
+ "serde_spanned 0.6.9",
2038
+ "toml_datetime 0.6.11",
2039
+ "toml_edit",
2040
+ ]
2041
+
2042
+ [[package]]
2043
+ name = "toml"
2044
+ version = "0.9.12+spec-1.1.0"
2045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2046
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
2047
+ dependencies = [
2048
+ "indexmap",
2049
+ "serde_core",
2050
+ "serde_spanned 1.1.1",
2051
+ "toml_datetime 0.7.5+spec-1.1.0",
2052
+ "toml_parser",
2053
+ "toml_writer",
2054
+ "winnow 0.7.15",
2055
+ ]
2056
+
2057
+ [[package]]
2058
+ name = "toml_datetime"
2059
+ version = "0.6.11"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2062
+ dependencies = [
2063
+ "serde",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "toml_datetime"
2068
+ version = "0.7.5+spec-1.1.0"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2071
+ dependencies = [
2072
+ "serde_core",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "toml_edit"
2077
+ version = "0.22.27"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2080
+ dependencies = [
2081
+ "indexmap",
2082
+ "serde",
2083
+ "serde_spanned 0.6.9",
2084
+ "toml_datetime 0.6.11",
2085
+ "toml_write",
2086
+ "winnow 0.7.15",
2087
+ ]
2088
+
2089
+ [[package]]
2090
+ name = "toml_parser"
2091
+ version = "1.1.2+spec-1.1.0"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
2094
+ dependencies = [
2095
+ "winnow 1.0.2",
2096
+ ]
2097
+
2098
+ [[package]]
2099
+ name = "toml_write"
2100
+ version = "0.1.2"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2103
+
2104
+ [[package]]
2105
+ name = "toml_writer"
2106
+ version = "1.1.1+spec-1.1.0"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
2109
+
2110
+ [[package]]
2111
+ name = "tower-service"
2112
+ version = "0.3.3"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2115
+
2116
+ [[package]]
2117
+ name = "tracing"
2118
+ version = "0.1.44"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2121
+ dependencies = [
2122
+ "pin-project-lite",
2123
+ "tracing-core",
2124
+ ]
2125
+
2126
+ [[package]]
2127
+ name = "tracing-core"
2128
+ version = "0.1.36"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2131
+ dependencies = [
2132
+ "once_cell",
2133
+ "valuable",
2134
+ ]
2135
+
2136
+ [[package]]
2137
+ name = "tracing-log"
2138
+ version = "0.2.0"
2139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2140
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2141
+ dependencies = [
2142
+ "log",
2143
+ "once_cell",
2144
+ "tracing-core",
2145
+ ]
2146
+
2147
+ [[package]]
2148
+ name = "tracing-subscriber"
2149
+ version = "0.3.23"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2152
+ dependencies = [
2153
+ "matchers",
2154
+ "nu-ansi-term",
2155
+ "once_cell",
2156
+ "regex-automata",
2157
+ "sharded-slab",
2158
+ "smallvec",
2159
+ "thread_local",
2160
+ "tracing",
2161
+ "tracing-core",
2162
+ "tracing-log",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "tracing-test"
2167
+ version = "0.2.6"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "19a4c448db514d4f24c5ddb9f73f2ee71bfb24c526cf0c570ba142d1119e0051"
2170
+ dependencies = [
2171
+ "tracing-core",
2172
+ "tracing-subscriber",
2173
+ "tracing-test-macro",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "tracing-test-macro"
2178
+ version = "0.2.6"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "ad06847b7afb65c7866a36664b75c40b895e318cea4f71299f013fb22965329d"
2181
+ dependencies = [
2182
+ "quote",
2183
+ "syn",
2184
+ ]
2185
+
2186
+ [[package]]
2187
+ name = "tst-c"
2188
+ version = "0.2.0"
2189
+ dependencies = [
2190
+ "cbindgen",
2191
+ "cc",
2192
+ "libc",
2193
+ "tempfile",
2194
+ "tst-c-core",
2195
+ "tst-core",
2196
+ "tst-pipeline",
2197
+ "tst-srt",
2198
+ "tst-test-helpers",
2199
+ ]
2200
+
2201
+ [[package]]
2202
+ name = "tst-c-core"
2203
+ version = "0.2.0"
2204
+ dependencies = [
2205
+ "critical-section",
2206
+ "libc",
2207
+ "secrecy",
2208
+ "spin",
2209
+ "thiserror 2.0.18",
2210
+ "tst-core",
2211
+ "tst-pipeline",
2212
+ "tst-rist",
2213
+ "tst-rtp",
2214
+ "tst-srt",
2215
+ "tst-tcp",
2216
+ "tst-udp",
2217
+ ]
2218
+
2219
+ [[package]]
2220
+ name = "tst-core"
2221
+ version = "0.2.0"
2222
+ dependencies = [
2223
+ "criterion",
2224
+ "hashbrown 0.15.5",
2225
+ "libc",
2226
+ "libm",
2227
+ "log",
2228
+ "portable-atomic",
2229
+ "proptest",
2230
+ "serde",
2231
+ "serde_json",
2232
+ "sha2",
2233
+ "socket2 0.5.10",
2234
+ "tempfile",
2235
+ "thiserror 2.0.18",
2236
+ "toml 0.8.23",
2237
+ "tracing",
2238
+ "tracing-test",
2239
+ "tst-test-helpers",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "tst-examples"
2244
+ version = "0.0.0"
2245
+ dependencies = [
2246
+ "tst-core",
2247
+ "tst-pipeline",
2248
+ "tst-rist",
2249
+ "tst-rtp",
2250
+ "tst-srt",
2251
+ "tst-tcp",
2252
+ "tst-udp",
2253
+ ]
2254
+
2255
+ [[package]]
2256
+ name = "tst-integration"
2257
+ version = "0.2.0"
2258
+ dependencies = [
2259
+ "serde",
2260
+ "serde_json",
2261
+ "sha2",
2262
+ "toml 0.8.23",
2263
+ "tst-core",
2264
+ ]
2265
+
2266
+ [[package]]
2267
+ name = "tst-jni"
2268
+ version = "0.2.0"
2269
+ dependencies = [
2270
+ "jni",
2271
+ "secrecy",
2272
+ "tst-core",
2273
+ "tst-pipeline",
2274
+ "tst-rtp",
2275
+ "tst-srt",
2276
+ ]
2277
+
2278
+ [[package]]
2279
+ name = "tst-pipeline"
2280
+ version = "0.2.0"
2281
+ dependencies = [
2282
+ "criterion",
2283
+ "proptest",
2284
+ "spin",
2285
+ "thiserror 2.0.18",
2286
+ "tracing",
2287
+ "tracing-test",
2288
+ "tst-core",
2289
+ "tst-test-helpers",
2290
+ ]
2291
+
2292
+ [[package]]
2293
+ name = "tst-py"
2294
+ version = "0.2.0"
2295
+ dependencies = [
2296
+ "pyo3",
2297
+ "pyo3-build-config",
2298
+ "secrecy",
2299
+ "tst-core",
2300
+ "tst-pipeline",
2301
+ "tst-rist",
2302
+ "tst-rtp",
2303
+ "tst-srt",
2304
+ "tst-tcp",
2305
+ "tst-udp",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "tst-rist"
2310
+ version = "0.2.0"
2311
+ dependencies = [
2312
+ "libc",
2313
+ "rist-sys",
2314
+ "secrecy",
2315
+ "thiserror 2.0.18",
2316
+ "tracing",
2317
+ "tst-core",
2318
+ "tst-pipeline",
2319
+ "tst-test-helpers",
2320
+ ]
2321
+
2322
+ [[package]]
2323
+ name = "tst-rtp"
2324
+ version = "0.2.0"
2325
+ dependencies = [
2326
+ "base64",
2327
+ "bytes",
2328
+ "getrandom 0.2.17",
2329
+ "libc",
2330
+ "md-5",
2331
+ "proptest",
2332
+ "rcgen",
2333
+ "rtsp-types",
2334
+ "rustls",
2335
+ "rustls-native-certs",
2336
+ "rustls-pemfile",
2337
+ "rustls-pki-types",
2338
+ "sdp-types",
2339
+ "secrecy",
2340
+ "sha2",
2341
+ "socket2 0.5.10",
2342
+ "tempfile",
2343
+ "thiserror 2.0.18",
2344
+ "tokio",
2345
+ "tokio-rustls",
2346
+ "tokio-util",
2347
+ "tracing",
2348
+ "tst-core",
2349
+ "tst-pipeline",
2350
+ "tst-test-helpers",
2351
+ ]
2352
+
2353
+ [[package]]
2354
+ name = "tst-srt"
2355
+ version = "0.2.0"
2356
+ dependencies = [
2357
+ "libc",
2358
+ "os_socketaddr",
2359
+ "proptest",
2360
+ "secrecy",
2361
+ "srt-sys",
2362
+ "thiserror 2.0.18",
2363
+ "tracing",
2364
+ "tracing-test",
2365
+ "tst-core",
2366
+ "tst-pipeline",
2367
+ "tst-test-helpers",
2368
+ ]
2369
+
2370
+ [[package]]
2371
+ name = "tst-tcp"
2372
+ version = "0.2.0"
2373
+ dependencies = [
2374
+ "base64",
2375
+ "bytes",
2376
+ "http-body-util",
2377
+ "hyper",
2378
+ "hyper-util",
2379
+ "rustls",
2380
+ "rustls-native-certs",
2381
+ "rustls-pemfile",
2382
+ "socket2 0.5.10",
2383
+ "thiserror 2.0.18",
2384
+ "tokio",
2385
+ "tokio-rustls",
2386
+ "tokio-util",
2387
+ "tracing",
2388
+ "tst-core",
2389
+ "tst-pipeline",
2390
+ ]
2391
+
2392
+ [[package]]
2393
+ name = "tst-test-helpers"
2394
+ version = "0.0.0"
2395
+ dependencies = [
2396
+ "tst-core",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "tst-udp"
2401
+ version = "0.2.0"
2402
+ dependencies = [
2403
+ "libc",
2404
+ "socket2 0.5.10",
2405
+ "thiserror 2.0.18",
2406
+ "tracing",
2407
+ "tst-core",
2408
+ "tst-pipeline",
2409
+ "tst-test-helpers",
2410
+ ]
2411
+
2412
+ [[package]]
2413
+ name = "typenum"
2414
+ version = "1.20.0"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
2417
+
2418
+ [[package]]
2419
+ name = "unarray"
2420
+ version = "0.1.4"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
2423
+
2424
+ [[package]]
2425
+ name = "unicode-ident"
2426
+ version = "1.0.24"
2427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2428
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2429
+
2430
+ [[package]]
2431
+ name = "unicode-xid"
2432
+ version = "0.2.6"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2435
+
2436
+ [[package]]
2437
+ name = "unindent"
2438
+ version = "0.2.4"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2441
+
2442
+ [[package]]
2443
+ name = "untrusted"
2444
+ version = "0.9.0"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2447
+
2448
+ [[package]]
2449
+ name = "url"
2450
+ version = "2.5.8"
2451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2453
+ dependencies = [
2454
+ "form_urlencoded",
2455
+ "idna",
2456
+ "percent-encoding",
2457
+ "serde",
2458
+ ]
2459
+
2460
+ [[package]]
2461
+ name = "utf8_iter"
2462
+ version = "1.0.4"
2463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2464
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2465
+
2466
+ [[package]]
2467
+ name = "utf8parse"
2468
+ version = "0.2.2"
2469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2470
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2471
+
2472
+ [[package]]
2473
+ name = "valuable"
2474
+ version = "0.1.1"
2475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2476
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2477
+
2478
+ [[package]]
2479
+ name = "version_check"
2480
+ version = "0.9.5"
2481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2482
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2483
+
2484
+ [[package]]
2485
+ name = "wait-timeout"
2486
+ version = "0.2.1"
2487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2488
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
2489
+ dependencies = [
2490
+ "libc",
2491
+ ]
2492
+
2493
+ [[package]]
2494
+ name = "walkdir"
2495
+ version = "2.5.0"
2496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2497
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2498
+ dependencies = [
2499
+ "same-file",
2500
+ "winapi-util",
2501
+ ]
2502
+
2503
+ [[package]]
2504
+ name = "wasi"
2505
+ version = "0.11.1+wasi-snapshot-preview1"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2508
+
2509
+ [[package]]
2510
+ name = "wasip2"
2511
+ version = "1.0.3+wasi-0.2.9"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
2514
+ dependencies = [
2515
+ "wit-bindgen 0.57.1",
2516
+ ]
2517
+
2518
+ [[package]]
2519
+ name = "wasip3"
2520
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2523
+ dependencies = [
2524
+ "wit-bindgen 0.51.0",
2525
+ ]
2526
+
2527
+ [[package]]
2528
+ name = "wasm-bindgen"
2529
+ version = "0.2.120"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
2532
+ dependencies = [
2533
+ "cfg-if",
2534
+ "once_cell",
2535
+ "rustversion",
2536
+ "wasm-bindgen-macro",
2537
+ "wasm-bindgen-shared",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "wasm-bindgen-macro"
2542
+ version = "0.2.120"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
2545
+ dependencies = [
2546
+ "quote",
2547
+ "wasm-bindgen-macro-support",
2548
+ ]
2549
+
2550
+ [[package]]
2551
+ name = "wasm-bindgen-macro-support"
2552
+ version = "0.2.120"
2553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2554
+ checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
2555
+ dependencies = [
2556
+ "bumpalo",
2557
+ "proc-macro2",
2558
+ "quote",
2559
+ "syn",
2560
+ "wasm-bindgen-shared",
2561
+ ]
2562
+
2563
+ [[package]]
2564
+ name = "wasm-bindgen-shared"
2565
+ version = "0.2.120"
2566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2567
+ checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
2568
+ dependencies = [
2569
+ "unicode-ident",
2570
+ ]
2571
+
2572
+ [[package]]
2573
+ name = "wasm-encoder"
2574
+ version = "0.244.0"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2577
+ dependencies = [
2578
+ "leb128fmt",
2579
+ "wasmparser",
2580
+ ]
2581
+
2582
+ [[package]]
2583
+ name = "wasm-metadata"
2584
+ version = "0.244.0"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2587
+ dependencies = [
2588
+ "anyhow",
2589
+ "indexmap",
2590
+ "wasm-encoder",
2591
+ "wasmparser",
2592
+ ]
2593
+
2594
+ [[package]]
2595
+ name = "wasmparser"
2596
+ version = "0.244.0"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2599
+ dependencies = [
2600
+ "bitflags",
2601
+ "hashbrown 0.15.5",
2602
+ "indexmap",
2603
+ "semver",
2604
+ ]
2605
+
2606
+ [[package]]
2607
+ name = "web-sys"
2608
+ version = "0.3.97"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "2eadbac71025cd7b0834f20d1fe8472e8495821b4e9801eb0a60bd1f19827602"
2611
+ dependencies = [
2612
+ "js-sys",
2613
+ "wasm-bindgen",
2614
+ ]
2615
+
2616
+ [[package]]
2617
+ name = "winapi"
2618
+ version = "0.3.9"
2619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2620
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2621
+ dependencies = [
2622
+ "winapi-i686-pc-windows-gnu",
2623
+ "winapi-x86_64-pc-windows-gnu",
2624
+ ]
2625
+
2626
+ [[package]]
2627
+ name = "winapi-i686-pc-windows-gnu"
2628
+ version = "0.4.0"
2629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2631
+
2632
+ [[package]]
2633
+ name = "winapi-util"
2634
+ version = "0.1.11"
2635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2636
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2637
+ dependencies = [
2638
+ "windows-sys 0.61.2",
2639
+ ]
2640
+
2641
+ [[package]]
2642
+ name = "winapi-x86_64-pc-windows-gnu"
2643
+ version = "0.4.0"
2644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2645
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2646
+
2647
+ [[package]]
2648
+ name = "windows-link"
2649
+ version = "0.2.1"
2650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2651
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2652
+
2653
+ [[package]]
2654
+ name = "windows-sys"
2655
+ version = "0.45.0"
2656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2657
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
2658
+ dependencies = [
2659
+ "windows-targets 0.42.2",
2660
+ ]
2661
+
2662
+ [[package]]
2663
+ name = "windows-sys"
2664
+ version = "0.52.0"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2667
+ dependencies = [
2668
+ "windows-targets 0.52.6",
2669
+ ]
2670
+
2671
+ [[package]]
2672
+ name = "windows-sys"
2673
+ version = "0.61.2"
2674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2675
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2676
+ dependencies = [
2677
+ "windows-link",
2678
+ ]
2679
+
2680
+ [[package]]
2681
+ name = "windows-targets"
2682
+ version = "0.42.2"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2685
+ dependencies = [
2686
+ "windows_aarch64_gnullvm 0.42.2",
2687
+ "windows_aarch64_msvc 0.42.2",
2688
+ "windows_i686_gnu 0.42.2",
2689
+ "windows_i686_msvc 0.42.2",
2690
+ "windows_x86_64_gnu 0.42.2",
2691
+ "windows_x86_64_gnullvm 0.42.2",
2692
+ "windows_x86_64_msvc 0.42.2",
2693
+ ]
2694
+
2695
+ [[package]]
2696
+ name = "windows-targets"
2697
+ version = "0.52.6"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2700
+ dependencies = [
2701
+ "windows_aarch64_gnullvm 0.52.6",
2702
+ "windows_aarch64_msvc 0.52.6",
2703
+ "windows_i686_gnu 0.52.6",
2704
+ "windows_i686_gnullvm",
2705
+ "windows_i686_msvc 0.52.6",
2706
+ "windows_x86_64_gnu 0.52.6",
2707
+ "windows_x86_64_gnullvm 0.52.6",
2708
+ "windows_x86_64_msvc 0.52.6",
2709
+ ]
2710
+
2711
+ [[package]]
2712
+ name = "windows_aarch64_gnullvm"
2713
+ version = "0.42.2"
2714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2715
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2716
+
2717
+ [[package]]
2718
+ name = "windows_aarch64_gnullvm"
2719
+ version = "0.52.6"
2720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2721
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2722
+
2723
+ [[package]]
2724
+ name = "windows_aarch64_msvc"
2725
+ version = "0.42.2"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2728
+
2729
+ [[package]]
2730
+ name = "windows_aarch64_msvc"
2731
+ version = "0.52.6"
2732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2733
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2734
+
2735
+ [[package]]
2736
+ name = "windows_i686_gnu"
2737
+ version = "0.42.2"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2740
+
2741
+ [[package]]
2742
+ name = "windows_i686_gnu"
2743
+ version = "0.52.6"
2744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2745
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2746
+
2747
+ [[package]]
2748
+ name = "windows_i686_gnullvm"
2749
+ version = "0.52.6"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2752
+
2753
+ [[package]]
2754
+ name = "windows_i686_msvc"
2755
+ version = "0.42.2"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2758
+
2759
+ [[package]]
2760
+ name = "windows_i686_msvc"
2761
+ version = "0.52.6"
2762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2763
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2764
+
2765
+ [[package]]
2766
+ name = "windows_x86_64_gnu"
2767
+ version = "0.42.2"
2768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2769
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2770
+
2771
+ [[package]]
2772
+ name = "windows_x86_64_gnu"
2773
+ version = "0.52.6"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2776
+
2777
+ [[package]]
2778
+ name = "windows_x86_64_gnullvm"
2779
+ version = "0.42.2"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2782
+
2783
+ [[package]]
2784
+ name = "windows_x86_64_gnullvm"
2785
+ version = "0.52.6"
2786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2787
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2788
+
2789
+ [[package]]
2790
+ name = "windows_x86_64_msvc"
2791
+ version = "0.42.2"
2792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2793
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2794
+
2795
+ [[package]]
2796
+ name = "windows_x86_64_msvc"
2797
+ version = "0.52.6"
2798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2799
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2800
+
2801
+ [[package]]
2802
+ name = "winnow"
2803
+ version = "0.7.15"
2804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2805
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2806
+ dependencies = [
2807
+ "memchr",
2808
+ ]
2809
+
2810
+ [[package]]
2811
+ name = "winnow"
2812
+ version = "1.0.2"
2813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2814
+ checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0"
2815
+
2816
+ [[package]]
2817
+ name = "wit-bindgen"
2818
+ version = "0.51.0"
2819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2820
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2821
+ dependencies = [
2822
+ "wit-bindgen-rust-macro",
2823
+ ]
2824
+
2825
+ [[package]]
2826
+ name = "wit-bindgen"
2827
+ version = "0.57.1"
2828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2829
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2830
+
2831
+ [[package]]
2832
+ name = "wit-bindgen-core"
2833
+ version = "0.51.0"
2834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2835
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2836
+ dependencies = [
2837
+ "anyhow",
2838
+ "heck",
2839
+ "wit-parser",
2840
+ ]
2841
+
2842
+ [[package]]
2843
+ name = "wit-bindgen-rust"
2844
+ version = "0.51.0"
2845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2846
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2847
+ dependencies = [
2848
+ "anyhow",
2849
+ "heck",
2850
+ "indexmap",
2851
+ "prettyplease",
2852
+ "syn",
2853
+ "wasm-metadata",
2854
+ "wit-bindgen-core",
2855
+ "wit-component",
2856
+ ]
2857
+
2858
+ [[package]]
2859
+ name = "wit-bindgen-rust-macro"
2860
+ version = "0.51.0"
2861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2862
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2863
+ dependencies = [
2864
+ "anyhow",
2865
+ "prettyplease",
2866
+ "proc-macro2",
2867
+ "quote",
2868
+ "syn",
2869
+ "wit-bindgen-core",
2870
+ "wit-bindgen-rust",
2871
+ ]
2872
+
2873
+ [[package]]
2874
+ name = "wit-component"
2875
+ version = "0.244.0"
2876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2877
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2878
+ dependencies = [
2879
+ "anyhow",
2880
+ "bitflags",
2881
+ "indexmap",
2882
+ "log",
2883
+ "serde",
2884
+ "serde_derive",
2885
+ "serde_json",
2886
+ "wasm-encoder",
2887
+ "wasm-metadata",
2888
+ "wasmparser",
2889
+ "wit-parser",
2890
+ ]
2891
+
2892
+ [[package]]
2893
+ name = "wit-parser"
2894
+ version = "0.244.0"
2895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2896
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2897
+ dependencies = [
2898
+ "anyhow",
2899
+ "id-arena",
2900
+ "indexmap",
2901
+ "log",
2902
+ "semver",
2903
+ "serde",
2904
+ "serde_derive",
2905
+ "serde_json",
2906
+ "unicode-xid",
2907
+ "wasmparser",
2908
+ ]
2909
+
2910
+ [[package]]
2911
+ name = "writeable"
2912
+ version = "0.6.3"
2913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2914
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2915
+
2916
+ [[package]]
2917
+ name = "yasna"
2918
+ version = "0.5.2"
2919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2920
+ checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
2921
+ dependencies = [
2922
+ "time",
2923
+ ]
2924
+
2925
+ [[package]]
2926
+ name = "yoke"
2927
+ version = "0.8.2"
2928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2929
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2930
+ dependencies = [
2931
+ "stable_deref_trait",
2932
+ "yoke-derive",
2933
+ "zerofrom",
2934
+ ]
2935
+
2936
+ [[package]]
2937
+ name = "yoke-derive"
2938
+ version = "0.8.2"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2941
+ dependencies = [
2942
+ "proc-macro2",
2943
+ "quote",
2944
+ "syn",
2945
+ "synstructure",
2946
+ ]
2947
+
2948
+ [[package]]
2949
+ name = "zerocopy"
2950
+ version = "0.8.48"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2953
+ dependencies = [
2954
+ "zerocopy-derive",
2955
+ ]
2956
+
2957
+ [[package]]
2958
+ name = "zerocopy-derive"
2959
+ version = "0.8.48"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2962
+ dependencies = [
2963
+ "proc-macro2",
2964
+ "quote",
2965
+ "syn",
2966
+ ]
2967
+
2968
+ [[package]]
2969
+ name = "zerofrom"
2970
+ version = "0.1.8"
2971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2972
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2973
+ dependencies = [
2974
+ "zerofrom-derive",
2975
+ ]
2976
+
2977
+ [[package]]
2978
+ name = "zerofrom-derive"
2979
+ version = "0.1.7"
2980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2981
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2982
+ dependencies = [
2983
+ "proc-macro2",
2984
+ "quote",
2985
+ "syn",
2986
+ "synstructure",
2987
+ ]
2988
+
2989
+ [[package]]
2990
+ name = "zeroize"
2991
+ version = "1.8.2"
2992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2993
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2994
+
2995
+ [[package]]
2996
+ name = "zerotrie"
2997
+ version = "0.2.4"
2998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2999
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3000
+ dependencies = [
3001
+ "displaydoc",
3002
+ "yoke",
3003
+ "zerofrom",
3004
+ ]
3005
+
3006
+ [[package]]
3007
+ name = "zerovec"
3008
+ version = "0.11.6"
3009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3010
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3011
+ dependencies = [
3012
+ "yoke",
3013
+ "zerofrom",
3014
+ "zerovec-derive",
3015
+ ]
3016
+
3017
+ [[package]]
3018
+ name = "zerovec-derive"
3019
+ version = "0.11.3"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3022
+ dependencies = [
3023
+ "proc-macro2",
3024
+ "quote",
3025
+ "syn",
3026
+ ]
3027
+
3028
+ [[package]]
3029
+ name = "zmij"
3030
+ version = "1.0.21"
3031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3032
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"