python-auditor 0.10.2__tar.gz → 0.11.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (154) hide show
  1. {python_auditor-0.10.2 → python_auditor-0.11.0}/Cargo.lock +698 -775
  2. {python_auditor-0.10.2 → python_auditor-0.11.0}/Cargo.toml +8 -8
  3. {python_auditor-0.10.2 → python_auditor-0.11.0}/PKG-INFO +1 -1
  4. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/Cargo.toml +28 -26
  5. python_auditor-0.11.0/local_dependencies/auditor/certs/rootCA-key.pem +52 -0
  6. python_auditor-0.11.0/local_dependencies/auditor/certs/rootCA.pem +31 -0
  7. python_auditor-0.11.0/local_dependencies/auditor/certs/server-cert.pem +27 -0
  8. python_auditor-0.11.0/local_dependencies/auditor/certs/server-key.pem +28 -0
  9. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/base.yaml +5 -0
  10. python_auditor-0.11.0/local_dependencies/auditor/scripts/convert_slurm_millisec_to_sec/.env +6 -0
  11. python_auditor-0.11.0/local_dependencies/auditor/scripts/convert_slurm_millisec_to_sec/convert_totalcpu_millisec_to_sec.py +78 -0
  12. python_auditor-0.11.0/local_dependencies/auditor/scripts/convert_slurm_millisec_to_sec/requirements.txt +8 -0
  13. python_auditor-0.11.0/local_dependencies/auditor/scripts/convert_slurm_millisec_to_sec/test_convert_slurm_millisec_to_sec.py +33 -0
  14. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/parquet_to_auditor/python_script/requirements.txt +2 -2
  15. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/revert_encoding/requirements.txt +4 -4
  16. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/archive.rs +26 -18
  17. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/configuration.rs +47 -0
  18. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/main.rs +21 -5
  19. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/routes/add.rs +18 -3
  20. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/routes/advanced_record_filters.rs +15 -19
  21. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/startup.rs +6 -2
  22. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/telemetry.rs +29 -4
  23. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/advanced_queries.rs +2 -2
  24. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/get_since.rs +3 -3
  25. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/helpers.rs +19 -9
  26. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/update.rs +3 -3
  27. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/Cargo.toml +12 -12
  28. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/benches/benchmark_with_http_request.rs +2 -2
  29. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/src/lib.rs +26 -24
  30. {python_auditor-0.10.2 → python_auditor-0.11.0}/src/blocking_client.rs +1 -1
  31. {python_auditor-0.10.2 → python_auditor-0.11.0}/src/builder.rs +1 -1
  32. {python_auditor-0.10.2 → python_auditor-0.11.0}/src/client.rs +8 -8
  33. {python_auditor-0.10.2 → python_auditor-0.11.0}/src/domain/component.rs +1 -1
  34. {python_auditor-0.10.2 → python_auditor-0.11.0}/src/domain/meta.rs +1 -1
  35. {python_auditor-0.10.2 → python_auditor-0.11.0}/src/domain/record.rs +1 -1
  36. {python_auditor-0.10.2 → python_auditor-0.11.0}/src/domain/score.rs +1 -1
  37. {python_auditor-0.10.2 → python_auditor-0.11.0}/src/queued_client.rs +1 -1
  38. python_auditor-0.10.2/local_dependencies/auditor/certs/rootCA-key.pem +0 -52
  39. python_auditor-0.10.2/local_dependencies/auditor/certs/rootCA.pem +0 -31
  40. python_auditor-0.10.2/local_dependencies/auditor/certs/server-cert.pem +0 -27
  41. python_auditor-0.10.2/local_dependencies/auditor/certs/server-key.pem +0 -28
  42. {python_auditor-0.10.2 → python_auditor-0.11.0}/.cargo/config.toml +0 -0
  43. {python_auditor-0.10.2 → python_auditor-0.11.0}/.readthedocs.yaml +0 -0
  44. {python_auditor-0.10.2 → python_auditor-0.11.0}/README.md +0 -0
  45. {python_auditor-0.10.2 → python_auditor-0.11.0}/docs/Makefile +0 -0
  46. {python_auditor-0.10.2 → python_auditor-0.11.0}/docs/api.rst +0 -0
  47. {python_auditor-0.10.2 → python_auditor-0.11.0}/docs/changelog.rst +0 -0
  48. {python_auditor-0.10.2 → python_auditor-0.11.0}/docs/conf.py +0 -0
  49. {python_auditor-0.10.2 → python_auditor-0.11.0}/docs/examples.rst +0 -0
  50. {python_auditor-0.10.2 → python_auditor-0.11.0}/docs/index.rst +0 -0
  51. {python_auditor-0.10.2 → python_auditor-0.11.0}/docs/make.bat +0 -0
  52. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/.env +0 -0
  53. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-0723e1854dee7d889745714fe094a64edfcf3f389eec3e77fefca2d753f1eceb.json +0 -0
  54. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-26a72be3c4ba0fddc30f53a71e0317e21982fde8bd24d8b5714439c1af835080.json +0 -0
  55. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-56c4218a1b59d8f9dc0af7191e516cb8f505a7d953ef5b2706e2427a136a918b.json +0 -0
  56. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-90e6c5e852ed16ef84a113c260d99efb6e193fa46b8115df94e750440e2d5517.json +0 -0
  57. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-a5c2d5afb25cf16a58a73c11cdde1bf5d2336cf42c6e84bf24ba27313d827a1f.json +0 -0
  58. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-a621b3eb5f42f24a04d216b9ce3c490182712e1276512cdfe74dcbb9e3e9e54e.json +0 -0
  59. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-aa313afec8c23e75ee45750e2ce8e520b96a98670d3c46572a6f942f839b99c0.json +0 -0
  60. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-bac1cfa96d1801a491bc325101a0ea88c18a9e1ca50b2b623e07791a46d61b48.json +0 -0
  61. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-cb3125aad5e124a24a976c2cb20a6e8859709f978c9f651740c439abe3b41adb.json +0 -0
  62. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-d8c6add014ac34e66ffb0178d497b9e822c569f86a89525f6ed5cc306713995a.json +0 -0
  63. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-dc5295938290703233cfe51c2215e6a5f6a6afe26b6ba3635210f5c157032f78.json +0 -0
  64. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-e4129d556ba749cb664ef6e876264efd36d82d813c2c9670dde24e4cfd042f94.json +0 -0
  65. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-e88b5acb79055b5c307e15481bc270e47d65b525ef6d98376455a267972be532.json +0 -0
  66. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/build.rs +0 -0
  67. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/archive.yaml +0 -0
  68. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/dualstack.yaml +0 -0
  69. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/local.yaml +0 -0
  70. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/priority-plugin/base.yml +0 -0
  71. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/production.yaml +0 -0
  72. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/rbac.yaml +0 -0
  73. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
  74. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/tls_config.yaml +0 -0
  75. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/parquet_to_auditor/python_script/.env +0 -0
  76. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/parquet_to_auditor/python_script/parquet_to_auditor.py +0 -0
  77. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/revert_encoding/.env +0 -0
  78. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/revert_encoding/revert_encodings.py +0 -0
  79. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/revert_encoding/test_script.py +0 -0
  80. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +0 -0
  81. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +0 -0
  82. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_single_entry.py +0 -0
  83. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/test_valid_names/test_slurm_decoding.py +0 -0
  84. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/test_valid_names/test_valid_names.py +0 -0
  85. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/constants.rs +0 -0
  86. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/component.rs +0 -0
  87. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/meta.rs +0 -0
  88. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/mod.rs +0 -0
  89. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/record.rs +0 -0
  90. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/score.rs +0 -0
  91. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/validamount.rs +0 -0
  92. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/validname.rs +0 -0
  93. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/validvalue.rs +0 -0
  94. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/error.rs +0 -0
  95. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/lib.rs +0 -0
  96. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/macros.rs +0 -0
  97. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/metrics/database.rs +0 -0
  98. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/metrics/mod.rs +0 -0
  99. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/middleware.rs +0 -0
  100. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/routes/get.rs +0 -0
  101. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/routes/health_check.rs +0 -0
  102. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/routes/mod.rs +0 -0
  103. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/routes/record_handlers.rs +0 -0
  104. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/src/routes/update.rs +0 -0
  105. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/add.rs +0 -0
  106. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/get.rs +0 -0
  107. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/get_one_record.rs +0 -0
  108. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
  109. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/main.rs +0 -0
  110. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/.env +0 -0
  111. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-256977e5f7886c61625e92a77efb52b9ca4321cefcac0e544d64334cdbca93ba.json +0 -0
  112. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-440620430cdcfb05e9ded5312614fae4df18e20a2a0730ec9e914ce34338df2d.json +0 -0
  113. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-5b1885d85159029e95b3f6d8dcee5eac70e683956480d225143c1de9169e233b.json +0 -0
  114. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-6be1ec652f57f24ba44ee6efa08a2c5985cf4375e563a1bff02dbc6fc4a1ac6d.json +0 -0
  115. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-7022afed3a87000ca2c5a5a829f8bdfddb266e0a577c428c830b02e3736d264e.json +0 -0
  116. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-7ab91dc1d18e4de022a7bbacc463476f8be8a8992b49fe363f70a2d58460e877.json +0 -0
  117. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-8de0a0fada9ffea04721b67f8df443a8c496bfccef4be482bbdaa36ef7d508a5.json +0 -0
  118. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-c8cba44011d83cdabb543adfae1637c5045144ecc61a6597f538d95a8cc756d4.json +0 -0
  119. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-f36fa62228e6ca304003dbd75448e95558f544fdbd602173af16c4bada2a3daf.json +0 -0
  120. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/benches/README.md +0 -0
  121. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/benches/configuration/bench.yaml +0 -0
  122. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/benches/configuration.rs +0 -0
  123. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/configuration/base.yaml +0 -0
  124. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/configuration/local.yaml +0 -0
  125. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/migrations/20231122115509_create_record_table.sql +0 -0
  126. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/src/configuration.rs +0 -0
  127. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/src/constants.rs +0 -0
  128. {python_auditor-0.10.2 → python_auditor-0.11.0}/local_dependencies/auditor-client/src/database.rs +0 -0
  129. {python_auditor-0.10.2 → python_auditor-0.11.0}/pyproject.toml +0 -0
  130. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_add_update.py +0 -0
  131. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_add_update_blocking.py +0 -0
  132. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_add_update_queued.py +0 -0
  133. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_advanced_query.py +0 -0
  134. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_advanced_query_blocking.py +0 -0
  135. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_advanced_query_queued.py +0 -0
  136. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_bulk_insert.py +0 -0
  137. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_bulk_insert_blocking.py +0 -0
  138. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_bulk_insert_queued.py +0 -0
  139. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_components.py +0 -0
  140. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_components_blocking.py +0 -0
  141. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_components_queued.py +0 -0
  142. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_eq.py +0 -0
  143. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_get_since.py +0 -0
  144. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_get_since_blocking.py +0 -0
  145. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_get_since_queued.py +0 -0
  146. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_get_single_record.py +0 -0
  147. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_get_single_record_blocking.py +0 -0
  148. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_get_single_record_queued.py +0 -0
  149. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_meta.py +0 -0
  150. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_meta_blocking.py +0 -0
  151. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/test_meta_queued.py +0 -0
  152. {python_auditor-0.10.2 → python_auditor-0.11.0}/scripts/tls_test/test_tls.py +0 -0
  153. {python_auditor-0.10.2 → python_auditor-0.11.0}/src/domain/mod.rs +0 -0
  154. {python_auditor-0.10.2 → python_auditor-0.11.0}/src/lib.rs +0 -0
@@ -8,7 +8,7 @@ version = "0.5.2"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
9
  checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
10
10
  dependencies = [
11
- "bitflags",
11
+ "bitflags 2.13.0",
12
12
  "bytes",
13
13
  "futures-core",
14
14
  "futures-sink",
@@ -21,9 +21,9 @@ dependencies = [
21
21
 
22
22
  [[package]]
23
23
  name = "actix-http"
24
- version = "3.12.0"
24
+ version = "3.13.1"
25
25
  source = "registry+https://github.com/rust-lang/crates.io-index"
26
- checksum = "f860ee6746d0c5b682147b2f7f8ef036d4f92fe518251a3a35ffa3650eafdf0e"
26
+ checksum = "48e2faa3e7418ed780cca54829d32782a4008a077230f67457caa063415e99c2"
27
27
  dependencies = [
28
28
  "actix-codec",
29
29
  "actix-rt",
@@ -31,14 +31,14 @@ dependencies = [
31
31
  "actix-tls",
32
32
  "actix-utils",
33
33
  "base64",
34
- "bitflags",
34
+ "bitflags 2.13.0",
35
35
  "brotli",
36
36
  "bytes",
37
37
  "bytestring",
38
38
  "derive_more",
39
39
  "encoding_rs",
40
40
  "flate2",
41
- "foldhash",
41
+ "foldhash 0.2.0",
42
42
  "futures-core",
43
43
  "h2 0.3.27",
44
44
  "http 0.2.12",
@@ -50,8 +50,8 @@ dependencies = [
50
50
  "mime",
51
51
  "percent-encoding",
52
52
  "pin-project-lite",
53
- "rand 0.9.2",
54
- "sha1",
53
+ "rand 0.10.2",
54
+ "sha1 0.11.0",
55
55
  "smallvec",
56
56
  "tokio",
57
57
  "tokio-util",
@@ -131,7 +131,7 @@ dependencies = [
131
131
  "actix-service",
132
132
  "actix-utils",
133
133
  "futures-core",
134
- "impl-more",
134
+ "impl-more 0.1.9",
135
135
  "pin-project-lite",
136
136
  "rustls-pki-types",
137
137
  "tokio",
@@ -152,9 +152,9 @@ dependencies = [
152
152
 
153
153
  [[package]]
154
154
  name = "actix-web"
155
- version = "4.13.0"
155
+ version = "4.14.0"
156
156
  source = "registry+https://github.com/rust-lang/crates.io-index"
157
- checksum = "ff87453bc3b56e9b2b23c1cc0b1be8797184accf51d2abe0f8a33ec275d316bf"
157
+ checksum = "df09e2d9239703dd64056359c920c7f3fba6535ec61a0059e0f44e095ffe02b4"
158
158
  dependencies = [
159
159
  "actix-codec",
160
160
  "actix-http",
@@ -172,10 +172,10 @@ dependencies = [
172
172
  "cookie",
173
173
  "derive_more",
174
174
  "encoding_rs",
175
- "foldhash",
175
+ "foldhash 0.2.0",
176
176
  "futures-core",
177
177
  "futures-util",
178
- "impl-more",
178
+ "impl-more 0.3.1",
179
179
  "itoa",
180
180
  "language-tags",
181
181
  "log",
@@ -188,7 +188,7 @@ dependencies = [
188
188
  "serde_json",
189
189
  "serde_urlencoded",
190
190
  "smallvec",
191
- "socket2 0.6.3",
191
+ "socket2 0.6.4",
192
192
  "time",
193
193
  "tracing",
194
194
  "url",
@@ -268,9 +268,9 @@ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
268
268
 
269
269
  [[package]]
270
270
  name = "alloc-stdlib"
271
- version = "0.2.2"
271
+ version = "0.2.4"
272
272
  source = "registry+https://github.com/rust-lang/crates.io-index"
273
- checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
273
+ checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
274
274
  dependencies = [
275
275
  "alloc-no-stdlib",
276
276
  ]
@@ -305,6 +305,17 @@ version = "0.1.6"
305
305
  source = "registry+https://github.com/rust-lang/crates.io-index"
306
306
  checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
307
307
 
308
+ [[package]]
309
+ name = "annotate-snippets"
310
+ version = "0.12.16"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "f211a51805bc641f3ad5b7664c77d2547af685cc33b4cd8d31964027a46f13f1"
313
+ dependencies = [
314
+ "anstyle",
315
+ "memchr",
316
+ "unicode-width",
317
+ ]
318
+
308
319
  [[package]]
309
320
  name = "anstyle"
310
321
  version = "1.0.14"
@@ -313,9 +324,9 @@ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
313
324
 
314
325
  [[package]]
315
326
  name = "anyhow"
316
- version = "1.0.102"
327
+ version = "1.0.103"
317
328
  source = "registry+https://github.com/rust-lang/crates.io-index"
318
- checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
329
+ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
319
330
 
320
331
  [[package]]
321
332
  name = "arraydeque"
@@ -325,9 +336,9 @@ checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
325
336
 
326
337
  [[package]]
327
338
  name = "arrow"
328
- version = "58.0.0"
339
+ version = "59.1.0"
329
340
  source = "registry+https://github.com/rust-lang/crates.io-index"
330
- checksum = "602268ce9f569f282cedb9a9f6bac569b680af47b9b077d515900c03c5d190da"
341
+ checksum = "b952ca5a8046ad741b60f142d6eca4aeebcad615694202bc64c5341f23e32c5b"
331
342
  dependencies = [
332
343
  "arrow-arith",
333
344
  "arrow-array",
@@ -346,9 +357,9 @@ dependencies = [
346
357
 
347
358
  [[package]]
348
359
  name = "arrow-arith"
349
- version = "58.0.0"
360
+ version = "59.1.0"
350
361
  source = "registry+https://github.com/rust-lang/crates.io-index"
351
- checksum = "cd53c6bf277dea91f136ae8e3a5d7041b44b5e489e244e637d00ae302051f56f"
362
+ checksum = "64a13b8d3008c4e9063c597a08f46446fe3fd5789277127672d6c0bdbb43b1ff"
352
363
  dependencies = [
353
364
  "arrow-array",
354
365
  "arrow-buffer",
@@ -360,9 +371,9 @@ dependencies = [
360
371
 
361
372
  [[package]]
362
373
  name = "arrow-array"
363
- version = "58.0.0"
374
+ version = "59.1.0"
364
375
  source = "registry+https://github.com/rust-lang/crates.io-index"
365
- checksum = "e53796e07a6525edaf7dc28b540d477a934aff14af97967ad1d5550878969b9e"
376
+ checksum = "9486151b2f0785bafc6fa04fc5c99fcb4495455662e58787ea32eaaed33c4192"
366
377
  dependencies = [
367
378
  "ahash",
368
379
  "arrow-buffer",
@@ -370,7 +381,7 @@ dependencies = [
370
381
  "arrow-schema",
371
382
  "chrono",
372
383
  "half",
373
- "hashbrown 0.16.1",
384
+ "hashbrown 0.17.1",
374
385
  "num-complex",
375
386
  "num-integer",
376
387
  "num-traits",
@@ -378,9 +389,9 @@ dependencies = [
378
389
 
379
390
  [[package]]
380
391
  name = "arrow-buffer"
381
- version = "58.0.0"
392
+ version = "59.1.0"
382
393
  source = "registry+https://github.com/rust-lang/crates.io-index"
383
- checksum = "f2c1a85bb2e94ee10b76531d8bc3ce9b7b4c0d508cabfb17d477f63f2617bd20"
394
+ checksum = "c4776577a87794bfdf0b4e90e2ea12454fa7738ea2823c4be5b9d1851da7b434"
384
395
  dependencies = [
385
396
  "bytes",
386
397
  "half",
@@ -390,9 +401,9 @@ dependencies = [
390
401
 
391
402
  [[package]]
392
403
  name = "arrow-cast"
393
- version = "58.0.0"
404
+ version = "59.1.0"
394
405
  source = "registry+https://github.com/rust-lang/crates.io-index"
395
- checksum = "89fb245db6b0e234ed8e15b644edb8664673fefe630575e94e62cd9d489a8a26"
406
+ checksum = "a9ad451ce4f98710828a455b96991b8f031deb2e67f5fcad6773f017e4a69c3a"
396
407
  dependencies = [
397
408
  "arrow-array",
398
409
  "arrow-buffer",
@@ -411,9 +422,9 @@ dependencies = [
411
422
 
412
423
  [[package]]
413
424
  name = "arrow-csv"
414
- version = "58.0.0"
425
+ version = "59.1.0"
415
426
  source = "registry+https://github.com/rust-lang/crates.io-index"
416
- checksum = "d374882fb465a194462527c0c15a93aa19a554cf690a6b77a26b2a02539937a7"
427
+ checksum = "8aa7bf96d6141a7bcca2eed57c7c9767d2a2175281857b8a7b68308992864784"
417
428
  dependencies = [
418
429
  "arrow-array",
419
430
  "arrow-cast",
@@ -426,9 +437,9 @@ dependencies = [
426
437
 
427
438
  [[package]]
428
439
  name = "arrow-data"
429
- version = "58.0.0"
440
+ version = "59.1.0"
430
441
  source = "registry+https://github.com/rust-lang/crates.io-index"
431
- checksum = "189d210bc4244c715fa3ed9e6e22864673cccb73d5da28c2723fb2e527329b33"
442
+ checksum = "b38fe43e2e8704360f1464e6e8cc4fc381ef02cc4fb0192afa8df1aaa0115c66"
432
443
  dependencies = [
433
444
  "arrow-buffer",
434
445
  "arrow-schema",
@@ -439,9 +450,9 @@ dependencies = [
439
450
 
440
451
  [[package]]
441
452
  name = "arrow-ipc"
442
- version = "58.0.0"
453
+ version = "59.1.0"
443
454
  source = "registry+https://github.com/rust-lang/crates.io-index"
444
- checksum = "7968c2e5210c41f4909b2ef76f6e05e172b99021c2def5edf3cc48fdd39d1d6c"
455
+ checksum = "29dac499fcbc6ba74ee0324057821d381929a48526a3966bd9dffb44aa06d98c"
445
456
  dependencies = [
446
457
  "arrow-array",
447
458
  "arrow-buffer",
@@ -453,18 +464,19 @@ dependencies = [
453
464
 
454
465
  [[package]]
455
466
  name = "arrow-json"
456
- version = "58.0.0"
467
+ version = "59.1.0"
457
468
  source = "registry+https://github.com/rust-lang/crates.io-index"
458
- checksum = "92111dba5bf900f443488e01f00d8c4ddc2f47f5c50039d18120287b580baa22"
469
+ checksum = "0fe05e916ddc50f4c7a363cd69c0ef5894fcee063517e9a0b8582f0c56746af6"
459
470
  dependencies = [
460
471
  "arrow-array",
461
472
  "arrow-buffer",
462
473
  "arrow-cast",
463
- "arrow-data",
474
+ "arrow-ord",
464
475
  "arrow-schema",
476
+ "arrow-select",
465
477
  "chrono",
466
478
  "half",
467
- "indexmap 2.13.0",
479
+ "indexmap 2.14.0",
468
480
  "itoa",
469
481
  "lexical-core",
470
482
  "memchr",
@@ -477,9 +489,9 @@ dependencies = [
477
489
 
478
490
  [[package]]
479
491
  name = "arrow-ord"
480
- version = "58.0.0"
492
+ version = "59.1.0"
481
493
  source = "registry+https://github.com/rust-lang/crates.io-index"
482
- checksum = "211136cb253577ee1a6665f741a13136d4e563f64f5093ffd6fb837af90b9495"
494
+ checksum = "0e13dbdc2a9c053c10c7baa6e30faee04a180aa7ce88e471835850ce37abd20b"
483
495
  dependencies = [
484
496
  "arrow-array",
485
497
  "arrow-buffer",
@@ -490,9 +502,9 @@ dependencies = [
490
502
 
491
503
  [[package]]
492
504
  name = "arrow-row"
493
- version = "58.0.0"
505
+ version = "59.1.0"
494
506
  source = "registry+https://github.com/rust-lang/crates.io-index"
495
- checksum = "8e0f20145f9f5ea3fe383e2ba7a7487bf19be36aa9dbf5dd6a1f92f657179663"
507
+ checksum = "4d5a1f8c733d15260b305683472ee8ad89c62cbd706703ca873b90d051b41592"
496
508
  dependencies = [
497
509
  "arrow-array",
498
510
  "arrow-buffer",
@@ -503,15 +515,15 @@ dependencies = [
503
515
 
504
516
  [[package]]
505
517
  name = "arrow-schema"
506
- version = "58.0.0"
518
+ version = "59.1.0"
507
519
  source = "registry+https://github.com/rust-lang/crates.io-index"
508
- checksum = "1b47e0ca91cc438d2c7879fe95e0bca5329fff28649e30a88c6f760b1faeddcb"
520
+ checksum = "d9e4969dc350d571766247143ab36a5187d095d3d3690970408bc630d47c69e5"
509
521
 
510
522
  [[package]]
511
523
  name = "arrow-select"
512
- version = "58.0.0"
524
+ version = "59.1.0"
513
525
  source = "registry+https://github.com/rust-lang/crates.io-index"
514
- checksum = "750a7d1dda177735f5e82a314485b6915c7cccdbb278262ac44090f4aba4a325"
526
+ checksum = "402770dba90865359d98d1ef92ef16e23d75c0cca9c2c880c8a05468b7743bf9"
515
527
  dependencies = [
516
528
  "ahash",
517
529
  "arrow-array",
@@ -523,9 +535,9 @@ dependencies = [
523
535
 
524
536
  [[package]]
525
537
  name = "arrow-string"
526
- version = "58.0.0"
538
+ version = "59.1.0"
527
539
  source = "registry+https://github.com/rust-lang/crates.io-index"
528
- checksum = "e1eab1208bc4fe55d768cdc9b9f3d9df5a794cdb3ee2586bf89f9b30dc31ad8c"
540
+ checksum = "a2b0afbb8b9016700938291123df30838b89decc3213dba00852021988b170d3"
529
541
  dependencies = [
530
542
  "arrow-array",
531
543
  "arrow-buffer",
@@ -540,9 +552,9 @@ dependencies = [
540
552
 
541
553
  [[package]]
542
554
  name = "asn1-rs"
543
- version = "0.7.1"
555
+ version = "0.7.2"
544
556
  source = "registry+https://github.com/rust-lang/crates.io-index"
545
- checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60"
557
+ checksum = "b7f43a50ac4fdca5df8e885c21b835997f0a1cdee65494a6847694a98652d9d8"
546
558
  dependencies = [
547
559
  "asn1-rs-derive",
548
560
  "asn1-rs-impl",
@@ -637,7 +649,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
637
649
 
638
650
  [[package]]
639
651
  name = "auditor"
640
- version = "0.10.2"
652
+ version = "0.11.0"
641
653
  dependencies = [
642
654
  "actix-tls",
643
655
  "actix-web",
@@ -654,7 +666,7 @@ dependencies = [
654
666
  "fake",
655
667
  "futures",
656
668
  "futures-util",
657
- "itertools 0.14.0",
669
+ "itertools 0.15.0",
658
670
  "num-traits",
659
671
  "once_cell",
660
672
  "opentelemetry 0.23.0",
@@ -664,10 +676,11 @@ dependencies = [
664
676
  "prometheus",
665
677
  "quickcheck",
666
678
  "quickcheck_macros",
667
- "rand 0.10.0",
679
+ "rand 0.10.2",
668
680
  "regex",
669
681
  "reqwest",
670
682
  "reqwest-streams",
683
+ "rolling-file",
671
684
  "rustls",
672
685
  "secrecy",
673
686
  "serde",
@@ -681,6 +694,7 @@ dependencies = [
681
694
  "tokio-cron-scheduler",
682
695
  "tracing",
683
696
  "tracing-actix-web",
697
+ "tracing-appender",
684
698
  "tracing-bunyan-formatter",
685
699
  "tracing-log 0.2.0",
686
700
  "tracing-subscriber",
@@ -693,7 +707,7 @@ dependencies = [
693
707
 
694
708
  [[package]]
695
709
  name = "auditor-client"
696
- version = "0.10.2"
710
+ version = "0.11.0"
697
711
  dependencies = [
698
712
  "anyhow",
699
713
  "auditor",
@@ -705,9 +719,9 @@ dependencies = [
705
719
  "criterion-macro",
706
720
  "fake",
707
721
  "futures",
708
- "itertools 0.14.0",
722
+ "itertools 0.15.0",
709
723
  "once_cell",
710
- "rand 0.10.0",
724
+ "rand 0.10.2",
711
725
  "rand_distr",
712
726
  "reqwest",
713
727
  "reqwest-streams",
@@ -728,7 +742,7 @@ dependencies = [
728
742
 
729
743
  [[package]]
730
744
  name = "auditor-kubernetes-collector"
731
- version = "0.10.2"
745
+ version = "0.11.0"
732
746
  dependencies = [
733
747
  "anyhow",
734
748
  "auditor",
@@ -754,7 +768,7 @@ dependencies = [
754
768
 
755
769
  [[package]]
756
770
  name = "auditor-priority-plugin"
757
- version = "0.10.2"
771
+ version = "0.11.0"
758
772
  dependencies = [
759
773
  "actix-web",
760
774
  "actix-web-opentelemetry",
@@ -781,7 +795,7 @@ dependencies = [
781
795
 
782
796
  [[package]]
783
797
  name = "auditor-slurm-collector"
784
- version = "0.10.2"
798
+ version = "0.11.0"
785
799
  dependencies = [
786
800
  "anyhow",
787
801
  "auditor",
@@ -791,7 +805,7 @@ dependencies = [
791
805
  "color-eyre",
792
806
  "config",
793
807
  "fake",
794
- "itertools 0.14.0",
808
+ "itertools 0.15.0",
795
809
  "once_cell",
796
810
  "regex",
797
811
  "serde",
@@ -807,7 +821,7 @@ dependencies = [
807
821
 
808
822
  [[package]]
809
823
  name = "auditor-slurm-epilog-collector"
810
- version = "0.10.2"
824
+ version = "0.11.0"
811
825
  dependencies = [
812
826
  "anyhow",
813
827
  "auditor",
@@ -826,15 +840,15 @@ dependencies = [
826
840
 
827
841
  [[package]]
828
842
  name = "autocfg"
829
- version = "1.5.0"
843
+ version = "1.5.1"
830
844
  source = "registry+https://github.com/rust-lang/crates.io-index"
831
- checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
845
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
832
846
 
833
847
  [[package]]
834
848
  name = "aws-lc-rs"
835
- version = "1.16.2"
849
+ version = "1.17.1"
836
850
  source = "registry+https://github.com/rust-lang/crates.io-index"
837
- checksum = "a054912289d18629dc78375ba2c3726a3afe3ff71b4edba9dedfca0e3446d1fc"
851
+ checksum = "4342d8937fc7e5dd9b1c60292261c0670c882a2cd1719cfc11b1af41731e32ad"
838
852
  dependencies = [
839
853
  "aws-lc-sys",
840
854
  "zeroize",
@@ -842,14 +856,15 @@ dependencies = [
842
856
 
843
857
  [[package]]
844
858
  name = "aws-lc-sys"
845
- version = "0.39.0"
859
+ version = "0.42.0"
846
860
  source = "registry+https://github.com/rust-lang/crates.io-index"
847
- checksum = "1fa7e52a4c5c547c741610a2c6f123f3881e409b714cd27e6798ef020c514f0a"
861
+ checksum = "6d9ceb1da931507a12f4fccea479dccd00da1943e1b4ae72d8e502d707361444"
848
862
  dependencies = [
849
863
  "cc",
850
864
  "cmake",
851
865
  "dunce",
852
866
  "fs_extra",
867
+ "pkg-config",
853
868
  ]
854
869
 
855
870
  [[package]]
@@ -890,9 +905,15 @@ dependencies = [
890
905
 
891
906
  [[package]]
892
907
  name = "bitflags"
893
- version = "2.11.0"
908
+ version = "1.3.2"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
911
+
912
+ [[package]]
913
+ name = "bitflags"
914
+ version = "2.13.0"
894
915
  source = "registry+https://github.com/rust-lang/crates.io-index"
895
- checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
916
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
896
917
  dependencies = [
897
918
  "serde_core",
898
919
  ]
@@ -906,11 +927,20 @@ dependencies = [
906
927
  "generic-array",
907
928
  ]
908
929
 
930
+ [[package]]
931
+ name = "block-buffer"
932
+ version = "0.12.1"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
935
+ dependencies = [
936
+ "hybrid-array",
937
+ ]
938
+
909
939
  [[package]]
910
940
  name = "brotli"
911
- version = "8.0.2"
941
+ version = "8.0.4"
912
942
  source = "registry+https://github.com/rust-lang/crates.io-index"
913
- checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
943
+ checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
914
944
  dependencies = [
915
945
  "alloc-no-stdlib",
916
946
  "alloc-stdlib",
@@ -919,19 +949,28 @@ dependencies = [
919
949
 
920
950
  [[package]]
921
951
  name = "brotli-decompressor"
922
- version = "5.0.0"
952
+ version = "5.0.3"
923
953
  source = "registry+https://github.com/rust-lang/crates.io-index"
924
- checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
954
+ checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
925
955
  dependencies = [
926
956
  "alloc-no-stdlib",
927
957
  "alloc-stdlib",
928
958
  ]
929
959
 
960
+ [[package]]
961
+ name = "bs58"
962
+ version = "0.5.1"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
965
+ dependencies = [
966
+ "tinyvec",
967
+ ]
968
+
930
969
  [[package]]
931
970
  name = "bumpalo"
932
- version = "3.20.2"
971
+ version = "3.20.3"
933
972
  source = "registry+https://github.com/rust-lang/crates.io-index"
934
- checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
973
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
935
974
 
936
975
  [[package]]
937
976
  name = "byteorder"
@@ -941,15 +980,15 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
941
980
 
942
981
  [[package]]
943
982
  name = "bytes"
944
- version = "1.11.1"
983
+ version = "1.12.1"
945
984
  source = "registry+https://github.com/rust-lang/crates.io-index"
946
- checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
985
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
947
986
 
948
987
  [[package]]
949
988
  name = "bytestring"
950
- version = "1.5.0"
989
+ version = "1.5.1"
951
990
  source = "registry+https://github.com/rust-lang/crates.io-index"
952
- checksum = "113b4343b5f6617e7ad401ced8de3cc8b012e73a594347c307b90db3e9271289"
991
+ checksum = "86566c496f2f47d9b8147a4c8b02ffdb69c919fe0c2b2e7195d22cbba0e635c9"
953
992
  dependencies = [
954
993
  "bytes",
955
994
  ]
@@ -990,9 +1029,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
990
1029
 
991
1030
  [[package]]
992
1031
  name = "cc"
993
- version = "1.2.57"
1032
+ version = "1.2.67"
994
1033
  source = "registry+https://github.com/rust-lang/crates.io-index"
995
- checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
1034
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
996
1035
  dependencies = [
997
1036
  "find-msvc-tools",
998
1037
  "jobserver",
@@ -1014,20 +1053,20 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
1014
1053
 
1015
1054
  [[package]]
1016
1055
  name = "chacha20"
1017
- version = "0.10.0"
1056
+ version = "0.10.1"
1018
1057
  source = "registry+https://github.com/rust-lang/crates.io-index"
1019
- checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
1058
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
1020
1059
  dependencies = [
1021
1060
  "cfg-if",
1022
1061
  "cpufeatures 0.3.0",
1023
- "rand_core 0.10.0",
1062
+ "rand_core 0.10.1",
1024
1063
  ]
1025
1064
 
1026
1065
  [[package]]
1027
1066
  name = "chrono"
1028
- version = "0.4.44"
1067
+ version = "0.4.45"
1029
1068
  source = "registry+https://github.com/rust-lang/crates.io-index"
1030
- checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
1069
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
1031
1070
  dependencies = [
1032
1071
  "iana-time-zone",
1033
1072
  "js-sys",
@@ -1076,18 +1115,15 @@ dependencies = [
1076
1115
 
1077
1116
  [[package]]
1078
1117
  name = "claims"
1079
- version = "0.7.1"
1118
+ version = "0.8.0"
1080
1119
  source = "registry+https://github.com/rust-lang/crates.io-index"
1081
- checksum = "b6995bbe186456c36307f8ea36be3eefe42f49d106896414e18efc4fb2f846b5"
1082
- dependencies = [
1083
- "autocfg",
1084
- ]
1120
+ checksum = "bba18ee93d577a8428902687bcc2b6b45a56b1981a1f6d779731c86cc4c5db18"
1085
1121
 
1086
1122
  [[package]]
1087
1123
  name = "clap"
1088
- version = "4.6.0"
1124
+ version = "4.6.1"
1089
1125
  source = "registry+https://github.com/rust-lang/crates.io-index"
1090
- checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
1126
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
1091
1127
  dependencies = [
1092
1128
  "clap_builder",
1093
1129
  ]
@@ -1110,9 +1146,9 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
1110
1146
 
1111
1147
  [[package]]
1112
1148
  name = "cmake"
1113
- version = "0.1.57"
1149
+ version = "0.1.58"
1114
1150
  source = "registry+https://github.com/rust-lang/crates.io-index"
1115
- checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
1151
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
1116
1152
  dependencies = [
1117
1153
  "cc",
1118
1154
  ]
@@ -1155,9 +1191,9 @@ dependencies = [
1155
1191
 
1156
1192
  [[package]]
1157
1193
  name = "config"
1158
- version = "0.15.22"
1194
+ version = "0.15.25"
1159
1195
  source = "registry+https://github.com/rust-lang/crates.io-index"
1160
- checksum = "8e68cfe19cd7d23ffde002c24ffa5cda73931913ef394d5eaaa32037dc940c0c"
1196
+ checksum = "b85f248a4de22d204ceabc6299d89d2c70fbd7f09fea53c06c852369652d8139"
1161
1197
  dependencies = [
1162
1198
  "async-trait",
1163
1199
  "convert_case 0.6.0",
@@ -1179,6 +1215,12 @@ version = "0.9.6"
1179
1215
  source = "registry+https://github.com/rust-lang/crates.io-index"
1180
1216
  checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
1181
1217
 
1218
+ [[package]]
1219
+ name = "const-oid"
1220
+ version = "0.10.2"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
1223
+
1182
1224
  [[package]]
1183
1225
  name = "const-random"
1184
1226
  version = "0.1.18"
@@ -1273,9 +1315,9 @@ dependencies = [
1273
1315
 
1274
1316
  [[package]]
1275
1317
  name = "crc-catalog"
1276
- version = "2.4.0"
1318
+ version = "2.5.0"
1277
1319
  source = "registry+https://github.com/rust-lang/crates.io-index"
1278
- checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
1320
+ checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
1279
1321
 
1280
1322
  [[package]]
1281
1323
  name = "crc32fast"
@@ -1343,11 +1385,20 @@ dependencies = [
1343
1385
  "strum",
1344
1386
  ]
1345
1387
 
1388
+ [[package]]
1389
+ name = "crossbeam-channel"
1390
+ version = "0.5.16"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
1393
+ dependencies = [
1394
+ "crossbeam-utils",
1395
+ ]
1396
+
1346
1397
  [[package]]
1347
1398
  name = "crossbeam-deque"
1348
- version = "0.8.6"
1399
+ version = "0.8.7"
1349
1400
  source = "registry+https://github.com/rust-lang/crates.io-index"
1350
- checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
1401
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
1351
1402
  dependencies = [
1352
1403
  "crossbeam-epoch",
1353
1404
  "crossbeam-utils",
@@ -1355,27 +1406,27 @@ dependencies = [
1355
1406
 
1356
1407
  [[package]]
1357
1408
  name = "crossbeam-epoch"
1358
- version = "0.9.18"
1409
+ version = "0.9.20"
1359
1410
  source = "registry+https://github.com/rust-lang/crates.io-index"
1360
- checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
1411
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
1361
1412
  dependencies = [
1362
1413
  "crossbeam-utils",
1363
1414
  ]
1364
1415
 
1365
1416
  [[package]]
1366
1417
  name = "crossbeam-queue"
1367
- version = "0.3.12"
1418
+ version = "0.3.13"
1368
1419
  source = "registry+https://github.com/rust-lang/crates.io-index"
1369
- checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
1420
+ checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26"
1370
1421
  dependencies = [
1371
1422
  "crossbeam-utils",
1372
1423
  ]
1373
1424
 
1374
1425
  [[package]]
1375
1426
  name = "crossbeam-utils"
1376
- version = "0.8.21"
1427
+ version = "0.8.22"
1377
1428
  source = "registry+https://github.com/rust-lang/crates.io-index"
1378
- checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
1429
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
1379
1430
 
1380
1431
  [[package]]
1381
1432
  name = "crunchy"
@@ -1393,6 +1444,15 @@ dependencies = [
1393
1444
  "typenum",
1394
1445
  ]
1395
1446
 
1447
+ [[package]]
1448
+ name = "crypto-common"
1449
+ version = "0.2.2"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
1452
+ dependencies = [
1453
+ "hybrid-array",
1454
+ ]
1455
+
1396
1456
  [[package]]
1397
1457
  name = "csv"
1398
1458
  version = "1.4.0"
@@ -1485,9 +1545,9 @@ dependencies = [
1485
1545
 
1486
1546
  [[package]]
1487
1547
  name = "data-encoding"
1488
- version = "2.10.0"
1548
+ version = "2.11.0"
1489
1549
  source = "registry+https://github.com/rust-lang/crates.io-index"
1490
- checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
1550
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
1491
1551
 
1492
1552
  [[package]]
1493
1553
  name = "deadpool"
@@ -1507,13 +1567,44 @@ version = "0.1.4"
1507
1567
  source = "registry+https://github.com/rust-lang/crates.io-index"
1508
1568
  checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
1509
1569
 
1570
+ [[package]]
1571
+ name = "defmt"
1572
+ version = "1.1.1"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
1575
+ dependencies = [
1576
+ "bitflags 1.3.2",
1577
+ "defmt-macros",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "defmt-macros"
1582
+ version = "1.1.1"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
1585
+ dependencies = [
1586
+ "defmt-parser",
1587
+ "proc-macro2",
1588
+ "quote",
1589
+ "syn",
1590
+ ]
1591
+
1592
+ [[package]]
1593
+ name = "defmt-parser"
1594
+ version = "1.0.0"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
1597
+ dependencies = [
1598
+ "thiserror 2.0.18",
1599
+ ]
1600
+
1510
1601
  [[package]]
1511
1602
  name = "der"
1512
1603
  version = "0.7.10"
1513
1604
  source = "registry+https://github.com/rust-lang/crates.io-index"
1514
1605
  checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
1515
1606
  dependencies = [
1516
- "const-oid",
1607
+ "const-oid 0.9.6",
1517
1608
  "pem-rfc7468",
1518
1609
  "zeroize",
1519
1610
  ]
@@ -1538,7 +1629,6 @@ version = "0.5.8"
1538
1629
  source = "registry+https://github.com/rust-lang/crates.io-index"
1539
1630
  checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
1540
1631
  dependencies = [
1541
- "powerfmt",
1542
1632
  "serde_core",
1543
1633
  ]
1544
1634
 
@@ -1608,17 +1698,28 @@ version = "0.10.7"
1608
1698
  source = "registry+https://github.com/rust-lang/crates.io-index"
1609
1699
  checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
1610
1700
  dependencies = [
1611
- "block-buffer",
1612
- "const-oid",
1613
- "crypto-common",
1701
+ "block-buffer 0.10.4",
1702
+ "const-oid 0.9.6",
1703
+ "crypto-common 0.1.7",
1614
1704
  "subtle",
1615
1705
  ]
1616
1706
 
1707
+ [[package]]
1708
+ name = "digest"
1709
+ version = "0.11.3"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
1712
+ dependencies = [
1713
+ "block-buffer 0.12.1",
1714
+ "const-oid 0.10.2",
1715
+ "crypto-common 0.2.2",
1716
+ ]
1717
+
1617
1718
  [[package]]
1618
1719
  name = "displaydoc"
1619
- version = "0.2.5"
1720
+ version = "0.2.6"
1620
1721
  source = "registry+https://github.com/rust-lang/crates.io-index"
1621
- checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1722
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
1622
1723
  dependencies = [
1623
1724
  "proc-macro2",
1624
1725
  "quote",
@@ -1666,9 +1767,9 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
1666
1767
 
1667
1768
  [[package]]
1668
1769
  name = "either"
1669
- version = "1.15.0"
1770
+ version = "1.16.0"
1670
1771
  source = "registry+https://github.com/rust-lang/crates.io-index"
1671
- checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1772
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
1672
1773
  dependencies = [
1673
1774
  "serde",
1674
1775
  ]
@@ -1682,6 +1783,15 @@ dependencies = [
1682
1783
  "cfg-if",
1683
1784
  ]
1684
1785
 
1786
+ [[package]]
1787
+ name = "encoding_rs_io"
1788
+ version = "0.1.7"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "1cc3c5651fb62ab8aa3103998dade57efdd028544bd300516baa31840c252a83"
1791
+ dependencies = [
1792
+ "encoding_rs",
1793
+ ]
1794
+
1685
1795
  [[package]]
1686
1796
  name = "enum-as-inner"
1687
1797
  version = "0.6.1"
@@ -1696,9 +1806,9 @@ dependencies = [
1696
1806
 
1697
1807
  [[package]]
1698
1808
  name = "env_filter"
1699
- version = "1.0.0"
1809
+ version = "2.0.0"
1700
1810
  source = "registry+https://github.com/rust-lang/crates.io-index"
1701
- checksum = "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f"
1811
+ checksum = "900d271a03799a1ee8d1ca9b19893b48ca674a9284fefcfb85f05e74ed314217"
1702
1812
  dependencies = [
1703
1813
  "log",
1704
1814
  "regex",
@@ -1706,9 +1816,9 @@ dependencies = [
1706
1816
 
1707
1817
  [[package]]
1708
1818
  name = "env_logger"
1709
- version = "0.11.9"
1819
+ version = "0.11.11"
1710
1820
  source = "registry+https://github.com/rust-lang/crates.io-index"
1711
- checksum = "b2daee4ea451f429a58296525ddf28b45a3b64f1acf6587e2067437bb11e218d"
1821
+ checksum = "de671bd27a75a797dc9ae289ba1e77276e75e2026408aab65185384e2d5cd3f6"
1712
1822
  dependencies = [
1713
1823
  "env_filter",
1714
1824
  "log",
@@ -1783,7 +1893,7 @@ dependencies = [
1783
1893
  "deunicode",
1784
1894
  "dummy",
1785
1895
  "either",
1786
- "rand 0.10.0",
1896
+ "rand 0.10.2",
1787
1897
  ]
1788
1898
 
1789
1899
  [[package]]
@@ -1804,7 +1914,7 @@ version = "25.12.19"
1804
1914
  source = "registry+https://github.com/rust-lang/crates.io-index"
1805
1915
  checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
1806
1916
  dependencies = [
1807
- "bitflags",
1917
+ "bitflags 2.13.0",
1808
1918
  "rustc_version",
1809
1919
  ]
1810
1920
 
@@ -1842,6 +1952,12 @@ version = "0.1.5"
1842
1952
  source = "registry+https://github.com/rust-lang/crates.io-index"
1843
1953
  checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1844
1954
 
1955
+ [[package]]
1956
+ name = "foldhash"
1957
+ version = "0.2.0"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1960
+
1845
1961
  [[package]]
1846
1962
  name = "form_urlencoded"
1847
1963
  version = "1.2.2"
@@ -2005,16 +2121,16 @@ dependencies = [
2005
2121
 
2006
2122
  [[package]]
2007
2123
  name = "getrandom"
2008
- version = "0.4.2"
2124
+ version = "0.4.3"
2009
2125
  source = "registry+https://github.com/rust-lang/crates.io-index"
2010
- checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
2126
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
2011
2127
  dependencies = [
2012
2128
  "cfg-if",
2129
+ "js-sys",
2013
2130
  "libc",
2014
2131
  "r-efi 6.0.0",
2015
- "rand_core 0.10.0",
2016
- "wasip2",
2017
- "wasip3",
2132
+ "rand_core 0.10.1",
2133
+ "wasm-bindgen",
2018
2134
  ]
2019
2135
 
2020
2136
  [[package]]
@@ -2029,6 +2145,16 @@ version = "0.3.3"
2029
2145
  source = "registry+https://github.com/rust-lang/crates.io-index"
2030
2146
  checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
2031
2147
 
2148
+ [[package]]
2149
+ name = "granit-parser"
2150
+ version = "0.0.3"
2151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2152
+ checksum = "f50ba32164f9e098d5da618776a32afbb32270adcbe3d3d006107dae11e37c91"
2153
+ dependencies = [
2154
+ "arraydeque",
2155
+ "smallvec",
2156
+ ]
2157
+
2032
2158
  [[package]]
2033
2159
  name = "h2"
2034
2160
  version = "0.3.27"
@@ -2041,7 +2167,7 @@ dependencies = [
2041
2167
  "futures-sink",
2042
2168
  "futures-util",
2043
2169
  "http 0.2.12",
2044
- "indexmap 2.13.0",
2170
+ "indexmap 2.14.0",
2045
2171
  "slab",
2046
2172
  "tokio",
2047
2173
  "tokio-util",
@@ -2050,17 +2176,17 @@ dependencies = [
2050
2176
 
2051
2177
  [[package]]
2052
2178
  name = "h2"
2053
- version = "0.4.13"
2179
+ version = "0.4.15"
2054
2180
  source = "registry+https://github.com/rust-lang/crates.io-index"
2055
- checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
2181
+ checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
2056
2182
  dependencies = [
2057
2183
  "atomic-waker",
2058
2184
  "bytes",
2059
2185
  "fnv",
2060
2186
  "futures-core",
2061
2187
  "futures-sink",
2062
- "http 1.4.0",
2063
- "indexmap 2.13.0",
2188
+ "http 1.4.2",
2189
+ "indexmap 2.14.0",
2064
2190
  "slab",
2065
2191
  "tokio",
2066
2192
  "tokio-util",
@@ -2102,7 +2228,7 @@ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
2102
2228
  dependencies = [
2103
2229
  "allocator-api2",
2104
2230
  "equivalent",
2105
- "foldhash",
2231
+ "foldhash 0.1.5",
2106
2232
  ]
2107
2233
 
2108
2234
  [[package]]
@@ -2110,6 +2236,15 @@ name = "hashbrown"
2110
2236
  version = "0.16.1"
2111
2237
  source = "registry+https://github.com/rust-lang/crates.io-index"
2112
2238
  checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
2239
+ dependencies = [
2240
+ "foldhash 0.2.0",
2241
+ ]
2242
+
2243
+ [[package]]
2244
+ name = "hashbrown"
2245
+ version = "0.17.1"
2246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2247
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
2113
2248
 
2114
2249
  [[package]]
2115
2250
  name = "hashlink"
@@ -2129,6 +2264,15 @@ dependencies = [
2129
2264
  "hashbrown 0.15.5",
2130
2265
  ]
2131
2266
 
2267
+ [[package]]
2268
+ name = "hashlink"
2269
+ version = "0.11.1"
2270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2271
+ checksum = "824e001ac4f3012dd16a264bec811403a67ca9deb6c102fc5049b32c4574b35f"
2272
+ dependencies = [
2273
+ "hashbrown 0.16.1",
2274
+ ]
2275
+
2132
2276
  [[package]]
2133
2277
  name = "heck"
2134
2278
  version = "0.5.0"
@@ -2162,7 +2306,7 @@ version = "0.12.1"
2162
2306
  source = "registry+https://github.com/rust-lang/crates.io-index"
2163
2307
  checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
2164
2308
  dependencies = [
2165
- "digest",
2309
+ "digest 0.10.7",
2166
2310
  ]
2167
2311
 
2168
2312
  [[package]]
@@ -2187,9 +2331,9 @@ dependencies = [
2187
2331
 
2188
2332
  [[package]]
2189
2333
  name = "http"
2190
- version = "1.4.0"
2334
+ version = "1.4.2"
2191
2335
  source = "registry+https://github.com/rust-lang/crates.io-index"
2192
- checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
2336
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
2193
2337
  dependencies = [
2194
2338
  "bytes",
2195
2339
  "itoa",
@@ -2202,7 +2346,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
2346
  checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
2203
2347
  dependencies = [
2204
2348
  "bytes",
2205
- "http 1.4.0",
2349
+ "http 1.4.2",
2206
2350
  ]
2207
2351
 
2208
2352
  [[package]]
@@ -2213,7 +2357,7 @@ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
2213
2357
  dependencies = [
2214
2358
  "bytes",
2215
2359
  "futures-core",
2216
- "http 1.4.0",
2360
+ "http 1.4.2",
2217
2361
  "http-body",
2218
2362
  "pin-project-lite",
2219
2363
  ]
@@ -2230,24 +2374,32 @@ version = "1.0.3"
2230
2374
  source = "registry+https://github.com/rust-lang/crates.io-index"
2231
2375
  checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2232
2376
 
2377
+ [[package]]
2378
+ name = "hybrid-array"
2379
+ version = "0.4.13"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
2382
+ dependencies = [
2383
+ "typenum",
2384
+ ]
2385
+
2233
2386
  [[package]]
2234
2387
  name = "hyper"
2235
- version = "1.8.1"
2388
+ version = "1.10.1"
2236
2389
  source = "registry+https://github.com/rust-lang/crates.io-index"
2237
- checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
2390
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
2238
2391
  dependencies = [
2239
2392
  "atomic-waker",
2240
2393
  "bytes",
2241
2394
  "futures-channel",
2242
2395
  "futures-core",
2243
- "h2 0.4.13",
2244
- "http 1.4.0",
2396
+ "h2 0.4.15",
2397
+ "http 1.4.2",
2245
2398
  "http-body",
2246
2399
  "httparse",
2247
2400
  "httpdate",
2248
2401
  "itoa",
2249
2402
  "pin-project-lite",
2250
- "pin-utils",
2251
2403
  "smallvec",
2252
2404
  "tokio",
2253
2405
  "want",
@@ -2255,21 +2407,20 @@ dependencies = [
2255
2407
 
2256
2408
  [[package]]
2257
2409
  name = "hyper-rustls"
2258
- version = "0.27.7"
2410
+ version = "0.27.9"
2259
2411
  source = "registry+https://github.com/rust-lang/crates.io-index"
2260
- checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
2412
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
2261
2413
  dependencies = [
2262
- "http 1.4.0",
2414
+ "http 1.4.2",
2263
2415
  "hyper",
2264
2416
  "hyper-util",
2265
2417
  "log",
2266
2418
  "rustls",
2267
2419
  "rustls-native-certs",
2268
- "rustls-pki-types",
2269
2420
  "tokio",
2270
2421
  "tokio-rustls",
2271
2422
  "tower-service",
2272
- "webpki-roots 1.0.6",
2423
+ "webpki-roots 1.0.8",
2273
2424
  ]
2274
2425
 
2275
2426
  [[package]]
@@ -2295,14 +2446,14 @@ dependencies = [
2295
2446
  "bytes",
2296
2447
  "futures-channel",
2297
2448
  "futures-util",
2298
- "http 1.4.0",
2449
+ "http 1.4.2",
2299
2450
  "http-body",
2300
2451
  "hyper",
2301
2452
  "ipnet",
2302
2453
  "libc",
2303
2454
  "percent-encoding",
2304
2455
  "pin-project-lite",
2305
- "socket2 0.6.3",
2456
+ "socket2 0.6.4",
2306
2457
  "tokio",
2307
2458
  "tower-service",
2308
2459
  "tracing",
@@ -2334,12 +2485,13 @@ dependencies = [
2334
2485
 
2335
2486
  [[package]]
2336
2487
  name = "icu_collections"
2337
- version = "2.1.1"
2488
+ version = "2.2.0"
2338
2489
  source = "registry+https://github.com/rust-lang/crates.io-index"
2339
- checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
2490
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
2340
2491
  dependencies = [
2341
2492
  "displaydoc",
2342
2493
  "potential_utf",
2494
+ "utf8_iter",
2343
2495
  "yoke",
2344
2496
  "zerofrom",
2345
2497
  "zerovec",
@@ -2347,9 +2499,9 @@ dependencies = [
2347
2499
 
2348
2500
  [[package]]
2349
2501
  name = "icu_locale_core"
2350
- version = "2.1.1"
2502
+ version = "2.2.0"
2351
2503
  source = "registry+https://github.com/rust-lang/crates.io-index"
2352
- checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
2504
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
2353
2505
  dependencies = [
2354
2506
  "displaydoc",
2355
2507
  "litemap",
@@ -2360,9 +2512,9 @@ dependencies = [
2360
2512
 
2361
2513
  [[package]]
2362
2514
  name = "icu_normalizer"
2363
- version = "2.1.1"
2515
+ version = "2.2.0"
2364
2516
  source = "registry+https://github.com/rust-lang/crates.io-index"
2365
- checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
2517
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
2366
2518
  dependencies = [
2367
2519
  "icu_collections",
2368
2520
  "icu_normalizer_data",
@@ -2374,15 +2526,15 @@ dependencies = [
2374
2526
 
2375
2527
  [[package]]
2376
2528
  name = "icu_normalizer_data"
2377
- version = "2.1.1"
2529
+ version = "2.2.0"
2378
2530
  source = "registry+https://github.com/rust-lang/crates.io-index"
2379
- checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
2531
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
2380
2532
 
2381
2533
  [[package]]
2382
2534
  name = "icu_properties"
2383
- version = "2.1.2"
2535
+ version = "2.2.0"
2384
2536
  source = "registry+https://github.com/rust-lang/crates.io-index"
2385
- checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
2537
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
2386
2538
  dependencies = [
2387
2539
  "icu_collections",
2388
2540
  "icu_locale_core",
@@ -2394,15 +2546,15 @@ dependencies = [
2394
2546
 
2395
2547
  [[package]]
2396
2548
  name = "icu_properties_data"
2397
- version = "2.1.2"
2549
+ version = "2.2.0"
2398
2550
  source = "registry+https://github.com/rust-lang/crates.io-index"
2399
- checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
2551
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
2400
2552
 
2401
2553
  [[package]]
2402
2554
  name = "icu_provider"
2403
- version = "2.1.1"
2555
+ version = "2.2.0"
2404
2556
  source = "registry+https://github.com/rust-lang/crates.io-index"
2405
- checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
2557
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
2406
2558
  dependencies = [
2407
2559
  "displaydoc",
2408
2560
  "icu_locale_core",
@@ -2413,12 +2565,6 @@ dependencies = [
2413
2565
  "zerovec",
2414
2566
  ]
2415
2567
 
2416
- [[package]]
2417
- name = "id-arena"
2418
- version = "2.3.0"
2419
- source = "registry+https://github.com/rust-lang/crates.io-index"
2420
- checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
2421
-
2422
2568
  [[package]]
2423
2569
  name = "ident_case"
2424
2570
  version = "1.0.1"
@@ -2438,9 +2584,9 @@ dependencies = [
2438
2584
 
2439
2585
  [[package]]
2440
2586
  name = "idna_adapter"
2441
- version = "1.2.1"
2587
+ version = "1.2.2"
2442
2588
  source = "registry+https://github.com/rust-lang/crates.io-index"
2443
- checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
2589
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
2444
2590
  dependencies = [
2445
2591
  "icu_normalizer",
2446
2592
  "icu_properties",
@@ -2452,6 +2598,12 @@ version = "0.1.9"
2452
2598
  source = "registry+https://github.com/rust-lang/crates.io-index"
2453
2599
  checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
2454
2600
 
2601
+ [[package]]
2602
+ name = "impl-more"
2603
+ version = "0.3.1"
2604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2605
+ checksum = "35a84fd5aa25fae5c0f4a33d9cac2ca017fc622cbd089be2229993514990f870"
2606
+
2455
2607
  [[package]]
2456
2608
  name = "indenter"
2457
2609
  version = "0.3.4"
@@ -2471,47 +2623,22 @@ dependencies = [
2471
2623
 
2472
2624
  [[package]]
2473
2625
  name = "indexmap"
2474
- version = "2.13.0"
2626
+ version = "2.14.0"
2475
2627
  source = "registry+https://github.com/rust-lang/crates.io-index"
2476
- checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
2628
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
2477
2629
  dependencies = [
2478
2630
  "equivalent",
2479
- "hashbrown 0.16.1",
2631
+ "hashbrown 0.17.1",
2480
2632
  "serde",
2481
2633
  "serde_core",
2482
2634
  ]
2483
2635
 
2484
- [[package]]
2485
- name = "indoc"
2486
- version = "2.0.7"
2487
- source = "registry+https://github.com/rust-lang/crates.io-index"
2488
- checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
2489
- dependencies = [
2490
- "rustversion",
2491
- ]
2492
-
2493
- [[package]]
2494
- name = "integer-encoding"
2495
- version = "3.0.4"
2496
- source = "registry+https://github.com/rust-lang/crates.io-index"
2497
- checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
2498
-
2499
2636
  [[package]]
2500
2637
  name = "ipnet"
2501
2638
  version = "2.12.0"
2502
2639
  source = "registry+https://github.com/rust-lang/crates.io-index"
2503
2640
  checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
2504
2641
 
2505
- [[package]]
2506
- name = "iri-string"
2507
- version = "0.7.10"
2508
- source = "registry+https://github.com/rust-lang/crates.io-index"
2509
- checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
2510
- dependencies = [
2511
- "memchr",
2512
- "serde",
2513
- ]
2514
-
2515
2642
  [[package]]
2516
2643
  name = "itertools"
2517
2644
  version = "0.13.0"
@@ -2523,9 +2650,9 @@ dependencies = [
2523
2650
 
2524
2651
  [[package]]
2525
2652
  name = "itertools"
2526
- version = "0.14.0"
2653
+ version = "0.15.0"
2527
2654
  source = "registry+https://github.com/rust-lang/crates.io-index"
2528
- checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
2655
+ checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
2529
2656
  dependencies = [
2530
2657
  "either",
2531
2658
  ]
@@ -2538,24 +2665,25 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
2538
2665
 
2539
2666
  [[package]]
2540
2667
  name = "jiff"
2541
- version = "0.2.23"
2668
+ version = "0.2.32"
2542
2669
  source = "registry+https://github.com/rust-lang/crates.io-index"
2543
- checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359"
2670
+ checksum = "961d16382652bfdd8c6f68b223b26a8c93e0d475c672f414411db31c6c5c900e"
2544
2671
  dependencies = [
2672
+ "defmt",
2545
2673
  "jiff-static",
2546
2674
  "jiff-tzdb-platform",
2547
2675
  "log",
2548
2676
  "portable-atomic",
2549
2677
  "portable-atomic-util",
2550
2678
  "serde_core",
2551
- "windows-sys 0.61.2",
2679
+ "windows-link",
2552
2680
  ]
2553
2681
 
2554
2682
  [[package]]
2555
2683
  name = "jiff-static"
2556
- version = "0.2.23"
2684
+ version = "0.2.32"
2557
2685
  source = "registry+https://github.com/rust-lang/crates.io-index"
2558
- checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4"
2686
+ checksum = "d0879bd39df99c4c5e2c6615ccc026391a423dde10532c573e6086eb94a802cc"
2559
2687
  dependencies = [
2560
2688
  "proc-macro2",
2561
2689
  "quote",
@@ -2564,9 +2692,9 @@ dependencies = [
2564
2692
 
2565
2693
  [[package]]
2566
2694
  name = "jiff-tzdb"
2567
- version = "0.1.6"
2695
+ version = "0.1.8"
2568
2696
  source = "registry+https://github.com/rust-lang/crates.io-index"
2569
- checksum = "c900ef84826f1338a557697dc8fc601df9ca9af4ac137c7fb61d4c6f2dfd3076"
2697
+ checksum = "142bd39932ad231f10513df9ab62661fead8719872150b7ad02a2df79f4e141e"
2570
2698
 
2571
2699
  [[package]]
2572
2700
  name = "jiff-tzdb-platform"
@@ -2579,21 +2707,22 @@ dependencies = [
2579
2707
 
2580
2708
  [[package]]
2581
2709
  name = "jobserver"
2582
- version = "0.1.34"
2710
+ version = "0.1.35"
2583
2711
  source = "registry+https://github.com/rust-lang/crates.io-index"
2584
- checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
2712
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
2585
2713
  dependencies = [
2586
- "getrandom 0.3.4",
2714
+ "getrandom 0.4.3",
2587
2715
  "libc",
2588
2716
  ]
2589
2717
 
2590
2718
  [[package]]
2591
2719
  name = "js-sys"
2592
- version = "0.3.91"
2720
+ version = "0.3.103"
2593
2721
  source = "registry+https://github.com/rust-lang/crates.io-index"
2594
- checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
2722
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
2595
2723
  dependencies = [
2596
- "once_cell",
2724
+ "cfg-if",
2725
+ "futures-util",
2597
2726
  "wasm-bindgen",
2598
2727
  ]
2599
2728
 
@@ -2623,9 +2752,9 @@ dependencies = [
2623
2752
 
2624
2753
  [[package]]
2625
2754
  name = "k8s-openapi"
2626
- version = "0.27.1"
2755
+ version = "0.28.0"
2627
2756
  source = "registry+https://github.com/rust-lang/crates.io-index"
2628
- checksum = "51b326f5219dd55872a72c1b6ddd1b830b8334996c667449c29391d657d78d5e"
2757
+ checksum = "d9c6922f6afe80418dd6019818af5d0d34584c371780ff09b9752370c25b4abb"
2629
2758
  dependencies = [
2630
2759
  "base64",
2631
2760
  "jiff",
@@ -2635,9 +2764,9 @@ dependencies = [
2635
2764
 
2636
2765
  [[package]]
2637
2766
  name = "kube"
2638
- version = "3.1.0"
2767
+ version = "4.0.0"
2639
2768
  source = "registry+https://github.com/rust-lang/crates.io-index"
2640
- checksum = "acc5a6a69da2975ed9925d56b5dcfc9cc739b66f37add06785b7c9f6d1e88741"
2769
+ checksum = "4bb9108095346a7096d11feeaff419c75dddcac1b2f59acb38d7bf3d13c3e146"
2641
2770
  dependencies = [
2642
2771
  "k8s-openapi",
2643
2772
  "kube-client",
@@ -2646,15 +2775,15 @@ dependencies = [
2646
2775
 
2647
2776
  [[package]]
2648
2777
  name = "kube-client"
2649
- version = "3.1.0"
2778
+ version = "4.0.0"
2650
2779
  source = "registry+https://github.com/rust-lang/crates.io-index"
2651
- checksum = "0fcaf2d1f1a91e1805d4cd82e8333c022767ae8ffd65909bbef6802733a7dd40"
2780
+ checksum = "d0f628e05bc2264c21fe10d3d675117dc9b43ea3bf4fb07262a222679757537b"
2652
2781
  dependencies = [
2653
2782
  "base64",
2654
2783
  "bytes",
2655
2784
  "either",
2656
2785
  "futures",
2657
- "http 1.4.0",
2786
+ "http 1.4.2",
2658
2787
  "http-body",
2659
2788
  "http-body-util",
2660
2789
  "hyper",
@@ -2669,8 +2798,8 @@ dependencies = [
2669
2798
  "rustls",
2670
2799
  "secrecy",
2671
2800
  "serde",
2801
+ "serde-saphyr",
2672
2802
  "serde_json",
2673
- "serde_yaml",
2674
2803
  "thiserror 2.0.18",
2675
2804
  "tokio",
2676
2805
  "tokio-util",
@@ -2681,13 +2810,13 @@ dependencies = [
2681
2810
 
2682
2811
  [[package]]
2683
2812
  name = "kube-core"
2684
- version = "3.1.0"
2813
+ version = "4.0.0"
2685
2814
  source = "registry+https://github.com/rust-lang/crates.io-index"
2686
- checksum = "f126d2db7a8b532ec1d839ece2a71e2485dc3bbca6cc3c3f929becaa810e719e"
2815
+ checksum = "c1b02f5933ba06140d58c7d6727f6c319f0962ec6a344aa5e21e475e891deaa8"
2687
2816
  dependencies = [
2688
2817
  "derive_more",
2689
2818
  "form_urlencoded",
2690
- "http 1.4.0",
2819
+ "http 1.4.2",
2691
2820
  "jiff",
2692
2821
  "k8s-openapi",
2693
2822
  "serde",
@@ -2711,12 +2840,6 @@ dependencies = [
2711
2840
  "spin 0.9.8",
2712
2841
  ]
2713
2842
 
2714
- [[package]]
2715
- name = "leb128fmt"
2716
- version = "0.1.0"
2717
- source = "registry+https://github.com/rust-lang/crates.io-index"
2718
- checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
2719
-
2720
2843
  [[package]]
2721
2844
  name = "lexical-core"
2722
2845
  version = "1.0.6"
@@ -2776,9 +2899,9 @@ dependencies = [
2776
2899
 
2777
2900
  [[package]]
2778
2901
  name = "libc"
2779
- version = "0.2.183"
2902
+ version = "0.2.186"
2780
2903
  source = "registry+https://github.com/rust-lang/crates.io-index"
2781
- checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
2904
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
2782
2905
 
2783
2906
  [[package]]
2784
2907
  name = "libm"
@@ -2788,14 +2911,14 @@ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
2788
2911
 
2789
2912
  [[package]]
2790
2913
  name = "libredox"
2791
- version = "0.1.14"
2914
+ version = "0.1.18"
2792
2915
  source = "registry+https://github.com/rust-lang/crates.io-index"
2793
- checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a"
2916
+ checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
2794
2917
  dependencies = [
2795
- "bitflags",
2918
+ "bitflags 2.13.0",
2796
2919
  "libc",
2797
2920
  "plain",
2798
- "redox_syscall 0.7.3",
2921
+ "redox_syscall 0.9.0",
2799
2922
  ]
2800
2923
 
2801
2924
  [[package]]
@@ -2811,9 +2934,9 @@ dependencies = [
2811
2934
 
2812
2935
  [[package]]
2813
2936
  name = "litemap"
2814
- version = "0.8.1"
2937
+ version = "0.8.2"
2815
2938
  source = "registry+https://github.com/rust-lang/crates.io-index"
2816
- checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
2939
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
2817
2940
 
2818
2941
  [[package]]
2819
2942
  name = "local-channel"
@@ -2843,9 +2966,9 @@ dependencies = [
2843
2966
 
2844
2967
  [[package]]
2845
2968
  name = "log"
2846
- version = "0.4.29"
2969
+ version = "0.4.33"
2847
2970
  source = "registry+https://github.com/rust-lang/crates.io-index"
2848
- checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
2971
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
2849
2972
 
2850
2973
  [[package]]
2851
2974
  name = "lru-slab"
@@ -2855,9 +2978,9 @@ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2855
2978
 
2856
2979
  [[package]]
2857
2980
  name = "lz4_flex"
2858
- version = "0.12.1"
2981
+ version = "0.13.1"
2859
2982
  source = "registry+https://github.com/rust-lang/crates.io-index"
2860
- checksum = "98c23545df7ecf1b16c303910a69b079e8e251d60f7dd2cc9b4177f2afaf1746"
2983
+ checksum = "7ef0d4ed8669f8f8826eb00dc878084aa8f253506c4fd5e8f58f5bce72ddb97e"
2861
2984
  dependencies = [
2862
2985
  "twox-hash",
2863
2986
  ]
@@ -2878,23 +3001,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2878
3001
  checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
2879
3002
  dependencies = [
2880
3003
  "cfg-if",
2881
- "digest",
3004
+ "digest 0.10.7",
2882
3005
  ]
2883
3006
 
2884
3007
  [[package]]
2885
3008
  name = "memchr"
2886
- version = "2.8.0"
2887
- source = "registry+https://github.com/rust-lang/crates.io-index"
2888
- checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
2889
-
2890
- [[package]]
2891
- name = "memoffset"
2892
- version = "0.9.1"
3009
+ version = "2.8.3"
2893
3010
  source = "registry+https://github.com/rust-lang/crates.io-index"
2894
- checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2895
- dependencies = [
2896
- "autocfg",
2897
- ]
3011
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
2898
3012
 
2899
3013
  [[package]]
2900
3014
  name = "mime"
@@ -2930,9 +3044,9 @@ dependencies = [
2930
3044
 
2931
3045
  [[package]]
2932
3046
  name = "mio"
2933
- version = "1.1.1"
3047
+ version = "1.2.1"
2934
3048
  source = "registry+https://github.com/rust-lang/crates.io-index"
2935
- checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
3049
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
2936
3050
  dependencies = [
2937
3051
  "libc",
2938
3052
  "log",
@@ -2955,6 +3069,12 @@ dependencies = [
2955
3069
  "spin 0.5.2",
2956
3070
  ]
2957
3071
 
3072
+ [[package]]
3073
+ name = "nohash-hasher"
3074
+ version = "0.2.0"
3075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3076
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
3077
+
2958
3078
  [[package]]
2959
3079
  name = "nom"
2960
3080
  version = "7.1.3"
@@ -2976,9 +3096,9 @@ dependencies = [
2976
3096
 
2977
3097
  [[package]]
2978
3098
  name = "num-bigint"
2979
- version = "0.4.6"
3099
+ version = "0.4.8"
2980
3100
  source = "registry+https://github.com/rust-lang/crates.io-index"
2981
- checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
3101
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
2982
3102
  dependencies = [
2983
3103
  "num-integer",
2984
3104
  "num-traits",
@@ -2995,7 +3115,7 @@ dependencies = [
2995
3115
  "num-integer",
2996
3116
  "num-iter",
2997
3117
  "num-traits",
2998
- "rand 0.8.5",
3118
+ "rand 0.8.7",
2999
3119
  "smallvec",
3000
3120
  "zeroize",
3001
3121
  ]
@@ -3011,9 +3131,9 @@ dependencies = [
3011
3131
 
3012
3132
  [[package]]
3013
3133
  name = "num-conv"
3014
- version = "0.2.0"
3134
+ version = "0.2.2"
3015
3135
  source = "registry+https://github.com/rust-lang/crates.io-index"
3016
- checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
3136
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
3017
3137
 
3018
3138
  [[package]]
3019
3139
  name = "num-derive"
@@ -3037,11 +3157,10 @@ dependencies = [
3037
3157
 
3038
3158
  [[package]]
3039
3159
  name = "num-iter"
3040
- version = "0.1.45"
3160
+ version = "0.1.46"
3041
3161
  source = "registry+https://github.com/rust-lang/crates.io-index"
3042
- checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
3162
+ checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
3043
3163
  dependencies = [
3044
- "autocfg",
3045
3164
  "num-integer",
3046
3165
  "num-traits",
3047
3166
  ]
@@ -3199,7 +3318,7 @@ dependencies = [
3199
3318
  "opentelemetry 0.23.0",
3200
3319
  "ordered-float 4.6.0",
3201
3320
  "percent-encoding",
3202
- "rand 0.8.5",
3321
+ "rand 0.8.7",
3203
3322
  "thiserror 1.0.69",
3204
3323
  ]
3205
3324
 
@@ -3278,9 +3397,9 @@ dependencies = [
3278
3397
 
3279
3398
  [[package]]
3280
3399
  name = "parquet"
3281
- version = "58.0.0"
3400
+ version = "59.1.0"
3282
3401
  source = "registry+https://github.com/rust-lang/crates.io-index"
3283
- checksum = "3f491d0ef1b510194426ee67ddc18a9b747ef3c42050c19322a2cd2e1666c29b"
3402
+ checksum = "5302d4da74d6596a1f11f9928767995b53bca657cbeea1e4e8c5074f8a1157dd"
3284
3403
  dependencies = [
3285
3404
  "ahash",
3286
3405
  "arrow-array",
@@ -3295,7 +3414,7 @@ dependencies = [
3295
3414
  "chrono",
3296
3415
  "flate2",
3297
3416
  "half",
3298
- "hashbrown 0.16.1",
3417
+ "hashbrown 0.17.1",
3299
3418
  "lz4_flex",
3300
3419
  "num-bigint",
3301
3420
  "num-integer",
@@ -3304,7 +3423,6 @@ dependencies = [
3304
3423
  "seq-macro",
3305
3424
  "simdutf8",
3306
3425
  "snap",
3307
- "thrift",
3308
3426
  "twox-hash",
3309
3427
  "zstd",
3310
3428
  ]
@@ -3348,9 +3466,9 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
3348
3466
 
3349
3467
  [[package]]
3350
3468
  name = "pest"
3351
- version = "2.8.6"
3469
+ version = "2.8.7"
3352
3470
  source = "registry+https://github.com/rust-lang/crates.io-index"
3353
- checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
3471
+ checksum = "47627dd7305c6a2d6c8c6bcd24c5a4c17dbbf425f4f9c5313e724b38fc9782e9"
3354
3472
  dependencies = [
3355
3473
  "memchr",
3356
3474
  "ucd-trie",
@@ -3358,9 +3476,9 @@ dependencies = [
3358
3476
 
3359
3477
  [[package]]
3360
3478
  name = "pest_derive"
3361
- version = "2.8.6"
3479
+ version = "2.8.7"
3362
3480
  source = "registry+https://github.com/rust-lang/crates.io-index"
3363
- checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
3481
+ checksum = "4b4254325ecad416ab689e27ba51da03ba01a9632bc6e108f5fe7c3c4ad29d58"
3364
3482
  dependencies = [
3365
3483
  "pest",
3366
3484
  "pest_generator",
@@ -3368,9 +3486,9 @@ dependencies = [
3368
3486
 
3369
3487
  [[package]]
3370
3488
  name = "pest_generator"
3371
- version = "2.8.6"
3489
+ version = "2.8.7"
3372
3490
  source = "registry+https://github.com/rust-lang/crates.io-index"
3373
- checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
3491
+ checksum = "6c4c0e91ead7a8f7acecbca6f003fc2e8282b1dbe2dd9c9d2f16aba42995e0a7"
3374
3492
  dependencies = [
3375
3493
  "pest",
3376
3494
  "pest_meta",
@@ -3381,12 +3499,11 @@ dependencies = [
3381
3499
 
3382
3500
  [[package]]
3383
3501
  name = "pest_meta"
3384
- version = "2.8.6"
3502
+ version = "2.8.7"
3385
3503
  source = "registry+https://github.com/rust-lang/crates.io-index"
3386
- checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
3504
+ checksum = "f9744bc48116fee06334924bb5f2bad41eed5e89bd26e29b0b799f9a3f82c210"
3387
3505
  dependencies = [
3388
3506
  "pest",
3389
- "sha2",
3390
3507
  ]
3391
3508
 
3392
3509
  [[package]]
@@ -3396,7 +3513,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3396
3513
  checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
3397
3514
  dependencies = [
3398
3515
  "fixedbitset",
3399
- "indexmap 2.13.0",
3516
+ "indexmap 2.14.0",
3400
3517
  ]
3401
3518
 
3402
3519
  [[package]]
@@ -3419,18 +3536,18 @@ dependencies = [
3419
3536
 
3420
3537
  [[package]]
3421
3538
  name = "pin-project"
3422
- version = "1.1.11"
3539
+ version = "1.1.13"
3423
3540
  source = "registry+https://github.com/rust-lang/crates.io-index"
3424
- checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517"
3541
+ checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
3425
3542
  dependencies = [
3426
3543
  "pin-project-internal",
3427
3544
  ]
3428
3545
 
3429
3546
  [[package]]
3430
3547
  name = "pin-project-internal"
3431
- version = "1.1.11"
3548
+ version = "1.1.13"
3432
3549
  source = "registry+https://github.com/rust-lang/crates.io-index"
3433
- checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6"
3550
+ checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
3434
3551
  dependencies = [
3435
3552
  "proc-macro2",
3436
3553
  "quote",
@@ -3443,12 +3560,6 @@ version = "0.2.17"
3443
3560
  source = "registry+https://github.com/rust-lang/crates.io-index"
3444
3561
  checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
3445
3562
 
3446
- [[package]]
3447
- name = "pin-utils"
3448
- version = "0.1.0"
3449
- source = "registry+https://github.com/rust-lang/crates.io-index"
3450
- checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
3451
-
3452
3563
  [[package]]
3453
3564
  name = "pkcs1"
3454
3565
  version = "0.7.5"
@@ -3472,9 +3583,9 @@ dependencies = [
3472
3583
 
3473
3584
  [[package]]
3474
3585
  name = "pkg-config"
3475
- version = "0.3.32"
3586
+ version = "0.3.33"
3476
3587
  source = "registry+https://github.com/rust-lang/crates.io-index"
3477
- checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
3588
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
3478
3589
 
3479
3590
  [[package]]
3480
3591
  name = "plain"
@@ -3518,18 +3629,18 @@ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
3518
3629
 
3519
3630
  [[package]]
3520
3631
  name = "portable-atomic-util"
3521
- version = "0.2.6"
3632
+ version = "0.2.7"
3522
3633
  source = "registry+https://github.com/rust-lang/crates.io-index"
3523
- checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
3634
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
3524
3635
  dependencies = [
3525
3636
  "portable-atomic",
3526
3637
  ]
3527
3638
 
3528
3639
  [[package]]
3529
3640
  name = "potential_utf"
3530
- version = "0.1.4"
3641
+ version = "0.1.5"
3531
3642
  source = "registry+https://github.com/rust-lang/crates.io-index"
3532
- checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
3643
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
3533
3644
  dependencies = [
3534
3645
  "zerovec",
3535
3646
  ]
@@ -3549,16 +3660,6 @@ dependencies = [
3549
3660
  "zerocopy",
3550
3661
  ]
3551
3662
 
3552
- [[package]]
3553
- name = "prettyplease"
3554
- version = "0.2.37"
3555
- source = "registry+https://github.com/rust-lang/crates.io-index"
3556
- checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
3557
- dependencies = [
3558
- "proc-macro2",
3559
- "syn",
3560
- ]
3561
-
3562
3663
  [[package]]
3563
3664
  name = "proc-macro2"
3564
3665
  version = "1.0.106"
@@ -3605,30 +3706,28 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
3605
3706
 
3606
3707
  [[package]]
3607
3708
  name = "pyo3"
3608
- version = "0.27.2"
3709
+ version = "0.29.0"
3609
3710
  source = "registry+https://github.com/rust-lang/crates.io-index"
3610
- checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
3711
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
3611
3712
  dependencies = [
3612
3713
  "anyhow",
3613
3714
  "chrono",
3614
- "indoc",
3615
3715
  "libc",
3616
- "memoffset",
3617
3716
  "once_cell",
3618
3717
  "portable-atomic",
3619
3718
  "pyo3-build-config",
3620
3719
  "pyo3-ffi",
3621
3720
  "pyo3-macros",
3622
- "unindent",
3623
3721
  ]
3624
3722
 
3625
3723
  [[package]]
3626
3724
  name = "pyo3-async-runtimes"
3627
- version = "0.27.0"
3725
+ version = "0.29.0"
3628
3726
  source = "registry+https://github.com/rust-lang/crates.io-index"
3629
- checksum = "57ddb5b570751e93cc6777e81fee8087e59cd53b5043292f2a6d59d5bd80fdfd"
3727
+ checksum = "b3ef68daa7316a3fac65e5e18b2203f010346de1c1c53456811a2624673ab046"
3630
3728
  dependencies = [
3631
- "futures",
3729
+ "futures-channel",
3730
+ "futures-util",
3632
3731
  "once_cell",
3633
3732
  "pin-project-lite",
3634
3733
  "pyo3",
@@ -3638,9 +3737,9 @@ dependencies = [
3638
3737
 
3639
3738
  [[package]]
3640
3739
  name = "pyo3-async-runtimes-macros"
3641
- version = "0.27.0"
3740
+ version = "0.29.0"
3642
3741
  source = "registry+https://github.com/rust-lang/crates.io-index"
3643
- checksum = "bcd7d70ee0ca1661c40407e6f84e4463ef2658c90a9e2fbbd4515b2bcdfcaeca"
3742
+ checksum = "faf75ff3922e6830adcaa30f3a359ce861326f6161f16a13d97adb40ba6a744a"
3644
3743
  dependencies = [
3645
3744
  "proc-macro2",
3646
3745
  "quote",
@@ -3649,18 +3748,18 @@ dependencies = [
3649
3748
 
3650
3749
  [[package]]
3651
3750
  name = "pyo3-build-config"
3652
- version = "0.27.2"
3751
+ version = "0.29.0"
3653
3752
  source = "registry+https://github.com/rust-lang/crates.io-index"
3654
- checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
3753
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
3655
3754
  dependencies = [
3656
3755
  "target-lexicon",
3657
3756
  ]
3658
3757
 
3659
3758
  [[package]]
3660
3759
  name = "pyo3-ffi"
3661
- version = "0.27.2"
3760
+ version = "0.29.0"
3662
3761
  source = "registry+https://github.com/rust-lang/crates.io-index"
3663
- checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
3762
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
3664
3763
  dependencies = [
3665
3764
  "libc",
3666
3765
  "pyo3-build-config",
@@ -3668,9 +3767,9 @@ dependencies = [
3668
3767
 
3669
3768
  [[package]]
3670
3769
  name = "pyo3-macros"
3671
- version = "0.27.2"
3770
+ version = "0.29.0"
3672
3771
  source = "registry+https://github.com/rust-lang/crates.io-index"
3673
- checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
3772
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
3674
3773
  dependencies = [
3675
3774
  "proc-macro2",
3676
3775
  "pyo3-macros-backend",
@@ -3680,20 +3779,19 @@ dependencies = [
3680
3779
 
3681
3780
  [[package]]
3682
3781
  name = "pyo3-macros-backend"
3683
- version = "0.27.2"
3782
+ version = "0.29.0"
3684
3783
  source = "registry+https://github.com/rust-lang/crates.io-index"
3685
- checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
3784
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
3686
3785
  dependencies = [
3687
3786
  "heck",
3688
3787
  "proc-macro2",
3689
- "pyo3-build-config",
3690
3788
  "quote",
3691
3789
  "syn",
3692
3790
  ]
3693
3791
 
3694
3792
  [[package]]
3695
3793
  name = "python-auditor"
3696
- version = "0.10.2"
3794
+ version = "0.11.0"
3697
3795
  dependencies = [
3698
3796
  "anyhow",
3699
3797
  "auditor",
@@ -3714,7 +3812,7 @@ checksum = "95c589f335db0f6aaa168a7cd27b1fc6920f5e1470c804f814d9cd6e62a0f70b"
3714
3812
  dependencies = [
3715
3813
  "env_logger",
3716
3814
  "log",
3717
- "rand 0.10.0",
3815
+ "rand 0.10.2",
3718
3816
  ]
3719
3817
 
3720
3818
  [[package]]
@@ -3730,9 +3828,9 @@ dependencies = [
3730
3828
 
3731
3829
  [[package]]
3732
3830
  name = "quinn"
3733
- version = "0.11.9"
3831
+ version = "0.11.11"
3734
3832
  source = "registry+https://github.com/rust-lang/crates.io-index"
3735
- checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
3833
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
3736
3834
  dependencies = [
3737
3835
  "bytes",
3738
3836
  "cfg_aliases",
@@ -3741,7 +3839,7 @@ dependencies = [
3741
3839
  "quinn-udp",
3742
3840
  "rustc-hash",
3743
3841
  "rustls",
3744
- "socket2 0.6.3",
3842
+ "socket2 0.6.4",
3745
3843
  "thiserror 2.0.18",
3746
3844
  "tokio",
3747
3845
  "tracing",
@@ -3750,14 +3848,15 @@ dependencies = [
3750
3848
 
3751
3849
  [[package]]
3752
3850
  name = "quinn-proto"
3753
- version = "0.11.14"
3851
+ version = "0.11.16"
3754
3852
  source = "registry+https://github.com/rust-lang/crates.io-index"
3755
- checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
3853
+ checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
3756
3854
  dependencies = [
3757
3855
  "bytes",
3758
- "getrandom 0.3.4",
3856
+ "getrandom 0.4.3",
3759
3857
  "lru-slab",
3760
- "rand 0.9.2",
3858
+ "rand 0.10.2",
3859
+ "rand_pcg",
3761
3860
  "ring",
3762
3861
  "rustc-hash",
3763
3862
  "rustls",
@@ -3771,23 +3870,23 @@ dependencies = [
3771
3870
 
3772
3871
  [[package]]
3773
3872
  name = "quinn-udp"
3774
- version = "0.5.14"
3873
+ version = "0.5.15"
3775
3874
  source = "registry+https://github.com/rust-lang/crates.io-index"
3776
- checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
3875
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
3777
3876
  dependencies = [
3778
3877
  "cfg_aliases",
3779
3878
  "libc",
3780
3879
  "once_cell",
3781
- "socket2 0.6.3",
3880
+ "socket2 0.6.4",
3782
3881
  "tracing",
3783
- "windows-sys 0.60.2",
3882
+ "windows-sys 0.61.2",
3784
3883
  ]
3785
3884
 
3786
3885
  [[package]]
3787
3886
  name = "quote"
3788
- version = "1.0.45"
3887
+ version = "1.0.46"
3789
3888
  source = "registry+https://github.com/rust-lang/crates.io-index"
3790
- checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
3889
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
3791
3890
  dependencies = [
3792
3891
  "proc-macro2",
3793
3892
  ]
@@ -3806,34 +3905,24 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
3806
3905
 
3807
3906
  [[package]]
3808
3907
  name = "rand"
3809
- version = "0.8.5"
3908
+ version = "0.8.7"
3810
3909
  source = "registry+https://github.com/rust-lang/crates.io-index"
3811
- checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
3910
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
3812
3911
  dependencies = [
3813
3912
  "libc",
3814
- "rand_chacha 0.3.1",
3913
+ "rand_chacha",
3815
3914
  "rand_core 0.6.4",
3816
3915
  ]
3817
3916
 
3818
3917
  [[package]]
3819
3918
  name = "rand"
3820
- version = "0.9.2"
3821
- source = "registry+https://github.com/rust-lang/crates.io-index"
3822
- checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
3823
- dependencies = [
3824
- "rand_chacha 0.9.0",
3825
- "rand_core 0.9.5",
3826
- ]
3827
-
3828
- [[package]]
3829
- name = "rand"
3830
- version = "0.10.0"
3919
+ version = "0.10.2"
3831
3920
  source = "registry+https://github.com/rust-lang/crates.io-index"
3832
- checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8"
3921
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
3833
3922
  dependencies = [
3834
3923
  "chacha20",
3835
- "getrandom 0.4.2",
3836
- "rand_core 0.10.0",
3924
+ "getrandom 0.4.3",
3925
+ "rand_core 0.10.1",
3837
3926
  ]
3838
3927
 
3839
3928
  [[package]]
@@ -3846,16 +3935,6 @@ dependencies = [
3846
3935
  "rand_core 0.6.4",
3847
3936
  ]
3848
3937
 
3849
- [[package]]
3850
- name = "rand_chacha"
3851
- version = "0.9.0"
3852
- source = "registry+https://github.com/rust-lang/crates.io-index"
3853
- checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
3854
- dependencies = [
3855
- "ppv-lite86",
3856
- "rand_core 0.9.5",
3857
- ]
3858
-
3859
3938
  [[package]]
3860
3939
  name = "rand_core"
3861
3940
  version = "0.6.4"
@@ -3867,18 +3946,9 @@ dependencies = [
3867
3946
 
3868
3947
  [[package]]
3869
3948
  name = "rand_core"
3870
- version = "0.9.5"
3871
- source = "registry+https://github.com/rust-lang/crates.io-index"
3872
- checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
3873
- dependencies = [
3874
- "getrandom 0.3.4",
3875
- ]
3876
-
3877
- [[package]]
3878
- name = "rand_core"
3879
- version = "0.10.0"
3949
+ version = "0.10.1"
3880
3950
  source = "registry+https://github.com/rust-lang/crates.io-index"
3881
- checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
3951
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
3882
3952
 
3883
3953
  [[package]]
3884
3954
  name = "rand_distr"
@@ -3887,14 +3957,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3887
3957
  checksum = "4d431c2703ccf129de4d45253c03f49ebb22b97d6ad79ee3ecfc7e3f4862c1d8"
3888
3958
  dependencies = [
3889
3959
  "num-traits",
3890
- "rand 0.10.0",
3960
+ "rand 0.10.2",
3961
+ ]
3962
+
3963
+ [[package]]
3964
+ name = "rand_pcg"
3965
+ version = "0.10.2"
3966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3967
+ checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
3968
+ dependencies = [
3969
+ "rand_core 0.10.1",
3891
3970
  ]
3892
3971
 
3893
3972
  [[package]]
3894
3973
  name = "rayon"
3895
- version = "1.11.0"
3974
+ version = "1.12.0"
3896
3975
  source = "registry+https://github.com/rust-lang/crates.io-index"
3897
- checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
3976
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
3898
3977
  dependencies = [
3899
3978
  "either",
3900
3979
  "rayon-core",
@@ -3916,16 +3995,16 @@ version = "0.5.18"
3916
3995
  source = "registry+https://github.com/rust-lang/crates.io-index"
3917
3996
  checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
3918
3997
  dependencies = [
3919
- "bitflags",
3998
+ "bitflags 2.13.0",
3920
3999
  ]
3921
4000
 
3922
4001
  [[package]]
3923
4002
  name = "redox_syscall"
3924
- version = "0.7.3"
4003
+ version = "0.9.0"
3925
4004
  source = "registry+https://github.com/rust-lang/crates.io-index"
3926
- checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16"
4005
+ checksum = "c5102a6aaa05aa011a238e178e6bca86d2cb56fc9f586d37cb80f5bca6e07759"
3927
4006
  dependencies = [
3928
- "bitflags",
4007
+ "bitflags 2.13.0",
3929
4008
  ]
3930
4009
 
3931
4010
  [[package]]
@@ -3950,9 +4029,9 @@ dependencies = [
3950
4029
 
3951
4030
  [[package]]
3952
4031
  name = "regex"
3953
- version = "1.12.3"
4032
+ version = "1.13.0"
3954
4033
  source = "registry+https://github.com/rust-lang/crates.io-index"
3955
- checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
4034
+ checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2"
3956
4035
  dependencies = [
3957
4036
  "aho-corasick",
3958
4037
  "memchr",
@@ -3962,9 +4041,9 @@ dependencies = [
3962
4041
 
3963
4042
  [[package]]
3964
4043
  name = "regex-automata"
3965
- version = "0.4.14"
4044
+ version = "0.4.15"
3966
4045
  source = "registry+https://github.com/rust-lang/crates.io-index"
3967
- checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
4046
+ checksum = "1f388202e4b80542a0921078cc23b6333bcf1409c1e3f86404cae4766a6131db"
3968
4047
  dependencies = [
3969
4048
  "aho-corasick",
3970
4049
  "memchr",
@@ -3979,9 +4058,9 @@ checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
3979
4058
 
3980
4059
  [[package]]
3981
4060
  name = "regex-syntax"
3982
- version = "0.8.10"
4061
+ version = "0.8.11"
3983
4062
  source = "registry+https://github.com/rust-lang/crates.io-index"
3984
- checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
4063
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
3985
4064
 
3986
4065
  [[package]]
3987
4066
  name = "reqwest"
@@ -3994,7 +4073,7 @@ dependencies = [
3994
4073
  "futures-channel",
3995
4074
  "futures-core",
3996
4075
  "futures-util",
3997
- "http 1.4.0",
4076
+ "http 1.4.2",
3998
4077
  "http-body",
3999
4078
  "http-body-util",
4000
4079
  "hyper",
@@ -4022,7 +4101,7 @@ dependencies = [
4022
4101
  "wasm-bindgen-futures",
4023
4102
  "wasm-streams",
4024
4103
  "web-sys",
4025
- "webpki-roots 1.0.6",
4104
+ "webpki-roots 1.0.8",
4026
4105
  ]
4027
4106
 
4028
4107
  [[package]]
@@ -4043,12 +4122,12 @@ dependencies = [
4043
4122
 
4044
4123
  [[package]]
4045
4124
  name = "rhai"
4046
- version = "1.24.0"
4125
+ version = "1.25.1"
4047
4126
  source = "registry+https://github.com/rust-lang/crates.io-index"
4048
- checksum = "1f9ef5dabe4c0b43d8f1187dc6beb67b53fe607fff7e30c5eb7f71b814b8c2c1"
4127
+ checksum = "dd4dd0f8c36625202a4ba553c416c19b719947cd2a31d1bda06126e4a5727daf"
4049
4128
  dependencies = [
4050
4129
  "ahash",
4051
- "bitflags",
4130
+ "bitflags 2.13.0",
4052
4131
  "no-std-compat",
4053
4132
  "num-traits",
4054
4133
  "once_cell",
@@ -4062,9 +4141,9 @@ dependencies = [
4062
4141
 
4063
4142
  [[package]]
4064
4143
  name = "rhai_codegen"
4065
- version = "3.1.0"
4144
+ version = "3.2.0"
4066
4145
  source = "registry+https://github.com/rust-lang/crates.io-index"
4067
- checksum = "d4322a2a4e8cf30771dd9f27f7f37ca9ac8fe812dddd811096a98483080dabe6"
4146
+ checksum = "3cd3a7535e50bf36857e7be7bec276d334e8c2dfa469c2201226fd01638ea5ca"
4068
4147
  dependencies = [
4069
4148
  "proc-macro2",
4070
4149
  "quote",
@@ -4085,13 +4164,22 @@ dependencies = [
4085
4164
  "windows-sys 0.52.0",
4086
4165
  ]
4087
4166
 
4167
+ [[package]]
4168
+ name = "rolling-file"
4169
+ version = "0.2.0"
4170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4171
+ checksum = "8395b4f860856b740f20a296ea2cd4d823e81a2658cf05ef61be22916026a906"
4172
+ dependencies = [
4173
+ "chrono",
4174
+ ]
4175
+
4088
4176
  [[package]]
4089
4177
  name = "ron"
4090
- version = "0.12.0"
4178
+ version = "0.12.2"
4091
4179
  source = "registry+https://github.com/rust-lang/crates.io-index"
4092
- checksum = "fd490c5b18261893f14449cbd28cb9c0b637aebf161cd77900bfdedaff21ec32"
4180
+ checksum = "81116b9531d61eabc41aeb228e4b6b2435bcca3233b98cf3b3077d4e6e9debb3"
4093
4181
  dependencies = [
4094
- "bitflags",
4182
+ "bitflags 2.13.0",
4095
4183
  "once_cell",
4096
4184
  "serde",
4097
4185
  "serde_derive",
@@ -4105,8 +4193,8 @@ version = "0.9.10"
4105
4193
  source = "registry+https://github.com/rust-lang/crates.io-index"
4106
4194
  checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
4107
4195
  dependencies = [
4108
- "const-oid",
4109
- "digest",
4196
+ "const-oid 0.9.6",
4197
+ "digest 0.10.7",
4110
4198
  "num-bigint-dig",
4111
4199
  "num-integer",
4112
4200
  "num-traits",
@@ -4151,15 +4239,15 @@ dependencies = [
4151
4239
 
4152
4240
  [[package]]
4153
4241
  name = "rustc-demangle"
4154
- version = "0.1.27"
4242
+ version = "0.1.28"
4155
4243
  source = "registry+https://github.com/rust-lang/crates.io-index"
4156
- checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
4244
+ checksum = "b74b56ffa8bb2830709a538c2cbcae9aa062db0d2a42563bfb09bdaae44020eb"
4157
4245
 
4158
4246
  [[package]]
4159
4247
  name = "rustc-hash"
4160
- version = "2.1.1"
4248
+ version = "2.1.3"
4161
4249
  source = "registry+https://github.com/rust-lang/crates.io-index"
4162
- checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
4250
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
4163
4251
 
4164
4252
  [[package]]
4165
4253
  name = "rustc_version"
@@ -4181,9 +4269,9 @@ dependencies = [
4181
4269
 
4182
4270
  [[package]]
4183
4271
  name = "rustls"
4184
- version = "0.23.37"
4272
+ version = "0.23.41"
4185
4273
  source = "registry+https://github.com/rust-lang/crates.io-index"
4186
- checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
4274
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
4187
4275
  dependencies = [
4188
4276
  "aws-lc-rs",
4189
4277
  "log",
@@ -4197,9 +4285,9 @@ dependencies = [
4197
4285
 
4198
4286
  [[package]]
4199
4287
  name = "rustls-native-certs"
4200
- version = "0.8.3"
4288
+ version = "0.8.4"
4201
4289
  source = "registry+https://github.com/rust-lang/crates.io-index"
4202
- checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
4290
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
4203
4291
  dependencies = [
4204
4292
  "openssl-probe",
4205
4293
  "rustls-pki-types",
@@ -4209,9 +4297,9 @@ dependencies = [
4209
4297
 
4210
4298
  [[package]]
4211
4299
  name = "rustls-pki-types"
4212
- version = "1.14.0"
4300
+ version = "1.15.0"
4213
4301
  source = "registry+https://github.com/rust-lang/crates.io-index"
4214
- checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
4302
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
4215
4303
  dependencies = [
4216
4304
  "web-time",
4217
4305
  "zeroize",
@@ -4219,9 +4307,9 @@ dependencies = [
4219
4307
 
4220
4308
  [[package]]
4221
4309
  name = "rustls-webpki"
4222
- version = "0.103.10"
4310
+ version = "0.103.13"
4223
4311
  source = "registry+https://github.com/rust-lang/crates.io-index"
4224
- checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
4312
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
4225
4313
  dependencies = [
4226
4314
  "aws-lc-rs",
4227
4315
  "ring",
@@ -4231,9 +4319,9 @@ dependencies = [
4231
4319
 
4232
4320
  [[package]]
4233
4321
  name = "rustversion"
4234
- version = "1.0.22"
4322
+ version = "1.0.23"
4235
4323
  source = "registry+https://github.com/rust-lang/crates.io-index"
4236
- checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
4324
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
4237
4325
 
4238
4326
  [[package]]
4239
4327
  name = "ryu"
@@ -4305,7 +4393,7 @@ version = "3.7.0"
4305
4393
  source = "registry+https://github.com/rust-lang/crates.io-index"
4306
4394
  checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
4307
4395
  dependencies = [
4308
- "bitflags",
4396
+ "bitflags 2.13.0",
4309
4397
  "core-foundation",
4310
4398
  "core-foundation-sys",
4311
4399
  "libc",
@@ -4324,9 +4412,9 @@ dependencies = [
4324
4412
 
4325
4413
  [[package]]
4326
4414
  name = "semver"
4327
- version = "1.0.27"
4415
+ version = "1.0.28"
4328
4416
  source = "registry+https://github.com/rust-lang/crates.io-index"
4329
- checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
4417
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
4330
4418
 
4331
4419
  [[package]]
4332
4420
  name = "seq-macro"
@@ -4356,6 +4444,25 @@ dependencies = [
4356
4444
  "serde_json",
4357
4445
  ]
4358
4446
 
4447
+ [[package]]
4448
+ name = "serde-saphyr"
4449
+ version = "0.0.27"
4450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4451
+ checksum = "5897b4c3faadadd35fdb6689f015641f3bc481d5adaaac56231ea15aeb243db3"
4452
+ dependencies = [
4453
+ "ahash",
4454
+ "annotate-snippets",
4455
+ "base64",
4456
+ "encoding_rs_io",
4457
+ "getrandom 0.3.4",
4458
+ "granit-parser",
4459
+ "nohash-hasher",
4460
+ "num-traits",
4461
+ "serde",
4462
+ "smallvec",
4463
+ "zmij",
4464
+ ]
4465
+
4359
4466
  [[package]]
4360
4467
  name = "serde-untagged"
4361
4468
  version = "0.1.9"
@@ -4400,9 +4507,9 @@ dependencies = [
4400
4507
 
4401
4508
  [[package]]
4402
4509
  name = "serde_json"
4403
- version = "1.0.149"
4510
+ version = "1.0.150"
4404
4511
  source = "registry+https://github.com/rust-lang/crates.io-index"
4405
- checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
4512
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
4406
4513
  dependencies = [
4407
4514
  "itoa",
4408
4515
  "memchr",
@@ -4426,9 +4533,9 @@ dependencies = [
4426
4533
 
4427
4534
  [[package]]
4428
4535
  name = "serde_spanned"
4429
- version = "1.0.4"
4536
+ version = "1.1.1"
4430
4537
  source = "registry+https://github.com/rust-lang/crates.io-index"
4431
- checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
4538
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
4432
4539
  dependencies = [
4433
4540
  "serde_core",
4434
4541
  ]
@@ -4447,15 +4554,16 @@ dependencies = [
4447
4554
 
4448
4555
  [[package]]
4449
4556
  name = "serde_with"
4450
- version = "3.18.0"
4557
+ version = "3.21.0"
4451
4558
  source = "registry+https://github.com/rust-lang/crates.io-index"
4452
- checksum = "dd5414fad8e6907dbdd5bc441a50ae8d6e26151a03b1de04d89a5576de61d01f"
4559
+ checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
4453
4560
  dependencies = [
4454
4561
  "base64",
4562
+ "bs58",
4455
4563
  "chrono",
4456
4564
  "hex",
4457
4565
  "indexmap 1.9.3",
4458
- "indexmap 2.13.0",
4566
+ "indexmap 2.14.0",
4459
4567
  "schemars 0.9.0",
4460
4568
  "schemars 1.2.1",
4461
4569
  "serde_core",
@@ -4466,9 +4574,9 @@ dependencies = [
4466
4574
 
4467
4575
  [[package]]
4468
4576
  name = "serde_with_macros"
4469
- version = "3.18.0"
4577
+ version = "3.21.0"
4470
4578
  source = "registry+https://github.com/rust-lang/crates.io-index"
4471
- checksum = "d3db8978e608f1fe7357e211969fd9abdcae80bac1ba7a3369bb7eb6b404eb65"
4579
+ checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
4472
4580
  dependencies = [
4473
4581
  "darling 0.23.0",
4474
4582
  "proc-macro2",
@@ -4482,7 +4590,7 @@ version = "0.9.34+deprecated"
4482
4590
  source = "registry+https://github.com/rust-lang/crates.io-index"
4483
4591
  checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
4484
4592
  dependencies = [
4485
- "indexmap 2.13.0",
4593
+ "indexmap 2.14.0",
4486
4594
  "itoa",
4487
4595
  "ryu",
4488
4596
  "serde",
@@ -4491,13 +4599,24 @@ dependencies = [
4491
4599
 
4492
4600
  [[package]]
4493
4601
  name = "sha1"
4494
- version = "0.10.6"
4602
+ version = "0.10.7"
4495
4603
  source = "registry+https://github.com/rust-lang/crates.io-index"
4496
- checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
4604
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
4497
4605
  dependencies = [
4498
4606
  "cfg-if",
4499
4607
  "cpufeatures 0.2.17",
4500
- "digest",
4608
+ "digest 0.10.7",
4609
+ ]
4610
+
4611
+ [[package]]
4612
+ name = "sha1"
4613
+ version = "0.11.0"
4614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4615
+ checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
4616
+ dependencies = [
4617
+ "cfg-if",
4618
+ "cpufeatures 0.3.0",
4619
+ "digest 0.11.3",
4501
4620
  ]
4502
4621
 
4503
4622
  [[package]]
@@ -4508,7 +4627,7 @@ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
4508
4627
  dependencies = [
4509
4628
  "cfg-if",
4510
4629
  "cpufeatures 0.2.17",
4511
- "digest",
4630
+ "digest 0.10.7",
4512
4631
  ]
4513
4632
 
4514
4633
  [[package]]
@@ -4528,9 +4647,9 @@ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
4528
4647
 
4529
4648
  [[package]]
4530
4649
  name = "shlex"
4531
- version = "1.3.0"
4650
+ version = "2.0.1"
4532
4651
  source = "registry+https://github.com/rust-lang/crates.io-index"
4533
- checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
4652
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
4534
4653
 
4535
4654
  [[package]]
4536
4655
  name = "signal-hook-registry"
@@ -4548,15 +4667,15 @@ version = "2.2.0"
4548
4667
  source = "registry+https://github.com/rust-lang/crates.io-index"
4549
4668
  checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
4550
4669
  dependencies = [
4551
- "digest",
4670
+ "digest 0.10.7",
4552
4671
  "rand_core 0.6.4",
4553
4672
  ]
4554
4673
 
4555
4674
  [[package]]
4556
4675
  name = "simd-adler32"
4557
- version = "0.3.8"
4676
+ version = "0.3.9"
4558
4677
  source = "registry+https://github.com/rust-lang/crates.io-index"
4559
- checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
4678
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
4560
4679
 
4561
4680
  [[package]]
4562
4681
  name = "simdutf8"
@@ -4566,9 +4685,9 @@ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
4566
4685
 
4567
4686
  [[package]]
4568
4687
  name = "siphasher"
4569
- version = "1.0.2"
4688
+ version = "1.0.3"
4570
4689
  source = "registry+https://github.com/rust-lang/crates.io-index"
4571
- checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
4690
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
4572
4691
 
4573
4692
  [[package]]
4574
4693
  name = "slab"
@@ -4578,9 +4697,9 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
4578
4697
 
4579
4698
  [[package]]
4580
4699
  name = "smallvec"
4581
- version = "1.15.1"
4700
+ version = "1.15.2"
4582
4701
  source = "registry+https://github.com/rust-lang/crates.io-index"
4583
- checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
4702
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
4584
4703
  dependencies = [
4585
4704
  "serde",
4586
4705
  ]
@@ -4615,9 +4734,9 @@ dependencies = [
4615
4734
 
4616
4735
  [[package]]
4617
4736
  name = "socket2"
4618
- version = "0.6.3"
4737
+ version = "0.6.4"
4619
4738
  source = "registry+https://github.com/rust-lang/crates.io-index"
4620
- checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
4739
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
4621
4740
  dependencies = [
4622
4741
  "libc",
4623
4742
  "windows-sys 0.61.2",
@@ -4680,7 +4799,7 @@ dependencies = [
4680
4799
  "futures-util",
4681
4800
  "hashbrown 0.15.5",
4682
4801
  "hashlink 0.10.0",
4683
- "indexmap 2.13.0",
4802
+ "indexmap 2.14.0",
4684
4803
  "log",
4685
4804
  "memchr",
4686
4805
  "once_cell",
@@ -4745,12 +4864,12 @@ checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
4745
4864
  dependencies = [
4746
4865
  "atoi",
4747
4866
  "base64",
4748
- "bitflags",
4867
+ "bitflags 2.13.0",
4749
4868
  "byteorder",
4750
4869
  "bytes",
4751
4870
  "chrono",
4752
4871
  "crc",
4753
- "digest",
4872
+ "digest 0.10.7",
4754
4873
  "dotenvy",
4755
4874
  "either",
4756
4875
  "futures-channel",
@@ -4767,10 +4886,10 @@ dependencies = [
4767
4886
  "memchr",
4768
4887
  "once_cell",
4769
4888
  "percent-encoding",
4770
- "rand 0.8.5",
4889
+ "rand 0.8.7",
4771
4890
  "rsa",
4772
4891
  "serde",
4773
- "sha1",
4892
+ "sha1 0.10.7",
4774
4893
  "sha2",
4775
4894
  "smallvec",
4776
4895
  "sqlx-core",
@@ -4789,7 +4908,7 @@ checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46"
4789
4908
  dependencies = [
4790
4909
  "atoi",
4791
4910
  "base64",
4792
- "bitflags",
4911
+ "bitflags 2.13.0",
4793
4912
  "byteorder",
4794
4913
  "chrono",
4795
4914
  "crc",
@@ -4807,7 +4926,7 @@ dependencies = [
4807
4926
  "md-5",
4808
4927
  "memchr",
4809
4928
  "once_cell",
4810
- "rand 0.8.5",
4929
+ "rand 0.8.7",
4811
4930
  "serde",
4812
4931
  "serde_json",
4813
4932
  "sha2",
@@ -4902,11 +5021,17 @@ version = "2.6.1"
4902
5021
  source = "registry+https://github.com/rust-lang/crates.io-index"
4903
5022
  checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
4904
5023
 
5024
+ [[package]]
5025
+ name = "symlink"
5026
+ version = "0.1.0"
5027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5028
+ checksum = "a7973cce6668464ea31f176d85b13c7ab3bba2cb3b77a2ed26abd7801688010a"
5029
+
4905
5030
  [[package]]
4906
5031
  name = "syn"
4907
- version = "2.0.117"
5032
+ version = "2.0.118"
4908
5033
  source = "registry+https://github.com/rust-lang/crates.io-index"
4909
- checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
5034
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
4910
5035
  dependencies = [
4911
5036
  "proc-macro2",
4912
5037
  "quote",
@@ -4941,9 +5066,9 @@ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
4941
5066
 
4942
5067
  [[package]]
4943
5068
  name = "thin-vec"
4944
- version = "0.2.14"
5069
+ version = "0.2.18"
4945
5070
  source = "registry+https://github.com/rust-lang/crates.io-index"
4946
- checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
5071
+ checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
4947
5072
  dependencies = [
4948
5073
  "serde",
4949
5074
  ]
@@ -4990,32 +5115,20 @@ dependencies = [
4990
5115
 
4991
5116
  [[package]]
4992
5117
  name = "thread_local"
4993
- version = "1.1.9"
5118
+ version = "1.1.10"
4994
5119
  source = "registry+https://github.com/rust-lang/crates.io-index"
4995
- checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
5120
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
4996
5121
  dependencies = [
4997
5122
  "cfg-if",
4998
5123
  ]
4999
5124
 
5000
- [[package]]
5001
- name = "thrift"
5002
- version = "0.17.0"
5003
- source = "registry+https://github.com/rust-lang/crates.io-index"
5004
- checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
5005
- dependencies = [
5006
- "byteorder",
5007
- "integer-encoding",
5008
- "ordered-float 2.10.1",
5009
- ]
5010
-
5011
5125
  [[package]]
5012
5126
  name = "time"
5013
- version = "0.3.47"
5127
+ version = "0.3.53"
5014
5128
  source = "registry+https://github.com/rust-lang/crates.io-index"
5015
- checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
5129
+ checksum = "18dfaaeddcb932337b5e7866ee7d0ce9b76d2fd092997146f187ec09b4558a50"
5016
5130
  dependencies = [
5017
5131
  "deranged",
5018
- "itoa",
5019
5132
  "num-conv",
5020
5133
  "powerfmt",
5021
5134
  "serde_core",
@@ -5025,15 +5138,15 @@ dependencies = [
5025
5138
 
5026
5139
  [[package]]
5027
5140
  name = "time-core"
5028
- version = "0.1.8"
5141
+ version = "0.1.9"
5029
5142
  source = "registry+https://github.com/rust-lang/crates.io-index"
5030
- checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
5143
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
5031
5144
 
5032
5145
  [[package]]
5033
5146
  name = "time-macros"
5034
- version = "0.2.27"
5147
+ version = "0.2.31"
5035
5148
  source = "registry+https://github.com/rust-lang/crates.io-index"
5036
- checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
5149
+ checksum = "c431b87111666e491a90baa837f914fb45cd5dc3c268591b0220ff5057f2085f"
5037
5150
  dependencies = [
5038
5151
  "num-conv",
5039
5152
  "time-core",
@@ -5050,9 +5163,9 @@ dependencies = [
5050
5163
 
5051
5164
  [[package]]
5052
5165
  name = "tinystr"
5053
- version = "0.8.2"
5166
+ version = "0.8.3"
5054
5167
  source = "registry+https://github.com/rust-lang/crates.io-index"
5055
- checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
5168
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
5056
5169
  dependencies = [
5057
5170
  "displaydoc",
5058
5171
  "zerovec",
@@ -5070,9 +5183,9 @@ dependencies = [
5070
5183
 
5071
5184
  [[package]]
5072
5185
  name = "tinyvec"
5073
- version = "1.11.0"
5186
+ version = "1.12.0"
5074
5187
  source = "registry+https://github.com/rust-lang/crates.io-index"
5075
- checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
5188
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
5076
5189
  dependencies = [
5077
5190
  "tinyvec_macros",
5078
5191
  ]
@@ -5085,9 +5198,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
5085
5198
 
5086
5199
  [[package]]
5087
5200
  name = "tokio"
5088
- version = "1.50.0"
5201
+ version = "1.52.3"
5089
5202
  source = "registry+https://github.com/rust-lang/crates.io-index"
5090
- checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
5203
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
5091
5204
  dependencies = [
5092
5205
  "bytes",
5093
5206
  "libc",
@@ -5095,7 +5208,7 @@ dependencies = [
5095
5208
  "parking_lot",
5096
5209
  "pin-project-lite",
5097
5210
  "signal-hook-registry",
5098
- "socket2 0.6.3",
5211
+ "socket2 0.6.4",
5099
5212
  "tokio-macros",
5100
5213
  "windows-sys 0.61.2",
5101
5214
  ]
@@ -5118,9 +5231,9 @@ dependencies = [
5118
5231
 
5119
5232
  [[package]]
5120
5233
  name = "tokio-macros"
5121
- version = "2.6.1"
5234
+ version = "2.7.0"
5122
5235
  source = "registry+https://github.com/rust-lang/crates.io-index"
5123
- checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
5236
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
5124
5237
  dependencies = [
5125
5238
  "proc-macro2",
5126
5239
  "quote",
@@ -5163,9 +5276,9 @@ dependencies = [
5163
5276
 
5164
5277
  [[package]]
5165
5278
  name = "toml"
5166
- version = "1.0.7+spec-1.1.0"
5279
+ version = "1.1.2+spec-1.1.0"
5167
5280
  source = "registry+https://github.com/rust-lang/crates.io-index"
5168
- checksum = "dd28d57d8a6f6e458bc0b8784f8fdcc4b99a437936056fa122cb234f18656a96"
5281
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
5169
5282
  dependencies = [
5170
5283
  "serde_core",
5171
5284
  "serde_spanned",
@@ -5176,18 +5289,18 @@ dependencies = [
5176
5289
 
5177
5290
  [[package]]
5178
5291
  name = "toml_datetime"
5179
- version = "1.0.1+spec-1.1.0"
5292
+ version = "1.1.1+spec-1.1.0"
5180
5293
  source = "registry+https://github.com/rust-lang/crates.io-index"
5181
- checksum = "9b320e741db58cac564e26c607d3cc1fdc4a88fd36c879568c07856ed83ff3e9"
5294
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
5182
5295
  dependencies = [
5183
5296
  "serde_core",
5184
5297
  ]
5185
5298
 
5186
5299
  [[package]]
5187
5300
  name = "toml_parser"
5188
- version = "1.0.10+spec-1.1.0"
5301
+ version = "1.1.2+spec-1.1.0"
5189
5302
  source = "registry+https://github.com/rust-lang/crates.io-index"
5190
- checksum = "7df25b4befd31c4816df190124375d5a20c6b6921e2cad937316de3fccd63420"
5303
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
5191
5304
  dependencies = [
5192
5305
  "winnow",
5193
5306
  ]
@@ -5211,23 +5324,23 @@ dependencies = [
5211
5324
 
5212
5325
  [[package]]
5213
5326
  name = "tower-http"
5214
- version = "0.6.8"
5327
+ version = "0.6.11"
5215
5328
  source = "registry+https://github.com/rust-lang/crates.io-index"
5216
- checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
5329
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
5217
5330
  dependencies = [
5218
5331
  "base64",
5219
- "bitflags",
5332
+ "bitflags 2.13.0",
5220
5333
  "bytes",
5221
5334
  "futures-util",
5222
- "http 1.4.0",
5335
+ "http 1.4.2",
5223
5336
  "http-body",
5224
- "iri-string",
5225
5337
  "mime",
5226
5338
  "pin-project-lite",
5227
5339
  "tower",
5228
5340
  "tower-layer",
5229
5341
  "tower-service",
5230
5342
  "tracing",
5343
+ "url",
5231
5344
  ]
5232
5345
 
5233
5346
  [[package]]
@@ -5256,9 +5369,9 @@ dependencies = [
5256
5369
 
5257
5370
  [[package]]
5258
5371
  name = "tracing-actix-web"
5259
- version = "0.7.21"
5372
+ version = "0.7.22"
5260
5373
  source = "registry+https://github.com/rust-lang/crates.io-index"
5261
- checksum = "1ca6b15407f9bfcb35f82d0e79e603e1629ece4e91cc6d9e58f890c184dd20af"
5374
+ checksum = "36bb7a33ce7f0807d44124b5119ea3581fd59028db56477a7aa01741c869ca6a"
5262
5375
  dependencies = [
5263
5376
  "actix-web",
5264
5377
  "mutually_exclusive_features",
@@ -5267,6 +5380,19 @@ dependencies = [
5267
5380
  "uuid",
5268
5381
  ]
5269
5382
 
5383
+ [[package]]
5384
+ name = "tracing-appender"
5385
+ version = "0.2.5"
5386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5387
+ checksum = "050686193eb999b4bb3bc2acfa891a13da00f79734704c4b8b4ef1a10b368a3c"
5388
+ dependencies = [
5389
+ "crossbeam-channel",
5390
+ "symlink",
5391
+ "thiserror 2.0.18",
5392
+ "time",
5393
+ "tracing-subscriber",
5394
+ ]
5395
+
5270
5396
  [[package]]
5271
5397
  name = "tracing-attributes"
5272
5398
  version = "0.1.31"
@@ -5376,9 +5502,9 @@ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
5376
5502
 
5377
5503
  [[package]]
5378
5504
  name = "typenum"
5379
- version = "1.19.0"
5505
+ version = "1.20.1"
5380
5506
  source = "registry+https://github.com/rust-lang/crates.io-index"
5381
- checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
5507
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
5382
5508
 
5383
5509
  [[package]]
5384
5510
  name = "ucd-trie"
@@ -5415,21 +5541,21 @@ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
5415
5541
 
5416
5542
  [[package]]
5417
5543
  name = "unicode-segmentation"
5418
- version = "1.12.0"
5544
+ version = "1.13.3"
5419
5545
  source = "registry+https://github.com/rust-lang/crates.io-index"
5420
- checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
5546
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
5421
5547
 
5422
5548
  [[package]]
5423
- name = "unicode-xid"
5424
- version = "0.2.6"
5549
+ name = "unicode-width"
5550
+ version = "0.2.2"
5425
5551
  source = "registry+https://github.com/rust-lang/crates.io-index"
5426
- checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
5552
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
5427
5553
 
5428
5554
  [[package]]
5429
- name = "unindent"
5430
- version = "0.2.4"
5555
+ name = "unicode-xid"
5556
+ version = "0.2.6"
5431
5557
  source = "registry+https://github.com/rust-lang/crates.io-index"
5432
- checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
5558
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
5433
5559
 
5434
5560
  [[package]]
5435
5561
  name = "unsafe-libyaml"
@@ -5470,11 +5596,11 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
5470
5596
 
5471
5597
  [[package]]
5472
5598
  name = "uuid"
5473
- version = "1.22.0"
5599
+ version = "1.23.5"
5474
5600
  source = "registry+https://github.com/rust-lang/crates.io-index"
5475
- checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
5601
+ checksum = "ea5fab0d6c3c01ae70085a09cb03d4c7a1d6314e2b3e075392783396d724ca0a"
5476
5602
  dependencies = [
5477
- "getrandom 0.4.2",
5603
+ "getrandom 0.4.3",
5478
5604
  "js-sys",
5479
5605
  "wasm-bindgen",
5480
5606
  ]
@@ -5524,18 +5650,9 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
5524
5650
 
5525
5651
  [[package]]
5526
5652
  name = "wasip2"
5527
- version = "1.0.2+wasi-0.2.9"
5653
+ version = "1.0.4+wasi-0.2.12"
5528
5654
  source = "registry+https://github.com/rust-lang/crates.io-index"
5529
- checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
5530
- dependencies = [
5531
- "wit-bindgen",
5532
- ]
5533
-
5534
- [[package]]
5535
- name = "wasip3"
5536
- version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
5537
- source = "registry+https://github.com/rust-lang/crates.io-index"
5538
- checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
5655
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
5539
5656
  dependencies = [
5540
5657
  "wit-bindgen",
5541
5658
  ]
@@ -5548,9 +5665,9 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
5548
5665
 
5549
5666
  [[package]]
5550
5667
  name = "wasm-bindgen"
5551
- version = "0.2.114"
5668
+ version = "0.2.126"
5552
5669
  source = "registry+https://github.com/rust-lang/crates.io-index"
5553
- checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
5670
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
5554
5671
  dependencies = [
5555
5672
  "cfg-if",
5556
5673
  "once_cell",
@@ -5561,23 +5678,19 @@ dependencies = [
5561
5678
 
5562
5679
  [[package]]
5563
5680
  name = "wasm-bindgen-futures"
5564
- version = "0.4.64"
5681
+ version = "0.4.76"
5565
5682
  source = "registry+https://github.com/rust-lang/crates.io-index"
5566
- checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
5683
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
5567
5684
  dependencies = [
5568
- "cfg-if",
5569
- "futures-util",
5570
5685
  "js-sys",
5571
- "once_cell",
5572
5686
  "wasm-bindgen",
5573
- "web-sys",
5574
5687
  ]
5575
5688
 
5576
5689
  [[package]]
5577
5690
  name = "wasm-bindgen-macro"
5578
- version = "0.2.114"
5691
+ version = "0.2.126"
5579
5692
  source = "registry+https://github.com/rust-lang/crates.io-index"
5580
- checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
5693
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
5581
5694
  dependencies = [
5582
5695
  "quote",
5583
5696
  "wasm-bindgen-macro-support",
@@ -5585,9 +5698,9 @@ dependencies = [
5585
5698
 
5586
5699
  [[package]]
5587
5700
  name = "wasm-bindgen-macro-support"
5588
- version = "0.2.114"
5701
+ version = "0.2.126"
5589
5702
  source = "registry+https://github.com/rust-lang/crates.io-index"
5590
- checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
5703
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
5591
5704
  dependencies = [
5592
5705
  "bumpalo",
5593
5706
  "proc-macro2",
@@ -5598,18 +5711,18 @@ dependencies = [
5598
5711
 
5599
5712
  [[package]]
5600
5713
  name = "wasm-bindgen-shared"
5601
- version = "0.2.114"
5714
+ version = "0.2.126"
5602
5715
  source = "registry+https://github.com/rust-lang/crates.io-index"
5603
- checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
5716
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
5604
5717
  dependencies = [
5605
5718
  "unicode-ident",
5606
5719
  ]
5607
5720
 
5608
5721
  [[package]]
5609
5722
  name = "wasm-bindgen-test"
5610
- version = "0.3.64"
5723
+ version = "0.3.76"
5611
5724
  source = "registry+https://github.com/rust-lang/crates.io-index"
5612
- checksum = "6311c867385cc7d5602463b31825d454d0837a3aba7cdb5e56d5201792a3f7fe"
5725
+ checksum = "2a0d555ca874445df8d314f94f5c948a4e74e5418f332c89f660a3d8310a96f4"
5613
5726
  dependencies = [
5614
5727
  "async-trait",
5615
5728
  "cast",
@@ -5629,9 +5742,9 @@ dependencies = [
5629
5742
 
5630
5743
  [[package]]
5631
5744
  name = "wasm-bindgen-test-macro"
5632
- version = "0.3.64"
5745
+ version = "0.3.76"
5633
5746
  source = "registry+https://github.com/rust-lang/crates.io-index"
5634
- checksum = "67008cdde4769831958536b0f11b3bdd0380bde882be17fff9c2f34bb4549abd"
5747
+ checksum = "94eb68555b95bcea5e8cf4abe280b529049479fa995bfc23734af96a6aedc120"
5635
5748
  dependencies = [
5636
5749
  "proc-macro2",
5637
5750
  "quote",
@@ -5640,31 +5753,9 @@ dependencies = [
5640
5753
 
5641
5754
  [[package]]
5642
5755
  name = "wasm-bindgen-test-shared"
5643
- version = "0.2.114"
5644
- source = "registry+https://github.com/rust-lang/crates.io-index"
5645
- checksum = "cfe29135b180b72b04c74aa97b2b4a2ef275161eff9a6c7955ea9eaedc7e1d4e"
5646
-
5647
- [[package]]
5648
- name = "wasm-encoder"
5649
- version = "0.244.0"
5756
+ version = "0.2.126"
5650
5757
  source = "registry+https://github.com/rust-lang/crates.io-index"
5651
- checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
5652
- dependencies = [
5653
- "leb128fmt",
5654
- "wasmparser",
5655
- ]
5656
-
5657
- [[package]]
5658
- name = "wasm-metadata"
5659
- version = "0.244.0"
5660
- source = "registry+https://github.com/rust-lang/crates.io-index"
5661
- checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
5662
- dependencies = [
5663
- "anyhow",
5664
- "indexmap 2.13.0",
5665
- "wasm-encoder",
5666
- "wasmparser",
5667
- ]
5758
+ checksum = "c31d56021e873866c968588ed85ccdf56db5c426e44afdb4618c39895104b920"
5668
5759
 
5669
5760
  [[package]]
5670
5761
  name = "wasm-streams"
@@ -5679,23 +5770,11 @@ dependencies = [
5679
5770
  "web-sys",
5680
5771
  ]
5681
5772
 
5682
- [[package]]
5683
- name = "wasmparser"
5684
- version = "0.244.0"
5685
- source = "registry+https://github.com/rust-lang/crates.io-index"
5686
- checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
5687
- dependencies = [
5688
- "bitflags",
5689
- "hashbrown 0.15.5",
5690
- "indexmap 2.13.0",
5691
- "semver",
5692
- ]
5693
-
5694
5773
  [[package]]
5695
5774
  name = "web-sys"
5696
- version = "0.3.91"
5775
+ version = "0.3.103"
5697
5776
  source = "registry+https://github.com/rust-lang/crates.io-index"
5698
- checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
5777
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
5699
5778
  dependencies = [
5700
5779
  "js-sys",
5701
5780
  "wasm-bindgen",
@@ -5717,14 +5796,14 @@ version = "0.26.11"
5717
5796
  source = "registry+https://github.com/rust-lang/crates.io-index"
5718
5797
  checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
5719
5798
  dependencies = [
5720
- "webpki-roots 1.0.6",
5799
+ "webpki-roots 1.0.8",
5721
5800
  ]
5722
5801
 
5723
5802
  [[package]]
5724
5803
  name = "webpki-roots"
5725
- version = "1.0.6"
5804
+ version = "1.0.8"
5726
5805
  source = "registry+https://github.com/rust-lang/crates.io-index"
5727
- checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
5806
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
5728
5807
  dependencies = [
5729
5808
  "rustls-pki-types",
5730
5809
  ]
@@ -5847,15 +5926,6 @@ dependencies = [
5847
5926
  "windows-targets 0.52.6",
5848
5927
  ]
5849
5928
 
5850
- [[package]]
5851
- name = "windows-sys"
5852
- version = "0.60.2"
5853
- source = "registry+https://github.com/rust-lang/crates.io-index"
5854
- checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
5855
- dependencies = [
5856
- "windows-targets 0.53.5",
5857
- ]
5858
-
5859
5929
  [[package]]
5860
5930
  name = "windows-sys"
5861
5931
  version = "0.61.2"
@@ -5889,30 +5959,13 @@ dependencies = [
5889
5959
  "windows_aarch64_gnullvm 0.52.6",
5890
5960
  "windows_aarch64_msvc 0.52.6",
5891
5961
  "windows_i686_gnu 0.52.6",
5892
- "windows_i686_gnullvm 0.52.6",
5962
+ "windows_i686_gnullvm",
5893
5963
  "windows_i686_msvc 0.52.6",
5894
5964
  "windows_x86_64_gnu 0.52.6",
5895
5965
  "windows_x86_64_gnullvm 0.52.6",
5896
5966
  "windows_x86_64_msvc 0.52.6",
5897
5967
  ]
5898
5968
 
5899
- [[package]]
5900
- name = "windows-targets"
5901
- version = "0.53.5"
5902
- source = "registry+https://github.com/rust-lang/crates.io-index"
5903
- checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
5904
- dependencies = [
5905
- "windows-link",
5906
- "windows_aarch64_gnullvm 0.53.1",
5907
- "windows_aarch64_msvc 0.53.1",
5908
- "windows_i686_gnu 0.53.1",
5909
- "windows_i686_gnullvm 0.53.1",
5910
- "windows_i686_msvc 0.53.1",
5911
- "windows_x86_64_gnu 0.53.1",
5912
- "windows_x86_64_gnullvm 0.53.1",
5913
- "windows_x86_64_msvc 0.53.1",
5914
- ]
5915
-
5916
5969
  [[package]]
5917
5970
  name = "windows_aarch64_gnullvm"
5918
5971
  version = "0.48.5"
@@ -5925,12 +5978,6 @@ version = "0.52.6"
5925
5978
  source = "registry+https://github.com/rust-lang/crates.io-index"
5926
5979
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
5927
5980
 
5928
- [[package]]
5929
- name = "windows_aarch64_gnullvm"
5930
- version = "0.53.1"
5931
- source = "registry+https://github.com/rust-lang/crates.io-index"
5932
- checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
5933
-
5934
5981
  [[package]]
5935
5982
  name = "windows_aarch64_msvc"
5936
5983
  version = "0.48.5"
@@ -5943,12 +5990,6 @@ version = "0.52.6"
5943
5990
  source = "registry+https://github.com/rust-lang/crates.io-index"
5944
5991
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
5945
5992
 
5946
- [[package]]
5947
- name = "windows_aarch64_msvc"
5948
- version = "0.53.1"
5949
- source = "registry+https://github.com/rust-lang/crates.io-index"
5950
- checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
5951
-
5952
5993
  [[package]]
5953
5994
  name = "windows_i686_gnu"
5954
5995
  version = "0.48.5"
@@ -5961,24 +6002,12 @@ version = "0.52.6"
5961
6002
  source = "registry+https://github.com/rust-lang/crates.io-index"
5962
6003
  checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
5963
6004
 
5964
- [[package]]
5965
- name = "windows_i686_gnu"
5966
- version = "0.53.1"
5967
- source = "registry+https://github.com/rust-lang/crates.io-index"
5968
- checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
5969
-
5970
6005
  [[package]]
5971
6006
  name = "windows_i686_gnullvm"
5972
6007
  version = "0.52.6"
5973
6008
  source = "registry+https://github.com/rust-lang/crates.io-index"
5974
6009
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
5975
6010
 
5976
- [[package]]
5977
- name = "windows_i686_gnullvm"
5978
- version = "0.53.1"
5979
- source = "registry+https://github.com/rust-lang/crates.io-index"
5980
- checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
5981
-
5982
6011
  [[package]]
5983
6012
  name = "windows_i686_msvc"
5984
6013
  version = "0.48.5"
@@ -5991,12 +6020,6 @@ version = "0.52.6"
5991
6020
  source = "registry+https://github.com/rust-lang/crates.io-index"
5992
6021
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
5993
6022
 
5994
- [[package]]
5995
- name = "windows_i686_msvc"
5996
- version = "0.53.1"
5997
- source = "registry+https://github.com/rust-lang/crates.io-index"
5998
- checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
5999
-
6000
6023
  [[package]]
6001
6024
  name = "windows_x86_64_gnu"
6002
6025
  version = "0.48.5"
@@ -6009,12 +6032,6 @@ version = "0.52.6"
6009
6032
  source = "registry+https://github.com/rust-lang/crates.io-index"
6010
6033
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
6011
6034
 
6012
- [[package]]
6013
- name = "windows_x86_64_gnu"
6014
- version = "0.53.1"
6015
- source = "registry+https://github.com/rust-lang/crates.io-index"
6016
- checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
6017
-
6018
6035
  [[package]]
6019
6036
  name = "windows_x86_64_gnullvm"
6020
6037
  version = "0.48.5"
@@ -6027,12 +6044,6 @@ version = "0.52.6"
6027
6044
  source = "registry+https://github.com/rust-lang/crates.io-index"
6028
6045
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
6029
6046
 
6030
- [[package]]
6031
- name = "windows_x86_64_gnullvm"
6032
- version = "0.53.1"
6033
- source = "registry+https://github.com/rust-lang/crates.io-index"
6034
- checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
6035
-
6036
6047
  [[package]]
6037
6048
  name = "windows_x86_64_msvc"
6038
6049
  version = "0.48.5"
@@ -6045,17 +6056,11 @@ version = "0.52.6"
6045
6056
  source = "registry+https://github.com/rust-lang/crates.io-index"
6046
6057
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
6047
6058
 
6048
- [[package]]
6049
- name = "windows_x86_64_msvc"
6050
- version = "0.53.1"
6051
- source = "registry+https://github.com/rust-lang/crates.io-index"
6052
- checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
6053
-
6054
6059
  [[package]]
6055
6060
  name = "winnow"
6056
- version = "1.0.0"
6061
+ version = "1.0.3"
6057
6062
  source = "registry+https://github.com/rust-lang/crates.io-index"
6058
- checksum = "a90e88e4667264a994d34e6d1ab2d26d398dcdca8b7f52bec8668957517fc7d8"
6063
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
6059
6064
  dependencies = [
6060
6065
  "memchr",
6061
6066
  ]
@@ -6070,7 +6075,7 @@ dependencies = [
6070
6075
  "base64",
6071
6076
  "deadpool",
6072
6077
  "futures",
6073
- "http 1.4.0",
6078
+ "http 1.4.2",
6074
6079
  "http-body-util",
6075
6080
  "hyper",
6076
6081
  "hyper-util",
@@ -6085,97 +6090,15 @@ dependencies = [
6085
6090
 
6086
6091
  [[package]]
6087
6092
  name = "wit-bindgen"
6088
- version = "0.51.0"
6089
- source = "registry+https://github.com/rust-lang/crates.io-index"
6090
- checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
6091
- dependencies = [
6092
- "wit-bindgen-rust-macro",
6093
- ]
6094
-
6095
- [[package]]
6096
- name = "wit-bindgen-core"
6097
- version = "0.51.0"
6098
- source = "registry+https://github.com/rust-lang/crates.io-index"
6099
- checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
6100
- dependencies = [
6101
- "anyhow",
6102
- "heck",
6103
- "wit-parser",
6104
- ]
6105
-
6106
- [[package]]
6107
- name = "wit-bindgen-rust"
6108
- version = "0.51.0"
6109
- source = "registry+https://github.com/rust-lang/crates.io-index"
6110
- checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
6111
- dependencies = [
6112
- "anyhow",
6113
- "heck",
6114
- "indexmap 2.13.0",
6115
- "prettyplease",
6116
- "syn",
6117
- "wasm-metadata",
6118
- "wit-bindgen-core",
6119
- "wit-component",
6120
- ]
6121
-
6122
- [[package]]
6123
- name = "wit-bindgen-rust-macro"
6124
- version = "0.51.0"
6125
- source = "registry+https://github.com/rust-lang/crates.io-index"
6126
- checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
6127
- dependencies = [
6128
- "anyhow",
6129
- "prettyplease",
6130
- "proc-macro2",
6131
- "quote",
6132
- "syn",
6133
- "wit-bindgen-core",
6134
- "wit-bindgen-rust",
6135
- ]
6136
-
6137
- [[package]]
6138
- name = "wit-component"
6139
- version = "0.244.0"
6093
+ version = "0.57.1"
6140
6094
  source = "registry+https://github.com/rust-lang/crates.io-index"
6141
- checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
6142
- dependencies = [
6143
- "anyhow",
6144
- "bitflags",
6145
- "indexmap 2.13.0",
6146
- "log",
6147
- "serde",
6148
- "serde_derive",
6149
- "serde_json",
6150
- "wasm-encoder",
6151
- "wasm-metadata",
6152
- "wasmparser",
6153
- "wit-parser",
6154
- ]
6155
-
6156
- [[package]]
6157
- name = "wit-parser"
6158
- version = "0.244.0"
6159
- source = "registry+https://github.com/rust-lang/crates.io-index"
6160
- checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
6161
- dependencies = [
6162
- "anyhow",
6163
- "id-arena",
6164
- "indexmap 2.13.0",
6165
- "log",
6166
- "semver",
6167
- "serde",
6168
- "serde_derive",
6169
- "serde_json",
6170
- "unicode-xid",
6171
- "wasmparser",
6172
- ]
6095
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
6173
6096
 
6174
6097
  [[package]]
6175
6098
  name = "writeable"
6176
- version = "0.6.2"
6099
+ version = "0.6.3"
6177
6100
  source = "registry+https://github.com/rust-lang/crates.io-index"
6178
- checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
6101
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
6179
6102
 
6180
6103
  [[package]]
6181
6104
  name = "x509-parser"
@@ -6196,20 +6119,20 @@ dependencies = [
6196
6119
 
6197
6120
  [[package]]
6198
6121
  name = "yaml-rust2"
6199
- version = "0.10.4"
6122
+ version = "0.11.0"
6200
6123
  source = "registry+https://github.com/rust-lang/crates.io-index"
6201
- checksum = "2462ea039c445496d8793d052e13787f2b90e750b833afee748e601c17621ed9"
6124
+ checksum = "631a50d867fafb7093e709d75aaee9e0e0d5deb934021fcea25ac2fe09edc51e"
6202
6125
  dependencies = [
6203
6126
  "arraydeque",
6204
6127
  "encoding_rs",
6205
- "hashlink 0.10.0",
6128
+ "hashlink 0.11.1",
6206
6129
  ]
6207
6130
 
6208
6131
  [[package]]
6209
6132
  name = "yoke"
6210
- version = "0.8.1"
6133
+ version = "0.8.3"
6211
6134
  source = "registry+https://github.com/rust-lang/crates.io-index"
6212
- checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
6135
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
6213
6136
  dependencies = [
6214
6137
  "stable_deref_trait",
6215
6138
  "yoke-derive",
@@ -6218,9 +6141,9 @@ dependencies = [
6218
6141
 
6219
6142
  [[package]]
6220
6143
  name = "yoke-derive"
6221
- version = "0.8.1"
6144
+ version = "0.8.2"
6222
6145
  source = "registry+https://github.com/rust-lang/crates.io-index"
6223
- checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
6146
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
6224
6147
  dependencies = [
6225
6148
  "proc-macro2",
6226
6149
  "quote",
@@ -6230,18 +6153,18 @@ dependencies = [
6230
6153
 
6231
6154
  [[package]]
6232
6155
  name = "zerocopy"
6233
- version = "0.8.47"
6156
+ version = "0.8.54"
6234
6157
  source = "registry+https://github.com/rust-lang/crates.io-index"
6235
- checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
6158
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
6236
6159
  dependencies = [
6237
6160
  "zerocopy-derive",
6238
6161
  ]
6239
6162
 
6240
6163
  [[package]]
6241
6164
  name = "zerocopy-derive"
6242
- version = "0.8.47"
6165
+ version = "0.8.54"
6243
6166
  source = "registry+https://github.com/rust-lang/crates.io-index"
6244
- checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
6167
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
6245
6168
  dependencies = [
6246
6169
  "proc-macro2",
6247
6170
  "quote",
@@ -6250,18 +6173,18 @@ dependencies = [
6250
6173
 
6251
6174
  [[package]]
6252
6175
  name = "zerofrom"
6253
- version = "0.1.6"
6176
+ version = "0.1.8"
6254
6177
  source = "registry+https://github.com/rust-lang/crates.io-index"
6255
- checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
6178
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
6256
6179
  dependencies = [
6257
6180
  "zerofrom-derive",
6258
6181
  ]
6259
6182
 
6260
6183
  [[package]]
6261
6184
  name = "zerofrom-derive"
6262
- version = "0.1.6"
6185
+ version = "0.1.7"
6263
6186
  source = "registry+https://github.com/rust-lang/crates.io-index"
6264
- checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
6187
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
6265
6188
  dependencies = [
6266
6189
  "proc-macro2",
6267
6190
  "quote",
@@ -6271,15 +6194,15 @@ dependencies = [
6271
6194
 
6272
6195
  [[package]]
6273
6196
  name = "zeroize"
6274
- version = "1.8.2"
6197
+ version = "1.9.0"
6275
6198
  source = "registry+https://github.com/rust-lang/crates.io-index"
6276
- checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
6199
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
6277
6200
 
6278
6201
  [[package]]
6279
6202
  name = "zerotrie"
6280
- version = "0.2.3"
6203
+ version = "0.2.4"
6281
6204
  source = "registry+https://github.com/rust-lang/crates.io-index"
6282
- checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
6205
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
6283
6206
  dependencies = [
6284
6207
  "displaydoc",
6285
6208
  "yoke",
@@ -6288,9 +6211,9 @@ dependencies = [
6288
6211
 
6289
6212
  [[package]]
6290
6213
  name = "zerovec"
6291
- version = "0.11.5"
6214
+ version = "0.11.6"
6292
6215
  source = "registry+https://github.com/rust-lang/crates.io-index"
6293
- checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
6216
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
6294
6217
  dependencies = [
6295
6218
  "yoke",
6296
6219
  "zerofrom",
@@ -6299,9 +6222,9 @@ dependencies = [
6299
6222
 
6300
6223
  [[package]]
6301
6224
  name = "zerovec-derive"
6302
- version = "0.11.2"
6225
+ version = "0.11.3"
6303
6226
  source = "registry+https://github.com/rust-lang/crates.io-index"
6304
- checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
6227
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
6305
6228
  dependencies = [
6306
6229
  "proc-macro2",
6307
6230
  "quote",
@@ -6310,15 +6233,15 @@ dependencies = [
6310
6233
 
6311
6234
  [[package]]
6312
6235
  name = "zlib-rs"
6313
- version = "0.6.3"
6236
+ version = "0.6.6"
6314
6237
  source = "registry+https://github.com/rust-lang/crates.io-index"
6315
- checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
6238
+ checksum = "b142a20ec14a91d5bc708c1dc21b080c550113d8aa77afa29635673a65dd02c5"
6316
6239
 
6317
6240
  [[package]]
6318
6241
  name = "zmij"
6319
- version = "1.0.21"
6242
+ version = "1.0.22"
6320
6243
  source = "registry+https://github.com/rust-lang/crates.io-index"
6321
- checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
6244
+ checksum = "bd2f034a4bebf216c9e4b7083603e024cf930873fd67830cfb083c9fa33129d9"
6322
6245
 
6323
6246
  [[package]]
6324
6247
  name = "zstd"