python-auditor 0.7.0__tar.gz → 0.7.1__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 (142) hide show
  1. {python_auditor-0.7.0 → python_auditor-0.7.1}/Cargo.lock +213 -177
  2. {python_auditor-0.7.0 → python_auditor-0.7.1}/Cargo.toml +8 -8
  3. {python_auditor-0.7.0 → python_auditor-0.7.1}/PKG-INFO +1 -1
  4. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/Cargo.toml +12 -24
  5. python_auditor-0.7.1/local_dependencies/auditor/certs/rootCA-key.pem +40 -0
  6. python_auditor-0.7.1/local_dependencies/auditor/certs/rootCA.pem +28 -0
  7. python_auditor-0.7.1/local_dependencies/auditor/certs/server-cert.pem +26 -0
  8. python_auditor-0.7.1/local_dependencies/auditor/certs/server-key.pem +28 -0
  9. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/scripts/revert_encoding/.env +1 -1
  10. python_auditor-0.7.1/local_dependencies/auditor/scripts/revert_encoding/requirements.txt +7 -0
  11. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/scripts/revert_encoding/revert_encodings.py +6 -6
  12. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/configuration.rs +7 -12
  13. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/mod.rs +1 -1
  14. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/validamount.rs +1 -1
  15. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/validvalue.rs +1 -1
  16. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/main.rs +20 -13
  17. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/routes/add.rs +1 -1
  18. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/routes/health_check.rs +1 -1
  19. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/routes/record_handlers.rs +3 -3
  20. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/routes/update.rs +1 -1
  21. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/startup.rs +15 -5
  22. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/telemetry.rs +3 -3
  23. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/helpers.rs +10 -3
  24. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/Cargo.toml +8 -19
  25. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/benches/benchmark_with_http_request.rs +1 -1
  26. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/src/database.rs +2 -2
  27. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/src/lib.rs +34 -12
  28. {python_auditor-0.7.0/scripts → python_auditor-0.7.1/scripts/tls_test}/test_tls.py +1 -1
  29. {python_auditor-0.7.0 → python_auditor-0.7.1}/src/client.rs +7 -5
  30. {python_auditor-0.7.0 → python_auditor-0.7.1}/src/domain/component.rs +3 -2
  31. {python_auditor-0.7.0 → python_auditor-0.7.1}/src/domain/meta.rs +3 -2
  32. {python_auditor-0.7.0 → python_auditor-0.7.1}/src/domain/record.rs +5 -4
  33. {python_auditor-0.7.0 → python_auditor-0.7.1}/src/domain/score.rs +3 -2
  34. {python_auditor-0.7.0 → python_auditor-0.7.1}/src/queued_client.rs +5 -4
  35. python_auditor-0.7.0/local_dependencies/auditor/certs/rootCA-key.pem +0 -40
  36. python_auditor-0.7.0/local_dependencies/auditor/certs/rootCA.pem +0 -27
  37. python_auditor-0.7.0/local_dependencies/auditor/certs/server-cert.pem +0 -25
  38. python_auditor-0.7.0/local_dependencies/auditor/certs/server-key.pem +0 -28
  39. python_auditor-0.7.0/local_dependencies/auditor/scripts/revert_encoding/requirements.txt +0 -2
  40. {python_auditor-0.7.0 → python_auditor-0.7.1}/.cargo/config.toml +0 -0
  41. {python_auditor-0.7.0 → python_auditor-0.7.1}/.readthedocs.yaml +0 -0
  42. {python_auditor-0.7.0 → python_auditor-0.7.1}/README.md +0 -0
  43. {python_auditor-0.7.0 → python_auditor-0.7.1}/docs/Makefile +0 -0
  44. {python_auditor-0.7.0 → python_auditor-0.7.1}/docs/api.rst +0 -0
  45. {python_auditor-0.7.0 → python_auditor-0.7.1}/docs/changelog.rst +0 -0
  46. {python_auditor-0.7.0 → python_auditor-0.7.1}/docs/conf.py +0 -0
  47. {python_auditor-0.7.0 → python_auditor-0.7.1}/docs/examples.rst +0 -0
  48. {python_auditor-0.7.0 → python_auditor-0.7.1}/docs/index.rst +0 -0
  49. {python_auditor-0.7.0 → python_auditor-0.7.1}/docs/make.bat +0 -0
  50. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/.env +0 -0
  51. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-0723e1854dee7d889745714fe094a64edfcf3f389eec3e77fefca2d753f1eceb.json +0 -0
  52. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-26a72be3c4ba0fddc30f53a71e0317e21982fde8bd24d8b5714439c1af835080.json +0 -0
  53. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-56c4218a1b59d8f9dc0af7191e516cb8f505a7d953ef5b2706e2427a136a918b.json +0 -0
  54. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-90e6c5e852ed16ef84a113c260d99efb6e193fa46b8115df94e750440e2d5517.json +0 -0
  55. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-a5c2d5afb25cf16a58a73c11cdde1bf5d2336cf42c6e84bf24ba27313d827a1f.json +0 -0
  56. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-a621b3eb5f42f24a04d216b9ce3c490182712e1276512cdfe74dcbb9e3e9e54e.json +0 -0
  57. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-aa313afec8c23e75ee45750e2ce8e520b96a98670d3c46572a6f942f839b99c0.json +0 -0
  58. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-cb3125aad5e124a24a976c2cb20a6e8859709f978c9f651740c439abe3b41adb.json +0 -0
  59. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-d8c6add014ac34e66ffb0178d497b9e822c569f86a89525f6ed5cc306713995a.json +0 -0
  60. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-dc5295938290703233cfe51c2215e6a5f6a6afe26b6ba3635210f5c157032f78.json +0 -0
  61. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-e4129d556ba749cb664ef6e876264efd36d82d813c2c9670dde24e4cfd042f94.json +0 -0
  62. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-e88b5acb79055b5c307e15481bc270e47d65b525ef6d98376455a267972be532.json +0 -0
  63. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/build.rs +0 -0
  64. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/configuration/base.yaml +0 -0
  65. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/configuration/local.yaml +0 -0
  66. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/configuration/priority-plugin/base.yml +0 -0
  67. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/configuration/production.yaml +0 -0
  68. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
  69. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/configuration/tls_config.yaml +0 -0
  70. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/scripts/revert_encoding/test_script.py +0 -0
  71. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +0 -0
  72. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +0 -0
  73. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_single_entry.py +0 -0
  74. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/scripts/test_valid_names/test_slurm_decoding.py +0 -0
  75. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/scripts/test_valid_names/test_valid_names.py +0 -0
  76. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/constants.rs +0 -0
  77. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/component.rs +1 -1
  78. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/meta.rs +0 -0
  79. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/record.rs +0 -0
  80. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/score.rs +0 -0
  81. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/validname.rs +0 -0
  82. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/error.rs +0 -0
  83. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/lib.rs +0 -0
  84. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/macros.rs +0 -0
  85. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/metrics/database.rs +0 -0
  86. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/metrics/mod.rs +0 -0
  87. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/routes/advanced_record_filters.rs +0 -0
  88. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/routes/get.rs +0 -0
  89. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/src/routes/mod.rs +0 -0
  90. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/add.rs +0 -0
  91. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/advanced_queries.rs +0 -0
  92. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/get.rs +0 -0
  93. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/get_one_record.rs +0 -0
  94. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/get_since.rs +0 -0
  95. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
  96. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/main.rs +0 -0
  97. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/update.rs +0 -0
  98. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/.env +0 -0
  99. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-256977e5f7886c61625e92a77efb52b9ca4321cefcac0e544d64334cdbca93ba.json +0 -0
  100. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-440620430cdcfb05e9ded5312614fae4df18e20a2a0730ec9e914ce34338df2d.json +0 -0
  101. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-5b1885d85159029e95b3f6d8dcee5eac70e683956480d225143c1de9169e233b.json +0 -0
  102. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-6be1ec652f57f24ba44ee6efa08a2c5985cf4375e563a1bff02dbc6fc4a1ac6d.json +0 -0
  103. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-7022afed3a87000ca2c5a5a829f8bdfddb266e0a577c428c830b02e3736d264e.json +0 -0
  104. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-7ab91dc1d18e4de022a7bbacc463476f8be8a8992b49fe363f70a2d58460e877.json +0 -0
  105. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-8de0a0fada9ffea04721b67f8df443a8c496bfccef4be482bbdaa36ef7d508a5.json +0 -0
  106. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-c8cba44011d83cdabb543adfae1637c5045144ecc61a6597f538d95a8cc756d4.json +0 -0
  107. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-f36fa62228e6ca304003dbd75448e95558f544fdbd602173af16c4bada2a3daf.json +0 -0
  108. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/benches/README.md +0 -0
  109. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/benches/configuration/bench.yaml +0 -0
  110. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/benches/configuration.rs +0 -0
  111. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/configuration/base.yaml +0 -0
  112. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/configuration/local.yaml +0 -0
  113. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/migrations/20231122115509_create_record_table.sql +0 -0
  114. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/src/configuration.rs +0 -0
  115. {python_auditor-0.7.0 → python_auditor-0.7.1}/local_dependencies/auditor-client/src/constants.rs +0 -0
  116. {python_auditor-0.7.0 → python_auditor-0.7.1}/pyproject.toml +0 -0
  117. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_add_update.py +0 -0
  118. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_add_update_blocking.py +0 -0
  119. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_add_update_queued.py +0 -0
  120. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_advanced_query.py +0 -0
  121. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_advanced_query_blocking.py +0 -0
  122. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_advanced_query_queued.py +0 -0
  123. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_bulk_insert.py +0 -0
  124. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_bulk_insert_blocking.py +0 -0
  125. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_bulk_insert_queued.py +0 -0
  126. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_components.py +0 -0
  127. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_components_blocking.py +0 -0
  128. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_components_queued.py +0 -0
  129. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_eq.py +0 -0
  130. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_get_since.py +0 -0
  131. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_get_since_blocking.py +0 -0
  132. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_get_since_queued.py +0 -0
  133. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_get_single_record.py +0 -0
  134. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_get_single_record_blocking.py +0 -0
  135. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_get_single_record_queued.py +0 -0
  136. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_meta.py +0 -0
  137. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_meta_blocking.py +0 -0
  138. {python_auditor-0.7.0 → python_auditor-0.7.1}/scripts/test_meta_queued.py +0 -0
  139. {python_auditor-0.7.0 → python_auditor-0.7.1}/src/blocking_client.rs +0 -0
  140. {python_auditor-0.7.0 → python_auditor-0.7.1}/src/builder.rs +0 -0
  141. {python_auditor-0.7.0 → python_auditor-0.7.1}/src/domain/mod.rs +0 -0
  142. {python_auditor-0.7.0 → python_auditor-0.7.1}/src/lib.rs +0 -0
@@ -66,7 +66,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
66
66
  checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
67
67
  dependencies = [
68
68
  "quote",
69
- "syn 2.0.96",
69
+ "syn 2.0.98",
70
70
  ]
71
71
 
72
72
  [[package]]
@@ -203,7 +203,7 @@ dependencies = [
203
203
  "actix-router",
204
204
  "proc-macro2",
205
205
  "quote",
206
- "syn 2.0.96",
206
+ "syn 2.0.98",
207
207
  ]
208
208
 
209
209
  [[package]]
@@ -249,7 +249,7 @@ version = "0.7.8"
249
249
  source = "registry+https://github.com/rust-lang/crates.io-index"
250
250
  checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
251
251
  dependencies = [
252
- "getrandom",
252
+ "getrandom 0.2.15",
253
253
  "once_cell",
254
254
  "version_check",
255
255
  ]
@@ -261,7 +261,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
261
261
  checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
262
262
  dependencies = [
263
263
  "cfg-if",
264
- "getrandom",
264
+ "getrandom 0.2.15",
265
265
  "once_cell",
266
266
  "version_check",
267
267
  "zerocopy",
@@ -326,9 +326,9 @@ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
326
326
 
327
327
  [[package]]
328
328
  name = "anyhow"
329
- version = "1.0.95"
329
+ version = "1.0.96"
330
330
  source = "registry+https://github.com/rust-lang/crates.io-index"
331
- checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
331
+ checksum = "6b964d184e89d9b6b67dd2715bc8e74cf3107fb2b529990c90cf517326150bf4"
332
332
 
333
333
  [[package]]
334
334
  name = "assert-json-diff"
@@ -342,13 +342,13 @@ dependencies = [
342
342
 
343
343
  [[package]]
344
344
  name = "async-trait"
345
- version = "0.1.85"
345
+ version = "0.1.86"
346
346
  source = "registry+https://github.com/rust-lang/crates.io-index"
347
- checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056"
347
+ checksum = "644dd749086bf3771a2fbc5f256fdb982d53f011c7d5d560304eafeecebce79d"
348
348
  dependencies = [
349
349
  "proc-macro2",
350
350
  "quote",
351
- "syn 2.0.96",
351
+ "syn 2.0.98",
352
352
  ]
353
353
 
354
354
  [[package]]
@@ -368,7 +368,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
368
368
 
369
369
  [[package]]
370
370
  name = "auditor"
371
- version = "0.7.0"
371
+ version = "0.7.1"
372
372
  dependencies = [
373
373
  "actix-tls",
374
374
  "actix-web",
@@ -390,7 +390,7 @@ dependencies = [
390
390
  "rand",
391
391
  "regex",
392
392
  "reqwest",
393
- "rustls 0.23.21",
393
+ "rustls 0.23.23",
394
394
  "rustls-pemfile 2.2.0",
395
395
  "secrecy",
396
396
  "serde",
@@ -414,7 +414,7 @@ dependencies = [
414
414
 
415
415
  [[package]]
416
416
  name = "auditor-client"
417
- version = "0.7.0"
417
+ version = "0.7.1"
418
418
  dependencies = [
419
419
  "anyhow",
420
420
  "auditor",
@@ -430,7 +430,7 @@ dependencies = [
430
430
  "rand",
431
431
  "rand_distr",
432
432
  "reqwest",
433
- "rustls 0.23.21",
433
+ "rustls 0.23.23",
434
434
  "serde",
435
435
  "serde-aux",
436
436
  "serde_qs",
@@ -446,7 +446,7 @@ dependencies = [
446
446
 
447
447
  [[package]]
448
448
  name = "auditor-kubernetes-collector"
449
- version = "0.7.0"
449
+ version = "0.7.1"
450
450
  dependencies = [
451
451
  "anyhow",
452
452
  "auditor",
@@ -470,7 +470,7 @@ dependencies = [
470
470
 
471
471
  [[package]]
472
472
  name = "auditor-priority-plugin"
473
- version = "0.7.0"
473
+ version = "0.7.1"
474
474
  dependencies = [
475
475
  "actix-web",
476
476
  "actix-web-opentelemetry",
@@ -497,7 +497,7 @@ dependencies = [
497
497
 
498
498
  [[package]]
499
499
  name = "auditor-slurm-collector"
500
- version = "0.7.0"
500
+ version = "0.7.1"
501
501
  dependencies = [
502
502
  "anyhow",
503
503
  "auditor",
@@ -523,7 +523,7 @@ dependencies = [
523
523
 
524
524
  [[package]]
525
525
  name = "auditor-slurm-epilog-collector"
526
- version = "0.7.0"
526
+ version = "0.7.1"
527
527
  dependencies = [
528
528
  "anyhow",
529
529
  "auditor",
@@ -548,9 +548,9 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
548
548
 
549
549
  [[package]]
550
550
  name = "aws-lc-rs"
551
- version = "1.12.2"
551
+ version = "1.12.4"
552
552
  source = "registry+https://github.com/rust-lang/crates.io-index"
553
- checksum = "4c2b7ddaa2c56a367ad27a094ad8ef4faacf8a617c2575acb2ba88949df999ca"
553
+ checksum = "4cd755adf9707cf671e31d944a189be3deaaeee11c8bc1d669bb8022ac90fbd0"
554
554
  dependencies = [
555
555
  "aws-lc-sys",
556
556
  "paste",
@@ -559,9 +559,9 @@ dependencies = [
559
559
 
560
560
  [[package]]
561
561
  name = "aws-lc-sys"
562
- version = "0.25.0"
562
+ version = "0.26.0"
563
563
  source = "registry+https://github.com/rust-lang/crates.io-index"
564
- checksum = "71b2ddd3ada61a305e1d8bb6c005d1eaa7d14d903681edfc400406d523a9b491"
564
+ checksum = "0f9dd2e03ee80ca2822dd6ea431163d2ef259f2066a4d6ccaca6d9dcb386aa43"
565
565
  dependencies = [
566
566
  "bindgen",
567
567
  "cc",
@@ -606,9 +606,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
606
606
 
607
607
  [[package]]
608
608
  name = "base64ct"
609
- version = "1.6.0"
609
+ version = "1.7.0"
610
610
  source = "registry+https://github.com/rust-lang/crates.io-index"
611
- checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
611
+ checksum = "c103cbbedac994e292597ab79342dbd5b306a362045095db54917d92a9fdfd92"
612
612
 
613
613
  [[package]]
614
614
  name = "bincode"
@@ -638,7 +638,7 @@ dependencies = [
638
638
  "regex",
639
639
  "rustc-hash 1.1.0",
640
640
  "shlex",
641
- "syn 2.0.96",
641
+ "syn 2.0.98",
642
642
  "which",
643
643
  ]
644
644
 
@@ -689,9 +689,9 @@ dependencies = [
689
689
 
690
690
  [[package]]
691
691
  name = "bumpalo"
692
- version = "3.16.0"
692
+ version = "3.17.0"
693
693
  source = "registry+https://github.com/rust-lang/crates.io-index"
694
- checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
694
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
695
695
 
696
696
  [[package]]
697
697
  name = "byteorder"
@@ -701,9 +701,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
701
701
 
702
702
  [[package]]
703
703
  name = "bytes"
704
- version = "1.9.0"
704
+ version = "1.10.0"
705
705
  source = "registry+https://github.com/rust-lang/crates.io-index"
706
- checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
706
+ checksum = "f61dac84819c6588b558454b194026eb1f09c293b9036ae9b159e74e73ab6cf9"
707
707
 
708
708
  [[package]]
709
709
  name = "bytestring"
@@ -722,9 +722,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
722
722
 
723
723
  [[package]]
724
724
  name = "cc"
725
- version = "1.2.10"
725
+ version = "1.2.15"
726
726
  source = "registry+https://github.com/rust-lang/crates.io-index"
727
- checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
727
+ checksum = "c736e259eea577f443d5c86c304f9f4ae0295c43f3ba05c21f1d66b5f06001af"
728
728
  dependencies = [
729
729
  "jobserver",
730
730
  "libc",
@@ -754,15 +754,15 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
754
754
 
755
755
  [[package]]
756
756
  name = "chrono"
757
- version = "0.4.39"
757
+ version = "0.4.40"
758
758
  source = "registry+https://github.com/rust-lang/crates.io-index"
759
- checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
759
+ checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
760
760
  dependencies = [
761
761
  "android-tzdata",
762
762
  "iana-time-zone",
763
763
  "num-traits",
764
764
  "serde",
765
- "windows-targets 0.52.6",
765
+ "windows-link",
766
766
  ]
767
767
 
768
768
  [[package]]
@@ -814,18 +814,18 @@ dependencies = [
814
814
 
815
815
  [[package]]
816
816
  name = "clap"
817
- version = "4.5.27"
817
+ version = "4.5.31"
818
818
  source = "registry+https://github.com/rust-lang/crates.io-index"
819
- checksum = "769b0145982b4b48713e01ec42d61614425f27b7058bda7180a3a41f30104796"
819
+ checksum = "027bb0d98429ae334a8698531da7077bdf906419543a35a55c2cb1b66437d767"
820
820
  dependencies = [
821
821
  "clap_builder",
822
822
  ]
823
823
 
824
824
  [[package]]
825
825
  name = "clap_builder"
826
- version = "4.5.27"
826
+ version = "4.5.31"
827
827
  source = "registry+https://github.com/rust-lang/crates.io-index"
828
- checksum = "1b26884eb4b57140e4d2d93652abfa49498b938b3c9179f9fc487b0acc3edad7"
828
+ checksum = "5589e0cba072e0f3d23791efac0fd8627b49c829c196a492e88168e6a669d863"
829
829
  dependencies = [
830
830
  "anstyle",
831
831
  "clap_lex",
@@ -839,9 +839,9 @@ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
839
839
 
840
840
  [[package]]
841
841
  name = "cmake"
842
- version = "0.1.52"
842
+ version = "0.1.54"
843
843
  source = "registry+https://github.com/rust-lang/crates.io-index"
844
- checksum = "c682c223677e0e5b6b7f63a64b9351844c3f1b1678a68b7ee617e30fb082620e"
844
+ checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
845
845
  dependencies = [
846
846
  "cc",
847
847
  ]
@@ -1092,7 +1092,7 @@ dependencies = [
1092
1092
  "proc-macro2",
1093
1093
  "quote",
1094
1094
  "strsim",
1095
- "syn 2.0.96",
1095
+ "syn 2.0.98",
1096
1096
  ]
1097
1097
 
1098
1098
  [[package]]
@@ -1103,7 +1103,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
1103
1103
  dependencies = [
1104
1104
  "darling_core",
1105
1105
  "quote",
1106
- "syn 2.0.96",
1106
+ "syn 2.0.98",
1107
1107
  ]
1108
1108
 
1109
1109
  [[package]]
@@ -1147,15 +1147,15 @@ dependencies = [
1147
1147
 
1148
1148
  [[package]]
1149
1149
  name = "derive_more"
1150
- version = "0.99.18"
1150
+ version = "0.99.19"
1151
1151
  source = "registry+https://github.com/rust-lang/crates.io-index"
1152
- checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
1152
+ checksum = "3da29a38df43d6f156149c9b43ded5e018ddff2a855cf2cfd62e8cd7d079c69f"
1153
1153
  dependencies = [
1154
1154
  "convert_case",
1155
1155
  "proc-macro2",
1156
1156
  "quote",
1157
1157
  "rustc_version",
1158
- "syn 2.0.96",
1158
+ "syn 2.0.98",
1159
1159
  ]
1160
1160
 
1161
1161
  [[package]]
@@ -1184,7 +1184,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1184
1184
  dependencies = [
1185
1185
  "proc-macro2",
1186
1186
  "quote",
1187
- "syn 2.0.96",
1187
+ "syn 2.0.98",
1188
1188
  ]
1189
1189
 
1190
1190
  [[package]]
@@ -1208,7 +1208,7 @@ dependencies = [
1208
1208
  "darling",
1209
1209
  "proc-macro2",
1210
1210
  "quote",
1211
- "syn 2.0.96",
1211
+ "syn 2.0.98",
1212
1212
  ]
1213
1213
 
1214
1214
  [[package]]
@@ -1219,9 +1219,9 @@ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
1219
1219
 
1220
1220
  [[package]]
1221
1221
  name = "either"
1222
- version = "1.13.0"
1222
+ version = "1.14.0"
1223
1223
  source = "registry+https://github.com/rust-lang/crates.io-index"
1224
- checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
1224
+ checksum = "b7914353092ddf589ad78f25c5c1c21b7f80b0ff8621e7c814c3485b5306da9d"
1225
1225
  dependencies = [
1226
1226
  "serde",
1227
1227
  ]
@@ -1244,7 +1244,7 @@ dependencies = [
1244
1244
  "heck",
1245
1245
  "proc-macro2",
1246
1246
  "quote",
1247
- "syn 2.0.96",
1247
+ "syn 2.0.98",
1248
1248
  ]
1249
1249
 
1250
1250
  [[package]]
@@ -1259,9 +1259,9 @@ dependencies = [
1259
1259
 
1260
1260
  [[package]]
1261
1261
  name = "equivalent"
1262
- version = "1.0.1"
1262
+ version = "1.0.2"
1263
1263
  source = "registry+https://github.com/rust-lang/crates.io-index"
1264
- checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
1264
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1265
1265
 
1266
1266
  [[package]]
1267
1267
  name = "errno"
@@ -1325,12 +1325,12 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1325
1325
 
1326
1326
  [[package]]
1327
1327
  name = "flate2"
1328
- version = "1.0.35"
1328
+ version = "1.1.0"
1329
1329
  source = "registry+https://github.com/rust-lang/crates.io-index"
1330
- checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
1330
+ checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
1331
1331
  dependencies = [
1332
1332
  "crc32fast",
1333
- "miniz_oxide 0.8.3",
1333
+ "miniz_oxide 0.8.5",
1334
1334
  ]
1335
1335
 
1336
1336
  [[package]]
@@ -1438,7 +1438,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1438
1438
  dependencies = [
1439
1439
  "proc-macro2",
1440
1440
  "quote",
1441
- "syn 2.0.96",
1441
+ "syn 2.0.98",
1442
1442
  ]
1443
1443
 
1444
1444
  [[package]]
@@ -1500,10 +1500,22 @@ dependencies = [
1500
1500
  "cfg-if",
1501
1501
  "js-sys",
1502
1502
  "libc",
1503
- "wasi",
1503
+ "wasi 0.11.0+wasi-snapshot-preview1",
1504
1504
  "wasm-bindgen",
1505
1505
  ]
1506
1506
 
1507
+ [[package]]
1508
+ name = "getrandom"
1509
+ version = "0.3.1"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8"
1512
+ dependencies = [
1513
+ "cfg-if",
1514
+ "libc",
1515
+ "wasi 0.13.3+wasi-0.2.2",
1516
+ "windows-targets 0.52.6",
1517
+ ]
1518
+
1507
1519
  [[package]]
1508
1520
  name = "gimli"
1509
1521
  version = "0.28.1"
@@ -1537,9 +1549,9 @@ dependencies = [
1537
1549
 
1538
1550
  [[package]]
1539
1551
  name = "h2"
1540
- version = "0.4.7"
1552
+ version = "0.4.8"
1541
1553
  source = "registry+https://github.com/rust-lang/crates.io-index"
1542
- checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e"
1554
+ checksum = "5017294ff4bb30944501348f6f8e42e6ad28f42c8bbef7a74029aff064a4e3c2"
1543
1555
  dependencies = [
1544
1556
  "atomic-waker",
1545
1557
  "bytes",
@@ -1708,9 +1720,9 @@ checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
1708
1720
 
1709
1721
  [[package]]
1710
1722
  name = "httparse"
1711
- version = "1.9.5"
1723
+ version = "1.10.0"
1712
1724
  source = "registry+https://github.com/rust-lang/crates.io-index"
1713
- checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
1725
+ checksum = "f2d708df4e7140240a16cd6ab0ab65c972d7433ab77819ea693fde9c43811e2a"
1714
1726
 
1715
1727
  [[package]]
1716
1728
  name = "httpdate"
@@ -1743,14 +1755,14 @@ dependencies = [
1743
1755
 
1744
1756
  [[package]]
1745
1757
  name = "hyper"
1746
- version = "1.5.2"
1758
+ version = "1.6.0"
1747
1759
  source = "registry+https://github.com/rust-lang/crates.io-index"
1748
- checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0"
1760
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
1749
1761
  dependencies = [
1750
1762
  "bytes",
1751
1763
  "futures-channel",
1752
1764
  "futures-util",
1753
- "h2 0.4.7",
1765
+ "h2 0.4.8",
1754
1766
  "http 1.2.0",
1755
1767
  "http-body 1.0.1",
1756
1768
  "httparse",
@@ -1786,9 +1798,9 @@ checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1786
1798
  dependencies = [
1787
1799
  "futures-util",
1788
1800
  "http 1.2.0",
1789
- "hyper 1.5.2",
1801
+ "hyper 1.6.0",
1790
1802
  "hyper-util",
1791
- "rustls 0.23.21",
1803
+ "rustls 0.23.23",
1792
1804
  "rustls-pki-types",
1793
1805
  "tokio",
1794
1806
  "tokio-rustls 0.26.1",
@@ -1819,7 +1831,7 @@ dependencies = [
1819
1831
  "futures-util",
1820
1832
  "http 1.2.0",
1821
1833
  "http-body 1.0.1",
1822
- "hyper 1.5.2",
1834
+ "hyper 1.6.0",
1823
1835
  "pin-project-lite",
1824
1836
  "socket2",
1825
1837
  "tokio",
@@ -1965,7 +1977,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1965
1977
  dependencies = [
1966
1978
  "proc-macro2",
1967
1979
  "quote",
1968
- "syn 2.0.96",
1980
+ "syn 2.0.98",
1969
1981
  ]
1970
1982
 
1971
1983
  [[package]]
@@ -2227,9 +2239,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2227
2239
 
2228
2240
  [[package]]
2229
2241
  name = "libc"
2230
- version = "0.2.169"
2242
+ version = "0.2.170"
2231
2243
  source = "registry+https://github.com/rust-lang/crates.io-index"
2232
- checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
2244
+ checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828"
2233
2245
 
2234
2246
  [[package]]
2235
2247
  name = "libloading"
@@ -2305,9 +2317,9 @@ dependencies = [
2305
2317
 
2306
2318
  [[package]]
2307
2319
  name = "log"
2308
- version = "0.4.25"
2320
+ version = "0.4.26"
2309
2321
  source = "registry+https://github.com/rust-lang/crates.io-index"
2310
- checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
2322
+ checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
2311
2323
 
2312
2324
  [[package]]
2313
2325
  name = "matchers"
@@ -2366,9 +2378,9 @@ dependencies = [
2366
2378
 
2367
2379
  [[package]]
2368
2380
  name = "miniz_oxide"
2369
- version = "0.8.3"
2381
+ version = "0.8.5"
2370
2382
  source = "registry+https://github.com/rust-lang/crates.io-index"
2371
- checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
2383
+ checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
2372
2384
  dependencies = [
2373
2385
  "adler2",
2374
2386
  ]
@@ -2381,7 +2393,7 @@ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
2381
2393
  dependencies = [
2382
2394
  "libc",
2383
2395
  "log",
2384
- "wasi",
2396
+ "wasi 0.11.0+wasi-snapshot-preview1",
2385
2397
  "windows-sys 0.52.0",
2386
2398
  ]
2387
2399
 
@@ -2485,9 +2497,9 @@ dependencies = [
2485
2497
 
2486
2498
  [[package]]
2487
2499
  name = "once_cell"
2488
- version = "1.20.2"
2500
+ version = "1.20.3"
2489
2501
  source = "registry+https://github.com/rust-lang/crates.io-index"
2490
- checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
2502
+ checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e"
2491
2503
 
2492
2504
  [[package]]
2493
2505
  name = "oorandom"
@@ -2682,9 +2694,9 @@ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
2682
2694
 
2683
2695
  [[package]]
2684
2696
  name = "pem"
2685
- version = "3.0.4"
2697
+ version = "3.0.5"
2686
2698
  source = "registry+https://github.com/rust-lang/crates.io-index"
2687
- checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae"
2699
+ checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
2688
2700
  dependencies = [
2689
2701
  "base64 0.22.1",
2690
2702
  "serde",
@@ -2736,7 +2748,7 @@ dependencies = [
2736
2748
  "pest_meta",
2737
2749
  "proc-macro2",
2738
2750
  "quote",
2739
- "syn 2.0.96",
2751
+ "syn 2.0.98",
2740
2752
  ]
2741
2753
 
2742
2754
  [[package]]
@@ -2752,22 +2764,22 @@ dependencies = [
2752
2764
 
2753
2765
  [[package]]
2754
2766
  name = "pin-project"
2755
- version = "1.1.8"
2767
+ version = "1.1.9"
2756
2768
  source = "registry+https://github.com/rust-lang/crates.io-index"
2757
- checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916"
2769
+ checksum = "dfe2e71e1471fe07709406bf725f710b02927c9c54b2b5b2ec0e8087d97c327d"
2758
2770
  dependencies = [
2759
2771
  "pin-project-internal",
2760
2772
  ]
2761
2773
 
2762
2774
  [[package]]
2763
2775
  name = "pin-project-internal"
2764
- version = "1.1.8"
2776
+ version = "1.1.9"
2765
2777
  source = "registry+https://github.com/rust-lang/crates.io-index"
2766
- checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb"
2778
+ checksum = "f6e859e6e5bd50440ab63c47e3ebabc90f26251f7c73c3d3e837b74a1cc3fa67"
2767
2779
  dependencies = [
2768
2780
  "proc-macro2",
2769
2781
  "quote",
2770
- "syn 2.0.96",
2782
+ "syn 2.0.98",
2771
2783
  ]
2772
2784
 
2773
2785
  [[package]]
@@ -2839,9 +2851,9 @@ dependencies = [
2839
2851
 
2840
2852
  [[package]]
2841
2853
  name = "portable-atomic"
2842
- version = "1.10.0"
2854
+ version = "1.11.0"
2843
2855
  source = "registry+https://github.com/rust-lang/crates.io-index"
2844
- checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
2856
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
2845
2857
 
2846
2858
  [[package]]
2847
2859
  name = "powerfmt"
@@ -2865,7 +2877,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2865
2877
  checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
2866
2878
  dependencies = [
2867
2879
  "proc-macro2",
2868
- "syn 2.0.96",
2880
+ "syn 2.0.98",
2869
2881
  ]
2870
2882
 
2871
2883
  [[package]]
@@ -2914,9 +2926,9 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
2914
2926
 
2915
2927
  [[package]]
2916
2928
  name = "pyo3"
2917
- version = "0.22.6"
2929
+ version = "0.23.5"
2918
2930
  source = "registry+https://github.com/rust-lang/crates.io-index"
2919
- checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
2931
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
2920
2932
  dependencies = [
2921
2933
  "anyhow",
2922
2934
  "cfg-if",
@@ -2934,9 +2946,9 @@ dependencies = [
2934
2946
 
2935
2947
  [[package]]
2936
2948
  name = "pyo3-async-runtimes"
2937
- version = "0.22.0"
2949
+ version = "0.23.0"
2938
2950
  source = "registry+https://github.com/rust-lang/crates.io-index"
2939
- checksum = "2529f0be73ffd2be0cc43c013a640796558aa12d7ca0aab5cc14f375b4733031"
2951
+ checksum = "977dc837525cfd22919ba6a831413854beb7c99a256c03bf8624ad707e45810e"
2940
2952
  dependencies = [
2941
2953
  "futures",
2942
2954
  "once_cell",
@@ -2948,20 +2960,20 @@ dependencies = [
2948
2960
 
2949
2961
  [[package]]
2950
2962
  name = "pyo3-async-runtimes-macros"
2951
- version = "0.22.0"
2963
+ version = "0.23.0"
2952
2964
  source = "registry+https://github.com/rust-lang/crates.io-index"
2953
- checksum = "22c26fd8e9fc19f53f0c1e00bf61471de6789f7eb263056f7f944a9cceb5823e"
2965
+ checksum = "b2df2884957d2476731f987673befac5d521dff10abb0a7cbe12015bc7702fe9"
2954
2966
  dependencies = [
2955
2967
  "proc-macro2",
2956
2968
  "quote",
2957
- "syn 2.0.96",
2969
+ "syn 2.0.98",
2958
2970
  ]
2959
2971
 
2960
2972
  [[package]]
2961
2973
  name = "pyo3-build-config"
2962
- version = "0.22.6"
2974
+ version = "0.23.5"
2963
2975
  source = "registry+https://github.com/rust-lang/crates.io-index"
2964
- checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
2976
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
2965
2977
  dependencies = [
2966
2978
  "once_cell",
2967
2979
  "target-lexicon",
@@ -2969,9 +2981,9 @@ dependencies = [
2969
2981
 
2970
2982
  [[package]]
2971
2983
  name = "pyo3-ffi"
2972
- version = "0.22.6"
2984
+ version = "0.23.5"
2973
2985
  source = "registry+https://github.com/rust-lang/crates.io-index"
2974
- checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
2986
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
2975
2987
  dependencies = [
2976
2988
  "libc",
2977
2989
  "pyo3-build-config",
@@ -2979,32 +2991,32 @@ dependencies = [
2979
2991
 
2980
2992
  [[package]]
2981
2993
  name = "pyo3-macros"
2982
- version = "0.22.6"
2994
+ version = "0.23.5"
2983
2995
  source = "registry+https://github.com/rust-lang/crates.io-index"
2984
- checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
2996
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
2985
2997
  dependencies = [
2986
2998
  "proc-macro2",
2987
2999
  "pyo3-macros-backend",
2988
3000
  "quote",
2989
- "syn 2.0.96",
3001
+ "syn 2.0.98",
2990
3002
  ]
2991
3003
 
2992
3004
  [[package]]
2993
3005
  name = "pyo3-macros-backend"
2994
- version = "0.22.6"
3006
+ version = "0.23.5"
2995
3007
  source = "registry+https://github.com/rust-lang/crates.io-index"
2996
- checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
3008
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
2997
3009
  dependencies = [
2998
3010
  "heck",
2999
3011
  "proc-macro2",
3000
3012
  "pyo3-build-config",
3001
3013
  "quote",
3002
- "syn 2.0.96",
3014
+ "syn 2.0.98",
3003
3015
  ]
3004
3016
 
3005
3017
  [[package]]
3006
3018
  name = "python-auditor"
3007
- version = "0.7.0"
3019
+ version = "0.7.1"
3008
3020
  dependencies = [
3009
3021
  "anyhow",
3010
3022
  "auditor",
@@ -3049,8 +3061,8 @@ dependencies = [
3049
3061
  "pin-project-lite",
3050
3062
  "quinn-proto",
3051
3063
  "quinn-udp",
3052
- "rustc-hash 2.1.0",
3053
- "rustls 0.23.21",
3064
+ "rustc-hash 2.1.1",
3065
+ "rustls 0.23.23",
3054
3066
  "socket2",
3055
3067
  "thiserror 2.0.11",
3056
3068
  "tokio",
@@ -3064,11 +3076,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3064
3076
  checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
3065
3077
  dependencies = [
3066
3078
  "bytes",
3067
- "getrandom",
3079
+ "getrandom 0.2.15",
3068
3080
  "rand",
3069
3081
  "ring",
3070
- "rustc-hash 2.1.0",
3071
- "rustls 0.23.21",
3082
+ "rustc-hash 2.1.1",
3083
+ "rustls 0.23.23",
3072
3084
  "rustls-pki-types",
3073
3085
  "slab",
3074
3086
  "thiserror 2.0.11",
@@ -3079,9 +3091,9 @@ dependencies = [
3079
3091
 
3080
3092
  [[package]]
3081
3093
  name = "quinn-udp"
3082
- version = "0.5.9"
3094
+ version = "0.5.10"
3083
3095
  source = "registry+https://github.com/rust-lang/crates.io-index"
3084
- checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904"
3096
+ checksum = "e46f3055866785f6b92bc6164b76be02ca8f2eb4b002c0354b28cf4c119e5944"
3085
3097
  dependencies = [
3086
3098
  "cfg_aliases",
3087
3099
  "libc",
@@ -3127,7 +3139,7 @@ version = "0.6.4"
3127
3139
  source = "registry+https://github.com/rust-lang/crates.io-index"
3128
3140
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
3129
3141
  dependencies = [
3130
- "getrandom",
3142
+ "getrandom 0.2.15",
3131
3143
  ]
3132
3144
 
3133
3145
  [[package]]
@@ -3162,9 +3174,9 @@ dependencies = [
3162
3174
 
3163
3175
  [[package]]
3164
3176
  name = "redox_syscall"
3165
- version = "0.5.8"
3177
+ version = "0.5.9"
3166
3178
  source = "registry+https://github.com/rust-lang/crates.io-index"
3167
- checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
3179
+ checksum = "82b568323e98e49e2a0899dcee453dd679fae22d69adf9b11dd508d1549b7e2f"
3168
3180
  dependencies = [
3169
3181
  "bitflags 2.8.0",
3170
3182
  ]
@@ -3233,7 +3245,7 @@ dependencies = [
3233
3245
  "http 1.2.0",
3234
3246
  "http-body 1.0.1",
3235
3247
  "http-body-util",
3236
- "hyper 1.5.2",
3248
+ "hyper 1.6.0",
3237
3249
  "hyper-rustls 0.27.5",
3238
3250
  "hyper-util",
3239
3251
  "ipnet",
@@ -3244,7 +3256,7 @@ dependencies = [
3244
3256
  "percent-encoding",
3245
3257
  "pin-project-lite",
3246
3258
  "quinn",
3247
- "rustls 0.23.21",
3259
+ "rustls 0.23.23",
3248
3260
  "rustls-pemfile 2.2.0",
3249
3261
  "rustls-pki-types",
3250
3262
  "serde",
@@ -3265,15 +3277,14 @@ dependencies = [
3265
3277
 
3266
3278
  [[package]]
3267
3279
  name = "ring"
3268
- version = "0.17.8"
3280
+ version = "0.17.11"
3269
3281
  source = "registry+https://github.com/rust-lang/crates.io-index"
3270
- checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
3282
+ checksum = "da5349ae27d3887ca812fb375b45a4fbb36d8d12d2df394968cd86e35683fe73"
3271
3283
  dependencies = [
3272
3284
  "cc",
3273
3285
  "cfg-if",
3274
- "getrandom",
3286
+ "getrandom 0.2.15",
3275
3287
  "libc",
3276
- "spin",
3277
3288
  "untrusted",
3278
3289
  "windows-sys 0.52.0",
3279
3290
  ]
@@ -3333,9 +3344,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
3333
3344
 
3334
3345
  [[package]]
3335
3346
  name = "rustc-hash"
3336
- version = "2.1.0"
3347
+ version = "2.1.1"
3337
3348
  source = "registry+https://github.com/rust-lang/crates.io-index"
3338
- checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
3349
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
3339
3350
 
3340
3351
  [[package]]
3341
3352
  name = "rustc_version"
@@ -3373,9 +3384,9 @@ dependencies = [
3373
3384
 
3374
3385
  [[package]]
3375
3386
  name = "rustls"
3376
- version = "0.23.21"
3387
+ version = "0.23.23"
3377
3388
  source = "registry+https://github.com/rust-lang/crates.io-index"
3378
- checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8"
3389
+ checksum = "47796c98c480fce5406ef69d1c76378375492c3b0a0de587be0c1d9feb12f395"
3379
3390
  dependencies = [
3380
3391
  "aws-lc-rs",
3381
3392
  "log",
@@ -3456,9 +3467,9 @@ checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
3456
3467
 
3457
3468
  [[package]]
3458
3469
  name = "ryu"
3459
- version = "1.0.18"
3470
+ version = "1.0.19"
3460
3471
  source = "registry+https://github.com/rust-lang/crates.io-index"
3461
- checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
3472
+ checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
3462
3473
 
3463
3474
  [[package]]
3464
3475
  name = "same-file"
@@ -3535,21 +3546,22 @@ checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03"
3535
3546
 
3536
3547
  [[package]]
3537
3548
  name = "serde"
3538
- version = "1.0.217"
3549
+ version = "1.0.218"
3539
3550
  source = "registry+https://github.com/rust-lang/crates.io-index"
3540
- checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
3551
+ checksum = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60"
3541
3552
  dependencies = [
3542
3553
  "serde_derive",
3543
3554
  ]
3544
3555
 
3545
3556
  [[package]]
3546
3557
  name = "serde-aux"
3547
- version = "4.5.0"
3558
+ version = "4.6.0"
3548
3559
  source = "registry+https://github.com/rust-lang/crates.io-index"
3549
- checksum = "0d2e8bfba469d06512e11e3311d4d051a4a387a5b42d010404fecf3200321c95"
3560
+ checksum = "5290c39c5f6992b9dddbda28541d965dba46468294e6018a408fa297e6c602de"
3550
3561
  dependencies = [
3551
3562
  "chrono",
3552
3563
  "serde",
3564
+ "serde-value",
3553
3565
  "serde_json",
3554
3566
  ]
3555
3567
 
@@ -3565,20 +3577,20 @@ dependencies = [
3565
3577
 
3566
3578
  [[package]]
3567
3579
  name = "serde_derive"
3568
- version = "1.0.217"
3580
+ version = "1.0.218"
3569
3581
  source = "registry+https://github.com/rust-lang/crates.io-index"
3570
- checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
3582
+ checksum = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b"
3571
3583
  dependencies = [
3572
3584
  "proc-macro2",
3573
3585
  "quote",
3574
- "syn 2.0.96",
3586
+ "syn 2.0.98",
3575
3587
  ]
3576
3588
 
3577
3589
  [[package]]
3578
3590
  name = "serde_json"
3579
- version = "1.0.137"
3591
+ version = "1.0.139"
3580
3592
  source = "registry+https://github.com/rust-lang/crates.io-index"
3581
- checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b"
3593
+ checksum = "44f86c3acccc9c65b153fe1b85a3be07fe5515274ec9f0653b4a0875731c72a6"
3582
3594
  dependencies = [
3583
3595
  "itoa",
3584
3596
  "memchr",
@@ -3638,7 +3650,7 @@ dependencies = [
3638
3650
  "darling",
3639
3651
  "proc-macro2",
3640
3652
  "quote",
3641
- "syn 2.0.96",
3653
+ "syn 2.0.98",
3642
3654
  ]
3643
3655
 
3644
3656
  [[package]]
@@ -3727,9 +3739,9 @@ dependencies = [
3727
3739
 
3728
3740
  [[package]]
3729
3741
  name = "smallvec"
3730
- version = "1.13.2"
3742
+ version = "1.14.0"
3731
3743
  source = "registry+https://github.com/rust-lang/crates.io-index"
3732
- checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
3744
+ checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
3733
3745
  dependencies = [
3734
3746
  "serde",
3735
3747
  ]
@@ -3799,7 +3811,7 @@ dependencies = [
3799
3811
  "memchr",
3800
3812
  "once_cell",
3801
3813
  "percent-encoding",
3802
- "rustls 0.23.21",
3814
+ "rustls 0.23.23",
3803
3815
  "rustls-pemfile 2.2.0",
3804
3816
  "serde",
3805
3817
  "serde_json",
@@ -3824,7 +3836,7 @@ dependencies = [
3824
3836
  "quote",
3825
3837
  "sqlx-core",
3826
3838
  "sqlx-macros-core",
3827
- "syn 2.0.96",
3839
+ "syn 2.0.98",
3828
3840
  ]
3829
3841
 
3830
3842
  [[package]]
@@ -3847,7 +3859,7 @@ dependencies = [
3847
3859
  "sqlx-mysql",
3848
3860
  "sqlx-postgres",
3849
3861
  "sqlx-sqlite",
3850
- "syn 2.0.96",
3862
+ "syn 2.0.98",
3851
3863
  "tempfile",
3852
3864
  "tokio",
3853
3865
  "url",
@@ -4003,9 +4015,9 @@ dependencies = [
4003
4015
 
4004
4016
  [[package]]
4005
4017
  name = "syn"
4006
- version = "2.0.96"
4018
+ version = "2.0.98"
4007
4019
  source = "registry+https://github.com/rust-lang/crates.io-index"
4008
- checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
4020
+ checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1"
4009
4021
  dependencies = [
4010
4022
  "proc-macro2",
4011
4023
  "quote",
@@ -4029,7 +4041,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
4029
4041
  dependencies = [
4030
4042
  "proc-macro2",
4031
4043
  "quote",
4032
- "syn 2.0.96",
4044
+ "syn 2.0.98",
4033
4045
  ]
4034
4046
 
4035
4047
  [[package]]
@@ -4040,13 +4052,13 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
4040
4052
 
4041
4053
  [[package]]
4042
4054
  name = "tempfile"
4043
- version = "3.15.0"
4055
+ version = "3.17.1"
4044
4056
  source = "registry+https://github.com/rust-lang/crates.io-index"
4045
- checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
4057
+ checksum = "22e5a0acb1f3f55f65cc4a866c361b2fb2a0ff6366785ae6fbb5f85df07ba230"
4046
4058
  dependencies = [
4047
4059
  "cfg-if",
4048
4060
  "fastrand",
4049
- "getrandom",
4061
+ "getrandom 0.3.1",
4050
4062
  "once_cell",
4051
4063
  "rustix",
4052
4064
  "windows-sys 0.59.0",
@@ -4078,7 +4090,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
4078
4090
  dependencies = [
4079
4091
  "proc-macro2",
4080
4092
  "quote",
4081
- "syn 2.0.96",
4093
+ "syn 2.0.98",
4082
4094
  ]
4083
4095
 
4084
4096
  [[package]]
@@ -4089,7 +4101,7 @@ checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
4089
4101
  dependencies = [
4090
4102
  "proc-macro2",
4091
4103
  "quote",
4092
- "syn 2.0.96",
4104
+ "syn 2.0.98",
4093
4105
  ]
4094
4106
 
4095
4107
  [[package]]
@@ -4204,7 +4216,7 @@ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
4204
4216
  dependencies = [
4205
4217
  "proc-macro2",
4206
4218
  "quote",
4207
- "syn 2.0.96",
4219
+ "syn 2.0.98",
4208
4220
  ]
4209
4221
 
4210
4222
  [[package]]
@@ -4223,7 +4235,7 @@ version = "0.26.1"
4223
4235
  source = "registry+https://github.com/rust-lang/crates.io-index"
4224
4236
  checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37"
4225
4237
  dependencies = [
4226
- "rustls 0.23.21",
4238
+ "rustls 0.23.23",
4227
4239
  "tokio",
4228
4240
  ]
4229
4241
 
@@ -4339,9 +4351,9 @@ dependencies = [
4339
4351
 
4340
4352
  [[package]]
4341
4353
  name = "tracing-actix-web"
4342
- version = "0.7.15"
4354
+ version = "0.7.16"
4343
4355
  source = "registry+https://github.com/rust-lang/crates.io-index"
4344
- checksum = "54a9f5c1aca50ebebf074ee665b9f99f2e84906dcf6b993a0d0090edb835166d"
4356
+ checksum = "332bbdf3bd208d1fe6446f8ffb4e8c2ae66e25da0fb38e0b69545e640ecee6a6"
4345
4357
  dependencies = [
4346
4358
  "actix-web",
4347
4359
  "mutually_exclusive_features",
@@ -4358,7 +4370,7 @@ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
4358
4370
  dependencies = [
4359
4371
  "proc-macro2",
4360
4372
  "quote",
4361
- "syn 2.0.96",
4373
+ "syn 2.0.98",
4362
4374
  ]
4363
4375
 
4364
4376
  [[package]]
@@ -4447,9 +4459,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4447
4459
 
4448
4460
  [[package]]
4449
4461
  name = "typenum"
4450
- version = "1.17.0"
4462
+ version = "1.18.0"
4451
4463
  source = "registry+https://github.com/rust-lang/crates.io-index"
4452
- checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
4464
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
4453
4465
 
4454
4466
  [[package]]
4455
4467
  name = "ucd-trie"
@@ -4465,9 +4477,9 @@ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
4465
4477
 
4466
4478
  [[package]]
4467
4479
  name = "unicode-ident"
4468
- version = "1.0.15"
4480
+ version = "1.0.17"
4469
4481
  source = "registry+https://github.com/rust-lang/crates.io-index"
4470
- checksum = "11cd88e12b17c6494200a9c1b683a04fcac9573ed74cd1b62aeb2727c5592243"
4482
+ checksum = "00e2473a93778eb0bad35909dff6a10d28e63f792f16ed15e404fca9d5eeedbe"
4471
4483
 
4472
4484
  [[package]]
4473
4485
  name = "unicode-normalization"
@@ -4540,11 +4552,11 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4540
4552
 
4541
4553
  [[package]]
4542
4554
  name = "uuid"
4543
- version = "1.12.1"
4555
+ version = "1.15.0"
4544
4556
  source = "registry+https://github.com/rust-lang/crates.io-index"
4545
- checksum = "b3758f5e68192bb96cc8f9b7e2c2cfdabb435499a28499a42f8f984092adad4b"
4557
+ checksum = "bd8dcafa1ca14750d8d7a05aa05988c17aab20886e1f3ae33a40223c58d92ef7"
4546
4558
  dependencies = [
4547
- "getrandom",
4559
+ "getrandom 0.3.1",
4548
4560
  ]
4549
4561
 
4550
4562
  [[package]]
@@ -4590,6 +4602,15 @@ version = "0.11.0+wasi-snapshot-preview1"
4590
4602
  source = "registry+https://github.com/rust-lang/crates.io-index"
4591
4603
  checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
4592
4604
 
4605
+ [[package]]
4606
+ name = "wasi"
4607
+ version = "0.13.3+wasi-0.2.2"
4608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4609
+ checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
4610
+ dependencies = [
4611
+ "wit-bindgen-rt",
4612
+ ]
4613
+
4593
4614
  [[package]]
4594
4615
  name = "wasite"
4595
4616
  version = "0.1.0"
@@ -4618,7 +4639,7 @@ dependencies = [
4618
4639
  "log",
4619
4640
  "proc-macro2",
4620
4641
  "quote",
4621
- "syn 2.0.96",
4642
+ "syn 2.0.98",
4622
4643
  "wasm-bindgen-shared",
4623
4644
  ]
4624
4645
 
@@ -4653,7 +4674,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
4653
4674
  dependencies = [
4654
4675
  "proc-macro2",
4655
4676
  "quote",
4656
- "syn 2.0.96",
4677
+ "syn 2.0.98",
4657
4678
  "wasm-bindgen-backend",
4658
4679
  "wasm-bindgen-shared",
4659
4680
  ]
@@ -4689,9 +4710,9 @@ dependencies = [
4689
4710
 
4690
4711
  [[package]]
4691
4712
  name = "webpki-roots"
4692
- version = "0.26.7"
4713
+ version = "0.26.8"
4693
4714
  source = "registry+https://github.com/rust-lang/crates.io-index"
4694
- checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e"
4715
+ checksum = "2210b291f7ea53617fbafcc4939f10914214ec15aace5ba62293a668f322c5c9"
4695
4716
  dependencies = [
4696
4717
  "rustls-pki-types",
4697
4718
  ]
@@ -4758,6 +4779,12 @@ dependencies = [
4758
4779
  "windows-targets 0.52.6",
4759
4780
  ]
4760
4781
 
4782
+ [[package]]
4783
+ name = "windows-link"
4784
+ version = "0.1.0"
4785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4786
+ checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3"
4787
+
4761
4788
  [[package]]
4762
4789
  name = "windows-registry"
4763
4790
  version = "0.2.0"
@@ -4949,7 +4976,7 @@ dependencies = [
4949
4976
  "futures",
4950
4977
  "http 1.2.0",
4951
4978
  "http-body-util",
4952
- "hyper 1.5.2",
4979
+ "hyper 1.6.0",
4953
4980
  "hyper-util",
4954
4981
  "log",
4955
4982
  "once_cell",
@@ -4960,6 +4987,15 @@ dependencies = [
4960
4987
  "url",
4961
4988
  ]
4962
4989
 
4990
+ [[package]]
4991
+ name = "wit-bindgen-rt"
4992
+ version = "0.33.0"
4993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4994
+ checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
4995
+ dependencies = [
4996
+ "bitflags 2.8.0",
4997
+ ]
4998
+
4963
4999
  [[package]]
4964
5000
  name = "write16"
4965
5001
  version = "1.0.0"
@@ -5001,7 +5037,7 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
5001
5037
  dependencies = [
5002
5038
  "proc-macro2",
5003
5039
  "quote",
5004
- "syn 2.0.96",
5040
+ "syn 2.0.98",
5005
5041
  "synstructure",
5006
5042
  ]
5007
5043
 
@@ -5023,7 +5059,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
5023
5059
  dependencies = [
5024
5060
  "proc-macro2",
5025
5061
  "quote",
5026
- "syn 2.0.96",
5062
+ "syn 2.0.98",
5027
5063
  ]
5028
5064
 
5029
5065
  [[package]]
@@ -5043,7 +5079,7 @@ checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
5043
5079
  dependencies = [
5044
5080
  "proc-macro2",
5045
5081
  "quote",
5046
- "syn 2.0.96",
5082
+ "syn 2.0.98",
5047
5083
  "synstructure",
5048
5084
  ]
5049
5085
 
@@ -5072,32 +5108,32 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
5072
5108
  dependencies = [
5073
5109
  "proc-macro2",
5074
5110
  "quote",
5075
- "syn 2.0.96",
5111
+ "syn 2.0.98",
5076
5112
  ]
5077
5113
 
5078
5114
  [[package]]
5079
5115
  name = "zstd"
5080
- version = "0.13.2"
5116
+ version = "0.13.3"
5081
5117
  source = "registry+https://github.com/rust-lang/crates.io-index"
5082
- checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
5118
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
5083
5119
  dependencies = [
5084
5120
  "zstd-safe",
5085
5121
  ]
5086
5122
 
5087
5123
  [[package]]
5088
5124
  name = "zstd-safe"
5089
- version = "7.2.1"
5125
+ version = "7.2.3"
5090
5126
  source = "registry+https://github.com/rust-lang/crates.io-index"
5091
- checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
5127
+ checksum = "f3051792fbdc2e1e143244dc28c60f73d8470e93f3f9cbd0ead44da5ed802722"
5092
5128
  dependencies = [
5093
5129
  "zstd-sys",
5094
5130
  ]
5095
5131
 
5096
5132
  [[package]]
5097
5133
  name = "zstd-sys"
5098
- version = "2.0.13+zstd.1.5.6"
5134
+ version = "2.0.14+zstd.1.5.7"
5099
5135
  source = "registry+https://github.com/rust-lang/crates.io-index"
5100
- checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
5136
+ checksum = "8fb060d4926e4ac3a3ad15d864e99ceb5f343c6b34f5bd6d81ae6ed417311be5"
5101
5137
  dependencies = [
5102
5138
  "cc",
5103
5139
  "pkg-config",