oai-statsig-python-core 0.19.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (370) hide show
  1. oai_statsig_python_core-0.19.3/Cargo.lock +4453 -0
  2. oai_statsig_python_core-0.19.3/Cargo.toml +27 -0
  3. oai_statsig_python_core-0.19.3/PKG-INFO +69 -0
  4. oai_statsig_python_core-0.19.3/py_src/statsig_python_core/__init__.py +7 -0
  5. oai_statsig_python_core-0.19.3/py_src/statsig_python_core/data_store.py +58 -0
  6. oai_statsig_python_core-0.19.3/py_src/statsig_python_core/error_boundary.py +52 -0
  7. oai_statsig_python_core-0.19.3/py_src/statsig_python_core/observability_client.py +35 -0
  8. oai_statsig_python_core-0.19.3/py_src/statsig_python_core/output_logger_provider.py +34 -0
  9. oai_statsig_python_core-0.19.3/py_src/statsig_python_core/persistent_storage.py +57 -0
  10. oai_statsig_python_core-0.19.3/py_src/statsig_python_core/py.typed +0 -0
  11. oai_statsig_python_core-0.19.3/py_src/statsig_python_core/requirements.txt +2 -0
  12. oai_statsig_python_core-0.19.3/py_src/statsig_python_core/statsig.py +132 -0
  13. oai_statsig_python_core-0.19.3/py_src/statsig_python_core/statsig_python_core.pyi +408 -0
  14. oai_statsig_python_core-0.19.3/py_src/statsig_python_core/statsig_types.py +260 -0
  15. oai_statsig_python_core-0.19.3/pyproject.toml +27 -0
  16. oai_statsig_python_core-0.19.3/statsig-grpc/Cargo.toml +28 -0
  17. oai_statsig_python_core-0.19.3/statsig-grpc/README.md +48 -0
  18. oai_statsig_python_core-0.19.3/statsig-grpc/build.rs +14 -0
  19. oai_statsig_python_core-0.19.3/statsig-grpc/src/lib.rs +4 -0
  20. oai_statsig_python_core-0.19.3/statsig-grpc/src/mock_forward_proxy.rs +159 -0
  21. oai_statsig_python_core-0.19.3/statsig-grpc/src/protos/statsig_forward_proxy.proto +28 -0
  22. oai_statsig_python_core-0.19.3/statsig-grpc/src/statsig_forward_proxy.rs +5 -0
  23. oai_statsig_python_core-0.19.3/statsig-grpc/src/statsig_grpc_client.rs +199 -0
  24. oai_statsig_python_core-0.19.3/statsig-grpc/src/statsig_grpc_err.rs +30 -0
  25. oai_statsig_python_core-0.19.3/statsig-pyo3/.github/workflows/CI.yml +207 -0
  26. oai_statsig_python_core-0.19.3/statsig-pyo3/.gitignore +72 -0
  27. oai_statsig_python_core-0.19.3/statsig-pyo3/Cargo.toml +29 -0
  28. oai_statsig_python_core-0.19.3/statsig-pyo3/README.md +48 -0
  29. oai_statsig_python_core-0.19.3/statsig-pyo3/src/bin/stub_gen.rs +28 -0
  30. oai_statsig_python_core-0.19.3/statsig-pyo3/src/data_store_base_py.rs +339 -0
  31. oai_statsig_python_core-0.19.3/statsig-pyo3/src/interned_store_py.rs +71 -0
  32. oai_statsig_python_core-0.19.3/statsig-pyo3/src/lib.rs +49 -0
  33. oai_statsig_python_core-0.19.3/statsig-pyo3/src/observability_client_base_py.rs +155 -0
  34. oai_statsig_python_core-0.19.3/statsig-pyo3/src/output_logger_provider_base_py.rs +131 -0
  35. oai_statsig_python_core-0.19.3/statsig-pyo3/src/pyo_utils.rs +391 -0
  36. oai_statsig_python_core-0.19.3/statsig-pyo3/src/raw_evaluation_compat_py.rs +332 -0
  37. oai_statsig_python_core-0.19.3/statsig-pyo3/src/safe_gil.rs +42 -0
  38. oai_statsig_python_core-0.19.3/statsig-pyo3/src/statsig_base_py.rs +622 -0
  39. oai_statsig_python_core-0.19.3/statsig-pyo3/src/statsig_metadata_py.rs +30 -0
  40. oai_statsig_python_core-0.19.3/statsig-pyo3/src/statsig_options_py.rs +452 -0
  41. oai_statsig_python_core-0.19.3/statsig-pyo3/src/statsig_persistent_storage_override_adapter_py.rs +314 -0
  42. oai_statsig_python_core-0.19.3/statsig-pyo3/src/statsig_types_py.rs +376 -0
  43. oai_statsig_python_core-0.19.3/statsig-pyo3/src/statsig_user_py.rs +345 -0
  44. oai_statsig_python_core-0.19.3/statsig-pyo3/src/unit_id_py.rs +42 -0
  45. oai_statsig_python_core-0.19.3/statsig-pyo3/src/valid_primitives_py.rs +212 -0
  46. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/fork_runner.py +64 -0
  47. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/mock_output_logger.py +36 -0
  48. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/mock_scrapi.py +64 -0
  49. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/profile_util.py +31 -0
  50. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/shutdown_sub_proc.py +59 -0
  51. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_data_store.py +264 -0
  52. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_error_boundary.py +22 -0
  53. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_experiment_serialization.py +56 -0
  54. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_exposure_logging.py +214 -0
  55. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_feature_gate_serialization.py +62 -0
  56. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_forking.py +172 -0
  57. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_get_dynamic_config.py +95 -0
  58. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_initialize_with_details.py +57 -0
  59. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_interned_store_preload.py +50 -0
  60. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_layer_param_exposure_sampling.py +79 -0
  61. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_layer_serialization.py +57 -0
  62. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_observability_client.py +181 -0
  63. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_output_logger_provider.py +58 -0
  64. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_override_adapter.py +185 -0
  65. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_performance.py +142 -0
  66. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_sec_expo_as_primary.py +402 -0
  67. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_shared_statsig.py +63 -0
  68. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_shutdown.py +84 -0
  69. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_statsig.py +102 -0
  70. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_statsig_options.py +45 -0
  71. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_statsig_user.py +352 -0
  72. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_statsig_user_json_serialization.py +26 -0
  73. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_statsig_user_none_fields.py +27 -0
  74. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_statsig_user_pickle.py +56 -0
  75. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/test_user_exposure_e2e.py +207 -0
  76. oai_statsig_python_core-0.19.3/statsig-pyo3/tests/utils.py +21 -0
  77. oai_statsig_python_core-0.19.3/statsig-rust/Cargo.toml +83 -0
  78. oai_statsig_python_core-0.19.3/statsig-rust/build.rs +12 -0
  79. oai_statsig_python_core-0.19.3/statsig-rust/resources/ip_supalite.table +0 -0
  80. oai_statsig_python_core-0.19.3/statsig-rust/resources/ua_parser_regex.yaml +1929 -0
  81. oai_statsig_python_core-0.19.3/statsig-rust/resources/ua_parser_regex_lite.yaml +937 -0
  82. oai_statsig_python_core-0.19.3/statsig-rust/src/__tests__/interned_string_tests.rs +154 -0
  83. oai_statsig_python_core-0.19.3/statsig-rust/src/__tests__/mod.rs +2 -0
  84. oai_statsig_python_core-0.19.3/statsig-rust/src/__tests__/spec_store_tests.rs +251 -0
  85. oai_statsig_python_core-0.19.3/statsig-rust/src/compression/compression_helper.rs +31 -0
  86. oai_statsig_python_core-0.19.3/statsig-rust/src/compression/mod.rs +1 -0
  87. oai_statsig_python_core-0.19.3/statsig-rust/src/console_capture/console_capture_handler.rs +41 -0
  88. oai_statsig_python_core-0.19.3/statsig-rust/src/console_capture/console_capture_instances.rs +204 -0
  89. oai_statsig_python_core-0.19.3/statsig-rust/src/console_capture/console_capture_options.rs +11 -0
  90. oai_statsig_python_core-0.19.3/statsig-rust/src/console_capture/console_log_line_levels.rs +34 -0
  91. oai_statsig_python_core-0.19.3/statsig-rust/src/console_capture/mod.rs +4 -0
  92. oai_statsig_python_core-0.19.3/statsig-rust/src/data_store_interface.rs +150 -0
  93. oai_statsig_python_core-0.19.3/statsig-rust/src/dcs_str.rs +2 -0
  94. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/__tests__/dynamic_returnable_tests.rs +55 -0
  95. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/__tests__/mod.rs +2 -0
  96. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/__tests__/rkyv_value_tests.rs +105 -0
  97. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/cmab_evaluator.rs +349 -0
  98. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/comparisons/compare_arrays.rs +50 -0
  99. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/comparisons/compare_numbers.rs +74 -0
  100. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/comparisons/compare_str_with_regex.rs +58 -0
  101. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/comparisons/compare_strings_in_array.rs +202 -0
  102. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/comparisons/compare_time.rs +128 -0
  103. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/comparisons/compare_versions.rs +107 -0
  104. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/comparisons/mod.rs +12 -0
  105. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/country_lookup.rs +199 -0
  106. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/dynamic_returnable.rs +240 -0
  107. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/dynamic_string.rs +102 -0
  108. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/dynamic_value.rs +303 -0
  109. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/evaluation_details.rs +113 -0
  110. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/evaluation_types.rs +318 -0
  111. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/evaluation_types_initialize_v2.rs +203 -0
  112. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/evaluation_types_v2.rs +201 -0
  113. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/evaluator.rs +760 -0
  114. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/evaluator_context.rs +110 -0
  115. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/evaluator_result.rs +682 -0
  116. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/evaluator_value.rs +420 -0
  117. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/get_unit_id.rs +22 -0
  118. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/mod.rs +22 -0
  119. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/rkyv_value.rs +143 -0
  120. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/secondary_exposure_key.rs +16 -0
  121. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/user_agent_parsing/first_party_ua_parser.rs +40 -0
  122. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/user_agent_parsing/mod.rs +17 -0
  123. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/__tests__/mod.rs +4 -0
  124. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/__tests__/test_helpers.rs +75 -0
  125. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/__tests__/test_tokenizer.rs +38 -0
  126. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/__tests__/test_ua_parser_browser.rs +55 -0
  127. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/__tests__/test_ua_parser_os.rs +81 -0
  128. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/mod.rs +8 -0
  129. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/tokenizer.rs +496 -0
  130. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/ua_parser.rs +265 -0
  131. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/user_agent_parsing/statsig_uaparser/window_iter.rs +51 -0
  132. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/user_agent_parsing/third_party_ua_parser.rs +103 -0
  133. oai_statsig_python_core-0.19.3/statsig-rust/src/evaluation/user_agent_parsing/ua_parser.rs +98 -0
  134. oai_statsig_python_core-0.19.3/statsig-rust/src/event_emitter/statsig_event_emitter_tests.rs +121 -0
  135. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/event_logger.rs +523 -0
  136. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/event_logger_constants.rs +56 -0
  137. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/event_logger_ops_stats.rs +72 -0
  138. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/event_queue/batch.rs +34 -0
  139. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/event_queue/mod.rs +10 -0
  140. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/event_queue/queue.rs +343 -0
  141. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/event_queue/queued_config_expo.rs +140 -0
  142. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/event_queue/queued_event.rs +112 -0
  143. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/event_queue/queued_experiment_expo.rs +138 -0
  144. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/event_queue/queued_expo.rs +488 -0
  145. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/event_queue/queued_gate_expo.rs +211 -0
  146. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/event_queue/queued_layer_param_expo.rs +281 -0
  147. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/event_queue/queued_passthrough.rs +22 -0
  148. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/event_queue/queued_secondary_expo.rs +93 -0
  149. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/exposure_sampling.rs +349 -0
  150. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/exposure_utils.rs +51 -0
  151. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/flush_interval.rs +145 -0
  152. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/flush_type.rs +23 -0
  153. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/mod.rs +11 -0
  154. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/sec_expo_as_primary_experiment.rs +104 -0
  155. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/statsig_event.rs +21 -0
  156. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging/statsig_event_internal.rs +245 -0
  157. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging_adapter/event_logging_adapter_trait.rs +78 -0
  158. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging_adapter/log_event_payload.rs +17 -0
  159. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging_adapter/mod.rs +11 -0
  160. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging_adapter/statsig_http_event_logging_adapter.rs +165 -0
  161. oai_statsig_python_core-0.19.3/statsig-rust/src/event_logging_adapter/statsig_local_file_event_logging_adapter.rs +235 -0
  162. oai_statsig_python_core-0.19.3/statsig-rust/src/gcir/dynamic_configs_processor.rs +297 -0
  163. oai_statsig_python_core-0.19.3/statsig-rust/src/gcir/feature_gates_processor.rs +104 -0
  164. oai_statsig_python_core-0.19.3/statsig-rust/src/gcir/gcir_formatter.rs +413 -0
  165. oai_statsig_python_core-0.19.3/statsig-rust/src/gcir/gcir_options.rs +47 -0
  166. oai_statsig_python_core-0.19.3/statsig-rust/src/gcir/gcir_process_iter.rs +168 -0
  167. oai_statsig_python_core-0.19.3/statsig-rust/src/gcir/layer_configs_processor.rs +151 -0
  168. oai_statsig_python_core-0.19.3/statsig-rust/src/gcir/mod.rs +10 -0
  169. oai_statsig_python_core-0.19.3/statsig-rust/src/gcir/param_stores_processor.rs +133 -0
  170. oai_statsig_python_core-0.19.3/statsig-rust/src/gcir/stringify_sec_exposures.rs +21 -0
  171. oai_statsig_python_core-0.19.3/statsig-rust/src/gcir/target_app_id_utils.rs +69 -0
  172. oai_statsig_python_core-0.19.3/statsig-rust/src/global_configs.rs +154 -0
  173. oai_statsig_python_core-0.19.3/statsig-rust/src/hashing/ahash.rs +53 -0
  174. oai_statsig_python_core-0.19.3/statsig-rust/src/hashing/djb2.rs +18 -0
  175. oai_statsig_python_core-0.19.3/statsig-rust/src/hashing/hash_util.rs +95 -0
  176. oai_statsig_python_core-0.19.3/statsig-rust/src/hashing/memo_sha_256.rs +84 -0
  177. oai_statsig_python_core-0.19.3/statsig-rust/src/hashing/mod.rs +8 -0
  178. oai_statsig_python_core-0.19.3/statsig-rust/src/id_lists_adapter/id_list.rs +68 -0
  179. oai_statsig_python_core-0.19.3/statsig-rust/src/id_lists_adapter/id_lists_adapter_trait.rs +76 -0
  180. oai_statsig_python_core-0.19.3/statsig-rust/src/id_lists_adapter/mod.rs +7 -0
  181. oai_statsig_python_core-0.19.3/statsig-rust/src/id_lists_adapter/statsig_http_id_lists_adapter.rs +1016 -0
  182. oai_statsig_python_core-0.19.3/statsig-rust/src/init_details.rs +111 -0
  183. oai_statsig_python_core-0.19.3/statsig-rust/src/initialize_evaluations_response.rs +65 -0
  184. oai_statsig_python_core-0.19.3/statsig-rust/src/initialize_response.rs +92 -0
  185. oai_statsig_python_core-0.19.3/statsig-rust/src/initialize_v2_response.rs +71 -0
  186. oai_statsig_python_core-0.19.3/statsig-rust/src/instance_registry.rs +140 -0
  187. oai_statsig_python_core-0.19.3/statsig-rust/src/interned_string.rs +221 -0
  188. oai_statsig_python_core-0.19.3/statsig-rust/src/interned_values/__tests__/interned_store_eval_value_tests.rs +117 -0
  189. oai_statsig_python_core-0.19.3/statsig-rust/src/interned_values/__tests__/interned_store_returnable_tests.rs +181 -0
  190. oai_statsig_python_core-0.19.3/statsig-rust/src/interned_values/__tests__/interned_store_string_tests.rs +159 -0
  191. oai_statsig_python_core-0.19.3/statsig-rust/src/interned_values/__tests__/mod.rs +3 -0
  192. oai_statsig_python_core-0.19.3/statsig-rust/src/interned_values/interned_store.rs +662 -0
  193. oai_statsig_python_core-0.19.3/statsig-rust/src/interned_values/mod.rs +6 -0
  194. oai_statsig_python_core-0.19.3/statsig-rust/src/lib.rs +83 -0
  195. oai_statsig_python_core-0.19.3/statsig-rust/src/logging_utils.rs +23 -0
  196. oai_statsig_python_core-0.19.3/statsig-rust/src/macros.rs +143 -0
  197. oai_statsig_python_core-0.19.3/statsig-rust/src/networking/__tests__/mod.rs +1 -0
  198. oai_statsig_python_core-0.19.3/statsig-rust/src/networking/__tests__/response_data_tests.rs +104 -0
  199. oai_statsig_python_core-0.19.3/statsig-rust/src/networking/http_types.rs +212 -0
  200. oai_statsig_python_core-0.19.3/statsig-rust/src/networking/mod.rs +12 -0
  201. oai_statsig_python_core-0.19.3/statsig-rust/src/networking/network_client.rs +616 -0
  202. oai_statsig_python_core-0.19.3/statsig-rust/src/networking/network_error.rs +104 -0
  203. oai_statsig_python_core-0.19.3/statsig-rust/src/networking/providers/mod.rs +30 -0
  204. oai_statsig_python_core-0.19.3/statsig-rust/src/networking/providers/net_provider_global.rs +48 -0
  205. oai_statsig_python_core-0.19.3/statsig-rust/src/networking/providers/net_provider_noop.rs +17 -0
  206. oai_statsig_python_core-0.19.3/statsig-rust/src/networking/providers/net_provider_reqwest.rs +343 -0
  207. oai_statsig_python_core-0.19.3/statsig-rust/src/networking/proxy_config.rs +8 -0
  208. oai_statsig_python_core-0.19.3/statsig-rust/src/observability/console_capture_observer.rs +43 -0
  209. oai_statsig_python_core-0.19.3/statsig-rust/src/observability/diagnostics_observer.rs +66 -0
  210. oai_statsig_python_core-0.19.3/statsig-rust/src/observability/mod.rs +8 -0
  211. oai_statsig_python_core-0.19.3/statsig-rust/src/observability/observability_client_adapter.rs +95 -0
  212. oai_statsig_python_core-0.19.3/statsig-rust/src/observability/ops_stats.rs +232 -0
  213. oai_statsig_python_core-0.19.3/statsig-rust/src/observability/sdk_errors_observer.rs +134 -0
  214. oai_statsig_python_core-0.19.3/statsig-rust/src/output_logger.rs +317 -0
  215. oai_statsig_python_core-0.19.3/statsig-rust/src/override_adapter/mod.rs +2 -0
  216. oai_statsig_python_core-0.19.3/statsig-rust/src/override_adapter/override_adapter_trait.rs +57 -0
  217. oai_statsig_python_core-0.19.3/statsig-rust/src/override_adapter/statsig_local_override_adapter.rs +463 -0
  218. oai_statsig_python_core-0.19.3/statsig-rust/src/persistent_storage/__tests__/mod.rs +1 -0
  219. oai_statsig_python_core-0.19.3/statsig-rust/src/persistent_storage/__tests__/sticky_values_serialization_tests.rs +132 -0
  220. oai_statsig_python_core-0.19.3/statsig-rust/src/persistent_storage/mod.rs +5 -0
  221. oai_statsig_python_core-0.19.3/statsig-rust/src/persistent_storage/persistent_storage_trait.rs +130 -0
  222. oai_statsig_python_core-0.19.3/statsig-rust/src/persistent_storage/persistent_values_manager.rs +712 -0
  223. oai_statsig_python_core-0.19.3/statsig-rust/src/sdk_diagnostics/diagnostics.rs +197 -0
  224. oai_statsig_python_core-0.19.3/statsig-rust/src/sdk_diagnostics/diagnostics_utils.rs +89 -0
  225. oai_statsig_python_core-0.19.3/statsig-rust/src/sdk_diagnostics/marker.rs +236 -0
  226. oai_statsig_python_core-0.19.3/statsig-rust/src/sdk_diagnostics/mod.rs +3 -0
  227. oai_statsig_python_core-0.19.3/statsig-rust/src/sdk_event_emitter/event_emitter.rs +264 -0
  228. oai_statsig_python_core-0.19.3/statsig-rust/src/sdk_event_emitter/event_emitter_tests.rs +141 -0
  229. oai_statsig_python_core-0.19.3/statsig-rust/src/sdk_event_emitter/event_types.rs +122 -0
  230. oai_statsig_python_core-0.19.3/statsig-rust/src/sdk_event_emitter/mod.rs +8 -0
  231. oai_statsig_python_core-0.19.3/statsig-rust/src/spec_store.rs +707 -0
  232. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_adapter/config_spec_background_sync_metrics.rs +62 -0
  233. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_adapter/mod.rs +65 -0
  234. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_adapter/response_format.rs +51 -0
  235. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_adapter/specs_adapter_trait.rs +166 -0
  236. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_adapter/statsig_bootstrap_specs_adapter.rs +192 -0
  237. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_adapter/statsig_customized_specs_adapter.rs +178 -0
  238. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_adapter/statsig_data_store_specs_adapter.rs +348 -0
  239. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_adapter/statsig_grpc_specs_adapter.rs +424 -0
  240. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_adapter/statsig_http_specs_adapter.rs +746 -0
  241. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_adapter/statsig_local_file_specs_adapter.rs +185 -0
  242. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_response/__tests__/mod.rs +4 -0
  243. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_response/__tests__/proto_specs_syncing_tests.rs +78 -0
  244. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_response/__tests__/proto_specs_unknown_tests.rs +122 -0
  245. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_response/__tests__/proto_specs_vs_json_tests.rs +356 -0
  246. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_response/__tests__/proto_stream_reader_tests.rs +240 -0
  247. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_response/cmab_types.rs +42 -0
  248. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_response/explicit_params.rs +59 -0
  249. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_response/mod.rs +13 -0
  250. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_response/param_store_types.rs +82 -0
  251. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_response/proto_specs.rs +915 -0
  252. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_response/proto_stream_reader.rs +113 -0
  253. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_response/spec_types.rs +273 -0
  254. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_response/specs_hash_map.rs +116 -0
  255. oai_statsig_python_core-0.19.3/statsig-rust/src/specs_response/statsig_config_specs.rs +500 -0
  256. oai_statsig_python_core-0.19.3/statsig-rust/src/statsig.rs +2691 -0
  257. oai_statsig_python_core-0.19.3/statsig-rust/src/statsig_core_api_options.rs +81 -0
  258. oai_statsig_python_core-0.19.3/statsig-rust/src/statsig_err.rs +169 -0
  259. oai_statsig_python_core-0.19.3/statsig-rust/src/statsig_global.rs +58 -0
  260. oai_statsig_python_core-0.19.3/statsig-rust/src/statsig_metadata.rs +149 -0
  261. oai_statsig_python_core-0.19.3/statsig-rust/src/statsig_options.rs +563 -0
  262. oai_statsig_python_core-0.19.3/statsig-rust/src/statsig_runtime.rs +315 -0
  263. oai_statsig_python_core-0.19.3/statsig-rust/src/statsig_type_factories.rs +185 -0
  264. oai_statsig_python_core-0.19.3/statsig-rust/src/statsig_types.rs +349 -0
  265. oai_statsig_python_core-0.19.3/statsig-rust/src/statsig_types_raw.rs +315 -0
  266. oai_statsig_python_core-0.19.3/statsig-rust/src/user/into_optional.rs +39 -0
  267. oai_statsig_python_core-0.19.3/statsig-rust/src/user/mod.rs +12 -0
  268. oai_statsig_python_core-0.19.3/statsig-rust/src/user/statsig_user.rs +242 -0
  269. oai_statsig_python_core-0.19.3/statsig-rust/src/user/statsig_user_builder.rs +191 -0
  270. oai_statsig_python_core-0.19.3/statsig-rust/src/user/statsig_user_internal.rs +214 -0
  271. oai_statsig_python_core-0.19.3/statsig-rust/src/user/statsig_user_loggable.rs +190 -0
  272. oai_statsig_python_core-0.19.3/statsig-rust/src/user/unit_id.rs +47 -0
  273. oai_statsig_python_core-0.19.3/statsig-rust/src/user/user_data.rs +89 -0
  274. oai_statsig_python_core-0.19.3/statsig-rust/src/utils/mod.rs +227 -0
  275. oai_statsig_python_core-0.19.3/statsig-rust/tests/check_gate_tests.rs +115 -0
  276. oai_statsig_python_core-0.19.3/statsig-rust/tests/customized_specs_adapter_tests.rs +187 -0
  277. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/big_number_dcs.json +29 -0
  278. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/check_gate_perf_dcs.json +335 -0
  279. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/company_id_list +27 -0
  280. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/dcs_error.json +3 -0
  281. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/dcs_missing_gates.json +142 -0
  282. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/dcs_non_case_sensitive.json +45 -0
  283. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/dcs_user_agent_versions.json +91 -0
  284. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/dcs_with_analytical_exposure_sampling.json +170 -0
  285. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/dcs_with_checksum.json +15 -0
  286. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/dcs_with_sampling.json +81 -0
  287. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/dcs_with_sdk_configs.json +27 -0
  288. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/demo_proj_dcs.json +1 -0
  289. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/demo_proj_dcs.pb.br +0 -0
  290. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/eval_proj_dcs.json +1 -0
  291. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/eval_proj_dcs.pb.br +0 -0
  292. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/get_id_lists.json +9 -0
  293. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/perf_proj_dcs.json +1 -0
  294. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/perf_proj_dcs.pb.br +0 -0
  295. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/shared_dict_dict_only.json +1 -0
  296. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/shared_dict_original_dcs.json +1 -0
  297. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/shared_dict_response_uncompressed.json +1 -0
  298. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/shared_dict_response_with_dict.json +1 -0
  299. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/shared_dict_response_without_dict.json +1 -0
  300. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/test_must_pass_user_agents.txt +226 -0
  301. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/test_user_agents.txt +11128 -0
  302. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/ua_string_cases.json +122 -0
  303. oai_statsig_python_core-0.19.3/statsig-rust/tests/data/unknown_enum.pb.br +0 -0
  304. oai_statsig_python_core-0.19.3/statsig-rust/tests/data_store_bytes_adapter_tests.rs +213 -0
  305. oai_statsig_python_core-0.19.3/statsig-rust/tests/data_store_json_bytes_tests.rs +197 -0
  306. oai_statsig_python_core-0.19.3/statsig-rust/tests/data_store_json_only_no_bytes_methods_tests.rs +180 -0
  307. oai_statsig_python_core-0.19.3/statsig-rust/tests/data_store_lock_tests.rs +107 -0
  308. oai_statsig_python_core-0.19.3/statsig-rust/tests/data_store_proto_bytes_tests.rs +211 -0
  309. oai_statsig_python_core-0.19.3/statsig-rust/tests/direct_gcir_tests.rs +145 -0
  310. oai_statsig_python_core-0.19.3/statsig-rust/tests/dynamic_string_tests.rs +66 -0
  311. oai_statsig_python_core-0.19.3/statsig-rust/tests/dynamic_value_tests.rs +343 -0
  312. oai_statsig_python_core-0.19.3/statsig-rust/tests/evaluation_details_tests.rs +30 -0
  313. oai_statsig_python_core-0.19.3/statsig-rust/tests/evaluator_value_tests.rs +121 -0
  314. oai_statsig_python_core-0.19.3/statsig-rust/tests/event_logger_failing_flush_tests.rs +79 -0
  315. oai_statsig_python_core-0.19.3/statsig-rust/tests/event_logger_flush_tests.rs +367 -0
  316. oai_statsig_python_core-0.19.3/statsig-rust/tests/event_logger_high_qps_tests.rs +74 -0
  317. oai_statsig_python_core-0.19.3/statsig-rust/tests/event_logger_usage_tests.rs +348 -0
  318. oai_statsig_python_core-0.19.3/statsig-rust/tests/expected_evaluation_tests.rs +364 -0
  319. oai_statsig_python_core-0.19.3/statsig-rust/tests/exposure_sampling_key_tests.rs +202 -0
  320. oai_statsig_python_core-0.19.3/statsig-rust/tests/exposure_tests.rs +998 -0
  321. oai_statsig_python_core-0.19.3/statsig-rust/tests/flushing_tests.rs +275 -0
  322. oai_statsig_python_core-0.19.3/statsig-rust/tests/gate_inversion_eval_tests.rs +94 -0
  323. oai_statsig_python_core-0.19.3/statsig-rust/tests/gcir_tests.rs +407 -0
  324. oai_statsig_python_core-0.19.3/statsig-rust/tests/global_configs_test.rs +193 -0
  325. oai_statsig_python_core-0.19.3/statsig-rust/tests/grpc_specs_adapter_tests.rs +109 -0
  326. oai_statsig_python_core-0.19.3/statsig-rust/tests/hash_util_evaluation_hash_tests.rs +20 -0
  327. oai_statsig_python_core-0.19.3/statsig-rust/tests/http_specs_adapter_tests.rs +85 -0
  328. oai_statsig_python_core-0.19.3/statsig-rust/tests/initialize_timeout_test.rs +79 -0
  329. oai_statsig_python_core-0.19.3/statsig-rust/tests/instance_registry_tests.rs +127 -0
  330. oai_statsig_python_core-0.19.3/statsig-rust/tests/layer_serialization_tests.rs +37 -0
  331. oai_statsig_python_core-0.19.3/statsig-rust/tests/list_methods_tests.rs +54 -0
  332. oai_statsig_python_core-0.19.3/statsig-rust/tests/network_client_streaming_tests.rs +106 -0
  333. oai_statsig_python_core-0.19.3/statsig-rust/tests/network_client_tests.rs +70 -0
  334. oai_statsig_python_core-0.19.3/statsig-rust/tests/network_failure_tests.rs +0 -0
  335. oai_statsig_python_core-0.19.3/statsig-rust/tests/observability_client_usage_tests.rs +857 -0
  336. oai_statsig_python_core-0.19.3/statsig-rust/tests/output_logger_tests.rs +196 -0
  337. oai_statsig_python_core-0.19.3/statsig-rust/tests/override_adapter_tests.rs +900 -0
  338. oai_statsig_python_core-0.19.3/statsig-rust/tests/perf_tests.rs +178 -0
  339. oai_statsig_python_core-0.19.3/statsig-rust/tests/proto_specs_usage_tests.rs +282 -0
  340. oai_statsig_python_core-0.19.3/statsig-rust/tests/spec_store_lock_tests.rs +103 -0
  341. oai_statsig_python_core-0.19.3/statsig-rust/tests/spec_types_tests.rs +153 -0
  342. oai_statsig_python_core-0.19.3/statsig-rust/tests/statsig_disable_network_tests.rs +59 -0
  343. oai_statsig_python_core-0.19.3/statsig-rust/tests/statsig_environment_tests.rs +204 -0
  344. oai_statsig_python_core-0.19.3/statsig-rust/tests/statsig_event_emitter_usage_test.rs +165 -0
  345. oai_statsig_python_core-0.19.3/statsig-rust/tests/statsig_global_tests.rs +80 -0
  346. oai_statsig_python_core-0.19.3/statsig-rust/tests/statsig_local_file_event_logging_adapter_tests.rs +306 -0
  347. oai_statsig_python_core-0.19.3/statsig-rust/tests/statsig_local_file_specs_adapter_tests.rs +151 -0
  348. oai_statsig_python_core-0.19.3/statsig-rust/tests/statsig_options_tests.rs +82 -0
  349. oai_statsig_python_core-0.19.3/statsig-rust/tests/statsig_shared_tests.rs +95 -0
  350. oai_statsig_python_core-0.19.3/statsig-rust/tests/statsig_tests.rs +334 -0
  351. oai_statsig_python_core-0.19.3/statsig-rust/tests/statsig_user_builder_tests.rs +175 -0
  352. oai_statsig_python_core-0.19.3/statsig-rust/tests/statsig_user_field_accessor_tests.rs +129 -0
  353. oai_statsig_python_core-0.19.3/statsig-rust/tests/statsig_user_internal_tests.rs +17 -0
  354. oai_statsig_python_core-0.19.3/statsig-rust/tests/statsig_user_loggable_tests.rs +235 -0
  355. oai_statsig_python_core-0.19.3/statsig-rust/tests/statsig_user_tests.rs +110 -0
  356. oai_statsig_python_core-0.19.3/statsig-rust/tests/syncing_network_failure_tests.rs +94 -0
  357. oai_statsig_python_core-0.19.3/statsig-rust/tests/typed_getters_tests.rs +29 -0
  358. oai_statsig_python_core-0.19.3/statsig-rust/tests/ua_parser_util_test.rs +66 -0
  359. oai_statsig_python_core-0.19.3/statsig-rust/tests/user_agent_tests_first_party.rs +238 -0
  360. oai_statsig_python_core-0.19.3/statsig-rust/tests/user_json_tests.rs +19 -0
  361. oai_statsig_python_core-0.19.3/statsig-rust/tests/utils/env_var_guard.rs +23 -0
  362. oai_statsig_python_core-0.19.3/statsig-rust/tests/utils/helpers.rs +62 -0
  363. oai_statsig_python_core-0.19.3/statsig-rust/tests/utils/mock_data_store.rs +198 -0
  364. oai_statsig_python_core-0.19.3/statsig-rust/tests/utils/mock_event_logging_adapter.rs +131 -0
  365. oai_statsig_python_core-0.19.3/statsig-rust/tests/utils/mock_log_provider.rs +87 -0
  366. oai_statsig_python_core-0.19.3/statsig-rust/tests/utils/mock_observability_client.rs +65 -0
  367. oai_statsig_python_core-0.19.3/statsig-rust/tests/utils/mock_scrapi.rs +261 -0
  368. oai_statsig_python_core-0.19.3/statsig-rust/tests/utils/mock_specs_adapter.rs +161 -0
  369. oai_statsig_python_core-0.19.3/statsig-rust/tests/utils/mock_specs_listener.rs +46 -0
  370. oai_statsig_python_core-0.19.3/statsig-rust/tests/utils/mod.rs +26 -0
@@ -0,0 +1,4453 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.24.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
19
+
20
+ [[package]]
21
+ name = "ahash"
22
+ version = "0.8.11"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
25
+ dependencies = [
26
+ "cfg-if",
27
+ "getrandom 0.2.15",
28
+ "once_cell",
29
+ "version_check",
30
+ "zerocopy 0.7.35",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "aho-corasick"
35
+ version = "1.1.3"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
38
+ dependencies = [
39
+ "memchr",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "aliasable"
44
+ version = "0.1.3"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd"
47
+
48
+ [[package]]
49
+ name = "alloc-no-stdlib"
50
+ version = "2.0.4"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
53
+
54
+ [[package]]
55
+ name = "alloc-stdlib"
56
+ version = "0.2.2"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
59
+ dependencies = [
60
+ "alloc-no-stdlib",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "android_system_properties"
65
+ version = "0.1.5"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
68
+ dependencies = [
69
+ "libc",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "anyhow"
74
+ version = "1.0.102"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
77
+
78
+ [[package]]
79
+ name = "arc-swap"
80
+ version = "1.7.1"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
83
+
84
+ [[package]]
85
+ name = "assert-json-diff"
86
+ version = "2.0.2"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
89
+ dependencies = [
90
+ "serde",
91
+ "serde_json",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "async-compression"
96
+ version = "0.4.21"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "c0cf008e5e1a9e9e22a7d3c9a4992e21a350290069e36d8fb72304ed17e8f2d2"
99
+ dependencies = [
100
+ "brotli 7.0.0",
101
+ "flate2",
102
+ "futures-core",
103
+ "memchr",
104
+ "pin-project-lite",
105
+ "tokio",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "async-stream"
110
+ version = "0.3.6"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
113
+ dependencies = [
114
+ "async-stream-impl",
115
+ "futures-core",
116
+ "pin-project-lite",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "async-stream-impl"
121
+ version = "0.3.6"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
124
+ dependencies = [
125
+ "proc-macro2",
126
+ "quote",
127
+ "syn 2.0.117",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "async-trait"
132
+ version = "0.1.86"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "644dd749086bf3771a2fbc5f256fdb982d53f011c7d5d560304eafeecebce79d"
135
+ dependencies = [
136
+ "proc-macro2",
137
+ "quote",
138
+ "syn 2.0.117",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "atomic-waker"
143
+ version = "1.1.2"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
146
+
147
+ [[package]]
148
+ name = "atty"
149
+ version = "0.2.14"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
152
+ dependencies = [
153
+ "hermit-abi 0.1.19",
154
+ "libc",
155
+ "winapi",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "autocfg"
160
+ version = "1.4.0"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
163
+
164
+ [[package]]
165
+ name = "axum"
166
+ version = "0.7.9"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
169
+ dependencies = [
170
+ "async-trait",
171
+ "axum-core 0.4.5",
172
+ "bytes",
173
+ "futures-util",
174
+ "http",
175
+ "http-body",
176
+ "http-body-util",
177
+ "itoa",
178
+ "matchit 0.7.3",
179
+ "memchr",
180
+ "mime",
181
+ "percent-encoding",
182
+ "pin-project-lite",
183
+ "rustversion",
184
+ "serde",
185
+ "sync_wrapper",
186
+ "tower 0.5.2",
187
+ "tower-layer",
188
+ "tower-service",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "axum"
193
+ version = "0.8.6"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "8a18ed336352031311f4e0b4dd2ff392d4fbb370777c9d18d7fc9d7359f73871"
196
+ dependencies = [
197
+ "axum-core 0.5.5",
198
+ "bytes",
199
+ "futures-util",
200
+ "http",
201
+ "http-body",
202
+ "http-body-util",
203
+ "itoa",
204
+ "matchit 0.8.4",
205
+ "memchr",
206
+ "mime",
207
+ "percent-encoding",
208
+ "pin-project-lite",
209
+ "serde_core",
210
+ "sync_wrapper",
211
+ "tower 0.5.2",
212
+ "tower-layer",
213
+ "tower-service",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "axum-core"
218
+ version = "0.4.5"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
221
+ dependencies = [
222
+ "async-trait",
223
+ "bytes",
224
+ "futures-util",
225
+ "http",
226
+ "http-body",
227
+ "http-body-util",
228
+ "mime",
229
+ "pin-project-lite",
230
+ "rustversion",
231
+ "sync_wrapper",
232
+ "tower-layer",
233
+ "tower-service",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "axum-core"
238
+ version = "0.5.5"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22"
241
+ dependencies = [
242
+ "bytes",
243
+ "futures-core",
244
+ "http",
245
+ "http-body",
246
+ "http-body-util",
247
+ "mime",
248
+ "pin-project-lite",
249
+ "sync_wrapper",
250
+ "tower-layer",
251
+ "tower-service",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "backtrace"
256
+ version = "0.3.74"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
259
+ dependencies = [
260
+ "addr2line",
261
+ "cfg-if",
262
+ "libc",
263
+ "miniz_oxide",
264
+ "object",
265
+ "rustc-demangle",
266
+ "windows-targets 0.52.6",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "base64"
271
+ version = "0.22.1"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
274
+
275
+ [[package]]
276
+ name = "bit-set"
277
+ version = "0.8.0"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
280
+ dependencies = [
281
+ "bit-vec",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "bit-vec"
286
+ version = "0.8.0"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
289
+
290
+ [[package]]
291
+ name = "bitflags"
292
+ version = "1.3.2"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
295
+
296
+ [[package]]
297
+ name = "bitflags"
298
+ version = "2.8.0"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
301
+
302
+ [[package]]
303
+ name = "block-buffer"
304
+ version = "0.10.4"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
307
+ dependencies = [
308
+ "generic-array",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "brotli"
313
+ version = "7.0.0"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
316
+ dependencies = [
317
+ "alloc-no-stdlib",
318
+ "alloc-stdlib",
319
+ "brotli-decompressor 4.0.3",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "brotli"
324
+ version = "8.0.2"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
327
+ dependencies = [
328
+ "alloc-no-stdlib",
329
+ "alloc-stdlib",
330
+ "brotli-decompressor 5.0.0",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "brotli-decompressor"
335
+ version = "4.0.3"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
338
+ dependencies = [
339
+ "alloc-no-stdlib",
340
+ "alloc-stdlib",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "brotli-decompressor"
345
+ version = "5.0.0"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
348
+ dependencies = [
349
+ "alloc-no-stdlib",
350
+ "alloc-stdlib",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "bumpalo"
355
+ version = "3.17.0"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
358
+
359
+ [[package]]
360
+ name = "bytecheck"
361
+ version = "0.8.2"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "0caa33a2c0edca0419d15ac723dff03f1956f7978329b1e3b5fdaaaed9d3ca8b"
364
+ dependencies = [
365
+ "bytecheck_derive",
366
+ "ptr_meta",
367
+ "rancor",
368
+ "simdutf8",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "bytecheck_derive"
373
+ version = "0.8.2"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "89385e82b5d1821d2219e0b095efa2cc1f246cbf99080f3be46a1a85c0d392d9"
376
+ dependencies = [
377
+ "proc-macro2",
378
+ "quote",
379
+ "syn 2.0.117",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "byteorder"
384
+ version = "1.5.0"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
387
+
388
+ [[package]]
389
+ name = "bytes"
390
+ version = "1.10.0"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "f61dac84819c6588b558454b194026eb1f09c293b9036ae9b159e74e73ab6cf9"
393
+
394
+ [[package]]
395
+ name = "cbindgen"
396
+ version = "0.26.0"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "da6bc11b07529f16944307272d5bd9b22530bc7d05751717c9d416586cedab49"
399
+ dependencies = [
400
+ "clap",
401
+ "heck 0.4.1",
402
+ "indexmap 1.9.3",
403
+ "log",
404
+ "proc-macro2",
405
+ "quote",
406
+ "serde",
407
+ "serde_json",
408
+ "syn 1.0.109",
409
+ "tempfile",
410
+ "toml 0.5.11",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "cc"
415
+ version = "1.2.12"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "755717a7de9ec452bf7f3f1a3099085deabd7f2962b861dae91ecd7a365903d2"
418
+ dependencies = [
419
+ "jobserver",
420
+ "libc",
421
+ "shlex",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "cesu8"
426
+ version = "1.1.0"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
429
+
430
+ [[package]]
431
+ name = "cfg-if"
432
+ version = "1.0.0"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
435
+
436
+ [[package]]
437
+ name = "cfg_aliases"
438
+ version = "0.2.1"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
441
+
442
+ [[package]]
443
+ name = "chrono"
444
+ version = "0.4.44"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
447
+ dependencies = [
448
+ "iana-time-zone",
449
+ "js-sys",
450
+ "num-traits",
451
+ "serde",
452
+ "wasm-bindgen",
453
+ "windows-link 0.2.1",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "clap"
458
+ version = "3.2.25"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123"
461
+ dependencies = [
462
+ "atty",
463
+ "bitflags 1.3.2",
464
+ "clap_lex",
465
+ "indexmap 1.9.3",
466
+ "strsim 0.10.0",
467
+ "termcolor",
468
+ "textwrap",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "clap_lex"
473
+ version = "0.2.4"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
476
+ dependencies = [
477
+ "os_str_bytes",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "colored"
482
+ version = "2.2.0"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
485
+ dependencies = [
486
+ "lazy_static",
487
+ "windows-sys 0.59.0",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "combine"
492
+ version = "4.6.7"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
495
+ dependencies = [
496
+ "bytes",
497
+ "memchr",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "convert_case"
502
+ version = "0.4.0"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
505
+
506
+ [[package]]
507
+ name = "convert_case"
508
+ version = "0.7.1"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7"
511
+ dependencies = [
512
+ "unicode-segmentation",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "core-foundation-sys"
517
+ version = "0.8.7"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
520
+
521
+ [[package]]
522
+ name = "cpufeatures"
523
+ version = "0.2.17"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
526
+ dependencies = [
527
+ "libc",
528
+ ]
529
+
530
+ [[package]]
531
+ name = "crc32fast"
532
+ version = "1.4.2"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
535
+ dependencies = [
536
+ "cfg-if",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "crossbeam-utils"
541
+ version = "0.8.21"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
544
+
545
+ [[package]]
546
+ name = "crunchy"
547
+ version = "0.2.4"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
550
+
551
+ [[package]]
552
+ name = "crypto-common"
553
+ version = "0.1.6"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
556
+ dependencies = [
557
+ "generic-array",
558
+ "typenum",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "csbindgen"
563
+ version = "1.9.3"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "c26b9831049b947d154bba920e4124053def72447be6fb106a96f483874b482a"
566
+ dependencies = [
567
+ "regex",
568
+ "syn 2.0.117",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "ctor"
573
+ version = "0.2.9"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
576
+ dependencies = [
577
+ "quote",
578
+ "syn 2.0.117",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "darling"
583
+ version = "0.20.11"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
586
+ dependencies = [
587
+ "darling_core",
588
+ "darling_macro",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "darling_core"
593
+ version = "0.20.11"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
596
+ dependencies = [
597
+ "fnv",
598
+ "ident_case",
599
+ "proc-macro2",
600
+ "quote",
601
+ "strsim 0.11.1",
602
+ "syn 2.0.117",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "darling_macro"
607
+ version = "0.20.11"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
610
+ dependencies = [
611
+ "darling_core",
612
+ "quote",
613
+ "syn 2.0.117",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "dashmap"
618
+ version = "6.1.0"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
621
+ dependencies = [
622
+ "cfg-if",
623
+ "crossbeam-utils",
624
+ "hashbrown 0.14.5",
625
+ "lock_api",
626
+ "once_cell",
627
+ "parking_lot_core",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "deadpool"
632
+ version = "0.10.0"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "fb84100978c1c7b37f09ed3ce3e5f843af02c2a2c431bae5b19230dad2c1b490"
635
+ dependencies = [
636
+ "async-trait",
637
+ "deadpool-runtime",
638
+ "num_cpus",
639
+ "tokio",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "deadpool-runtime"
644
+ version = "0.1.4"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
647
+
648
+ [[package]]
649
+ name = "deranged"
650
+ version = "0.5.8"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
653
+ dependencies = [
654
+ "powerfmt",
655
+ "serde_core",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "derive_more"
660
+ version = "0.99.19"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "3da29a38df43d6f156149c9b43ded5e018ddff2a855cf2cfd62e8cd7d079c69f"
663
+ dependencies = [
664
+ "convert_case 0.4.0",
665
+ "proc-macro2",
666
+ "quote",
667
+ "rustc_version",
668
+ "syn 2.0.117",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "digest"
673
+ version = "0.10.7"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
676
+ dependencies = [
677
+ "block-buffer",
678
+ "crypto-common",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "displaydoc"
683
+ version = "0.2.5"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
686
+ dependencies = [
687
+ "proc-macro2",
688
+ "quote",
689
+ "syn 2.0.117",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "either"
694
+ version = "1.15.0"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
697
+
698
+ [[package]]
699
+ name = "equivalent"
700
+ version = "1.0.1"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
703
+
704
+ [[package]]
705
+ name = "errno"
706
+ version = "0.3.10"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
709
+ dependencies = [
710
+ "libc",
711
+ "windows-sys 0.59.0",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "fancy-regex"
716
+ version = "0.17.0"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "72cf461f865c862bb7dc573f643dd6a2b6842f7c30b07882b56bd148cc2761b8"
719
+ dependencies = [
720
+ "bit-set",
721
+ "regex-automata",
722
+ "regex-syntax",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "fastrand"
727
+ version = "2.3.0"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
730
+
731
+ [[package]]
732
+ name = "file-guard"
733
+ version = "0.2.0"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "21ef72acf95ec3d7dbf61275be556299490a245f017cf084bd23b4f68cf9407c"
736
+ dependencies = [
737
+ "libc",
738
+ "winapi",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "fixedbitset"
743
+ version = "0.4.2"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
746
+
747
+ [[package]]
748
+ name = "flate2"
749
+ version = "1.0.35"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
752
+ dependencies = [
753
+ "crc32fast",
754
+ "miniz_oxide",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "fnv"
759
+ version = "1.0.7"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
762
+
763
+ [[package]]
764
+ name = "form_urlencoded"
765
+ version = "1.2.1"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
768
+ dependencies = [
769
+ "percent-encoding",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "futures"
774
+ version = "0.3.31"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
777
+ dependencies = [
778
+ "futures-channel",
779
+ "futures-core",
780
+ "futures-executor",
781
+ "futures-io",
782
+ "futures-sink",
783
+ "futures-task",
784
+ "futures-util",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "futures-channel"
789
+ version = "0.3.31"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
792
+ dependencies = [
793
+ "futures-core",
794
+ "futures-sink",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "futures-core"
799
+ version = "0.3.31"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
802
+
803
+ [[package]]
804
+ name = "futures-executor"
805
+ version = "0.3.31"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
808
+ dependencies = [
809
+ "futures-core",
810
+ "futures-task",
811
+ "futures-util",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "futures-io"
816
+ version = "0.3.31"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
819
+
820
+ [[package]]
821
+ name = "futures-macro"
822
+ version = "0.3.31"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
825
+ dependencies = [
826
+ "proc-macro2",
827
+ "quote",
828
+ "syn 2.0.117",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "futures-sink"
833
+ version = "0.3.31"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
836
+
837
+ [[package]]
838
+ name = "futures-task"
839
+ version = "0.3.31"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
842
+
843
+ [[package]]
844
+ name = "futures-util"
845
+ version = "0.3.31"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
848
+ dependencies = [
849
+ "futures-channel",
850
+ "futures-core",
851
+ "futures-io",
852
+ "futures-macro",
853
+ "futures-sink",
854
+ "futures-task",
855
+ "memchr",
856
+ "pin-project-lite",
857
+ "pin-utils",
858
+ "slab",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "generic-array"
863
+ version = "0.14.7"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
866
+ dependencies = [
867
+ "typenum",
868
+ "version_check",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "getopts"
873
+ version = "0.2.24"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
876
+ dependencies = [
877
+ "unicode-width",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "getrandom"
882
+ version = "0.2.15"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
885
+ dependencies = [
886
+ "cfg-if",
887
+ "js-sys",
888
+ "libc",
889
+ "wasi 0.11.0+wasi-snapshot-preview1",
890
+ "wasm-bindgen",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "getrandom"
895
+ version = "0.3.1"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8"
898
+ dependencies = [
899
+ "cfg-if",
900
+ "js-sys",
901
+ "libc",
902
+ "wasi 0.13.3+wasi-0.2.2",
903
+ "wasm-bindgen",
904
+ "windows-targets 0.52.6",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "gimli"
909
+ version = "0.31.1"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
912
+
913
+ [[package]]
914
+ name = "h2"
915
+ version = "0.4.7"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e"
918
+ dependencies = [
919
+ "atomic-waker",
920
+ "bytes",
921
+ "fnv",
922
+ "futures-core",
923
+ "futures-sink",
924
+ "http",
925
+ "indexmap 2.13.0",
926
+ "slab",
927
+ "tokio",
928
+ "tokio-util",
929
+ "tracing",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "hashbrown"
934
+ version = "0.12.3"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
937
+
938
+ [[package]]
939
+ name = "hashbrown"
940
+ version = "0.14.5"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
943
+
944
+ [[package]]
945
+ name = "hashbrown"
946
+ version = "0.16.1"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
949
+
950
+ [[package]]
951
+ name = "heck"
952
+ version = "0.4.1"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
955
+
956
+ [[package]]
957
+ name = "heck"
958
+ version = "0.5.0"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
961
+
962
+ [[package]]
963
+ name = "hermit-abi"
964
+ version = "0.1.19"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
967
+ dependencies = [
968
+ "libc",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "hermit-abi"
973
+ version = "0.3.9"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
976
+
977
+ [[package]]
978
+ name = "hex"
979
+ version = "0.4.3"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
982
+
983
+ [[package]]
984
+ name = "http"
985
+ version = "1.2.0"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
988
+ dependencies = [
989
+ "bytes",
990
+ "fnv",
991
+ "itoa",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "http-body"
996
+ version = "1.0.1"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
999
+ dependencies = [
1000
+ "bytes",
1001
+ "http",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "http-body-util"
1006
+ version = "0.1.2"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
1009
+ dependencies = [
1010
+ "bytes",
1011
+ "futures-util",
1012
+ "http",
1013
+ "http-body",
1014
+ "pin-project-lite",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "httparse"
1019
+ version = "1.10.0"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "f2d708df4e7140240a16cd6ab0ab65c972d7433ab77819ea693fde9c43811e2a"
1022
+
1023
+ [[package]]
1024
+ name = "httpdate"
1025
+ version = "1.0.3"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1028
+
1029
+ [[package]]
1030
+ name = "hyper"
1031
+ version = "1.6.0"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
1034
+ dependencies = [
1035
+ "bytes",
1036
+ "futures-channel",
1037
+ "futures-util",
1038
+ "h2",
1039
+ "http",
1040
+ "http-body",
1041
+ "httparse",
1042
+ "httpdate",
1043
+ "itoa",
1044
+ "pin-project-lite",
1045
+ "smallvec",
1046
+ "tokio",
1047
+ "want",
1048
+ ]
1049
+
1050
+ [[package]]
1051
+ name = "hyper-rustls"
1052
+ version = "0.27.5"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1055
+ dependencies = [
1056
+ "futures-util",
1057
+ "http",
1058
+ "hyper",
1059
+ "hyper-util",
1060
+ "rustls",
1061
+ "rustls-pki-types",
1062
+ "tokio",
1063
+ "tokio-rustls",
1064
+ "tower-service",
1065
+ "webpki-roots",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "hyper-timeout"
1070
+ version = "0.5.2"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1073
+ dependencies = [
1074
+ "hyper",
1075
+ "hyper-util",
1076
+ "pin-project-lite",
1077
+ "tokio",
1078
+ "tower-service",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "hyper-util"
1083
+ version = "0.1.10"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
1086
+ dependencies = [
1087
+ "bytes",
1088
+ "futures-channel",
1089
+ "futures-util",
1090
+ "http",
1091
+ "http-body",
1092
+ "hyper",
1093
+ "pin-project-lite",
1094
+ "socket2 0.5.8",
1095
+ "tokio",
1096
+ "tower-service",
1097
+ "tracing",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "iana-time-zone"
1102
+ version = "0.1.61"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
1105
+ dependencies = [
1106
+ "android_system_properties",
1107
+ "core-foundation-sys",
1108
+ "iana-time-zone-haiku",
1109
+ "js-sys",
1110
+ "wasm-bindgen",
1111
+ "windows-core",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "iana-time-zone-haiku"
1116
+ version = "0.1.2"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1119
+ dependencies = [
1120
+ "cc",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "icu_collections"
1125
+ version = "1.5.0"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1128
+ dependencies = [
1129
+ "displaydoc",
1130
+ "yoke",
1131
+ "zerofrom",
1132
+ "zerovec",
1133
+ ]
1134
+
1135
+ [[package]]
1136
+ name = "icu_locid"
1137
+ version = "1.5.0"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1140
+ dependencies = [
1141
+ "displaydoc",
1142
+ "litemap",
1143
+ "tinystr",
1144
+ "writeable",
1145
+ "zerovec",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "icu_locid_transform"
1150
+ version = "1.5.0"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1153
+ dependencies = [
1154
+ "displaydoc",
1155
+ "icu_locid",
1156
+ "icu_locid_transform_data",
1157
+ "icu_provider",
1158
+ "tinystr",
1159
+ "zerovec",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "icu_locid_transform_data"
1164
+ version = "1.5.0"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1167
+
1168
+ [[package]]
1169
+ name = "icu_normalizer"
1170
+ version = "1.5.0"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1173
+ dependencies = [
1174
+ "displaydoc",
1175
+ "icu_collections",
1176
+ "icu_normalizer_data",
1177
+ "icu_properties",
1178
+ "icu_provider",
1179
+ "smallvec",
1180
+ "utf16_iter",
1181
+ "utf8_iter",
1182
+ "write16",
1183
+ "zerovec",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "icu_normalizer_data"
1188
+ version = "1.5.0"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1191
+
1192
+ [[package]]
1193
+ name = "icu_properties"
1194
+ version = "1.5.1"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1197
+ dependencies = [
1198
+ "displaydoc",
1199
+ "icu_collections",
1200
+ "icu_locid_transform",
1201
+ "icu_properties_data",
1202
+ "icu_provider",
1203
+ "tinystr",
1204
+ "zerovec",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "icu_properties_data"
1209
+ version = "1.5.0"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1212
+
1213
+ [[package]]
1214
+ name = "icu_provider"
1215
+ version = "1.5.0"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1218
+ dependencies = [
1219
+ "displaydoc",
1220
+ "icu_locid",
1221
+ "icu_provider_macros",
1222
+ "stable_deref_trait",
1223
+ "tinystr",
1224
+ "writeable",
1225
+ "yoke",
1226
+ "zerofrom",
1227
+ "zerovec",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "icu_provider_macros"
1232
+ version = "1.5.0"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1235
+ dependencies = [
1236
+ "proc-macro2",
1237
+ "quote",
1238
+ "syn 2.0.117",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "ident_case"
1243
+ version = "1.0.1"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1246
+
1247
+ [[package]]
1248
+ name = "idna"
1249
+ version = "1.0.3"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1252
+ dependencies = [
1253
+ "idna_adapter",
1254
+ "smallvec",
1255
+ "utf8_iter",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "idna_adapter"
1260
+ version = "1.2.0"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1263
+ dependencies = [
1264
+ "icu_normalizer",
1265
+ "icu_properties",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "indexmap"
1270
+ version = "1.9.3"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1273
+ dependencies = [
1274
+ "autocfg",
1275
+ "hashbrown 0.12.3",
1276
+ "serde",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "indexmap"
1281
+ version = "2.13.0"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1284
+ dependencies = [
1285
+ "equivalent",
1286
+ "hashbrown 0.16.1",
1287
+ "serde",
1288
+ "serde_core",
1289
+ ]
1290
+
1291
+ [[package]]
1292
+ name = "inventory"
1293
+ version = "0.3.22"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "009ae045c87e7082cb72dab0ccd01ae075dd00141ddc108f43a0ea150a9e7227"
1296
+ dependencies = [
1297
+ "rustversion",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "ipnet"
1302
+ version = "2.11.0"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1305
+
1306
+ [[package]]
1307
+ name = "is-macro"
1308
+ version = "0.3.7"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
1311
+ dependencies = [
1312
+ "heck 0.5.0",
1313
+ "proc-macro2",
1314
+ "quote",
1315
+ "syn 2.0.117",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "itertools"
1320
+ version = "0.11.0"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
1323
+ dependencies = [
1324
+ "either",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "itertools"
1329
+ version = "0.13.0"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1332
+ dependencies = [
1333
+ "either",
1334
+ ]
1335
+
1336
+ [[package]]
1337
+ name = "itertools"
1338
+ version = "0.14.0"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1341
+ dependencies = [
1342
+ "either",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "itoa"
1347
+ version = "1.0.14"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1350
+
1351
+ [[package]]
1352
+ name = "jni"
1353
+ version = "0.21.1"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1356
+ dependencies = [
1357
+ "cesu8",
1358
+ "cfg-if",
1359
+ "combine",
1360
+ "jni-sys",
1361
+ "log",
1362
+ "thiserror 1.0.69",
1363
+ "walkdir",
1364
+ "windows-sys 0.45.0",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "jni-sys"
1369
+ version = "0.3.0"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1372
+
1373
+ [[package]]
1374
+ name = "jobserver"
1375
+ version = "0.1.32"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1378
+ dependencies = [
1379
+ "libc",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "js-sys"
1384
+ version = "0.3.77"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1387
+ dependencies = [
1388
+ "once_cell",
1389
+ "wasm-bindgen",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "lalrpop-util"
1394
+ version = "0.20.2"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
1397
+
1398
+ [[package]]
1399
+ name = "lazy_static"
1400
+ version = "1.5.0"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1403
+
1404
+ [[package]]
1405
+ name = "libc"
1406
+ version = "0.2.174"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
1409
+
1410
+ [[package]]
1411
+ name = "libloading"
1412
+ version = "0.8.6"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1415
+ dependencies = [
1416
+ "cfg-if",
1417
+ "windows-targets 0.52.6",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "linux-raw-sys"
1422
+ version = "0.4.15"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1425
+
1426
+ [[package]]
1427
+ name = "litemap"
1428
+ version = "0.7.4"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
1431
+
1432
+ [[package]]
1433
+ name = "lock_api"
1434
+ version = "0.4.12"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1437
+ dependencies = [
1438
+ "autocfg",
1439
+ "scopeguard",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "log"
1444
+ version = "0.4.29"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1447
+
1448
+ [[package]]
1449
+ name = "maplit"
1450
+ version = "1.0.2"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1453
+
1454
+ [[package]]
1455
+ name = "matchit"
1456
+ version = "0.7.3"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1459
+
1460
+ [[package]]
1461
+ name = "matchit"
1462
+ version = "0.8.4"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1465
+
1466
+ [[package]]
1467
+ name = "matrixmultiply"
1468
+ version = "0.3.9"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "9380b911e3e96d10c1f415da0876389aaf1b56759054eeb0de7df940c456ba1a"
1471
+ dependencies = [
1472
+ "autocfg",
1473
+ "rawpointer",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "memchr"
1478
+ version = "2.7.4"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1481
+
1482
+ [[package]]
1483
+ name = "memmap2"
1484
+ version = "0.9.10"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
1487
+ dependencies = [
1488
+ "libc",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "mime"
1493
+ version = "0.3.17"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1496
+
1497
+ [[package]]
1498
+ name = "miniz_oxide"
1499
+ version = "0.8.3"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
1502
+ dependencies = [
1503
+ "adler2",
1504
+ ]
1505
+
1506
+ [[package]]
1507
+ name = "mio"
1508
+ version = "1.0.3"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1511
+ dependencies = [
1512
+ "libc",
1513
+ "wasi 0.11.0+wasi-snapshot-preview1",
1514
+ "windows-sys 0.52.0",
1515
+ ]
1516
+
1517
+ [[package]]
1518
+ name = "mockito"
1519
+ version = "1.6.1"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "652cd6d169a36eaf9d1e6bce1a221130439a966d7f27858af66a33a66e9c4ee2"
1522
+ dependencies = [
1523
+ "assert-json-diff",
1524
+ "bytes",
1525
+ "colored",
1526
+ "futures-util",
1527
+ "http",
1528
+ "http-body",
1529
+ "http-body-util",
1530
+ "hyper",
1531
+ "hyper-util",
1532
+ "log",
1533
+ "rand 0.8.5",
1534
+ "regex",
1535
+ "serde_json",
1536
+ "serde_urlencoded",
1537
+ "similar",
1538
+ "tokio",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "more-asserts"
1543
+ version = "0.3.1"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "1fafa6961cabd9c63bcd77a45d7e3b7f3b552b70417831fb0f56db717e72407e"
1546
+
1547
+ [[package]]
1548
+ name = "multimap"
1549
+ version = "0.10.0"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
1552
+
1553
+ [[package]]
1554
+ name = "munge"
1555
+ version = "0.4.7"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "5e17401f259eba956ca16491461b6e8f72913a0a114e39736ce404410f915a0c"
1558
+ dependencies = [
1559
+ "munge_macro",
1560
+ ]
1561
+
1562
+ [[package]]
1563
+ name = "munge_macro"
1564
+ version = "0.4.7"
1565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1566
+ checksum = "4568f25ccbd45ab5d5603dc34318c1ec56b117531781260002151b8530a9f931"
1567
+ dependencies = [
1568
+ "proc-macro2",
1569
+ "quote",
1570
+ "syn 2.0.117",
1571
+ ]
1572
+
1573
+ [[package]]
1574
+ name = "napi"
1575
+ version = "3.0.0-alpha.27"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "023afffe908293dd644255348d78502d748e28dab7a329aa72edce1c5ac8be81"
1578
+ dependencies = [
1579
+ "anyhow",
1580
+ "bitflags 2.8.0",
1581
+ "ctor",
1582
+ "napi-build",
1583
+ "napi-sys",
1584
+ "serde",
1585
+ "serde_json",
1586
+ "tokio",
1587
+ ]
1588
+
1589
+ [[package]]
1590
+ name = "napi-build"
1591
+ version = "2.1.4"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "db836caddef23662b94e16bf1f26c40eceb09d6aee5d5b06a7ac199320b69b19"
1594
+
1595
+ [[package]]
1596
+ name = "napi-derive"
1597
+ version = "3.0.0-alpha.25"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "78f3ea213909cb28cdc98badd3d792ae6aeffd76faf11c53a0e6a74a71340204"
1600
+ dependencies = [
1601
+ "convert_case 0.7.1",
1602
+ "napi-derive-backend",
1603
+ "proc-macro2",
1604
+ "quote",
1605
+ "syn 2.0.117",
1606
+ ]
1607
+
1608
+ [[package]]
1609
+ name = "napi-derive-backend"
1610
+ version = "2.0.0-alpha.25"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "ba940671bae74ad90bce07984d06e7284989e4f72ac7deca9eb3c78cd318d215"
1613
+ dependencies = [
1614
+ "convert_case 0.7.1",
1615
+ "proc-macro2",
1616
+ "quote",
1617
+ "semver",
1618
+ "syn 2.0.117",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "napi-sys"
1623
+ version = "3.0.0-alpha.1"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "4cc061b99c514ad4b7abc99d4db1ca24b9542b7ff48b4760bd9f82b24611534d"
1626
+ dependencies = [
1627
+ "libloading",
1628
+ ]
1629
+
1630
+ [[package]]
1631
+ name = "ndarray"
1632
+ version = "0.16.1"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
1635
+ dependencies = [
1636
+ "matrixmultiply",
1637
+ "num-complex",
1638
+ "num-integer",
1639
+ "num-traits",
1640
+ "portable-atomic",
1641
+ "portable-atomic-util",
1642
+ "rawpointer",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "num-bigint"
1647
+ version = "0.4.6"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1650
+ dependencies = [
1651
+ "num-integer",
1652
+ "num-traits",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "num-complex"
1657
+ version = "0.4.6"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1660
+ dependencies = [
1661
+ "num-traits",
1662
+ ]
1663
+
1664
+ [[package]]
1665
+ name = "num-conv"
1666
+ version = "0.2.0"
1667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1668
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
1669
+
1670
+ [[package]]
1671
+ name = "num-integer"
1672
+ version = "0.1.46"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1675
+ dependencies = [
1676
+ "num-traits",
1677
+ ]
1678
+
1679
+ [[package]]
1680
+ name = "num-traits"
1681
+ version = "0.2.19"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1684
+ dependencies = [
1685
+ "autocfg",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "num_cpus"
1690
+ version = "1.16.0"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
1693
+ dependencies = [
1694
+ "hermit-abi 0.3.9",
1695
+ "libc",
1696
+ ]
1697
+
1698
+ [[package]]
1699
+ name = "num_threads"
1700
+ version = "0.1.7"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
1703
+ dependencies = [
1704
+ "libc",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "numpy"
1709
+ version = "0.28.0"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
1712
+ dependencies = [
1713
+ "libc",
1714
+ "ndarray",
1715
+ "num-complex",
1716
+ "num-integer",
1717
+ "num-traits",
1718
+ "pyo3",
1719
+ "pyo3-build-config",
1720
+ "rustc-hash 2.1.1",
1721
+ ]
1722
+
1723
+ [[package]]
1724
+ name = "oai-statsig-rust"
1725
+ version = "0.19.3"
1726
+ dependencies = [
1727
+ "ahash",
1728
+ "arc-swap",
1729
+ "assert-json-diff",
1730
+ "async-trait",
1731
+ "base64",
1732
+ "brotli 8.0.2",
1733
+ "bytes",
1734
+ "chrono",
1735
+ "dashmap",
1736
+ "fancy-regex",
1737
+ "file-guard",
1738
+ "flate2",
1739
+ "futures",
1740
+ "indexmap 2.13.0",
1741
+ "lazy_static",
1742
+ "libc",
1743
+ "log",
1744
+ "memmap2",
1745
+ "mockito",
1746
+ "more-asserts",
1747
+ "ouroboros",
1748
+ "parking_lot",
1749
+ "percent-encoding",
1750
+ "prost 0.14.1",
1751
+ "rand 0.8.5",
1752
+ "reqwest",
1753
+ "rkyv",
1754
+ "rusty-fork",
1755
+ "serde",
1756
+ "serde_derive",
1757
+ "serde_json",
1758
+ "serde_with",
1759
+ "serial_test",
1760
+ "sha2",
1761
+ "sigstat-grpc",
1762
+ "simple_logger",
1763
+ "tempfile",
1764
+ "tokio",
1765
+ "tonic 0.14.2",
1766
+ "tonic-prost-build",
1767
+ "uaparser",
1768
+ "uuid",
1769
+ "wiremock",
1770
+ "zstd",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "object"
1775
+ version = "0.36.7"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1778
+ dependencies = [
1779
+ "memchr",
1780
+ ]
1781
+
1782
+ [[package]]
1783
+ name = "once_cell"
1784
+ version = "1.21.3"
1785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1786
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1787
+
1788
+ [[package]]
1789
+ name = "ordered-float"
1790
+ version = "5.1.0"
1791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1792
+ checksum = "7f4779c6901a562440c3786d08192c6fbda7c1c2060edd10006b05ee35d10f2d"
1793
+ dependencies = [
1794
+ "num-traits",
1795
+ ]
1796
+
1797
+ [[package]]
1798
+ name = "os_str_bytes"
1799
+ version = "6.6.1"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1"
1802
+
1803
+ [[package]]
1804
+ name = "ouroboros"
1805
+ version = "0.18.5"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59"
1808
+ dependencies = [
1809
+ "aliasable",
1810
+ "ouroboros_macro",
1811
+ "static_assertions",
1812
+ ]
1813
+
1814
+ [[package]]
1815
+ name = "ouroboros_macro"
1816
+ version = "0.18.5"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0"
1819
+ dependencies = [
1820
+ "heck 0.4.1",
1821
+ "proc-macro2",
1822
+ "proc-macro2-diagnostics",
1823
+ "quote",
1824
+ "syn 2.0.117",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "parking_lot"
1829
+ version = "0.12.3"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1832
+ dependencies = [
1833
+ "lock_api",
1834
+ "parking_lot_core",
1835
+ ]
1836
+
1837
+ [[package]]
1838
+ name = "parking_lot_core"
1839
+ version = "0.9.10"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1842
+ dependencies = [
1843
+ "cfg-if",
1844
+ "libc",
1845
+ "redox_syscall",
1846
+ "smallvec",
1847
+ "windows-targets 0.52.6",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "percent-encoding"
1852
+ version = "2.3.1"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1855
+
1856
+ [[package]]
1857
+ name = "petgraph"
1858
+ version = "0.6.5"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
1861
+ dependencies = [
1862
+ "fixedbitset",
1863
+ "indexmap 2.13.0",
1864
+ ]
1865
+
1866
+ [[package]]
1867
+ name = "phf"
1868
+ version = "0.11.3"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1871
+ dependencies = [
1872
+ "phf_shared",
1873
+ ]
1874
+
1875
+ [[package]]
1876
+ name = "phf_codegen"
1877
+ version = "0.11.3"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1880
+ dependencies = [
1881
+ "phf_generator",
1882
+ "phf_shared",
1883
+ ]
1884
+
1885
+ [[package]]
1886
+ name = "phf_generator"
1887
+ version = "0.11.3"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1890
+ dependencies = [
1891
+ "phf_shared",
1892
+ "rand 0.8.5",
1893
+ ]
1894
+
1895
+ [[package]]
1896
+ name = "phf_shared"
1897
+ version = "0.11.3"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1900
+ dependencies = [
1901
+ "siphasher",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "pin-project"
1906
+ version = "1.1.9"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "dfe2e71e1471fe07709406bf725f710b02927c9c54b2b5b2ec0e8087d97c327d"
1909
+ dependencies = [
1910
+ "pin-project-internal",
1911
+ ]
1912
+
1913
+ [[package]]
1914
+ name = "pin-project-internal"
1915
+ version = "1.1.9"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "f6e859e6e5bd50440ab63c47e3ebabc90f26251f7c73c3d3e837b74a1cc3fa67"
1918
+ dependencies = [
1919
+ "proc-macro2",
1920
+ "quote",
1921
+ "syn 2.0.117",
1922
+ ]
1923
+
1924
+ [[package]]
1925
+ name = "pin-project-lite"
1926
+ version = "0.2.16"
1927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1928
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1929
+
1930
+ [[package]]
1931
+ name = "pin-utils"
1932
+ version = "0.1.0"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1935
+
1936
+ [[package]]
1937
+ name = "pkg-config"
1938
+ version = "0.3.31"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
1941
+
1942
+ [[package]]
1943
+ name = "portable-atomic"
1944
+ version = "1.10.0"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
1947
+
1948
+ [[package]]
1949
+ name = "portable-atomic-util"
1950
+ version = "0.2.4"
1951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1953
+ dependencies = [
1954
+ "portable-atomic",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "powerfmt"
1959
+ version = "0.2.0"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1962
+
1963
+ [[package]]
1964
+ name = "ppv-lite86"
1965
+ version = "0.2.20"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
1968
+ dependencies = [
1969
+ "zerocopy 0.7.35",
1970
+ ]
1971
+
1972
+ [[package]]
1973
+ name = "prettyplease"
1974
+ version = "0.2.29"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
1977
+ dependencies = [
1978
+ "proc-macro2",
1979
+ "syn 2.0.117",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "proc-macro2"
1984
+ version = "1.0.106"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1987
+ dependencies = [
1988
+ "unicode-ident",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "proc-macro2-diagnostics"
1993
+ version = "0.10.1"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
1996
+ dependencies = [
1997
+ "proc-macro2",
1998
+ "quote",
1999
+ "syn 2.0.117",
2000
+ "version_check",
2001
+ "yansi",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "prost"
2006
+ version = "0.13.4"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec"
2009
+ dependencies = [
2010
+ "bytes",
2011
+ "prost-derive 0.13.4",
2012
+ ]
2013
+
2014
+ [[package]]
2015
+ name = "prost"
2016
+ version = "0.14.1"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d"
2019
+ dependencies = [
2020
+ "bytes",
2021
+ "prost-derive 0.14.1",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "prost-build"
2026
+ version = "0.13.4"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "d0f3e5beed80eb580c68e2c600937ac2c4eedabdfd5ef1e5b7ea4f3fba84497b"
2029
+ dependencies = [
2030
+ "heck 0.5.0",
2031
+ "itertools 0.13.0",
2032
+ "log",
2033
+ "multimap",
2034
+ "once_cell",
2035
+ "petgraph",
2036
+ "prettyplease",
2037
+ "prost 0.13.4",
2038
+ "prost-types 0.13.4",
2039
+ "regex",
2040
+ "syn 2.0.117",
2041
+ "tempfile",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "prost-build"
2046
+ version = "0.14.1"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "ac6c3320f9abac597dcbc668774ef006702672474aad53c6d596b62e487b40b1"
2049
+ dependencies = [
2050
+ "heck 0.5.0",
2051
+ "itertools 0.14.0",
2052
+ "log",
2053
+ "multimap",
2054
+ "once_cell",
2055
+ "petgraph",
2056
+ "prettyplease",
2057
+ "prost 0.14.1",
2058
+ "prost-types 0.14.1",
2059
+ "pulldown-cmark",
2060
+ "pulldown-cmark-to-cmark",
2061
+ "regex",
2062
+ "syn 2.0.117",
2063
+ "tempfile",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "prost-derive"
2068
+ version = "0.13.4"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3"
2071
+ dependencies = [
2072
+ "anyhow",
2073
+ "itertools 0.13.0",
2074
+ "proc-macro2",
2075
+ "quote",
2076
+ "syn 2.0.117",
2077
+ ]
2078
+
2079
+ [[package]]
2080
+ name = "prost-derive"
2081
+ version = "0.14.1"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "9120690fafc389a67ba3803df527d0ec9cbbc9cc45e4cc20b332996dfb672425"
2084
+ dependencies = [
2085
+ "anyhow",
2086
+ "itertools 0.14.0",
2087
+ "proc-macro2",
2088
+ "quote",
2089
+ "syn 2.0.117",
2090
+ ]
2091
+
2092
+ [[package]]
2093
+ name = "prost-types"
2094
+ version = "0.13.4"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "cc2f1e56baa61e93533aebc21af4d2134b70f66275e0fcdf3cbe43d77ff7e8fc"
2097
+ dependencies = [
2098
+ "prost 0.13.4",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "prost-types"
2103
+ version = "0.14.1"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "b9b4db3d6da204ed77bb26ba83b6122a73aeb2e87e25fbf7ad2e84c4ccbf8f72"
2106
+ dependencies = [
2107
+ "prost 0.14.1",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "ptr_meta"
2112
+ version = "0.3.1"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "0b9a0cf95a1196af61d4f1cbdab967179516d9a4a4312af1f31948f8f6224a79"
2115
+ dependencies = [
2116
+ "ptr_meta_derive",
2117
+ ]
2118
+
2119
+ [[package]]
2120
+ name = "ptr_meta_derive"
2121
+ version = "0.3.1"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "7347867d0a7e1208d93b46767be83e2b8f978c3dad35f775ac8d8847551d6fe1"
2124
+ dependencies = [
2125
+ "proc-macro2",
2126
+ "quote",
2127
+ "syn 2.0.117",
2128
+ ]
2129
+
2130
+ [[package]]
2131
+ name = "pulldown-cmark"
2132
+ version = "0.13.0"
2133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+ checksum = "1e8bbe1a966bd2f362681a44f6edce3c2310ac21e4d5067a6e7ec396297a6ea0"
2135
+ dependencies = [
2136
+ "bitflags 2.8.0",
2137
+ "memchr",
2138
+ "unicase",
2139
+ ]
2140
+
2141
+ [[package]]
2142
+ name = "pulldown-cmark-to-cmark"
2143
+ version = "21.1.0"
2144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2145
+ checksum = "8246feae3db61428fd0bb94285c690b460e4517d83152377543ca802357785f1"
2146
+ dependencies = [
2147
+ "pulldown-cmark",
2148
+ ]
2149
+
2150
+ [[package]]
2151
+ name = "pyo3"
2152
+ version = "0.28.2"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
2155
+ dependencies = [
2156
+ "libc",
2157
+ "once_cell",
2158
+ "portable-atomic",
2159
+ "pyo3-build-config",
2160
+ "pyo3-ffi",
2161
+ "pyo3-macros",
2162
+ ]
2163
+
2164
+ [[package]]
2165
+ name = "pyo3-build-config"
2166
+ version = "0.28.2"
2167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2168
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
2169
+ dependencies = [
2170
+ "target-lexicon",
2171
+ ]
2172
+
2173
+ [[package]]
2174
+ name = "pyo3-ffi"
2175
+ version = "0.28.2"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
2178
+ dependencies = [
2179
+ "libc",
2180
+ "pyo3-build-config",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "pyo3-macros"
2185
+ version = "0.28.2"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
2188
+ dependencies = [
2189
+ "proc-macro2",
2190
+ "pyo3-macros-backend",
2191
+ "quote",
2192
+ "syn 2.0.117",
2193
+ ]
2194
+
2195
+ [[package]]
2196
+ name = "pyo3-macros-backend"
2197
+ version = "0.28.2"
2198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2199
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
2200
+ dependencies = [
2201
+ "heck 0.5.0",
2202
+ "proc-macro2",
2203
+ "pyo3-build-config",
2204
+ "quote",
2205
+ "syn 2.0.117",
2206
+ ]
2207
+
2208
+ [[package]]
2209
+ name = "pyo3-stub-gen"
2210
+ version = "0.20.0"
2211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2212
+ checksum = "83e2b9e475ac67c249ef794033ac3cf25a3216fbe5fe4b80cd82ab5a84d88485"
2213
+ dependencies = [
2214
+ "anyhow",
2215
+ "chrono",
2216
+ "either",
2217
+ "indexmap 2.13.0",
2218
+ "inventory",
2219
+ "itertools 0.14.0",
2220
+ "log",
2221
+ "maplit",
2222
+ "num-complex",
2223
+ "numpy",
2224
+ "ordered-float",
2225
+ "pyo3",
2226
+ "pyo3-stub-gen-derive",
2227
+ "rustpython-parser",
2228
+ "serde",
2229
+ "serde_json",
2230
+ "time",
2231
+ "toml 1.0.6+spec-1.1.0",
2232
+ ]
2233
+
2234
+ [[package]]
2235
+ name = "pyo3-stub-gen-derive"
2236
+ version = "0.20.0"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "11633044267957aeda9569863a3a57b3aa2aeebc7144439423c1ddde3d00d887"
2239
+ dependencies = [
2240
+ "heck 0.5.0",
2241
+ "indexmap 2.13.0",
2242
+ "proc-macro2",
2243
+ "quote",
2244
+ "rustpython-parser",
2245
+ "syn 2.0.117",
2246
+ ]
2247
+
2248
+ [[package]]
2249
+ name = "quick-error"
2250
+ version = "1.2.3"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2253
+
2254
+ [[package]]
2255
+ name = "quinn"
2256
+ version = "0.11.7"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
2259
+ dependencies = [
2260
+ "bytes",
2261
+ "cfg_aliases",
2262
+ "pin-project-lite",
2263
+ "quinn-proto",
2264
+ "quinn-udp",
2265
+ "rustc-hash 2.1.1",
2266
+ "rustls",
2267
+ "socket2 0.5.8",
2268
+ "thiserror 2.0.12",
2269
+ "tokio",
2270
+ "tracing",
2271
+ "web-time",
2272
+ ]
2273
+
2274
+ [[package]]
2275
+ name = "quinn-proto"
2276
+ version = "0.11.10"
2277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2278
+ checksum = "b820744eb4dc9b57a3398183639c511b5a26d2ed702cedd3febaa1393caa22cc"
2279
+ dependencies = [
2280
+ "bytes",
2281
+ "getrandom 0.3.1",
2282
+ "rand 0.9.2",
2283
+ "ring",
2284
+ "rustc-hash 2.1.1",
2285
+ "rustls",
2286
+ "rustls-pki-types",
2287
+ "slab",
2288
+ "thiserror 2.0.12",
2289
+ "tinyvec",
2290
+ "tracing",
2291
+ "web-time",
2292
+ ]
2293
+
2294
+ [[package]]
2295
+ name = "quinn-udp"
2296
+ version = "0.5.10"
2297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2298
+ checksum = "e46f3055866785f6b92bc6164b76be02ca8f2eb4b002c0354b28cf4c119e5944"
2299
+ dependencies = [
2300
+ "cfg_aliases",
2301
+ "libc",
2302
+ "once_cell",
2303
+ "socket2 0.5.8",
2304
+ "tracing",
2305
+ "windows-sys 0.59.0",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "quote"
2310
+ version = "1.0.45"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2313
+ dependencies = [
2314
+ "proc-macro2",
2315
+ ]
2316
+
2317
+ [[package]]
2318
+ name = "rancor"
2319
+ version = "0.1.1"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "a063ea72381527c2a0561da9c80000ef822bdd7c3241b1cc1b12100e3df081ee"
2322
+ dependencies = [
2323
+ "ptr_meta",
2324
+ ]
2325
+
2326
+ [[package]]
2327
+ name = "rand"
2328
+ version = "0.8.5"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2331
+ dependencies = [
2332
+ "libc",
2333
+ "rand_chacha 0.3.1",
2334
+ "rand_core 0.6.4",
2335
+ ]
2336
+
2337
+ [[package]]
2338
+ name = "rand"
2339
+ version = "0.9.2"
2340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2341
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2342
+ dependencies = [
2343
+ "rand_chacha 0.9.0",
2344
+ "rand_core 0.9.0",
2345
+ ]
2346
+
2347
+ [[package]]
2348
+ name = "rand_chacha"
2349
+ version = "0.3.1"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2352
+ dependencies = [
2353
+ "ppv-lite86",
2354
+ "rand_core 0.6.4",
2355
+ ]
2356
+
2357
+ [[package]]
2358
+ name = "rand_chacha"
2359
+ version = "0.9.0"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2362
+ dependencies = [
2363
+ "ppv-lite86",
2364
+ "rand_core 0.9.0",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "rand_core"
2369
+ version = "0.6.4"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2372
+ dependencies = [
2373
+ "getrandom 0.2.15",
2374
+ ]
2375
+
2376
+ [[package]]
2377
+ name = "rand_core"
2378
+ version = "0.9.0"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "b08f3c9802962f7e1b25113931d94f43ed9725bebc59db9d0c3e9a23b67e15ff"
2381
+ dependencies = [
2382
+ "getrandom 0.3.1",
2383
+ "zerocopy 0.8.17",
2384
+ ]
2385
+
2386
+ [[package]]
2387
+ name = "rawpointer"
2388
+ version = "0.2.1"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2391
+
2392
+ [[package]]
2393
+ name = "redox_syscall"
2394
+ version = "0.5.8"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
2397
+ dependencies = [
2398
+ "bitflags 2.8.0",
2399
+ ]
2400
+
2401
+ [[package]]
2402
+ name = "regex"
2403
+ version = "1.11.1"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2406
+ dependencies = [
2407
+ "aho-corasick",
2408
+ "memchr",
2409
+ "regex-automata",
2410
+ "regex-syntax",
2411
+ ]
2412
+
2413
+ [[package]]
2414
+ name = "regex-automata"
2415
+ version = "0.4.9"
2416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2417
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2418
+ dependencies = [
2419
+ "aho-corasick",
2420
+ "memchr",
2421
+ "regex-syntax",
2422
+ ]
2423
+
2424
+ [[package]]
2425
+ name = "regex-lite"
2426
+ version = "0.1.6"
2427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2428
+ checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
2429
+
2430
+ [[package]]
2431
+ name = "regex-syntax"
2432
+ version = "0.8.5"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2435
+
2436
+ [[package]]
2437
+ name = "rend"
2438
+ version = "0.5.3"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "cadadef317c2f20755a64d7fdc48f9e7178ee6b0e1f7fce33fa60f1d68a276e6"
2441
+ dependencies = [
2442
+ "bytecheck",
2443
+ ]
2444
+
2445
+ [[package]]
2446
+ name = "reqwest"
2447
+ version = "0.12.15"
2448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2449
+ checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
2450
+ dependencies = [
2451
+ "async-compression",
2452
+ "base64",
2453
+ "bytes",
2454
+ "futures-core",
2455
+ "futures-util",
2456
+ "h2",
2457
+ "http",
2458
+ "http-body",
2459
+ "http-body-util",
2460
+ "hyper",
2461
+ "hyper-rustls",
2462
+ "hyper-util",
2463
+ "ipnet",
2464
+ "js-sys",
2465
+ "log",
2466
+ "mime",
2467
+ "once_cell",
2468
+ "percent-encoding",
2469
+ "pin-project-lite",
2470
+ "quinn",
2471
+ "rustls",
2472
+ "rustls-pemfile",
2473
+ "rustls-pki-types",
2474
+ "serde",
2475
+ "serde_json",
2476
+ "serde_urlencoded",
2477
+ "sync_wrapper",
2478
+ "tokio",
2479
+ "tokio-rustls",
2480
+ "tokio-util",
2481
+ "tower 0.5.2",
2482
+ "tower-service",
2483
+ "url",
2484
+ "wasm-bindgen",
2485
+ "wasm-bindgen-futures",
2486
+ "web-sys",
2487
+ "webpki-roots",
2488
+ "windows-registry",
2489
+ ]
2490
+
2491
+ [[package]]
2492
+ name = "ring"
2493
+ version = "0.17.14"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2496
+ dependencies = [
2497
+ "cc",
2498
+ "cfg-if",
2499
+ "getrandom 0.2.15",
2500
+ "libc",
2501
+ "untrusted",
2502
+ "windows-sys 0.52.0",
2503
+ ]
2504
+
2505
+ [[package]]
2506
+ name = "rkyv"
2507
+ version = "0.8.15"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "1a30e631b7f4a03dee9056b8ef6982e8ba371dd5bedb74d3ec86df4499132c70"
2510
+ dependencies = [
2511
+ "bytecheck",
2512
+ "bytes",
2513
+ "hashbrown 0.16.1",
2514
+ "indexmap 2.13.0",
2515
+ "munge",
2516
+ "ptr_meta",
2517
+ "rancor",
2518
+ "rend",
2519
+ "rkyv_derive",
2520
+ "tinyvec",
2521
+ "uuid",
2522
+ ]
2523
+
2524
+ [[package]]
2525
+ name = "rkyv_derive"
2526
+ version = "0.8.15"
2527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2528
+ checksum = "8100bb34c0a1d0f907143db3149e6b4eea3c33b9ee8b189720168e818303986f"
2529
+ dependencies = [
2530
+ "proc-macro2",
2531
+ "quote",
2532
+ "syn 2.0.117",
2533
+ ]
2534
+
2535
+ [[package]]
2536
+ name = "rustc-demangle"
2537
+ version = "0.1.24"
2538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2539
+ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2540
+
2541
+ [[package]]
2542
+ name = "rustc-hash"
2543
+ version = "1.1.0"
2544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2545
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2546
+
2547
+ [[package]]
2548
+ name = "rustc-hash"
2549
+ version = "2.1.1"
2550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2551
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2552
+
2553
+ [[package]]
2554
+ name = "rustc_version"
2555
+ version = "0.4.1"
2556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2557
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2558
+ dependencies = [
2559
+ "semver",
2560
+ ]
2561
+
2562
+ [[package]]
2563
+ name = "rustix"
2564
+ version = "0.38.44"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2567
+ dependencies = [
2568
+ "bitflags 2.8.0",
2569
+ "errno",
2570
+ "libc",
2571
+ "linux-raw-sys",
2572
+ "windows-sys 0.59.0",
2573
+ ]
2574
+
2575
+ [[package]]
2576
+ name = "rustler"
2577
+ version = "0.36.1"
2578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2579
+ checksum = "f04a7b61bf2db5495d6c0d2eb4b3f0f366864d47f2482834656e25d1b25fe290"
2580
+ dependencies = [
2581
+ "inventory",
2582
+ "libloading",
2583
+ "regex-lite",
2584
+ "rustler_codegen",
2585
+ "serde",
2586
+ ]
2587
+
2588
+ [[package]]
2589
+ name = "rustler_codegen"
2590
+ version = "0.36.1"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "bf9365a04e3a3a4d3136953d97c67fd0a9c036d36197917961551c2cc1ecb385"
2593
+ dependencies = [
2594
+ "heck 0.5.0",
2595
+ "inventory",
2596
+ "proc-macro2",
2597
+ "quote",
2598
+ "syn 2.0.117",
2599
+ ]
2600
+
2601
+ [[package]]
2602
+ name = "rustls"
2603
+ version = "0.23.25"
2604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2605
+ checksum = "822ee9188ac4ec04a2f0531e55d035fb2de73f18b41a63c70c2712503b6fb13c"
2606
+ dependencies = [
2607
+ "log",
2608
+ "once_cell",
2609
+ "ring",
2610
+ "rustls-pki-types",
2611
+ "rustls-webpki",
2612
+ "subtle",
2613
+ "zeroize",
2614
+ ]
2615
+
2616
+ [[package]]
2617
+ name = "rustls-pemfile"
2618
+ version = "2.2.0"
2619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2620
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2621
+ dependencies = [
2622
+ "rustls-pki-types",
2623
+ ]
2624
+
2625
+ [[package]]
2626
+ name = "rustls-pki-types"
2627
+ version = "1.11.0"
2628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2629
+ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
2630
+ dependencies = [
2631
+ "web-time",
2632
+ ]
2633
+
2634
+ [[package]]
2635
+ name = "rustls-webpki"
2636
+ version = "0.103.0"
2637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2638
+ checksum = "0aa4eeac2588ffff23e9d7a7e9b3f971c5fb5b7ebc9452745e0c232c64f83b2f"
2639
+ dependencies = [
2640
+ "ring",
2641
+ "rustls-pki-types",
2642
+ "untrusted",
2643
+ ]
2644
+
2645
+ [[package]]
2646
+ name = "rustpython-ast"
2647
+ version = "0.4.0"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "4cdaf8ee5c1473b993b398c174641d3aa9da847af36e8d5eb8291930b72f31a5"
2650
+ dependencies = [
2651
+ "is-macro",
2652
+ "num-bigint",
2653
+ "rustpython-parser-core",
2654
+ "static_assertions",
2655
+ ]
2656
+
2657
+ [[package]]
2658
+ name = "rustpython-parser"
2659
+ version = "0.4.0"
2660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2661
+ checksum = "868f724daac0caf9bd36d38caf45819905193a901e8f1c983345a68e18fb2abb"
2662
+ dependencies = [
2663
+ "anyhow",
2664
+ "is-macro",
2665
+ "itertools 0.11.0",
2666
+ "lalrpop-util",
2667
+ "log",
2668
+ "num-bigint",
2669
+ "num-traits",
2670
+ "phf",
2671
+ "phf_codegen",
2672
+ "rustc-hash 1.1.0",
2673
+ "rustpython-ast",
2674
+ "rustpython-parser-core",
2675
+ "tiny-keccak",
2676
+ "unic-emoji-char",
2677
+ "unic-ucd-ident",
2678
+ "unicode_names2",
2679
+ ]
2680
+
2681
+ [[package]]
2682
+ name = "rustpython-parser-core"
2683
+ version = "0.4.0"
2684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2685
+ checksum = "b4b6c12fa273825edc7bccd9a734f0ad5ba4b8a2f4da5ff7efe946f066d0f4ad"
2686
+ dependencies = [
2687
+ "is-macro",
2688
+ "memchr",
2689
+ "rustpython-parser-vendored",
2690
+ ]
2691
+
2692
+ [[package]]
2693
+ name = "rustpython-parser-vendored"
2694
+ version = "0.4.0"
2695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2696
+ checksum = "04fcea49a4630a3a5d940f4d514dc4f575ed63c14c3e3ed07146634aed7f67a6"
2697
+ dependencies = [
2698
+ "memchr",
2699
+ "once_cell",
2700
+ ]
2701
+
2702
+ [[package]]
2703
+ name = "rustversion"
2704
+ version = "1.0.19"
2705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2706
+ checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
2707
+
2708
+ [[package]]
2709
+ name = "rusty-fork"
2710
+ version = "0.3.1"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
2713
+ dependencies = [
2714
+ "fnv",
2715
+ "quick-error",
2716
+ "tempfile",
2717
+ "wait-timeout",
2718
+ ]
2719
+
2720
+ [[package]]
2721
+ name = "ryu"
2722
+ version = "1.0.19"
2723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2724
+ checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
2725
+
2726
+ [[package]]
2727
+ name = "same-file"
2728
+ version = "1.0.6"
2729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2730
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2731
+ dependencies = [
2732
+ "winapi-util",
2733
+ ]
2734
+
2735
+ [[package]]
2736
+ name = "scc"
2737
+ version = "2.3.4"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "22b2d775fb28f245817589471dd49c5edf64237f4a19d10ce9a92ff4651a27f4"
2740
+ dependencies = [
2741
+ "sdd",
2742
+ ]
2743
+
2744
+ [[package]]
2745
+ name = "scopeguard"
2746
+ version = "1.2.0"
2747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2748
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2749
+
2750
+ [[package]]
2751
+ name = "sdd"
2752
+ version = "3.0.9"
2753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2754
+ checksum = "62f5557d2bbddd5afd236ba7856b0e494f5acc7ce805bb0774cc5674b20a06b4"
2755
+
2756
+ [[package]]
2757
+ name = "semver"
2758
+ version = "1.0.25"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03"
2761
+
2762
+ [[package]]
2763
+ name = "serde"
2764
+ version = "1.0.228"
2765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2766
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2767
+ dependencies = [
2768
+ "serde_core",
2769
+ "serde_derive",
2770
+ ]
2771
+
2772
+ [[package]]
2773
+ name = "serde_core"
2774
+ version = "1.0.228"
2775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2776
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2777
+ dependencies = [
2778
+ "serde_derive",
2779
+ ]
2780
+
2781
+ [[package]]
2782
+ name = "serde_derive"
2783
+ version = "1.0.228"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2786
+ dependencies = [
2787
+ "proc-macro2",
2788
+ "quote",
2789
+ "syn 2.0.117",
2790
+ ]
2791
+
2792
+ [[package]]
2793
+ name = "serde_json"
2794
+ version = "1.0.143"
2795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2796
+ checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
2797
+ dependencies = [
2798
+ "indexmap 2.13.0",
2799
+ "itoa",
2800
+ "memchr",
2801
+ "ryu",
2802
+ "serde",
2803
+ ]
2804
+
2805
+ [[package]]
2806
+ name = "serde_spanned"
2807
+ version = "1.0.4"
2808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2809
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
2810
+ dependencies = [
2811
+ "serde_core",
2812
+ ]
2813
+
2814
+ [[package]]
2815
+ name = "serde_urlencoded"
2816
+ version = "0.7.1"
2817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2818
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2819
+ dependencies = [
2820
+ "form_urlencoded",
2821
+ "itoa",
2822
+ "ryu",
2823
+ "serde",
2824
+ ]
2825
+
2826
+ [[package]]
2827
+ name = "serde_with"
2828
+ version = "3.12.0"
2829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2830
+ checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
2831
+ dependencies = [
2832
+ "base64",
2833
+ "chrono",
2834
+ "hex",
2835
+ "indexmap 1.9.3",
2836
+ "indexmap 2.13.0",
2837
+ "serde",
2838
+ "serde_derive",
2839
+ "serde_json",
2840
+ "serde_with_macros",
2841
+ "time",
2842
+ ]
2843
+
2844
+ [[package]]
2845
+ name = "serde_with_macros"
2846
+ version = "3.12.0"
2847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2848
+ checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
2849
+ dependencies = [
2850
+ "darling",
2851
+ "proc-macro2",
2852
+ "quote",
2853
+ "syn 2.0.117",
2854
+ ]
2855
+
2856
+ [[package]]
2857
+ name = "serde_yaml"
2858
+ version = "0.9.34+deprecated"
2859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2860
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2861
+ dependencies = [
2862
+ "indexmap 2.13.0",
2863
+ "itoa",
2864
+ "ryu",
2865
+ "serde",
2866
+ "unsafe-libyaml",
2867
+ ]
2868
+
2869
+ [[package]]
2870
+ name = "serial_test"
2871
+ version = "3.2.0"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "1b258109f244e1d6891bf1053a55d63a5cd4f8f4c30cf9a1280989f80e7a1fa9"
2874
+ dependencies = [
2875
+ "futures",
2876
+ "log",
2877
+ "once_cell",
2878
+ "parking_lot",
2879
+ "scc",
2880
+ "serial_test_derive",
2881
+ ]
2882
+
2883
+ [[package]]
2884
+ name = "serial_test_derive"
2885
+ version = "3.2.0"
2886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2887
+ checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef"
2888
+ dependencies = [
2889
+ "proc-macro2",
2890
+ "quote",
2891
+ "syn 2.0.117",
2892
+ ]
2893
+
2894
+ [[package]]
2895
+ name = "sha2"
2896
+ version = "0.10.8"
2897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2898
+ checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
2899
+ dependencies = [
2900
+ "cfg-if",
2901
+ "cpufeatures",
2902
+ "digest",
2903
+ ]
2904
+
2905
+ [[package]]
2906
+ name = "shlex"
2907
+ version = "1.3.0"
2908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2909
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2910
+
2911
+ [[package]]
2912
+ name = "signal-hook-registry"
2913
+ version = "1.4.2"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
2916
+ dependencies = [
2917
+ "libc",
2918
+ ]
2919
+
2920
+ [[package]]
2921
+ name = "sigstat-grpc"
2922
+ version = "0.19.3"
2923
+ dependencies = [
2924
+ "async-trait",
2925
+ "chrono",
2926
+ "lazy_static",
2927
+ "log",
2928
+ "parking_lot",
2929
+ "prost 0.13.4",
2930
+ "tokio",
2931
+ "tonic 0.12.3",
2932
+ "tonic-build 0.12.3",
2933
+ ]
2934
+
2935
+ [[package]]
2936
+ name = "simdutf8"
2937
+ version = "0.1.5"
2938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2939
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2940
+
2941
+ [[package]]
2942
+ name = "similar"
2943
+ version = "2.7.0"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
2946
+
2947
+ [[package]]
2948
+ name = "simple_logger"
2949
+ version = "5.0.0"
2950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2951
+ checksum = "e8c5dfa5e08767553704aa0ffd9d9794d527103c736aba9854773851fd7497eb"
2952
+ dependencies = [
2953
+ "colored",
2954
+ "log",
2955
+ "time",
2956
+ "windows-sys 0.48.0",
2957
+ ]
2958
+
2959
+ [[package]]
2960
+ name = "siphasher"
2961
+ version = "1.0.2"
2962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2963
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
2964
+
2965
+ [[package]]
2966
+ name = "slab"
2967
+ version = "0.4.9"
2968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2969
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2970
+ dependencies = [
2971
+ "autocfg",
2972
+ ]
2973
+
2974
+ [[package]]
2975
+ name = "smallvec"
2976
+ version = "1.13.2"
2977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2978
+ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2979
+
2980
+ [[package]]
2981
+ name = "socket2"
2982
+ version = "0.5.8"
2983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2984
+ checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
2985
+ dependencies = [
2986
+ "libc",
2987
+ "windows-sys 0.52.0",
2988
+ ]
2989
+
2990
+ [[package]]
2991
+ name = "socket2"
2992
+ version = "0.6.1"
2993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2994
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
2995
+ dependencies = [
2996
+ "libc",
2997
+ "windows-sys 0.60.2",
2998
+ ]
2999
+
3000
+ [[package]]
3001
+ name = "stable_deref_trait"
3002
+ version = "1.2.0"
3003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3004
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3005
+
3006
+ [[package]]
3007
+ name = "static_assertions"
3008
+ version = "1.1.0"
3009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3010
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3011
+
3012
+ [[package]]
3013
+ name = "statsig-node"
3014
+ version = "0.19.3"
3015
+ dependencies = [
3016
+ "async-trait",
3017
+ "napi",
3018
+ "napi-build",
3019
+ "napi-derive",
3020
+ "oai-statsig-rust",
3021
+ "parking_lot",
3022
+ "rkyv",
3023
+ "serde",
3024
+ "serde_json",
3025
+ ]
3026
+
3027
+ [[package]]
3028
+ name = "statsig-pyo3"
3029
+ version = "0.19.3"
3030
+ dependencies = [
3031
+ "async-trait",
3032
+ "lazy_static",
3033
+ "oai-statsig-rust",
3034
+ "parking_lot",
3035
+ "pyo3",
3036
+ "pyo3-stub-gen",
3037
+ "rkyv",
3038
+ "serde",
3039
+ "serde_json",
3040
+ ]
3041
+
3042
+ [[package]]
3043
+ name = "statsig_elixir"
3044
+ version = "0.19.3"
3045
+ dependencies = [
3046
+ "async-trait",
3047
+ "oai-statsig-rust",
3048
+ "parking_lot",
3049
+ "rustler",
3050
+ "serde",
3051
+ "serde_json",
3052
+ "tokio",
3053
+ ]
3054
+
3055
+ [[package]]
3056
+ name = "statsig_ffi"
3057
+ version = "0.19.3"
3058
+ dependencies = [
3059
+ "async-trait",
3060
+ "cbindgen",
3061
+ "csbindgen",
3062
+ "jni",
3063
+ "lazy_static",
3064
+ "log",
3065
+ "oai-statsig-rust",
3066
+ "serde",
3067
+ "serde_json",
3068
+ "tokio",
3069
+ ]
3070
+
3071
+ [[package]]
3072
+ name = "strsim"
3073
+ version = "0.10.0"
3074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3075
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
3076
+
3077
+ [[package]]
3078
+ name = "strsim"
3079
+ version = "0.11.1"
3080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3081
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3082
+
3083
+ [[package]]
3084
+ name = "subtle"
3085
+ version = "2.6.1"
3086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3087
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3088
+
3089
+ [[package]]
3090
+ name = "syn"
3091
+ version = "1.0.109"
3092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3093
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3094
+ dependencies = [
3095
+ "proc-macro2",
3096
+ "quote",
3097
+ "unicode-ident",
3098
+ ]
3099
+
3100
+ [[package]]
3101
+ name = "syn"
3102
+ version = "2.0.117"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3105
+ dependencies = [
3106
+ "proc-macro2",
3107
+ "quote",
3108
+ "unicode-ident",
3109
+ ]
3110
+
3111
+ [[package]]
3112
+ name = "sync_wrapper"
3113
+ version = "1.0.2"
3114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3115
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3116
+ dependencies = [
3117
+ "futures-core",
3118
+ ]
3119
+
3120
+ [[package]]
3121
+ name = "synstructure"
3122
+ version = "0.13.1"
3123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3124
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
3125
+ dependencies = [
3126
+ "proc-macro2",
3127
+ "quote",
3128
+ "syn 2.0.117",
3129
+ ]
3130
+
3131
+ [[package]]
3132
+ name = "target-lexicon"
3133
+ version = "0.13.5"
3134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3135
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3136
+
3137
+ [[package]]
3138
+ name = "tempfile"
3139
+ version = "3.16.0"
3140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3141
+ checksum = "38c246215d7d24f48ae091a2902398798e05d978b24315d6efbc00ede9a8bb91"
3142
+ dependencies = [
3143
+ "cfg-if",
3144
+ "fastrand",
3145
+ "getrandom 0.3.1",
3146
+ "once_cell",
3147
+ "rustix",
3148
+ "windows-sys 0.59.0",
3149
+ ]
3150
+
3151
+ [[package]]
3152
+ name = "termcolor"
3153
+ version = "1.4.1"
3154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3155
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
3156
+ dependencies = [
3157
+ "winapi-util",
3158
+ ]
3159
+
3160
+ [[package]]
3161
+ name = "textwrap"
3162
+ version = "0.16.1"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9"
3165
+
3166
+ [[package]]
3167
+ name = "thiserror"
3168
+ version = "1.0.69"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3171
+ dependencies = [
3172
+ "thiserror-impl 1.0.69",
3173
+ ]
3174
+
3175
+ [[package]]
3176
+ name = "thiserror"
3177
+ version = "2.0.12"
3178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3179
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
3180
+ dependencies = [
3181
+ "thiserror-impl 2.0.12",
3182
+ ]
3183
+
3184
+ [[package]]
3185
+ name = "thiserror-impl"
3186
+ version = "1.0.69"
3187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3188
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3189
+ dependencies = [
3190
+ "proc-macro2",
3191
+ "quote",
3192
+ "syn 2.0.117",
3193
+ ]
3194
+
3195
+ [[package]]
3196
+ name = "thiserror-impl"
3197
+ version = "2.0.12"
3198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3199
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
3200
+ dependencies = [
3201
+ "proc-macro2",
3202
+ "quote",
3203
+ "syn 2.0.117",
3204
+ ]
3205
+
3206
+ [[package]]
3207
+ name = "time"
3208
+ version = "0.3.47"
3209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3210
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
3211
+ dependencies = [
3212
+ "deranged",
3213
+ "itoa",
3214
+ "libc",
3215
+ "num-conv",
3216
+ "num_threads",
3217
+ "powerfmt",
3218
+ "serde_core",
3219
+ "time-core",
3220
+ "time-macros",
3221
+ ]
3222
+
3223
+ [[package]]
3224
+ name = "time-core"
3225
+ version = "0.1.8"
3226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3227
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
3228
+
3229
+ [[package]]
3230
+ name = "time-macros"
3231
+ version = "0.2.27"
3232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3233
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
3234
+ dependencies = [
3235
+ "num-conv",
3236
+ "time-core",
3237
+ ]
3238
+
3239
+ [[package]]
3240
+ name = "tiny-keccak"
3241
+ version = "2.0.2"
3242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3243
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
3244
+ dependencies = [
3245
+ "crunchy",
3246
+ ]
3247
+
3248
+ [[package]]
3249
+ name = "tinystr"
3250
+ version = "0.7.6"
3251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3252
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
3253
+ dependencies = [
3254
+ "displaydoc",
3255
+ "zerovec",
3256
+ ]
3257
+
3258
+ [[package]]
3259
+ name = "tinyvec"
3260
+ version = "1.9.0"
3261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3262
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
3263
+ dependencies = [
3264
+ "tinyvec_macros",
3265
+ ]
3266
+
3267
+ [[package]]
3268
+ name = "tinyvec_macros"
3269
+ version = "0.1.1"
3270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3271
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3272
+
3273
+ [[package]]
3274
+ name = "tokio"
3275
+ version = "1.43.0"
3276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3277
+ checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e"
3278
+ dependencies = [
3279
+ "backtrace",
3280
+ "bytes",
3281
+ "libc",
3282
+ "mio",
3283
+ "parking_lot",
3284
+ "pin-project-lite",
3285
+ "signal-hook-registry",
3286
+ "socket2 0.5.8",
3287
+ "tokio-macros",
3288
+ "windows-sys 0.52.0",
3289
+ ]
3290
+
3291
+ [[package]]
3292
+ name = "tokio-macros"
3293
+ version = "2.5.0"
3294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3295
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3296
+ dependencies = [
3297
+ "proc-macro2",
3298
+ "quote",
3299
+ "syn 2.0.117",
3300
+ ]
3301
+
3302
+ [[package]]
3303
+ name = "tokio-rustls"
3304
+ version = "0.26.2"
3305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3306
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
3307
+ dependencies = [
3308
+ "rustls",
3309
+ "tokio",
3310
+ ]
3311
+
3312
+ [[package]]
3313
+ name = "tokio-stream"
3314
+ version = "0.1.17"
3315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3316
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
3317
+ dependencies = [
3318
+ "futures-core",
3319
+ "pin-project-lite",
3320
+ "tokio",
3321
+ ]
3322
+
3323
+ [[package]]
3324
+ name = "tokio-util"
3325
+ version = "0.7.13"
3326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3327
+ checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
3328
+ dependencies = [
3329
+ "bytes",
3330
+ "futures-core",
3331
+ "futures-sink",
3332
+ "pin-project-lite",
3333
+ "tokio",
3334
+ ]
3335
+
3336
+ [[package]]
3337
+ name = "toml"
3338
+ version = "0.5.11"
3339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3340
+ checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
3341
+ dependencies = [
3342
+ "serde",
3343
+ ]
3344
+
3345
+ [[package]]
3346
+ name = "toml"
3347
+ version = "1.0.6+spec-1.1.0"
3348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3349
+ checksum = "399b1124a3c9e16766831c6bba21e50192572cdd98706ea114f9502509686ffc"
3350
+ dependencies = [
3351
+ "indexmap 2.13.0",
3352
+ "serde_core",
3353
+ "serde_spanned",
3354
+ "toml_datetime",
3355
+ "toml_parser",
3356
+ "toml_writer",
3357
+ "winnow",
3358
+ ]
3359
+
3360
+ [[package]]
3361
+ name = "toml_datetime"
3362
+ version = "1.0.0+spec-1.1.0"
3363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3364
+ checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e"
3365
+ dependencies = [
3366
+ "serde_core",
3367
+ ]
3368
+
3369
+ [[package]]
3370
+ name = "toml_parser"
3371
+ version = "1.0.9+spec-1.1.0"
3372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3373
+ checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
3374
+ dependencies = [
3375
+ "winnow",
3376
+ ]
3377
+
3378
+ [[package]]
3379
+ name = "toml_writer"
3380
+ version = "1.0.6+spec-1.1.0"
3381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3382
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
3383
+
3384
+ [[package]]
3385
+ name = "tonic"
3386
+ version = "0.12.3"
3387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3388
+ checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
3389
+ dependencies = [
3390
+ "async-stream",
3391
+ "async-trait",
3392
+ "axum 0.7.9",
3393
+ "base64",
3394
+ "bytes",
3395
+ "h2",
3396
+ "http",
3397
+ "http-body",
3398
+ "http-body-util",
3399
+ "hyper",
3400
+ "hyper-timeout",
3401
+ "hyper-util",
3402
+ "percent-encoding",
3403
+ "pin-project",
3404
+ "prost 0.13.4",
3405
+ "rustls-pemfile",
3406
+ "socket2 0.5.8",
3407
+ "tokio",
3408
+ "tokio-rustls",
3409
+ "tokio-stream",
3410
+ "tower 0.4.13",
3411
+ "tower-layer",
3412
+ "tower-service",
3413
+ "tracing",
3414
+ ]
3415
+
3416
+ [[package]]
3417
+ name = "tonic"
3418
+ version = "0.14.2"
3419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3420
+ checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203"
3421
+ dependencies = [
3422
+ "async-trait",
3423
+ "axum 0.8.6",
3424
+ "base64",
3425
+ "bytes",
3426
+ "h2",
3427
+ "http",
3428
+ "http-body",
3429
+ "http-body-util",
3430
+ "hyper",
3431
+ "hyper-timeout",
3432
+ "hyper-util",
3433
+ "percent-encoding",
3434
+ "pin-project",
3435
+ "socket2 0.6.1",
3436
+ "sync_wrapper",
3437
+ "tokio",
3438
+ "tokio-stream",
3439
+ "tower 0.5.2",
3440
+ "tower-layer",
3441
+ "tower-service",
3442
+ "tracing",
3443
+ ]
3444
+
3445
+ [[package]]
3446
+ name = "tonic-build"
3447
+ version = "0.12.3"
3448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3449
+ checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11"
3450
+ dependencies = [
3451
+ "prettyplease",
3452
+ "proc-macro2",
3453
+ "prost-build 0.13.4",
3454
+ "prost-types 0.13.4",
3455
+ "quote",
3456
+ "syn 2.0.117",
3457
+ ]
3458
+
3459
+ [[package]]
3460
+ name = "tonic-build"
3461
+ version = "0.14.2"
3462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3463
+ checksum = "4c40aaccc9f9eccf2cd82ebc111adc13030d23e887244bc9cfa5d1d636049de3"
3464
+ dependencies = [
3465
+ "prettyplease",
3466
+ "proc-macro2",
3467
+ "quote",
3468
+ "syn 2.0.117",
3469
+ ]
3470
+
3471
+ [[package]]
3472
+ name = "tonic-prost-build"
3473
+ version = "0.14.2"
3474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3475
+ checksum = "b4a16cba4043dc3ff43fcb3f96b4c5c154c64cbd18ca8dce2ab2c6a451d058a2"
3476
+ dependencies = [
3477
+ "prettyplease",
3478
+ "proc-macro2",
3479
+ "prost-build 0.14.1",
3480
+ "prost-types 0.14.1",
3481
+ "quote",
3482
+ "syn 2.0.117",
3483
+ "tempfile",
3484
+ "tonic-build 0.14.2",
3485
+ ]
3486
+
3487
+ [[package]]
3488
+ name = "tower"
3489
+ version = "0.4.13"
3490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3491
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
3492
+ dependencies = [
3493
+ "futures-core",
3494
+ "futures-util",
3495
+ "indexmap 1.9.3",
3496
+ "pin-project",
3497
+ "pin-project-lite",
3498
+ "rand 0.8.5",
3499
+ "slab",
3500
+ "tokio",
3501
+ "tokio-util",
3502
+ "tower-layer",
3503
+ "tower-service",
3504
+ "tracing",
3505
+ ]
3506
+
3507
+ [[package]]
3508
+ name = "tower"
3509
+ version = "0.5.2"
3510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3511
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3512
+ dependencies = [
3513
+ "futures-core",
3514
+ "futures-util",
3515
+ "indexmap 2.13.0",
3516
+ "pin-project-lite",
3517
+ "slab",
3518
+ "sync_wrapper",
3519
+ "tokio",
3520
+ "tokio-util",
3521
+ "tower-layer",
3522
+ "tower-service",
3523
+ "tracing",
3524
+ ]
3525
+
3526
+ [[package]]
3527
+ name = "tower-layer"
3528
+ version = "0.3.3"
3529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3530
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3531
+
3532
+ [[package]]
3533
+ name = "tower-service"
3534
+ version = "0.3.3"
3535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3536
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3537
+
3538
+ [[package]]
3539
+ name = "tracing"
3540
+ version = "0.1.41"
3541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3542
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3543
+ dependencies = [
3544
+ "pin-project-lite",
3545
+ "tracing-attributes",
3546
+ "tracing-core",
3547
+ ]
3548
+
3549
+ [[package]]
3550
+ name = "tracing-attributes"
3551
+ version = "0.1.28"
3552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3553
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3554
+ dependencies = [
3555
+ "proc-macro2",
3556
+ "quote",
3557
+ "syn 2.0.117",
3558
+ ]
3559
+
3560
+ [[package]]
3561
+ name = "tracing-core"
3562
+ version = "0.1.33"
3563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3564
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3565
+ dependencies = [
3566
+ "once_cell",
3567
+ ]
3568
+
3569
+ [[package]]
3570
+ name = "try-lock"
3571
+ version = "0.2.5"
3572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3573
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3574
+
3575
+ [[package]]
3576
+ name = "typenum"
3577
+ version = "1.17.0"
3578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3579
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
3580
+
3581
+ [[package]]
3582
+ name = "uaparser"
3583
+ version = "0.6.4"
3584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3585
+ checksum = "a4c9e1c3f893758f154004195fc2d2c52fbda462df725220ceaef830ac29affa"
3586
+ dependencies = [
3587
+ "derive_more",
3588
+ "lazy_static",
3589
+ "regex",
3590
+ "serde",
3591
+ "serde_derive",
3592
+ "serde_yaml",
3593
+ ]
3594
+
3595
+ [[package]]
3596
+ name = "unic-char-property"
3597
+ version = "0.9.0"
3598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3599
+ checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
3600
+ dependencies = [
3601
+ "unic-char-range",
3602
+ ]
3603
+
3604
+ [[package]]
3605
+ name = "unic-char-range"
3606
+ version = "0.9.0"
3607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3608
+ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
3609
+
3610
+ [[package]]
3611
+ name = "unic-common"
3612
+ version = "0.9.0"
3613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3614
+ checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
3615
+
3616
+ [[package]]
3617
+ name = "unic-emoji-char"
3618
+ version = "0.9.0"
3619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3620
+ checksum = "0b07221e68897210270a38bde4babb655869637af0f69407f96053a34f76494d"
3621
+ dependencies = [
3622
+ "unic-char-property",
3623
+ "unic-char-range",
3624
+ "unic-ucd-version",
3625
+ ]
3626
+
3627
+ [[package]]
3628
+ name = "unic-ucd-ident"
3629
+ version = "0.9.0"
3630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3631
+ checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
3632
+ dependencies = [
3633
+ "unic-char-property",
3634
+ "unic-char-range",
3635
+ "unic-ucd-version",
3636
+ ]
3637
+
3638
+ [[package]]
3639
+ name = "unic-ucd-version"
3640
+ version = "0.9.0"
3641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3642
+ checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
3643
+ dependencies = [
3644
+ "unic-common",
3645
+ ]
3646
+
3647
+ [[package]]
3648
+ name = "unicase"
3649
+ version = "2.8.1"
3650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3651
+ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
3652
+
3653
+ [[package]]
3654
+ name = "unicode-ident"
3655
+ version = "1.0.16"
3656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3657
+ checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
3658
+
3659
+ [[package]]
3660
+ name = "unicode-segmentation"
3661
+ version = "1.12.0"
3662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3663
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3664
+
3665
+ [[package]]
3666
+ name = "unicode-width"
3667
+ version = "0.2.2"
3668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3669
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3670
+
3671
+ [[package]]
3672
+ name = "unicode_names2"
3673
+ version = "1.3.0"
3674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3675
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
3676
+ dependencies = [
3677
+ "phf",
3678
+ "unicode_names2_generator",
3679
+ ]
3680
+
3681
+ [[package]]
3682
+ name = "unicode_names2_generator"
3683
+ version = "1.3.0"
3684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3685
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
3686
+ dependencies = [
3687
+ "getopts",
3688
+ "log",
3689
+ "phf_codegen",
3690
+ "rand 0.8.5",
3691
+ ]
3692
+
3693
+ [[package]]
3694
+ name = "unsafe-libyaml"
3695
+ version = "0.2.11"
3696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3697
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
3698
+
3699
+ [[package]]
3700
+ name = "untrusted"
3701
+ version = "0.9.0"
3702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3703
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3704
+
3705
+ [[package]]
3706
+ name = "url"
3707
+ version = "2.5.4"
3708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3709
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3710
+ dependencies = [
3711
+ "form_urlencoded",
3712
+ "idna",
3713
+ "percent-encoding",
3714
+ ]
3715
+
3716
+ [[package]]
3717
+ name = "utf16_iter"
3718
+ version = "1.0.5"
3719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3720
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3721
+
3722
+ [[package]]
3723
+ name = "utf8_iter"
3724
+ version = "1.0.4"
3725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3726
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3727
+
3728
+ [[package]]
3729
+ name = "uuid"
3730
+ version = "1.13.1"
3731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3732
+ checksum = "ced87ca4be083373936a67f8de945faa23b6b42384bd5b64434850802c6dccd0"
3733
+ dependencies = [
3734
+ "getrandom 0.3.1",
3735
+ "rand 0.9.2",
3736
+ ]
3737
+
3738
+ [[package]]
3739
+ name = "version_check"
3740
+ version = "0.9.5"
3741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3742
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3743
+
3744
+ [[package]]
3745
+ name = "wait-timeout"
3746
+ version = "0.2.1"
3747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3748
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3749
+ dependencies = [
3750
+ "libc",
3751
+ ]
3752
+
3753
+ [[package]]
3754
+ name = "walkdir"
3755
+ version = "2.5.0"
3756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3757
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3758
+ dependencies = [
3759
+ "same-file",
3760
+ "winapi-util",
3761
+ ]
3762
+
3763
+ [[package]]
3764
+ name = "want"
3765
+ version = "0.3.1"
3766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3767
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3768
+ dependencies = [
3769
+ "try-lock",
3770
+ ]
3771
+
3772
+ [[package]]
3773
+ name = "wasi"
3774
+ version = "0.11.0+wasi-snapshot-preview1"
3775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3776
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3777
+
3778
+ [[package]]
3779
+ name = "wasi"
3780
+ version = "0.13.3+wasi-0.2.2"
3781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3782
+ checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
3783
+ dependencies = [
3784
+ "wit-bindgen-rt",
3785
+ ]
3786
+
3787
+ [[package]]
3788
+ name = "wasm-bindgen"
3789
+ version = "0.2.100"
3790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3791
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3792
+ dependencies = [
3793
+ "cfg-if",
3794
+ "once_cell",
3795
+ "rustversion",
3796
+ "wasm-bindgen-macro",
3797
+ ]
3798
+
3799
+ [[package]]
3800
+ name = "wasm-bindgen-backend"
3801
+ version = "0.2.100"
3802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3803
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3804
+ dependencies = [
3805
+ "bumpalo",
3806
+ "log",
3807
+ "proc-macro2",
3808
+ "quote",
3809
+ "syn 2.0.117",
3810
+ "wasm-bindgen-shared",
3811
+ ]
3812
+
3813
+ [[package]]
3814
+ name = "wasm-bindgen-futures"
3815
+ version = "0.4.50"
3816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3817
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
3818
+ dependencies = [
3819
+ "cfg-if",
3820
+ "js-sys",
3821
+ "once_cell",
3822
+ "wasm-bindgen",
3823
+ "web-sys",
3824
+ ]
3825
+
3826
+ [[package]]
3827
+ name = "wasm-bindgen-macro"
3828
+ version = "0.2.100"
3829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3830
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3831
+ dependencies = [
3832
+ "quote",
3833
+ "wasm-bindgen-macro-support",
3834
+ ]
3835
+
3836
+ [[package]]
3837
+ name = "wasm-bindgen-macro-support"
3838
+ version = "0.2.100"
3839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3840
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3841
+ dependencies = [
3842
+ "proc-macro2",
3843
+ "quote",
3844
+ "syn 2.0.117",
3845
+ "wasm-bindgen-backend",
3846
+ "wasm-bindgen-shared",
3847
+ ]
3848
+
3849
+ [[package]]
3850
+ name = "wasm-bindgen-shared"
3851
+ version = "0.2.100"
3852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3853
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3854
+ dependencies = [
3855
+ "unicode-ident",
3856
+ ]
3857
+
3858
+ [[package]]
3859
+ name = "web-sys"
3860
+ version = "0.3.77"
3861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3862
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
3863
+ dependencies = [
3864
+ "js-sys",
3865
+ "wasm-bindgen",
3866
+ ]
3867
+
3868
+ [[package]]
3869
+ name = "web-time"
3870
+ version = "1.1.0"
3871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3872
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3873
+ dependencies = [
3874
+ "js-sys",
3875
+ "wasm-bindgen",
3876
+ ]
3877
+
3878
+ [[package]]
3879
+ name = "webpki-roots"
3880
+ version = "0.26.8"
3881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3882
+ checksum = "2210b291f7ea53617fbafcc4939f10914214ec15aace5ba62293a668f322c5c9"
3883
+ dependencies = [
3884
+ "rustls-pki-types",
3885
+ ]
3886
+
3887
+ [[package]]
3888
+ name = "winapi"
3889
+ version = "0.3.9"
3890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3891
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3892
+ dependencies = [
3893
+ "winapi-i686-pc-windows-gnu",
3894
+ "winapi-x86_64-pc-windows-gnu",
3895
+ ]
3896
+
3897
+ [[package]]
3898
+ name = "winapi-i686-pc-windows-gnu"
3899
+ version = "0.4.0"
3900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3901
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3902
+
3903
+ [[package]]
3904
+ name = "winapi-util"
3905
+ version = "0.1.9"
3906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3907
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
3908
+ dependencies = [
3909
+ "windows-sys 0.59.0",
3910
+ ]
3911
+
3912
+ [[package]]
3913
+ name = "winapi-x86_64-pc-windows-gnu"
3914
+ version = "0.4.0"
3915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3916
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3917
+
3918
+ [[package]]
3919
+ name = "windows-core"
3920
+ version = "0.52.0"
3921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3922
+ checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
3923
+ dependencies = [
3924
+ "windows-targets 0.52.6",
3925
+ ]
3926
+
3927
+ [[package]]
3928
+ name = "windows-link"
3929
+ version = "0.1.1"
3930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3931
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
3932
+
3933
+ [[package]]
3934
+ name = "windows-link"
3935
+ version = "0.2.1"
3936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3937
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3938
+
3939
+ [[package]]
3940
+ name = "windows-registry"
3941
+ version = "0.4.0"
3942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3943
+ checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
3944
+ dependencies = [
3945
+ "windows-result",
3946
+ "windows-strings",
3947
+ "windows-targets 0.53.5",
3948
+ ]
3949
+
3950
+ [[package]]
3951
+ name = "windows-result"
3952
+ version = "0.3.4"
3953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3954
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
3955
+ dependencies = [
3956
+ "windows-link 0.1.1",
3957
+ ]
3958
+
3959
+ [[package]]
3960
+ name = "windows-strings"
3961
+ version = "0.3.1"
3962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3963
+ checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
3964
+ dependencies = [
3965
+ "windows-link 0.1.1",
3966
+ ]
3967
+
3968
+ [[package]]
3969
+ name = "windows-sys"
3970
+ version = "0.45.0"
3971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3972
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
3973
+ dependencies = [
3974
+ "windows-targets 0.42.2",
3975
+ ]
3976
+
3977
+ [[package]]
3978
+ name = "windows-sys"
3979
+ version = "0.48.0"
3980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3981
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3982
+ dependencies = [
3983
+ "windows-targets 0.48.5",
3984
+ ]
3985
+
3986
+ [[package]]
3987
+ name = "windows-sys"
3988
+ version = "0.52.0"
3989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3990
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3991
+ dependencies = [
3992
+ "windows-targets 0.52.6",
3993
+ ]
3994
+
3995
+ [[package]]
3996
+ name = "windows-sys"
3997
+ version = "0.59.0"
3998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3999
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4000
+ dependencies = [
4001
+ "windows-targets 0.52.6",
4002
+ ]
4003
+
4004
+ [[package]]
4005
+ name = "windows-sys"
4006
+ version = "0.60.2"
4007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4008
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4009
+ dependencies = [
4010
+ "windows-targets 0.53.5",
4011
+ ]
4012
+
4013
+ [[package]]
4014
+ name = "windows-targets"
4015
+ version = "0.42.2"
4016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4017
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
4018
+ dependencies = [
4019
+ "windows_aarch64_gnullvm 0.42.2",
4020
+ "windows_aarch64_msvc 0.42.2",
4021
+ "windows_i686_gnu 0.42.2",
4022
+ "windows_i686_msvc 0.42.2",
4023
+ "windows_x86_64_gnu 0.42.2",
4024
+ "windows_x86_64_gnullvm 0.42.2",
4025
+ "windows_x86_64_msvc 0.42.2",
4026
+ ]
4027
+
4028
+ [[package]]
4029
+ name = "windows-targets"
4030
+ version = "0.48.5"
4031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4032
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4033
+ dependencies = [
4034
+ "windows_aarch64_gnullvm 0.48.5",
4035
+ "windows_aarch64_msvc 0.48.5",
4036
+ "windows_i686_gnu 0.48.5",
4037
+ "windows_i686_msvc 0.48.5",
4038
+ "windows_x86_64_gnu 0.48.5",
4039
+ "windows_x86_64_gnullvm 0.48.5",
4040
+ "windows_x86_64_msvc 0.48.5",
4041
+ ]
4042
+
4043
+ [[package]]
4044
+ name = "windows-targets"
4045
+ version = "0.52.6"
4046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4047
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4048
+ dependencies = [
4049
+ "windows_aarch64_gnullvm 0.52.6",
4050
+ "windows_aarch64_msvc 0.52.6",
4051
+ "windows_i686_gnu 0.52.6",
4052
+ "windows_i686_gnullvm 0.52.6",
4053
+ "windows_i686_msvc 0.52.6",
4054
+ "windows_x86_64_gnu 0.52.6",
4055
+ "windows_x86_64_gnullvm 0.52.6",
4056
+ "windows_x86_64_msvc 0.52.6",
4057
+ ]
4058
+
4059
+ [[package]]
4060
+ name = "windows-targets"
4061
+ version = "0.53.5"
4062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4063
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4064
+ dependencies = [
4065
+ "windows-link 0.2.1",
4066
+ "windows_aarch64_gnullvm 0.53.0",
4067
+ "windows_aarch64_msvc 0.53.0",
4068
+ "windows_i686_gnu 0.53.0",
4069
+ "windows_i686_gnullvm 0.53.0",
4070
+ "windows_i686_msvc 0.53.0",
4071
+ "windows_x86_64_gnu 0.53.0",
4072
+ "windows_x86_64_gnullvm 0.53.0",
4073
+ "windows_x86_64_msvc 0.53.0",
4074
+ ]
4075
+
4076
+ [[package]]
4077
+ name = "windows_aarch64_gnullvm"
4078
+ version = "0.42.2"
4079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4080
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
4081
+
4082
+ [[package]]
4083
+ name = "windows_aarch64_gnullvm"
4084
+ version = "0.48.5"
4085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4086
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4087
+
4088
+ [[package]]
4089
+ name = "windows_aarch64_gnullvm"
4090
+ version = "0.52.6"
4091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4092
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4093
+
4094
+ [[package]]
4095
+ name = "windows_aarch64_gnullvm"
4096
+ version = "0.53.0"
4097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4098
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
4099
+
4100
+ [[package]]
4101
+ name = "windows_aarch64_msvc"
4102
+ version = "0.42.2"
4103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4104
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
4105
+
4106
+ [[package]]
4107
+ name = "windows_aarch64_msvc"
4108
+ version = "0.48.5"
4109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4110
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4111
+
4112
+ [[package]]
4113
+ name = "windows_aarch64_msvc"
4114
+ version = "0.52.6"
4115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4116
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4117
+
4118
+ [[package]]
4119
+ name = "windows_aarch64_msvc"
4120
+ version = "0.53.0"
4121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4122
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
4123
+
4124
+ [[package]]
4125
+ name = "windows_i686_gnu"
4126
+ version = "0.42.2"
4127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4128
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
4129
+
4130
+ [[package]]
4131
+ name = "windows_i686_gnu"
4132
+ version = "0.48.5"
4133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4134
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4135
+
4136
+ [[package]]
4137
+ name = "windows_i686_gnu"
4138
+ version = "0.52.6"
4139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4140
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4141
+
4142
+ [[package]]
4143
+ name = "windows_i686_gnu"
4144
+ version = "0.53.0"
4145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4146
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
4147
+
4148
+ [[package]]
4149
+ name = "windows_i686_gnullvm"
4150
+ version = "0.52.6"
4151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4152
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4153
+
4154
+ [[package]]
4155
+ name = "windows_i686_gnullvm"
4156
+ version = "0.53.0"
4157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4158
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
4159
+
4160
+ [[package]]
4161
+ name = "windows_i686_msvc"
4162
+ version = "0.42.2"
4163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4164
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
4165
+
4166
+ [[package]]
4167
+ name = "windows_i686_msvc"
4168
+ version = "0.48.5"
4169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4170
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4171
+
4172
+ [[package]]
4173
+ name = "windows_i686_msvc"
4174
+ version = "0.52.6"
4175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4176
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4177
+
4178
+ [[package]]
4179
+ name = "windows_i686_msvc"
4180
+ version = "0.53.0"
4181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4182
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
4183
+
4184
+ [[package]]
4185
+ name = "windows_x86_64_gnu"
4186
+ version = "0.42.2"
4187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4188
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
4189
+
4190
+ [[package]]
4191
+ name = "windows_x86_64_gnu"
4192
+ version = "0.48.5"
4193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4194
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4195
+
4196
+ [[package]]
4197
+ name = "windows_x86_64_gnu"
4198
+ version = "0.52.6"
4199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4200
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4201
+
4202
+ [[package]]
4203
+ name = "windows_x86_64_gnu"
4204
+ version = "0.53.0"
4205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4206
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
4207
+
4208
+ [[package]]
4209
+ name = "windows_x86_64_gnullvm"
4210
+ version = "0.42.2"
4211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4212
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
4213
+
4214
+ [[package]]
4215
+ name = "windows_x86_64_gnullvm"
4216
+ version = "0.48.5"
4217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4218
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4219
+
4220
+ [[package]]
4221
+ name = "windows_x86_64_gnullvm"
4222
+ version = "0.52.6"
4223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4224
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4225
+
4226
+ [[package]]
4227
+ name = "windows_x86_64_gnullvm"
4228
+ version = "0.53.0"
4229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4230
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
4231
+
4232
+ [[package]]
4233
+ name = "windows_x86_64_msvc"
4234
+ version = "0.42.2"
4235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4236
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
4237
+
4238
+ [[package]]
4239
+ name = "windows_x86_64_msvc"
4240
+ version = "0.48.5"
4241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4242
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4243
+
4244
+ [[package]]
4245
+ name = "windows_x86_64_msvc"
4246
+ version = "0.52.6"
4247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4248
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4249
+
4250
+ [[package]]
4251
+ name = "windows_x86_64_msvc"
4252
+ version = "0.53.0"
4253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4254
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
4255
+
4256
+ [[package]]
4257
+ name = "winnow"
4258
+ version = "0.7.14"
4259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4260
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
4261
+
4262
+ [[package]]
4263
+ name = "wiremock"
4264
+ version = "0.6.2"
4265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4266
+ checksum = "7fff469918e7ca034884c7fd8f93fe27bacb7fcb599fd879df6c7b429a29b646"
4267
+ dependencies = [
4268
+ "assert-json-diff",
4269
+ "async-trait",
4270
+ "base64",
4271
+ "deadpool",
4272
+ "futures",
4273
+ "http",
4274
+ "http-body-util",
4275
+ "hyper",
4276
+ "hyper-util",
4277
+ "log",
4278
+ "once_cell",
4279
+ "regex",
4280
+ "serde",
4281
+ "serde_json",
4282
+ "tokio",
4283
+ "url",
4284
+ ]
4285
+
4286
+ [[package]]
4287
+ name = "wit-bindgen-rt"
4288
+ version = "0.33.0"
4289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4290
+ checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
4291
+ dependencies = [
4292
+ "bitflags 2.8.0",
4293
+ ]
4294
+
4295
+ [[package]]
4296
+ name = "write16"
4297
+ version = "1.0.0"
4298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4299
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
4300
+
4301
+ [[package]]
4302
+ name = "writeable"
4303
+ version = "0.5.5"
4304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4305
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4306
+
4307
+ [[package]]
4308
+ name = "yansi"
4309
+ version = "1.0.1"
4310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4311
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
4312
+
4313
+ [[package]]
4314
+ name = "yoke"
4315
+ version = "0.7.5"
4316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4317
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
4318
+ dependencies = [
4319
+ "serde",
4320
+ "stable_deref_trait",
4321
+ "yoke-derive",
4322
+ "zerofrom",
4323
+ ]
4324
+
4325
+ [[package]]
4326
+ name = "yoke-derive"
4327
+ version = "0.7.5"
4328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4329
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
4330
+ dependencies = [
4331
+ "proc-macro2",
4332
+ "quote",
4333
+ "syn 2.0.117",
4334
+ "synstructure",
4335
+ ]
4336
+
4337
+ [[package]]
4338
+ name = "zerocopy"
4339
+ version = "0.7.35"
4340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4341
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
4342
+ dependencies = [
4343
+ "byteorder",
4344
+ "zerocopy-derive 0.7.35",
4345
+ ]
4346
+
4347
+ [[package]]
4348
+ name = "zerocopy"
4349
+ version = "0.8.17"
4350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4351
+ checksum = "aa91407dacce3a68c56de03abe2760159582b846c6a4acd2f456618087f12713"
4352
+ dependencies = [
4353
+ "zerocopy-derive 0.8.17",
4354
+ ]
4355
+
4356
+ [[package]]
4357
+ name = "zerocopy-derive"
4358
+ version = "0.7.35"
4359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4360
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4361
+ dependencies = [
4362
+ "proc-macro2",
4363
+ "quote",
4364
+ "syn 2.0.117",
4365
+ ]
4366
+
4367
+ [[package]]
4368
+ name = "zerocopy-derive"
4369
+ version = "0.8.17"
4370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4371
+ checksum = "06718a168365cad3d5ff0bb133aad346959a2074bd4a85c121255a11304a8626"
4372
+ dependencies = [
4373
+ "proc-macro2",
4374
+ "quote",
4375
+ "syn 2.0.117",
4376
+ ]
4377
+
4378
+ [[package]]
4379
+ name = "zerofrom"
4380
+ version = "0.1.5"
4381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4382
+ checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
4383
+ dependencies = [
4384
+ "zerofrom-derive",
4385
+ ]
4386
+
4387
+ [[package]]
4388
+ name = "zerofrom-derive"
4389
+ version = "0.1.5"
4390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4391
+ checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
4392
+ dependencies = [
4393
+ "proc-macro2",
4394
+ "quote",
4395
+ "syn 2.0.117",
4396
+ "synstructure",
4397
+ ]
4398
+
4399
+ [[package]]
4400
+ name = "zeroize"
4401
+ version = "1.8.1"
4402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4403
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
4404
+
4405
+ [[package]]
4406
+ name = "zerovec"
4407
+ version = "0.10.4"
4408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4409
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
4410
+ dependencies = [
4411
+ "yoke",
4412
+ "zerofrom",
4413
+ "zerovec-derive",
4414
+ ]
4415
+
4416
+ [[package]]
4417
+ name = "zerovec-derive"
4418
+ version = "0.10.3"
4419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4420
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
4421
+ dependencies = [
4422
+ "proc-macro2",
4423
+ "quote",
4424
+ "syn 2.0.117",
4425
+ ]
4426
+
4427
+ [[package]]
4428
+ name = "zstd"
4429
+ version = "0.13.2"
4430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4431
+ checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
4432
+ dependencies = [
4433
+ "zstd-safe",
4434
+ ]
4435
+
4436
+ [[package]]
4437
+ name = "zstd-safe"
4438
+ version = "7.2.1"
4439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4440
+ checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
4441
+ dependencies = [
4442
+ "zstd-sys",
4443
+ ]
4444
+
4445
+ [[package]]
4446
+ name = "zstd-sys"
4447
+ version = "2.0.13+zstd.1.5.6"
4448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4449
+ checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
4450
+ dependencies = [
4451
+ "cc",
4452
+ "pkg-config",
4453
+ ]