python-auditor 0.10.1__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.1 → python_auditor-0.11.0}/Cargo.lock +1112 -1119
  2. {python_auditor-0.10.1 → python_auditor-0.11.0}/Cargo.toml +8 -8
  3. {python_auditor-0.10.1 → python_auditor-0.11.0}/PKG-INFO +1 -1
  4. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/Cargo.toml +36 -35
  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.1 → 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.1 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/parquet_to_auditor/python_script/requirements.txt +2 -2
  15. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/revert_encoding/requirements.txt +4 -4
  16. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/archive.rs +42 -42
  17. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/configuration.rs +47 -0
  18. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/main.rs +36 -15
  19. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/routes/add.rs +18 -3
  20. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/routes/advanced_record_filters.rs +15 -19
  21. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/startup.rs +6 -2
  22. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/telemetry.rs +29 -4
  23. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/advanced_queries.rs +2 -2
  24. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/get_since.rs +3 -3
  25. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/helpers.rs +19 -9
  26. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/update.rs +3 -3
  27. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/Cargo.toml +16 -16
  28. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/benches/benchmark_with_http_request.rs +3 -3
  29. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/src/lib.rs +26 -24
  30. {python_auditor-0.10.1 → python_auditor-0.11.0}/src/blocking_client.rs +1 -1
  31. {python_auditor-0.10.1 → python_auditor-0.11.0}/src/builder.rs +1 -1
  32. {python_auditor-0.10.1 → python_auditor-0.11.0}/src/client.rs +8 -8
  33. {python_auditor-0.10.1 → python_auditor-0.11.0}/src/domain/component.rs +1 -1
  34. {python_auditor-0.10.1 → python_auditor-0.11.0}/src/domain/meta.rs +1 -1
  35. {python_auditor-0.10.1 → python_auditor-0.11.0}/src/domain/record.rs +1 -1
  36. {python_auditor-0.10.1 → python_auditor-0.11.0}/src/domain/score.rs +1 -1
  37. {python_auditor-0.10.1 → python_auditor-0.11.0}/src/queued_client.rs +1 -1
  38. python_auditor-0.10.1/local_dependencies/auditor/certs/rootCA-key.pem +0 -52
  39. python_auditor-0.10.1/local_dependencies/auditor/certs/rootCA.pem +0 -31
  40. python_auditor-0.10.1/local_dependencies/auditor/certs/server-cert.pem +0 -27
  41. python_auditor-0.10.1/local_dependencies/auditor/certs/server-key.pem +0 -28
  42. {python_auditor-0.10.1 → python_auditor-0.11.0}/.cargo/config.toml +0 -0
  43. {python_auditor-0.10.1 → python_auditor-0.11.0}/.readthedocs.yaml +0 -0
  44. {python_auditor-0.10.1 → python_auditor-0.11.0}/README.md +0 -0
  45. {python_auditor-0.10.1 → python_auditor-0.11.0}/docs/Makefile +0 -0
  46. {python_auditor-0.10.1 → python_auditor-0.11.0}/docs/api.rst +0 -0
  47. {python_auditor-0.10.1 → python_auditor-0.11.0}/docs/changelog.rst +0 -0
  48. {python_auditor-0.10.1 → python_auditor-0.11.0}/docs/conf.py +0 -0
  49. {python_auditor-0.10.1 → python_auditor-0.11.0}/docs/examples.rst +0 -0
  50. {python_auditor-0.10.1 → python_auditor-0.11.0}/docs/index.rst +0 -0
  51. {python_auditor-0.10.1 → python_auditor-0.11.0}/docs/make.bat +0 -0
  52. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/.env +0 -0
  53. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-0723e1854dee7d889745714fe094a64edfcf3f389eec3e77fefca2d753f1eceb.json +0 -0
  54. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-26a72be3c4ba0fddc30f53a71e0317e21982fde8bd24d8b5714439c1af835080.json +0 -0
  55. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-56c4218a1b59d8f9dc0af7191e516cb8f505a7d953ef5b2706e2427a136a918b.json +0 -0
  56. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-90e6c5e852ed16ef84a113c260d99efb6e193fa46b8115df94e750440e2d5517.json +0 -0
  57. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-a5c2d5afb25cf16a58a73c11cdde1bf5d2336cf42c6e84bf24ba27313d827a1f.json +0 -0
  58. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-a621b3eb5f42f24a04d216b9ce3c490182712e1276512cdfe74dcbb9e3e9e54e.json +0 -0
  59. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-aa313afec8c23e75ee45750e2ce8e520b96a98670d3c46572a6f942f839b99c0.json +0 -0
  60. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-bac1cfa96d1801a491bc325101a0ea88c18a9e1ca50b2b623e07791a46d61b48.json +0 -0
  61. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-cb3125aad5e124a24a976c2cb20a6e8859709f978c9f651740c439abe3b41adb.json +0 -0
  62. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-d8c6add014ac34e66ffb0178d497b9e822c569f86a89525f6ed5cc306713995a.json +0 -0
  63. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-dc5295938290703233cfe51c2215e6a5f6a6afe26b6ba3635210f5c157032f78.json +0 -0
  64. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-e4129d556ba749cb664ef6e876264efd36d82d813c2c9670dde24e4cfd042f94.json +0 -0
  65. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/.sqlx/query-e88b5acb79055b5c307e15481bc270e47d65b525ef6d98376455a267972be532.json +0 -0
  66. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/build.rs +0 -0
  67. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/archive.yaml +0 -0
  68. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/dualstack.yaml +0 -0
  69. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/local.yaml +0 -0
  70. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/priority-plugin/base.yml +0 -0
  71. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/production.yaml +0 -0
  72. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/rbac.yaml +0 -0
  73. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
  74. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/configuration/tls_config.yaml +0 -0
  75. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/parquet_to_auditor/python_script/.env +0 -0
  76. {python_auditor-0.10.1 → 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.1 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/revert_encoding/.env +0 -0
  78. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/revert_encoding/revert_encodings.py +0 -0
  79. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/revert_encoding/test_script.py +0 -0
  80. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +0 -0
  81. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +0 -0
  82. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_single_entry.py +0 -0
  83. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/test_valid_names/test_slurm_decoding.py +0 -0
  84. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/scripts/test_valid_names/test_valid_names.py +0 -0
  85. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/constants.rs +0 -0
  86. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/component.rs +0 -0
  87. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/meta.rs +0 -0
  88. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/mod.rs +0 -0
  89. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/record.rs +0 -0
  90. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/score.rs +0 -0
  91. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/validamount.rs +0 -0
  92. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/validname.rs +0 -0
  93. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/domain/validvalue.rs +0 -0
  94. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/error.rs +0 -0
  95. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/lib.rs +0 -0
  96. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/macros.rs +0 -0
  97. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/metrics/database.rs +0 -0
  98. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/metrics/mod.rs +0 -0
  99. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/middleware.rs +0 -0
  100. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/routes/get.rs +0 -0
  101. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/routes/health_check.rs +0 -0
  102. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/routes/mod.rs +0 -0
  103. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/routes/record_handlers.rs +0 -0
  104. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/src/routes/update.rs +0 -0
  105. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/add.rs +0 -0
  106. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/get.rs +0 -0
  107. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/get_one_record.rs +0 -0
  108. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
  109. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor/tests/api/main.rs +0 -0
  110. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/.env +0 -0
  111. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-256977e5f7886c61625e92a77efb52b9ca4321cefcac0e544d64334cdbca93ba.json +0 -0
  112. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-440620430cdcfb05e9ded5312614fae4df18e20a2a0730ec9e914ce34338df2d.json +0 -0
  113. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-5b1885d85159029e95b3f6d8dcee5eac70e683956480d225143c1de9169e233b.json +0 -0
  114. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-6be1ec652f57f24ba44ee6efa08a2c5985cf4375e563a1bff02dbc6fc4a1ac6d.json +0 -0
  115. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-7022afed3a87000ca2c5a5a829f8bdfddb266e0a577c428c830b02e3736d264e.json +0 -0
  116. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-7ab91dc1d18e4de022a7bbacc463476f8be8a8992b49fe363f70a2d58460e877.json +0 -0
  117. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-8de0a0fada9ffea04721b67f8df443a8c496bfccef4be482bbdaa36ef7d508a5.json +0 -0
  118. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-c8cba44011d83cdabb543adfae1637c5045144ecc61a6597f538d95a8cc756d4.json +0 -0
  119. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/.sqlx/query-f36fa62228e6ca304003dbd75448e95558f544fdbd602173af16c4bada2a3daf.json +0 -0
  120. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/benches/README.md +0 -0
  121. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/benches/configuration/bench.yaml +0 -0
  122. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/benches/configuration.rs +0 -0
  123. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/configuration/base.yaml +0 -0
  124. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/configuration/local.yaml +0 -0
  125. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/migrations/20231122115509_create_record_table.sql +0 -0
  126. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/src/configuration.rs +0 -0
  127. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/src/constants.rs +0 -0
  128. {python_auditor-0.10.1 → python_auditor-0.11.0}/local_dependencies/auditor-client/src/database.rs +0 -0
  129. {python_auditor-0.10.1 → python_auditor-0.11.0}/pyproject.toml +0 -0
  130. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_add_update.py +0 -0
  131. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_add_update_blocking.py +0 -0
  132. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_add_update_queued.py +0 -0
  133. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_advanced_query.py +0 -0
  134. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_advanced_query_blocking.py +0 -0
  135. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_advanced_query_queued.py +0 -0
  136. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_bulk_insert.py +0 -0
  137. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_bulk_insert_blocking.py +0 -0
  138. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_bulk_insert_queued.py +0 -0
  139. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_components.py +0 -0
  140. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_components_blocking.py +0 -0
  141. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_components_queued.py +0 -0
  142. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_eq.py +0 -0
  143. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_get_since.py +0 -0
  144. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_get_since_blocking.py +0 -0
  145. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_get_since_queued.py +0 -0
  146. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_get_single_record.py +0 -0
  147. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_get_single_record_blocking.py +0 -0
  148. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_get_single_record_queued.py +0 -0
  149. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_meta.py +0 -0
  150. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_meta_blocking.py +0 -0
  151. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/test_meta_queued.py +0 -0
  152. {python_auditor-0.10.1 → python_auditor-0.11.0}/scripts/tls_test/test_tls.py +0 -0
  153. {python_auditor-0.10.1 → python_auditor-0.11.0}/src/domain/mod.rs +0 -0
  154. {python_auditor-0.10.1 → 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,24 +21,24 @@ dependencies = [
21
21
 
22
22
  [[package]]
23
23
  name = "actix-http"
24
- version = "3.11.2"
24
+ version = "3.13.1"
25
25
  source = "registry+https://github.com/rust-lang/crates.io-index"
26
- checksum = "7926860314cbe2fb5d1f13731e387ab43bd32bca224e82e6e2db85de0a3dba49"
26
+ checksum = "48e2faa3e7418ed780cca54829d32782a4008a077230f67457caa063415e99c2"
27
27
  dependencies = [
28
28
  "actix-codec",
29
29
  "actix-rt",
30
30
  "actix-service",
31
31
  "actix-tls",
32
32
  "actix-utils",
33
- "base64 0.22.1",
34
- "bitflags",
33
+ "base64",
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",
@@ -71,9 +71,9 @@ dependencies = [
71
71
 
72
72
  [[package]]
73
73
  name = "actix-router"
74
- version = "0.5.3"
74
+ version = "0.5.4"
75
75
  source = "registry+https://github.com/rust-lang/crates.io-index"
76
- checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
76
+ checksum = "14f8c75c51892f18d9c46150c5ac7beb81c95f78c8b83a634d49f4ca32551fe7"
77
77
  dependencies = [
78
78
  "bytestring",
79
79
  "cfg-if",
@@ -123,19 +123,19 @@ dependencies = [
123
123
 
124
124
  [[package]]
125
125
  name = "actix-tls"
126
- version = "3.4.0"
126
+ version = "3.5.0"
127
127
  source = "registry+https://github.com/rust-lang/crates.io-index"
128
- checksum = "ac453898d866cdbecdbc2334fe1738c747b4eba14a677261f2b768ba05329389"
128
+ checksum = "6176099de3f58fbddac916a7f8c6db297e021d706e7a6b99947785fee14abe9f"
129
129
  dependencies = [
130
130
  "actix-rt",
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",
138
- "tokio-rustls 0.26.4",
138
+ "tokio-rustls",
139
139
  "tokio-util",
140
140
  "tracing",
141
141
  ]
@@ -152,9 +152,9 @@ dependencies = [
152
152
 
153
153
  [[package]]
154
154
  name = "actix-web"
155
- version = "4.11.0"
155
+ version = "4.14.0"
156
156
  source = "registry+https://github.com/rust-lang/crates.io-index"
157
- checksum = "a597b77b5c6d6a1e1097fddde329a83665e25c5437c696a3a9a4aa514a614dea"
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.5.10",
191
+ "socket2 0.6.4",
192
192
  "time",
193
193
  "tracing",
194
194
  "url",
@@ -253,9 +253,9 @@ dependencies = [
253
253
 
254
254
  [[package]]
255
255
  name = "aho-corasick"
256
- version = "1.1.3"
256
+ version = "1.1.4"
257
257
  source = "registry+https://github.com/rust-lang/crates.io-index"
258
- checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
258
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
259
259
  dependencies = [
260
260
  "memchr",
261
261
  ]
@@ -268,13 +268,22 @@ 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
  ]
277
277
 
278
+ [[package]]
279
+ name = "alloca"
280
+ version = "0.4.0"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
283
+ dependencies = [
284
+ "cc",
285
+ ]
286
+
278
287
  [[package]]
279
288
  name = "allocator-api2"
280
289
  version = "0.2.21"
@@ -296,17 +305,28 @@ version = "0.1.6"
296
305
  source = "registry+https://github.com/rust-lang/crates.io-index"
297
306
  checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
298
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
+
299
319
  [[package]]
300
320
  name = "anstyle"
301
- version = "1.0.13"
321
+ version = "1.0.14"
302
322
  source = "registry+https://github.com/rust-lang/crates.io-index"
303
- checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
323
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
304
324
 
305
325
  [[package]]
306
326
  name = "anyhow"
307
- version = "1.0.100"
327
+ version = "1.0.103"
308
328
  source = "registry+https://github.com/rust-lang/crates.io-index"
309
- checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
329
+ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
310
330
 
311
331
  [[package]]
312
332
  name = "arraydeque"
@@ -316,9 +336,9 @@ checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
316
336
 
317
337
  [[package]]
318
338
  name = "arrow"
319
- version = "57.0.0"
339
+ version = "59.1.0"
320
340
  source = "registry+https://github.com/rust-lang/crates.io-index"
321
- checksum = "4df8bb5b0bd64c0b9bc61317fcc480bad0f00e56d3bc32c69a4c8dada4786bae"
341
+ checksum = "b952ca5a8046ad741b60f142d6eca4aeebcad615694202bc64c5341f23e32c5b"
322
342
  dependencies = [
323
343
  "arrow-arith",
324
344
  "arrow-array",
@@ -337,9 +357,9 @@ dependencies = [
337
357
 
338
358
  [[package]]
339
359
  name = "arrow-arith"
340
- version = "57.0.0"
360
+ version = "59.1.0"
341
361
  source = "registry+https://github.com/rust-lang/crates.io-index"
342
- checksum = "a1a640186d3bd30a24cb42264c2dafb30e236a6f50d510e56d40b708c9582491"
362
+ checksum = "64a13b8d3008c4e9063c597a08f46446fe3fd5789277127672d6c0bdbb43b1ff"
343
363
  dependencies = [
344
364
  "arrow-array",
345
365
  "arrow-buffer",
@@ -351,9 +371,9 @@ dependencies = [
351
371
 
352
372
  [[package]]
353
373
  name = "arrow-array"
354
- version = "57.0.0"
374
+ version = "59.1.0"
355
375
  source = "registry+https://github.com/rust-lang/crates.io-index"
356
- checksum = "219fe420e6800979744c8393b687afb0252b3f8a89b91027d27887b72aa36d31"
376
+ checksum = "9486151b2f0785bafc6fa04fc5c99fcb4495455662e58787ea32eaaed33c4192"
357
377
  dependencies = [
358
378
  "ahash",
359
379
  "arrow-buffer",
@@ -361,7 +381,7 @@ dependencies = [
361
381
  "arrow-schema",
362
382
  "chrono",
363
383
  "half",
364
- "hashbrown 0.16.0",
384
+ "hashbrown 0.17.1",
365
385
  "num-complex",
366
386
  "num-integer",
367
387
  "num-traits",
@@ -369,9 +389,9 @@ dependencies = [
369
389
 
370
390
  [[package]]
371
391
  name = "arrow-buffer"
372
- version = "57.0.0"
392
+ version = "59.1.0"
373
393
  source = "registry+https://github.com/rust-lang/crates.io-index"
374
- checksum = "76885a2697a7edf6b59577f568b456afc94ce0e2edc15b784ce3685b6c3c5c27"
394
+ checksum = "c4776577a87794bfdf0b4e90e2ea12454fa7738ea2823c4be5b9d1851da7b434"
375
395
  dependencies = [
376
396
  "bytes",
377
397
  "half",
@@ -381,17 +401,18 @@ dependencies = [
381
401
 
382
402
  [[package]]
383
403
  name = "arrow-cast"
384
- version = "57.0.0"
404
+ version = "59.1.0"
385
405
  source = "registry+https://github.com/rust-lang/crates.io-index"
386
- checksum = "9c9ebb4c987e6b3b236fb4a14b20b34835abfdd80acead3ccf1f9bf399e1f168"
406
+ checksum = "a9ad451ce4f98710828a455b96991b8f031deb2e67f5fcad6773f017e4a69c3a"
387
407
  dependencies = [
388
408
  "arrow-array",
389
409
  "arrow-buffer",
390
410
  "arrow-data",
411
+ "arrow-ord",
391
412
  "arrow-schema",
392
413
  "arrow-select",
393
414
  "atoi",
394
- "base64 0.22.1",
415
+ "base64",
395
416
  "chrono",
396
417
  "half",
397
418
  "lexical-core",
@@ -401,9 +422,9 @@ dependencies = [
401
422
 
402
423
  [[package]]
403
424
  name = "arrow-csv"
404
- version = "57.0.0"
425
+ version = "59.1.0"
405
426
  source = "registry+https://github.com/rust-lang/crates.io-index"
406
- checksum = "92386159c8d4bce96f8bd396b0642a0d544d471bdc2ef34d631aec80db40a09c"
427
+ checksum = "8aa7bf96d6141a7bcca2eed57c7c9767d2a2175281857b8a7b68308992864784"
407
428
  dependencies = [
408
429
  "arrow-array",
409
430
  "arrow-cast",
@@ -416,9 +437,9 @@ dependencies = [
416
437
 
417
438
  [[package]]
418
439
  name = "arrow-data"
419
- version = "57.0.0"
440
+ version = "59.1.0"
420
441
  source = "registry+https://github.com/rust-lang/crates.io-index"
421
- checksum = "727681b95de313b600eddc2a37e736dcb21980a40f640314dcf360e2f36bc89b"
442
+ checksum = "b38fe43e2e8704360f1464e6e8cc4fc381ef02cc4fb0192afa8df1aaa0115c66"
422
443
  dependencies = [
423
444
  "arrow-buffer",
424
445
  "arrow-schema",
@@ -429,9 +450,9 @@ dependencies = [
429
450
 
430
451
  [[package]]
431
452
  name = "arrow-ipc"
432
- version = "57.0.0"
453
+ version = "59.1.0"
433
454
  source = "registry+https://github.com/rust-lang/crates.io-index"
434
- checksum = "da9ba92e3de170295c98a84e5af22e2b037f0c7b32449445e6c493b5fca27f27"
455
+ checksum = "29dac499fcbc6ba74ee0324057821d381929a48526a3966bd9dffb44aa06d98c"
435
456
  dependencies = [
436
457
  "arrow-array",
437
458
  "arrow-buffer",
@@ -443,18 +464,19 @@ dependencies = [
443
464
 
444
465
  [[package]]
445
466
  name = "arrow-json"
446
- version = "57.0.0"
467
+ version = "59.1.0"
447
468
  source = "registry+https://github.com/rust-lang/crates.io-index"
448
- checksum = "b969b4a421ae83828591c6bf5450bd52e6d489584142845ad6a861f42fe35df8"
469
+ checksum = "0fe05e916ddc50f4c7a363cd69c0ef5894fcee063517e9a0b8582f0c56746af6"
449
470
  dependencies = [
450
471
  "arrow-array",
451
472
  "arrow-buffer",
452
473
  "arrow-cast",
453
- "arrow-data",
474
+ "arrow-ord",
454
475
  "arrow-schema",
476
+ "arrow-select",
455
477
  "chrono",
456
478
  "half",
457
- "indexmap 2.12.0",
479
+ "indexmap 2.14.0",
458
480
  "itoa",
459
481
  "lexical-core",
460
482
  "memchr",
@@ -467,9 +489,9 @@ dependencies = [
467
489
 
468
490
  [[package]]
469
491
  name = "arrow-ord"
470
- version = "57.0.0"
492
+ version = "59.1.0"
471
493
  source = "registry+https://github.com/rust-lang/crates.io-index"
472
- checksum = "141c05298b21d03e88062317a1f1a73f5ba7b6eb041b350015b1cd6aabc0519b"
494
+ checksum = "0e13dbdc2a9c053c10c7baa6e30faee04a180aa7ce88e471835850ce37abd20b"
473
495
  dependencies = [
474
496
  "arrow-array",
475
497
  "arrow-buffer",
@@ -480,9 +502,9 @@ dependencies = [
480
502
 
481
503
  [[package]]
482
504
  name = "arrow-row"
483
- version = "57.0.0"
505
+ version = "59.1.0"
484
506
  source = "registry+https://github.com/rust-lang/crates.io-index"
485
- checksum = "c5f3c06a6abad6164508ed283c7a02151515cef3de4b4ff2cebbcaeb85533db2"
507
+ checksum = "4d5a1f8c733d15260b305683472ee8ad89c62cbd706703ca873b90d051b41592"
486
508
  dependencies = [
487
509
  "arrow-array",
488
510
  "arrow-buffer",
@@ -493,15 +515,15 @@ dependencies = [
493
515
 
494
516
  [[package]]
495
517
  name = "arrow-schema"
496
- version = "57.0.0"
518
+ version = "59.1.0"
497
519
  source = "registry+https://github.com/rust-lang/crates.io-index"
498
- checksum = "9cfa7a03d1eee2a4d061476e1840ad5c9867a544ca6c4c59256496af5d0a8be5"
520
+ checksum = "d9e4969dc350d571766247143ab36a5187d095d3d3690970408bc630d47c69e5"
499
521
 
500
522
  [[package]]
501
523
  name = "arrow-select"
502
- version = "57.0.0"
524
+ version = "59.1.0"
503
525
  source = "registry+https://github.com/rust-lang/crates.io-index"
504
- checksum = "bafa595babaad59f2455f4957d0f26448fb472722c186739f4fac0823a1bdb47"
526
+ checksum = "402770dba90865359d98d1ef92ef16e23d75c0cca9c2c880c8a05468b7743bf9"
505
527
  dependencies = [
506
528
  "ahash",
507
529
  "arrow-array",
@@ -513,9 +535,9 @@ dependencies = [
513
535
 
514
536
  [[package]]
515
537
  name = "arrow-string"
516
- version = "57.0.0"
538
+ version = "59.1.0"
517
539
  source = "registry+https://github.com/rust-lang/crates.io-index"
518
- checksum = "32f46457dbbb99f2650ff3ac23e46a929e0ab81db809b02aa5511c258348bef2"
540
+ checksum = "a2b0afbb8b9016700938291123df30838b89decc3213dba00852021988b170d3"
519
541
  dependencies = [
520
542
  "arrow-array",
521
543
  "arrow-buffer",
@@ -530,9 +552,9 @@ dependencies = [
530
552
 
531
553
  [[package]]
532
554
  name = "asn1-rs"
533
- version = "0.7.1"
555
+ version = "0.7.2"
534
556
  source = "registry+https://github.com/rust-lang/crates.io-index"
535
- checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60"
557
+ checksum = "b7f43a50ac4fdca5df8e885c21b835997f0a1cdee65494a6847694a98652d9d8"
536
558
  dependencies = [
537
559
  "asn1-rs-derive",
538
560
  "asn1-rs-impl",
@@ -540,7 +562,7 @@ dependencies = [
540
562
  "nom",
541
563
  "num-traits",
542
564
  "rusticata-macros",
543
- "thiserror 2.0.17",
565
+ "thiserror 2.0.18",
544
566
  "time",
545
567
  ]
546
568
 
@@ -627,7 +649,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
627
649
 
628
650
  [[package]]
629
651
  name = "auditor"
630
- version = "0.10.1"
652
+ version = "0.11.0"
631
653
  dependencies = [
632
654
  "actix-tls",
633
655
  "actix-web",
@@ -644,7 +666,7 @@ dependencies = [
644
666
  "fake",
645
667
  "futures",
646
668
  "futures-util",
647
- "itertools 0.14.0",
669
+ "itertools 0.15.0",
648
670
  "num-traits",
649
671
  "once_cell",
650
672
  "opentelemetry 0.23.0",
@@ -654,24 +676,25 @@ dependencies = [
654
676
  "prometheus",
655
677
  "quickcheck",
656
678
  "quickcheck_macros",
657
- "rand 0.9.2",
679
+ "rand 0.10.2",
658
680
  "regex",
659
681
  "reqwest",
660
682
  "reqwest-streams",
661
- "rustls 0.23.34",
662
- "rustls-pemfile 2.2.0",
663
- "secrecy 0.10.3",
683
+ "rolling-file",
684
+ "rustls",
685
+ "secrecy",
664
686
  "serde",
665
687
  "serde-aux",
666
688
  "serde_json",
667
689
  "serde_qs",
668
690
  "serde_with",
669
691
  "sqlx",
670
- "thiserror 2.0.17",
692
+ "thiserror 2.0.18",
671
693
  "tokio",
672
694
  "tokio-cron-scheduler",
673
695
  "tracing",
674
696
  "tracing-actix-web",
697
+ "tracing-appender",
675
698
  "tracing-bunyan-formatter",
676
699
  "tracing-log 0.2.0",
677
700
  "tracing-subscriber",
@@ -684,7 +707,7 @@ dependencies = [
684
707
 
685
708
  [[package]]
686
709
  name = "auditor-client"
687
- version = "0.10.1"
710
+ version = "0.11.0"
688
711
  dependencies = [
689
712
  "anyhow",
690
713
  "auditor",
@@ -696,19 +719,19 @@ dependencies = [
696
719
  "criterion-macro",
697
720
  "fake",
698
721
  "futures",
699
- "itertools 0.14.0",
722
+ "itertools 0.15.0",
700
723
  "once_cell",
701
- "rand 0.9.2",
724
+ "rand 0.10.2",
702
725
  "rand_distr",
703
726
  "reqwest",
704
727
  "reqwest-streams",
705
- "rustls 0.23.34",
728
+ "rustls",
706
729
  "serde",
707
730
  "serde-aux",
708
731
  "serde_json",
709
732
  "serde_qs",
710
733
  "sqlx",
711
- "thiserror 2.0.17",
734
+ "thiserror 2.0.18",
712
735
  "tokio",
713
736
  "tracing",
714
737
  "tracing-subscriber",
@@ -719,7 +742,7 @@ dependencies = [
719
742
 
720
743
  [[package]]
721
744
  name = "auditor-kubernetes-collector"
722
- version = "0.10.1"
745
+ version = "0.11.0"
723
746
  dependencies = [
724
747
  "anyhow",
725
748
  "auditor",
@@ -727,10 +750,12 @@ dependencies = [
727
750
  "bincode",
728
751
  "chrono",
729
752
  "fake",
753
+ "jiff",
730
754
  "k8s-openapi",
731
755
  "kube",
732
756
  "prometheus-http-query",
733
757
  "reqwest",
758
+ "rustls",
734
759
  "serde",
735
760
  "serde_yaml",
736
761
  "sqlx",
@@ -743,7 +768,7 @@ dependencies = [
743
768
 
744
769
  [[package]]
745
770
  name = "auditor-priority-plugin"
746
- version = "0.10.1"
771
+ version = "0.11.0"
747
772
  dependencies = [
748
773
  "actix-web",
749
774
  "actix-web-opentelemetry",
@@ -770,7 +795,7 @@ dependencies = [
770
795
 
771
796
  [[package]]
772
797
  name = "auditor-slurm-collector"
773
- version = "0.10.1"
798
+ version = "0.11.0"
774
799
  dependencies = [
775
800
  "anyhow",
776
801
  "auditor",
@@ -780,7 +805,7 @@ dependencies = [
780
805
  "color-eyre",
781
806
  "config",
782
807
  "fake",
783
- "itertools 0.14.0",
808
+ "itertools 0.15.0",
784
809
  "once_cell",
785
810
  "regex",
786
811
  "serde",
@@ -796,7 +821,7 @@ dependencies = [
796
821
 
797
822
  [[package]]
798
823
  name = "auditor-slurm-epilog-collector"
799
- version = "0.10.1"
824
+ version = "0.11.0"
800
825
  dependencies = [
801
826
  "anyhow",
802
827
  "auditor",
@@ -815,15 +840,15 @@ dependencies = [
815
840
 
816
841
  [[package]]
817
842
  name = "autocfg"
818
- version = "1.5.0"
843
+ version = "1.5.1"
819
844
  source = "registry+https://github.com/rust-lang/crates.io-index"
820
- checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
845
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
821
846
 
822
847
  [[package]]
823
848
  name = "aws-lc-rs"
824
- version = "1.14.1"
849
+ version = "1.17.1"
825
850
  source = "registry+https://github.com/rust-lang/crates.io-index"
826
- checksum = "879b6c89592deb404ba4dc0ae6b58ffd1795c78991cbb5b8bc441c48a070440d"
851
+ checksum = "4342d8937fc7e5dd9b1c60292261c0670c882a2cd1719cfc11b1af41731e32ad"
827
852
  dependencies = [
828
853
  "aws-lc-sys",
829
854
  "zeroize",
@@ -831,15 +856,15 @@ dependencies = [
831
856
 
832
857
  [[package]]
833
858
  name = "aws-lc-sys"
834
- version = "0.32.3"
859
+ version = "0.42.0"
835
860
  source = "registry+https://github.com/rust-lang/crates.io-index"
836
- checksum = "107a4e9d9cab9963e04e84bb8dee0e25f2a987f9a8bad5ed054abd439caa8f8c"
861
+ checksum = "6d9ceb1da931507a12f4fccea479dccd00da1943e1b4ae72d8e502d707361444"
837
862
  dependencies = [
838
- "bindgen",
839
863
  "cc",
840
864
  "cmake",
841
865
  "dunce",
842
866
  "fs_extra",
867
+ "pkg-config",
843
868
  ]
844
869
 
845
870
  [[package]]
@@ -857,12 +882,6 @@ dependencies = [
857
882
  "windows-link",
858
883
  ]
859
884
 
860
- [[package]]
861
- name = "base64"
862
- version = "0.21.7"
863
- source = "registry+https://github.com/rust-lang/crates.io-index"
864
- checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
865
-
866
885
  [[package]]
867
886
  name = "base64"
868
887
  version = "0.22.1"
@@ -871,9 +890,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
871
890
 
872
891
  [[package]]
873
892
  name = "base64ct"
874
- version = "1.8.0"
893
+ version = "1.8.3"
875
894
  source = "registry+https://github.com/rust-lang/crates.io-index"
876
- checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
895
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
877
896
 
878
897
  [[package]]
879
898
  name = "bincode"
@@ -885,30 +904,16 @@ dependencies = [
885
904
  ]
886
905
 
887
906
  [[package]]
888
- name = "bindgen"
889
- version = "0.72.1"
907
+ name = "bitflags"
908
+ version = "1.3.2"
890
909
  source = "registry+https://github.com/rust-lang/crates.io-index"
891
- checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
892
- dependencies = [
893
- "bitflags",
894
- "cexpr",
895
- "clang-sys",
896
- "itertools 0.13.0",
897
- "log",
898
- "prettyplease",
899
- "proc-macro2",
900
- "quote",
901
- "regex",
902
- "rustc-hash",
903
- "shlex",
904
- "syn",
905
- ]
910
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
906
911
 
907
912
  [[package]]
908
913
  name = "bitflags"
909
- version = "2.10.0"
914
+ version = "2.13.0"
910
915
  source = "registry+https://github.com/rust-lang/crates.io-index"
911
- checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
916
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
912
917
  dependencies = [
913
918
  "serde_core",
914
919
  ]
@@ -922,11 +927,20 @@ dependencies = [
922
927
  "generic-array",
923
928
  ]
924
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
+
925
939
  [[package]]
926
940
  name = "brotli"
927
- version = "8.0.2"
941
+ version = "8.0.4"
928
942
  source = "registry+https://github.com/rust-lang/crates.io-index"
929
- checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
943
+ checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
930
944
  dependencies = [
931
945
  "alloc-no-stdlib",
932
946
  "alloc-stdlib",
@@ -935,19 +949,28 @@ dependencies = [
935
949
 
936
950
  [[package]]
937
951
  name = "brotli-decompressor"
938
- version = "5.0.0"
952
+ version = "5.0.3"
939
953
  source = "registry+https://github.com/rust-lang/crates.io-index"
940
- checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
954
+ checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
941
955
  dependencies = [
942
956
  "alloc-no-stdlib",
943
957
  "alloc-stdlib",
944
958
  ]
945
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
+
946
969
  [[package]]
947
970
  name = "bumpalo"
948
- version = "3.19.0"
971
+ version = "3.20.3"
949
972
  source = "registry+https://github.com/rust-lang/crates.io-index"
950
- checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
973
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
951
974
 
952
975
  [[package]]
953
976
  name = "byteorder"
@@ -957,15 +980,15 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
957
980
 
958
981
  [[package]]
959
982
  name = "bytes"
960
- version = "1.10.1"
983
+ version = "1.12.1"
961
984
  source = "registry+https://github.com/rust-lang/crates.io-index"
962
- checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
985
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
963
986
 
964
987
  [[package]]
965
988
  name = "bytestring"
966
- version = "1.5.0"
989
+ version = "1.5.1"
967
990
  source = "registry+https://github.com/rust-lang/crates.io-index"
968
- checksum = "113b4343b5f6617e7ad401ced8de3cc8b012e73a594347c307b90db3e9271289"
991
+ checksum = "86566c496f2f47d9b8147a4c8b02ffdb69c919fe0c2b2e7195d22cbba0e635c9"
969
992
  dependencies = [
970
993
  "bytes",
971
994
  ]
@@ -978,9 +1001,9 @@ checksum = "7b02b629252fe8ef6460461409564e2c21d0c8e77e0944f3d189ff06c4e932ad"
978
1001
 
979
1002
  [[package]]
980
1003
  name = "casbin"
981
- version = "2.15.0"
1004
+ version = "2.20.0"
982
1005
  source = "registry+https://github.com/rust-lang/crates.io-index"
983
- checksum = "204a52f19e041f2abcc31cd10e6692ea441ab420e163b4e7cf1238315204ab86"
1006
+ checksum = "c53f7476c2d0d9cd7ccc88c16ffc5c7889a0497b3462b10b12b5329adde69665"
984
1007
  dependencies = [
985
1008
  "async-trait",
986
1009
  "fixedbitset",
@@ -1006,9 +1029,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
1006
1029
 
1007
1030
  [[package]]
1008
1031
  name = "cc"
1009
- version = "1.2.43"
1032
+ version = "1.2.67"
1010
1033
  source = "registry+https://github.com/rust-lang/crates.io-index"
1011
- checksum = "739eb0f94557554b3ca9a86d2d37bebd49c5e6d0c1d2bda35ba5bdac830befc2"
1034
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
1012
1035
  dependencies = [
1013
1036
  "find-msvc-tools",
1014
1037
  "jobserver",
@@ -1016,15 +1039,6 @@ dependencies = [
1016
1039
  "shlex",
1017
1040
  ]
1018
1041
 
1019
- [[package]]
1020
- name = "cexpr"
1021
- version = "0.6.0"
1022
- source = "registry+https://github.com/rust-lang/crates.io-index"
1023
- checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
1024
- dependencies = [
1025
- "nom",
1026
- ]
1027
-
1028
1042
  [[package]]
1029
1043
  name = "cfg-if"
1030
1044
  version = "1.0.4"
@@ -1037,11 +1051,22 @@ version = "0.2.1"
1037
1051
  source = "registry+https://github.com/rust-lang/crates.io-index"
1038
1052
  checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
1039
1053
 
1054
+ [[package]]
1055
+ name = "chacha20"
1056
+ version = "0.10.1"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
1059
+ dependencies = [
1060
+ "cfg-if",
1061
+ "cpufeatures 0.3.0",
1062
+ "rand_core 0.10.1",
1063
+ ]
1064
+
1040
1065
  [[package]]
1041
1066
  name = "chrono"
1042
- version = "0.4.42"
1067
+ version = "0.4.45"
1043
1068
  source = "registry+https://github.com/rust-lang/crates.io-index"
1044
- checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
1069
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
1045
1070
  dependencies = [
1046
1071
  "iana-time-zone",
1047
1072
  "js-sys",
@@ -1090,38 +1115,24 @@ dependencies = [
1090
1115
 
1091
1116
  [[package]]
1092
1117
  name = "claims"
1093
- version = "0.7.1"
1094
- source = "registry+https://github.com/rust-lang/crates.io-index"
1095
- checksum = "b6995bbe186456c36307f8ea36be3eefe42f49d106896414e18efc4fb2f846b5"
1096
- dependencies = [
1097
- "autocfg",
1098
- ]
1099
-
1100
- [[package]]
1101
- name = "clang-sys"
1102
- version = "1.8.1"
1118
+ version = "0.8.0"
1103
1119
  source = "registry+https://github.com/rust-lang/crates.io-index"
1104
- checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
1105
- dependencies = [
1106
- "glob",
1107
- "libc",
1108
- "libloading",
1109
- ]
1120
+ checksum = "bba18ee93d577a8428902687bcc2b6b45a56b1981a1f6d779731c86cc4c5db18"
1110
1121
 
1111
1122
  [[package]]
1112
1123
  name = "clap"
1113
- version = "4.5.50"
1124
+ version = "4.6.1"
1114
1125
  source = "registry+https://github.com/rust-lang/crates.io-index"
1115
- checksum = "0c2cfd7bf8a6017ddaa4e32ffe7403d547790db06bd171c1c53926faab501623"
1126
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
1116
1127
  dependencies = [
1117
1128
  "clap_builder",
1118
1129
  ]
1119
1130
 
1120
1131
  [[package]]
1121
1132
  name = "clap_builder"
1122
- version = "4.5.50"
1133
+ version = "4.6.0"
1123
1134
  source = "registry+https://github.com/rust-lang/crates.io-index"
1124
- checksum = "0a4c05b9e80c5ccd3a7ef080ad7b6ba7d6fc00a985b8b157197075677c82c7a0"
1135
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
1125
1136
  dependencies = [
1126
1137
  "anstyle",
1127
1138
  "clap_lex",
@@ -1129,15 +1140,15 @@ dependencies = [
1129
1140
 
1130
1141
  [[package]]
1131
1142
  name = "clap_lex"
1132
- version = "0.7.6"
1143
+ version = "1.1.0"
1133
1144
  source = "registry+https://github.com/rust-lang/crates.io-index"
1134
- checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
1145
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
1135
1146
 
1136
1147
  [[package]]
1137
1148
  name = "cmake"
1138
- version = "0.1.54"
1149
+ version = "0.1.58"
1139
1150
  source = "registry+https://github.com/rust-lang/crates.io-index"
1140
- checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
1151
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
1141
1152
  dependencies = [
1142
1153
  "cc",
1143
1154
  ]
@@ -1180,12 +1191,12 @@ dependencies = [
1180
1191
 
1181
1192
  [[package]]
1182
1193
  name = "config"
1183
- version = "0.15.18"
1194
+ version = "0.15.25"
1184
1195
  source = "registry+https://github.com/rust-lang/crates.io-index"
1185
- checksum = "180e549344080374f9b32ed41bf3b6b57885ff6a289367b3dbc10eea8acc1918"
1196
+ checksum = "b85f248a4de22d204ceabc6299d89d2c70fbd7f09fea53c06c852369652d8139"
1186
1197
  dependencies = [
1187
1198
  "async-trait",
1188
- "convert_case",
1199
+ "convert_case 0.6.0",
1189
1200
  "json5",
1190
1201
  "pathdiff",
1191
1202
  "ron",
@@ -1204,6 +1215,12 @@ version = "0.9.6"
1204
1215
  source = "registry+https://github.com/rust-lang/crates.io-index"
1205
1216
  checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
1206
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
+
1207
1224
  [[package]]
1208
1225
  name = "const-random"
1209
1226
  version = "0.1.18"
@@ -1219,7 +1236,7 @@ version = "0.1.16"
1219
1236
  source = "registry+https://github.com/rust-lang/crates.io-index"
1220
1237
  checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
1221
1238
  dependencies = [
1222
- "getrandom 0.2.16",
1239
+ "getrandom 0.2.17",
1223
1240
  "once_cell",
1224
1241
  "tiny-keccak",
1225
1242
  ]
@@ -1233,6 +1250,15 @@ dependencies = [
1233
1250
  "unicode-segmentation",
1234
1251
  ]
1235
1252
 
1253
+ [[package]]
1254
+ name = "convert_case"
1255
+ version = "0.10.0"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
1258
+ dependencies = [
1259
+ "unicode-segmentation",
1260
+ ]
1261
+
1236
1262
  [[package]]
1237
1263
  name = "cookie"
1238
1264
  version = "0.16.2"
@@ -1246,9 +1272,9 @@ dependencies = [
1246
1272
 
1247
1273
  [[package]]
1248
1274
  name = "core-foundation"
1249
- version = "0.9.4"
1275
+ version = "0.10.1"
1250
1276
  source = "registry+https://github.com/rust-lang/crates.io-index"
1251
- checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
1277
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
1252
1278
  dependencies = [
1253
1279
  "core-foundation-sys",
1254
1280
  "libc",
@@ -1269,20 +1295,29 @@ dependencies = [
1269
1295
  "libc",
1270
1296
  ]
1271
1297
 
1298
+ [[package]]
1299
+ name = "cpufeatures"
1300
+ version = "0.3.0"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
1303
+ dependencies = [
1304
+ "libc",
1305
+ ]
1306
+
1272
1307
  [[package]]
1273
1308
  name = "crc"
1274
- version = "3.3.0"
1309
+ version = "3.4.0"
1275
1310
  source = "registry+https://github.com/rust-lang/crates.io-index"
1276
- checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
1311
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
1277
1312
  dependencies = [
1278
1313
  "crc-catalog",
1279
1314
  ]
1280
1315
 
1281
1316
  [[package]]
1282
1317
  name = "crc-catalog"
1283
- version = "2.4.0"
1318
+ version = "2.5.0"
1284
1319
  source = "registry+https://github.com/rust-lang/crates.io-index"
1285
- checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
1320
+ checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
1286
1321
 
1287
1322
  [[package]]
1288
1323
  name = "crc32fast"
@@ -1295,10 +1330,11 @@ dependencies = [
1295
1330
 
1296
1331
  [[package]]
1297
1332
  name = "criterion"
1298
- version = "0.7.0"
1333
+ version = "0.8.2"
1299
1334
  source = "registry+https://github.com/rust-lang/crates.io-index"
1300
- checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
1335
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
1301
1336
  dependencies = [
1337
+ "alloca",
1302
1338
  "anes",
1303
1339
  "cast",
1304
1340
  "ciborium",
@@ -1307,6 +1343,7 @@ dependencies = [
1307
1343
  "itertools 0.13.0",
1308
1344
  "num-traits",
1309
1345
  "oorandom",
1346
+ "page_size",
1310
1347
  "plotters",
1311
1348
  "rayon",
1312
1349
  "regex",
@@ -1329,9 +1366,9 @@ dependencies = [
1329
1366
 
1330
1367
  [[package]]
1331
1368
  name = "criterion-plot"
1332
- version = "0.6.0"
1369
+ version = "0.8.2"
1333
1370
  source = "registry+https://github.com/rust-lang/crates.io-index"
1334
- checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
1371
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
1335
1372
  dependencies = [
1336
1373
  "cast",
1337
1374
  "itertools 0.13.0",
@@ -1339,20 +1376,29 @@ dependencies = [
1339
1376
 
1340
1377
  [[package]]
1341
1378
  name = "croner"
1342
- version = "3.0.0"
1379
+ version = "3.0.1"
1343
1380
  source = "registry+https://github.com/rust-lang/crates.io-index"
1344
- checksum = "4c007081651a19b42931f86f7d4f74ee1c2a7d0cd2c6636a81695b5ffd4e9990"
1381
+ checksum = "4aa42bcd3d846ebf66e15bd528d1087f75d1c6c1c66ebff626178a106353c576"
1345
1382
  dependencies = [
1346
1383
  "chrono",
1347
1384
  "derive_builder",
1348
1385
  "strum",
1349
1386
  ]
1350
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
+
1351
1397
  [[package]]
1352
1398
  name = "crossbeam-deque"
1353
- version = "0.8.6"
1399
+ version = "0.8.7"
1354
1400
  source = "registry+https://github.com/rust-lang/crates.io-index"
1355
- checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
1401
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
1356
1402
  dependencies = [
1357
1403
  "crossbeam-epoch",
1358
1404
  "crossbeam-utils",
@@ -1360,27 +1406,27 @@ dependencies = [
1360
1406
 
1361
1407
  [[package]]
1362
1408
  name = "crossbeam-epoch"
1363
- version = "0.9.18"
1409
+ version = "0.9.20"
1364
1410
  source = "registry+https://github.com/rust-lang/crates.io-index"
1365
- checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
1411
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
1366
1412
  dependencies = [
1367
1413
  "crossbeam-utils",
1368
1414
  ]
1369
1415
 
1370
1416
  [[package]]
1371
1417
  name = "crossbeam-queue"
1372
- version = "0.3.12"
1418
+ version = "0.3.13"
1373
1419
  source = "registry+https://github.com/rust-lang/crates.io-index"
1374
- checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
1420
+ checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26"
1375
1421
  dependencies = [
1376
1422
  "crossbeam-utils",
1377
1423
  ]
1378
1424
 
1379
1425
  [[package]]
1380
1426
  name = "crossbeam-utils"
1381
- version = "0.8.21"
1427
+ version = "0.8.22"
1382
1428
  source = "registry+https://github.com/rust-lang/crates.io-index"
1383
- checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
1429
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
1384
1430
 
1385
1431
  [[package]]
1386
1432
  name = "crunchy"
@@ -1390,14 +1436,23 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
1390
1436
 
1391
1437
  [[package]]
1392
1438
  name = "crypto-common"
1393
- version = "0.1.6"
1439
+ version = "0.1.7"
1394
1440
  source = "registry+https://github.com/rust-lang/crates.io-index"
1395
- checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
1441
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
1396
1442
  dependencies = [
1397
1443
  "generic-array",
1398
1444
  "typenum",
1399
1445
  ]
1400
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
+
1401
1456
  [[package]]
1402
1457
  name = "csv"
1403
1458
  version = "1.4.0"
@@ -1431,12 +1486,12 @@ dependencies = [
1431
1486
 
1432
1487
  [[package]]
1433
1488
  name = "darling"
1434
- version = "0.21.3"
1489
+ version = "0.23.0"
1435
1490
  source = "registry+https://github.com/rust-lang/crates.io-index"
1436
- checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
1491
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
1437
1492
  dependencies = [
1438
- "darling_core 0.21.3",
1439
- "darling_macro 0.21.3",
1493
+ "darling_core 0.23.0",
1494
+ "darling_macro 0.23.0",
1440
1495
  ]
1441
1496
 
1442
1497
  [[package]]
@@ -1455,11 +1510,10 @@ dependencies = [
1455
1510
 
1456
1511
  [[package]]
1457
1512
  name = "darling_core"
1458
- version = "0.21.3"
1513
+ version = "0.23.0"
1459
1514
  source = "registry+https://github.com/rust-lang/crates.io-index"
1460
- checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
1515
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
1461
1516
  dependencies = [
1462
- "fnv",
1463
1517
  "ident_case",
1464
1518
  "proc-macro2",
1465
1519
  "quote",
@@ -1480,20 +1534,20 @@ dependencies = [
1480
1534
 
1481
1535
  [[package]]
1482
1536
  name = "darling_macro"
1483
- version = "0.21.3"
1537
+ version = "0.23.0"
1484
1538
  source = "registry+https://github.com/rust-lang/crates.io-index"
1485
- checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
1539
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
1486
1540
  dependencies = [
1487
- "darling_core 0.21.3",
1541
+ "darling_core 0.23.0",
1488
1542
  "quote",
1489
1543
  "syn",
1490
1544
  ]
1491
1545
 
1492
1546
  [[package]]
1493
1547
  name = "data-encoding"
1494
- version = "2.9.0"
1548
+ version = "2.11.0"
1495
1549
  source = "registry+https://github.com/rust-lang/crates.io-index"
1496
- checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
1550
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
1497
1551
 
1498
1552
  [[package]]
1499
1553
  name = "deadpool"
@@ -1513,13 +1567,44 @@ version = "0.1.4"
1513
1567
  source = "registry+https://github.com/rust-lang/crates.io-index"
1514
1568
  checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
1515
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
+
1516
1601
  [[package]]
1517
1602
  name = "der"
1518
1603
  version = "0.7.10"
1519
1604
  source = "registry+https://github.com/rust-lang/crates.io-index"
1520
1605
  checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
1521
1606
  dependencies = [
1522
- "const-oid",
1607
+ "const-oid 0.9.6",
1523
1608
  "pem-rfc7468",
1524
1609
  "zeroize",
1525
1610
  ]
@@ -1540,11 +1625,10 @@ dependencies = [
1540
1625
 
1541
1626
  [[package]]
1542
1627
  name = "deranged"
1543
- version = "0.5.5"
1628
+ version = "0.5.8"
1544
1629
  source = "registry+https://github.com/rust-lang/crates.io-index"
1545
- checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
1630
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
1546
1631
  dependencies = [
1547
- "powerfmt",
1548
1632
  "serde_core",
1549
1633
  ]
1550
1634
 
@@ -1581,21 +1665,23 @@ dependencies = [
1581
1665
 
1582
1666
  [[package]]
1583
1667
  name = "derive_more"
1584
- version = "2.0.1"
1668
+ version = "2.1.1"
1585
1669
  source = "registry+https://github.com/rust-lang/crates.io-index"
1586
- checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
1670
+ checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
1587
1671
  dependencies = [
1588
1672
  "derive_more-impl",
1589
1673
  ]
1590
1674
 
1591
1675
  [[package]]
1592
1676
  name = "derive_more-impl"
1593
- version = "2.0.1"
1677
+ version = "2.1.1"
1594
1678
  source = "registry+https://github.com/rust-lang/crates.io-index"
1595
- checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
1679
+ checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
1596
1680
  dependencies = [
1681
+ "convert_case 0.10.0",
1597
1682
  "proc-macro2",
1598
1683
  "quote",
1684
+ "rustc_version",
1599
1685
  "syn",
1600
1686
  "unicode-xid",
1601
1687
  ]
@@ -1612,17 +1698,28 @@ version = "0.10.7"
1612
1698
  source = "registry+https://github.com/rust-lang/crates.io-index"
1613
1699
  checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
1614
1700
  dependencies = [
1615
- "block-buffer",
1616
- "const-oid",
1617
- "crypto-common",
1701
+ "block-buffer 0.10.4",
1702
+ "const-oid 0.9.6",
1703
+ "crypto-common 0.1.7",
1618
1704
  "subtle",
1619
1705
  ]
1620
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
+
1621
1718
  [[package]]
1622
1719
  name = "displaydoc"
1623
- version = "0.2.5"
1720
+ version = "0.2.6"
1624
1721
  source = "registry+https://github.com/rust-lang/crates.io-index"
1625
- checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1722
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
1626
1723
  dependencies = [
1627
1724
  "proc-macro2",
1628
1725
  "quote",
@@ -1646,9 +1743,9 @@ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
1646
1743
 
1647
1744
  [[package]]
1648
1745
  name = "dummy"
1649
- version = "0.11.0"
1746
+ version = "0.12.0"
1650
1747
  source = "registry+https://github.com/rust-lang/crates.io-index"
1651
- checksum = "3bbcf21279103a67372982cb1156a2154a452451dff2b884cf897ccecce389e0"
1748
+ checksum = "6d2a69babd8861dbe09217678b4e8ee461869f9af8a57021e16479628dbd83bd"
1652
1749
  dependencies = [
1653
1750
  "darling 0.20.11",
1654
1751
  "proc-macro2",
@@ -1670,9 +1767,9 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
1670
1767
 
1671
1768
  [[package]]
1672
1769
  name = "either"
1673
- version = "1.15.0"
1770
+ version = "1.16.0"
1674
1771
  source = "registry+https://github.com/rust-lang/crates.io-index"
1675
- checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1772
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
1676
1773
  dependencies = [
1677
1774
  "serde",
1678
1775
  ]
@@ -1686,6 +1783,15 @@ dependencies = [
1686
1783
  "cfg-if",
1687
1784
  ]
1688
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
+
1689
1795
  [[package]]
1690
1796
  name = "enum-as-inner"
1691
1797
  version = "0.6.1"
@@ -1699,15 +1805,25 @@ dependencies = [
1699
1805
  ]
1700
1806
 
1701
1807
  [[package]]
1702
- name = "env_logger"
1703
- version = "0.8.4"
1808
+ name = "env_filter"
1809
+ version = "2.0.0"
1704
1810
  source = "registry+https://github.com/rust-lang/crates.io-index"
1705
- checksum = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3"
1811
+ checksum = "900d271a03799a1ee8d1ca9b19893b48ca674a9284fefcfb85f05e74ed314217"
1706
1812
  dependencies = [
1707
1813
  "log",
1708
1814
  "regex",
1709
1815
  ]
1710
1816
 
1817
+ [[package]]
1818
+ name = "env_logger"
1819
+ version = "0.11.11"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "de671bd27a75a797dc9ae289ba1e77276e75e2026408aab65185384e2d5cd3f6"
1822
+ dependencies = [
1823
+ "env_filter",
1824
+ "log",
1825
+ ]
1826
+
1711
1827
  [[package]]
1712
1828
  name = "equivalent"
1713
1829
  version = "1.0.2"
@@ -1716,15 +1832,25 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1716
1832
 
1717
1833
  [[package]]
1718
1834
  name = "erased-serde"
1719
- version = "0.4.8"
1835
+ version = "0.4.10"
1720
1836
  source = "registry+https://github.com/rust-lang/crates.io-index"
1721
- checksum = "259d404d09818dec19332e31d94558aeb442fea04c817006456c24b5460bbd4b"
1837
+ checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec"
1722
1838
  dependencies = [
1723
1839
  "serde",
1724
1840
  "serde_core",
1725
1841
  "typeid",
1726
1842
  ]
1727
1843
 
1844
+ [[package]]
1845
+ name = "errno"
1846
+ version = "0.3.14"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1849
+ dependencies = [
1850
+ "libc",
1851
+ "windows-sys 0.61.2",
1852
+ ]
1853
+
1728
1854
  [[package]]
1729
1855
  name = "etcetera"
1730
1856
  version = "0.8.0"
@@ -1759,22 +1885,22 @@ dependencies = [
1759
1885
 
1760
1886
  [[package]]
1761
1887
  name = "fake"
1762
- version = "4.4.0"
1888
+ version = "5.1.0"
1763
1889
  source = "registry+https://github.com/rust-lang/crates.io-index"
1764
- checksum = "f2b0902eb36fbab51c14eda1c186bda119fcff91e5e4e7fc2dd2077298197ce8"
1890
+ checksum = "ea6be833b323a56361118a747470a45a1bcd5c52a2ec9b1e40c83dafe687e453"
1765
1891
  dependencies = [
1766
1892
  "chrono",
1767
1893
  "deunicode",
1768
1894
  "dummy",
1769
1895
  "either",
1770
- "rand 0.9.2",
1896
+ "rand 0.10.2",
1771
1897
  ]
1772
1898
 
1773
1899
  [[package]]
1774
1900
  name = "find-msvc-tools"
1775
- version = "0.1.4"
1901
+ version = "0.1.9"
1776
1902
  source = "registry+https://github.com/rust-lang/crates.io-index"
1777
- checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
1903
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1778
1904
 
1779
1905
  [[package]]
1780
1906
  name = "fixedbitset"
@@ -1784,23 +1910,23 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
1784
1910
 
1785
1911
  [[package]]
1786
1912
  name = "flatbuffers"
1787
- version = "25.9.23"
1913
+ version = "25.12.19"
1788
1914
  source = "registry+https://github.com/rust-lang/crates.io-index"
1789
- checksum = "09b6620799e7340ebd9968d2e0708eb82cf1971e9a16821e2091b6d6e475eed5"
1915
+ checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
1790
1916
  dependencies = [
1791
- "bitflags",
1917
+ "bitflags 2.13.0",
1792
1918
  "rustc_version",
1793
1919
  ]
1794
1920
 
1795
1921
  [[package]]
1796
1922
  name = "flate2"
1797
- version = "1.1.5"
1923
+ version = "1.1.9"
1798
1924
  source = "registry+https://github.com/rust-lang/crates.io-index"
1799
- checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
1925
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
1800
1926
  dependencies = [
1801
1927
  "crc32fast",
1802
- "libz-rs-sys",
1803
1928
  "miniz_oxide",
1929
+ "zlib-rs",
1804
1930
  ]
1805
1931
 
1806
1932
  [[package]]
@@ -1826,6 +1952,12 @@ version = "0.1.5"
1826
1952
  source = "registry+https://github.com/rust-lang/crates.io-index"
1827
1953
  checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1828
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
+
1829
1961
  [[package]]
1830
1962
  name = "form_urlencoded"
1831
1963
  version = "1.2.2"
@@ -1843,9 +1975,9 @@ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
1843
1975
 
1844
1976
  [[package]]
1845
1977
  name = "futures"
1846
- version = "0.3.31"
1978
+ version = "0.3.32"
1847
1979
  source = "registry+https://github.com/rust-lang/crates.io-index"
1848
- checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
1980
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1849
1981
  dependencies = [
1850
1982
  "futures-channel",
1851
1983
  "futures-core",
@@ -1858,9 +1990,9 @@ dependencies = [
1858
1990
 
1859
1991
  [[package]]
1860
1992
  name = "futures-channel"
1861
- version = "0.3.31"
1993
+ version = "0.3.32"
1862
1994
  source = "registry+https://github.com/rust-lang/crates.io-index"
1863
- checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
1995
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1864
1996
  dependencies = [
1865
1997
  "futures-core",
1866
1998
  "futures-sink",
@@ -1868,15 +2000,15 @@ dependencies = [
1868
2000
 
1869
2001
  [[package]]
1870
2002
  name = "futures-core"
1871
- version = "0.3.31"
2003
+ version = "0.3.32"
1872
2004
  source = "registry+https://github.com/rust-lang/crates.io-index"
1873
- checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
2005
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1874
2006
 
1875
2007
  [[package]]
1876
2008
  name = "futures-executor"
1877
- version = "0.3.31"
2009
+ version = "0.3.32"
1878
2010
  source = "registry+https://github.com/rust-lang/crates.io-index"
1879
- checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
2011
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1880
2012
  dependencies = [
1881
2013
  "futures-core",
1882
2014
  "futures-task",
@@ -1896,15 +2028,15 @@ dependencies = [
1896
2028
 
1897
2029
  [[package]]
1898
2030
  name = "futures-io"
1899
- version = "0.3.31"
2031
+ version = "0.3.32"
1900
2032
  source = "registry+https://github.com/rust-lang/crates.io-index"
1901
- checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
2033
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1902
2034
 
1903
2035
  [[package]]
1904
2036
  name = "futures-macro"
1905
- version = "0.3.31"
2037
+ version = "0.3.32"
1906
2038
  source = "registry+https://github.com/rust-lang/crates.io-index"
1907
- checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
2039
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1908
2040
  dependencies = [
1909
2041
  "proc-macro2",
1910
2042
  "quote",
@@ -1913,21 +2045,21 @@ dependencies = [
1913
2045
 
1914
2046
  [[package]]
1915
2047
  name = "futures-sink"
1916
- version = "0.3.31"
2048
+ version = "0.3.32"
1917
2049
  source = "registry+https://github.com/rust-lang/crates.io-index"
1918
- checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
2050
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1919
2051
 
1920
2052
  [[package]]
1921
2053
  name = "futures-task"
1922
- version = "0.3.31"
2054
+ version = "0.3.32"
1923
2055
  source = "registry+https://github.com/rust-lang/crates.io-index"
1924
- checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
2056
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1925
2057
 
1926
2058
  [[package]]
1927
2059
  name = "futures-util"
1928
- version = "0.3.31"
2060
+ version = "0.3.32"
1929
2061
  source = "registry+https://github.com/rust-lang/crates.io-index"
1930
- checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
2062
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1931
2063
  dependencies = [
1932
2064
  "futures-channel",
1933
2065
  "futures-core",
@@ -1937,15 +2069,14 @@ dependencies = [
1937
2069
  "futures-task",
1938
2070
  "memchr",
1939
2071
  "pin-project-lite",
1940
- "pin-utils",
1941
2072
  "slab",
1942
2073
  ]
1943
2074
 
1944
2075
  [[package]]
1945
2076
  name = "generic-array"
1946
- version = "0.14.9"
2077
+ version = "0.14.7"
1947
2078
  source = "registry+https://github.com/rust-lang/crates.io-index"
1948
- checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
2079
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1949
2080
  dependencies = [
1950
2081
  "typenum",
1951
2082
  "version_check",
@@ -1963,9 +2094,9 @@ dependencies = [
1963
2094
 
1964
2095
  [[package]]
1965
2096
  name = "getrandom"
1966
- version = "0.2.16"
2097
+ version = "0.2.17"
1967
2098
  source = "registry+https://github.com/rust-lang/crates.io-index"
1968
- checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
2099
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1969
2100
  dependencies = [
1970
2101
  "cfg-if",
1971
2102
  "js-sys",
@@ -1983,11 +2114,25 @@ dependencies = [
1983
2114
  "cfg-if",
1984
2115
  "js-sys",
1985
2116
  "libc",
1986
- "r-efi",
2117
+ "r-efi 5.3.0",
1987
2118
  "wasip2",
1988
2119
  "wasm-bindgen",
1989
2120
  ]
1990
2121
 
2122
+ [[package]]
2123
+ name = "getrandom"
2124
+ version = "0.4.3"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
2127
+ dependencies = [
2128
+ "cfg-if",
2129
+ "js-sys",
2130
+ "libc",
2131
+ "r-efi 6.0.0",
2132
+ "rand_core 0.10.1",
2133
+ "wasm-bindgen",
2134
+ ]
2135
+
1991
2136
  [[package]]
1992
2137
  name = "gimli"
1993
2138
  version = "0.32.3"
@@ -2000,6 +2145,16 @@ version = "0.3.3"
2000
2145
  source = "registry+https://github.com/rust-lang/crates.io-index"
2001
2146
  checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
2002
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
+
2003
2158
  [[package]]
2004
2159
  name = "h2"
2005
2160
  version = "0.3.27"
@@ -2012,7 +2167,7 @@ dependencies = [
2012
2167
  "futures-sink",
2013
2168
  "futures-util",
2014
2169
  "http 0.2.12",
2015
- "indexmap 2.12.0",
2170
+ "indexmap 2.14.0",
2016
2171
  "slab",
2017
2172
  "tokio",
2018
2173
  "tokio-util",
@@ -2021,17 +2176,17 @@ dependencies = [
2021
2176
 
2022
2177
  [[package]]
2023
2178
  name = "h2"
2024
- version = "0.4.12"
2179
+ version = "0.4.15"
2025
2180
  source = "registry+https://github.com/rust-lang/crates.io-index"
2026
- checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
2181
+ checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
2027
2182
  dependencies = [
2028
2183
  "atomic-waker",
2029
2184
  "bytes",
2030
2185
  "fnv",
2031
2186
  "futures-core",
2032
2187
  "futures-sink",
2033
- "http 1.3.1",
2034
- "indexmap 2.12.0",
2188
+ "http 1.4.2",
2189
+ "indexmap 2.14.0",
2035
2190
  "slab",
2036
2191
  "tokio",
2037
2192
  "tokio-util",
@@ -2073,17 +2228,26 @@ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
2073
2228
  dependencies = [
2074
2229
  "allocator-api2",
2075
2230
  "equivalent",
2076
- "foldhash",
2231
+ "foldhash 0.1.5",
2077
2232
  ]
2078
2233
 
2079
2234
  [[package]]
2080
2235
  name = "hashbrown"
2081
- version = "0.16.0"
2236
+ version = "0.16.1"
2082
2237
  source = "registry+https://github.com/rust-lang/crates.io-index"
2083
- checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
2238
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
2239
+ dependencies = [
2240
+ "foldhash 0.2.0",
2241
+ ]
2084
2242
 
2085
2243
  [[package]]
2086
- name = "hashlink"
2244
+ name = "hashbrown"
2245
+ version = "0.17.1"
2246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2247
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
2248
+
2249
+ [[package]]
2250
+ name = "hashlink"
2087
2251
  version = "0.9.1"
2088
2252
  source = "registry+https://github.com/rust-lang/crates.io-index"
2089
2253
  checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
@@ -2100,6 +2264,15 @@ dependencies = [
2100
2264
  "hashbrown 0.15.5",
2101
2265
  ]
2102
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
+
2103
2276
  [[package]]
2104
2277
  name = "heck"
2105
2278
  version = "0.5.0"
@@ -2133,7 +2306,7 @@ version = "0.12.1"
2133
2306
  source = "registry+https://github.com/rust-lang/crates.io-index"
2134
2307
  checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
2135
2308
  dependencies = [
2136
- "digest",
2309
+ "digest 0.10.7",
2137
2310
  ]
2138
2311
 
2139
2312
  [[package]]
@@ -2158,26 +2331,14 @@ dependencies = [
2158
2331
 
2159
2332
  [[package]]
2160
2333
  name = "http"
2161
- version = "1.3.1"
2334
+ version = "1.4.2"
2162
2335
  source = "registry+https://github.com/rust-lang/crates.io-index"
2163
- checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
2336
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
2164
2337
  dependencies = [
2165
2338
  "bytes",
2166
- "fnv",
2167
2339
  "itoa",
2168
2340
  ]
2169
2341
 
2170
- [[package]]
2171
- name = "http-body"
2172
- version = "0.4.6"
2173
- source = "registry+https://github.com/rust-lang/crates.io-index"
2174
- checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
2175
- dependencies = [
2176
- "bytes",
2177
- "http 0.2.12",
2178
- "pin-project-lite",
2179
- ]
2180
-
2181
2342
  [[package]]
2182
2343
  name = "http-body"
2183
2344
  version = "1.0.1"
@@ -2185,7 +2346,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
2346
  checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
2186
2347
  dependencies = [
2187
2348
  "bytes",
2188
- "http 1.3.1",
2349
+ "http 1.4.2",
2189
2350
  ]
2190
2351
 
2191
2352
  [[package]]
@@ -2196,17 +2357,11 @@ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
2196
2357
  dependencies = [
2197
2358
  "bytes",
2198
2359
  "futures-core",
2199
- "http 1.3.1",
2200
- "http-body 1.0.1",
2360
+ "http 1.4.2",
2361
+ "http-body",
2201
2362
  "pin-project-lite",
2202
2363
  ]
2203
2364
 
2204
- [[package]]
2205
- name = "http-range-header"
2206
- version = "0.3.1"
2207
- source = "registry+https://github.com/rust-lang/crates.io-index"
2208
- checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
2209
-
2210
2365
  [[package]]
2211
2366
  name = "httparse"
2212
2367
  version = "1.10.1"
@@ -2220,46 +2375,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2220
2375
  checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2221
2376
 
2222
2377
  [[package]]
2223
- name = "hyper"
2224
- version = "0.14.32"
2378
+ name = "hybrid-array"
2379
+ version = "0.4.13"
2225
2380
  source = "registry+https://github.com/rust-lang/crates.io-index"
2226
- checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
2381
+ checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
2227
2382
  dependencies = [
2228
- "bytes",
2229
- "futures-channel",
2230
- "futures-core",
2231
- "futures-util",
2232
- "http 0.2.12",
2233
- "http-body 0.4.6",
2234
- "httparse",
2235
- "httpdate",
2236
- "itoa",
2237
- "pin-project-lite",
2238
- "socket2 0.5.10",
2239
- "tokio",
2240
- "tower-service",
2241
- "tracing",
2242
- "want",
2383
+ "typenum",
2243
2384
  ]
2244
2385
 
2245
2386
  [[package]]
2246
2387
  name = "hyper"
2247
- version = "1.7.0"
2388
+ version = "1.10.1"
2248
2389
  source = "registry+https://github.com/rust-lang/crates.io-index"
2249
- checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
2390
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
2250
2391
  dependencies = [
2251
2392
  "atomic-waker",
2252
2393
  "bytes",
2253
2394
  "futures-channel",
2254
2395
  "futures-core",
2255
- "h2 0.4.12",
2256
- "http 1.3.1",
2257
- "http-body 1.0.1",
2396
+ "h2 0.4.15",
2397
+ "http 1.4.2",
2398
+ "http-body",
2258
2399
  "httparse",
2259
2400
  "httpdate",
2260
2401
  "itoa",
2261
2402
  "pin-project-lite",
2262
- "pin-utils",
2263
2403
  "smallvec",
2264
2404
  "tokio",
2265
2405
  "want",
@@ -2267,68 +2407,53 @@ dependencies = [
2267
2407
 
2268
2408
  [[package]]
2269
2409
  name = "hyper-rustls"
2270
- version = "0.24.2"
2410
+ version = "0.27.9"
2271
2411
  source = "registry+https://github.com/rust-lang/crates.io-index"
2272
- checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
2412
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
2273
2413
  dependencies = [
2274
- "futures-util",
2275
- "http 0.2.12",
2276
- "hyper 0.14.32",
2414
+ "http 1.4.2",
2415
+ "hyper",
2416
+ "hyper-util",
2277
2417
  "log",
2278
- "rustls 0.21.12",
2418
+ "rustls",
2279
2419
  "rustls-native-certs",
2280
2420
  "tokio",
2281
- "tokio-rustls 0.24.1",
2282
- ]
2283
-
2284
- [[package]]
2285
- name = "hyper-rustls"
2286
- version = "0.27.7"
2287
- source = "registry+https://github.com/rust-lang/crates.io-index"
2288
- checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
2289
- dependencies = [
2290
- "http 1.3.1",
2291
- "hyper 1.7.0",
2292
- "hyper-util",
2293
- "rustls 0.23.34",
2294
- "rustls-pki-types",
2295
- "tokio",
2296
- "tokio-rustls 0.26.4",
2421
+ "tokio-rustls",
2297
2422
  "tower-service",
2298
- "webpki-roots 1.0.3",
2423
+ "webpki-roots 1.0.8",
2299
2424
  ]
2300
2425
 
2301
2426
  [[package]]
2302
2427
  name = "hyper-timeout"
2303
- version = "0.4.1"
2428
+ version = "0.5.2"
2304
2429
  source = "registry+https://github.com/rust-lang/crates.io-index"
2305
- checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
2430
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
2306
2431
  dependencies = [
2307
- "hyper 0.14.32",
2432
+ "hyper",
2433
+ "hyper-util",
2308
2434
  "pin-project-lite",
2309
2435
  "tokio",
2310
- "tokio-io-timeout",
2436
+ "tower-service",
2311
2437
  ]
2312
2438
 
2313
2439
  [[package]]
2314
2440
  name = "hyper-util"
2315
- version = "0.1.17"
2441
+ version = "0.1.20"
2316
2442
  source = "registry+https://github.com/rust-lang/crates.io-index"
2317
- checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
2443
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
2318
2444
  dependencies = [
2319
- "base64 0.22.1",
2445
+ "base64",
2320
2446
  "bytes",
2321
2447
  "futures-channel",
2322
- "futures-core",
2323
2448
  "futures-util",
2324
- "http 1.3.1",
2325
- "http-body 1.0.1",
2326
- "hyper 1.7.0",
2449
+ "http 1.4.2",
2450
+ "http-body",
2451
+ "hyper",
2327
2452
  "ipnet",
2328
2453
  "libc",
2329
2454
  "percent-encoding",
2330
2455
  "pin-project-lite",
2331
- "socket2 0.6.1",
2456
+ "socket2 0.6.4",
2332
2457
  "tokio",
2333
2458
  "tower-service",
2334
2459
  "tracing",
@@ -2336,9 +2461,9 @@ dependencies = [
2336
2461
 
2337
2462
  [[package]]
2338
2463
  name = "iana-time-zone"
2339
- version = "0.1.64"
2464
+ version = "0.1.65"
2340
2465
  source = "registry+https://github.com/rust-lang/crates.io-index"
2341
- checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
2466
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
2342
2467
  dependencies = [
2343
2468
  "android_system_properties",
2344
2469
  "core-foundation-sys",
@@ -2360,12 +2485,13 @@ dependencies = [
2360
2485
 
2361
2486
  [[package]]
2362
2487
  name = "icu_collections"
2363
- version = "2.0.0"
2488
+ version = "2.2.0"
2364
2489
  source = "registry+https://github.com/rust-lang/crates.io-index"
2365
- checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
2490
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
2366
2491
  dependencies = [
2367
2492
  "displaydoc",
2368
2493
  "potential_utf",
2494
+ "utf8_iter",
2369
2495
  "yoke",
2370
2496
  "zerofrom",
2371
2497
  "zerovec",
@@ -2373,9 +2499,9 @@ dependencies = [
2373
2499
 
2374
2500
  [[package]]
2375
2501
  name = "icu_locale_core"
2376
- version = "2.0.0"
2502
+ version = "2.2.0"
2377
2503
  source = "registry+https://github.com/rust-lang/crates.io-index"
2378
- checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
2504
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
2379
2505
  dependencies = [
2380
2506
  "displaydoc",
2381
2507
  "litemap",
@@ -2386,11 +2512,10 @@ dependencies = [
2386
2512
 
2387
2513
  [[package]]
2388
2514
  name = "icu_normalizer"
2389
- version = "2.0.0"
2515
+ version = "2.2.0"
2390
2516
  source = "registry+https://github.com/rust-lang/crates.io-index"
2391
- checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
2517
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
2392
2518
  dependencies = [
2393
- "displaydoc",
2394
2519
  "icu_collections",
2395
2520
  "icu_normalizer_data",
2396
2521
  "icu_properties",
@@ -2401,42 +2526,38 @@ dependencies = [
2401
2526
 
2402
2527
  [[package]]
2403
2528
  name = "icu_normalizer_data"
2404
- version = "2.0.0"
2529
+ version = "2.2.0"
2405
2530
  source = "registry+https://github.com/rust-lang/crates.io-index"
2406
- checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
2531
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
2407
2532
 
2408
2533
  [[package]]
2409
2534
  name = "icu_properties"
2410
- version = "2.0.1"
2535
+ version = "2.2.0"
2411
2536
  source = "registry+https://github.com/rust-lang/crates.io-index"
2412
- checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
2537
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
2413
2538
  dependencies = [
2414
- "displaydoc",
2415
2539
  "icu_collections",
2416
2540
  "icu_locale_core",
2417
2541
  "icu_properties_data",
2418
2542
  "icu_provider",
2419
- "potential_utf",
2420
2543
  "zerotrie",
2421
2544
  "zerovec",
2422
2545
  ]
2423
2546
 
2424
2547
  [[package]]
2425
2548
  name = "icu_properties_data"
2426
- version = "2.0.1"
2549
+ version = "2.2.0"
2427
2550
  source = "registry+https://github.com/rust-lang/crates.io-index"
2428
- checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
2551
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
2429
2552
 
2430
2553
  [[package]]
2431
2554
  name = "icu_provider"
2432
- version = "2.0.0"
2555
+ version = "2.2.0"
2433
2556
  source = "registry+https://github.com/rust-lang/crates.io-index"
2434
- checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
2557
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
2435
2558
  dependencies = [
2436
2559
  "displaydoc",
2437
2560
  "icu_locale_core",
2438
- "stable_deref_trait",
2439
- "tinystr",
2440
2561
  "writeable",
2441
2562
  "yoke",
2442
2563
  "zerofrom",
@@ -2463,9 +2584,9 @@ dependencies = [
2463
2584
 
2464
2585
  [[package]]
2465
2586
  name = "idna_adapter"
2466
- version = "1.2.1"
2587
+ version = "1.2.2"
2467
2588
  source = "registry+https://github.com/rust-lang/crates.io-index"
2468
- checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
2589
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
2469
2590
  dependencies = [
2470
2591
  "icu_normalizer",
2471
2592
  "icu_properties",
@@ -2477,6 +2598,12 @@ version = "0.1.9"
2477
2598
  source = "registry+https://github.com/rust-lang/crates.io-index"
2478
2599
  checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
2479
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
+
2480
2607
  [[package]]
2481
2608
  name = "indenter"
2482
2609
  version = "0.3.4"
@@ -2496,97 +2623,106 @@ dependencies = [
2496
2623
 
2497
2624
  [[package]]
2498
2625
  name = "indexmap"
2499
- version = "2.12.0"
2626
+ version = "2.14.0"
2500
2627
  source = "registry+https://github.com/rust-lang/crates.io-index"
2501
- checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
2628
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
2502
2629
  dependencies = [
2503
2630
  "equivalent",
2504
- "hashbrown 0.16.0",
2631
+ "hashbrown 0.17.1",
2505
2632
  "serde",
2506
2633
  "serde_core",
2507
2634
  ]
2508
2635
 
2509
2636
  [[package]]
2510
- name = "indoc"
2511
- version = "2.0.7"
2637
+ name = "ipnet"
2638
+ version = "2.12.0"
2512
2639
  source = "registry+https://github.com/rust-lang/crates.io-index"
2513
- checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
2514
- dependencies = [
2515
- "rustversion",
2516
- ]
2640
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
2517
2641
 
2518
2642
  [[package]]
2519
- name = "instant"
2520
- version = "0.1.13"
2643
+ name = "itertools"
2644
+ version = "0.13.0"
2521
2645
  source = "registry+https://github.com/rust-lang/crates.io-index"
2522
- checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
2646
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
2523
2647
  dependencies = [
2524
- "cfg-if",
2648
+ "either",
2525
2649
  ]
2526
2650
 
2527
2651
  [[package]]
2528
- name = "integer-encoding"
2529
- version = "3.0.4"
2652
+ name = "itertools"
2653
+ version = "0.15.0"
2530
2654
  source = "registry+https://github.com/rust-lang/crates.io-index"
2531
- checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
2655
+ checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
2656
+ dependencies = [
2657
+ "either",
2658
+ ]
2532
2659
 
2533
2660
  [[package]]
2534
- name = "ipnet"
2535
- version = "2.11.0"
2661
+ name = "itoa"
2662
+ version = "1.0.18"
2536
2663
  source = "registry+https://github.com/rust-lang/crates.io-index"
2537
- checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
2664
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
2538
2665
 
2539
2666
  [[package]]
2540
- name = "iri-string"
2541
- version = "0.7.8"
2667
+ name = "jiff"
2668
+ version = "0.2.32"
2542
2669
  source = "registry+https://github.com/rust-lang/crates.io-index"
2543
- checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
2670
+ checksum = "961d16382652bfdd8c6f68b223b26a8c93e0d475c672f414411db31c6c5c900e"
2544
2671
  dependencies = [
2545
- "memchr",
2546
- "serde",
2672
+ "defmt",
2673
+ "jiff-static",
2674
+ "jiff-tzdb-platform",
2675
+ "log",
2676
+ "portable-atomic",
2677
+ "portable-atomic-util",
2678
+ "serde_core",
2679
+ "windows-link",
2547
2680
  ]
2548
2681
 
2549
2682
  [[package]]
2550
- name = "itertools"
2551
- version = "0.13.0"
2683
+ name = "jiff-static"
2684
+ version = "0.2.32"
2552
2685
  source = "registry+https://github.com/rust-lang/crates.io-index"
2553
- checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
2686
+ checksum = "d0879bd39df99c4c5e2c6615ccc026391a423dde10532c573e6086eb94a802cc"
2554
2687
  dependencies = [
2555
- "either",
2688
+ "proc-macro2",
2689
+ "quote",
2690
+ "syn",
2556
2691
  ]
2557
2692
 
2558
2693
  [[package]]
2559
- name = "itertools"
2560
- version = "0.14.0"
2694
+ name = "jiff-tzdb"
2695
+ version = "0.1.8"
2561
2696
  source = "registry+https://github.com/rust-lang/crates.io-index"
2562
- checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
2563
- dependencies = [
2564
- "either",
2565
- ]
2697
+ checksum = "142bd39932ad231f10513df9ab62661fead8719872150b7ad02a2df79f4e141e"
2566
2698
 
2567
2699
  [[package]]
2568
- name = "itoa"
2569
- version = "1.0.15"
2700
+ name = "jiff-tzdb-platform"
2701
+ version = "0.1.3"
2570
2702
  source = "registry+https://github.com/rust-lang/crates.io-index"
2571
- checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
2703
+ checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
2704
+ dependencies = [
2705
+ "jiff-tzdb",
2706
+ ]
2572
2707
 
2573
2708
  [[package]]
2574
2709
  name = "jobserver"
2575
- version = "0.1.34"
2710
+ version = "0.1.35"
2576
2711
  source = "registry+https://github.com/rust-lang/crates.io-index"
2577
- checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
2712
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
2578
2713
  dependencies = [
2579
- "getrandom 0.3.4",
2714
+ "getrandom 0.4.3",
2580
2715
  "libc",
2581
2716
  ]
2582
2717
 
2583
2718
  [[package]]
2584
2719
  name = "js-sys"
2585
- version = "0.3.81"
2720
+ version = "0.3.103"
2586
2721
  source = "registry+https://github.com/rust-lang/crates.io-index"
2587
- checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
2722
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
2588
2723
  dependencies = [
2589
- "once_cell",
2724
+ "cfg-if",
2725
+ "futures-util",
2590
2726
  "wasm-bindgen",
2591
2727
  ]
2592
2728
 
@@ -2603,35 +2739,34 @@ dependencies = [
2603
2739
 
2604
2740
  [[package]]
2605
2741
  name = "jsonpath-rust"
2606
- version = "0.4.0"
2742
+ version = "1.0.4"
2607
2743
  source = "registry+https://github.com/rust-lang/crates.io-index"
2608
- checksum = "96acbc6188d3bd83519d053efec756aa4419de62ec47be7f28dec297f7dc9eb0"
2744
+ checksum = "633a7320c4bb672863a3782e89b9094ad70285e097ff6832cddd0ec615beadfa"
2609
2745
  dependencies = [
2610
2746
  "pest",
2611
2747
  "pest_derive",
2612
2748
  "regex",
2613
2749
  "serde_json",
2614
- "thiserror 1.0.69",
2750
+ "thiserror 2.0.18",
2615
2751
  ]
2616
2752
 
2617
2753
  [[package]]
2618
2754
  name = "k8s-openapi"
2619
- version = "0.21.1"
2755
+ version = "0.28.0"
2620
2756
  source = "registry+https://github.com/rust-lang/crates.io-index"
2621
- checksum = "550f99d93aa4c2b25de527bce492d772caf5e21d7ac9bd4b508ba781c8d91e30"
2757
+ checksum = "d9c6922f6afe80418dd6019818af5d0d34584c371780ff09b9752370c25b4abb"
2622
2758
  dependencies = [
2623
- "base64 0.21.7",
2624
- "chrono",
2759
+ "base64",
2760
+ "jiff",
2625
2761
  "serde",
2626
- "serde-value",
2627
2762
  "serde_json",
2628
2763
  ]
2629
2764
 
2630
2765
  [[package]]
2631
2766
  name = "kube"
2632
- version = "0.88.1"
2767
+ version = "4.0.0"
2633
2768
  source = "registry+https://github.com/rust-lang/crates.io-index"
2634
- checksum = "462fe330a0617b276ec864c2255810adcdf519ecb6844253c54074b2086a97bc"
2769
+ checksum = "4bb9108095346a7096d11feeaff419c75dddcac1b2f59acb38d7bf3d13c3e146"
2635
2770
  dependencies = [
2636
2771
  "k8s-openapi",
2637
2772
  "kube-client",
@@ -2640,54 +2775,54 @@ dependencies = [
2640
2775
 
2641
2776
  [[package]]
2642
2777
  name = "kube-client"
2643
- version = "0.88.1"
2778
+ version = "4.0.0"
2644
2779
  source = "registry+https://github.com/rust-lang/crates.io-index"
2645
- checksum = "7fe0d65dd6f3adba29cfb84f19dfe55449c7f6c35425f9d8294bec40313e0b64"
2780
+ checksum = "d0f628e05bc2264c21fe10d3d675117dc9b43ea3bf4fb07262a222679757537b"
2646
2781
  dependencies = [
2647
- "base64 0.21.7",
2782
+ "base64",
2648
2783
  "bytes",
2649
- "chrono",
2650
2784
  "either",
2651
2785
  "futures",
2652
- "home",
2653
- "http 0.2.12",
2654
- "http-body 0.4.6",
2655
- "hyper 0.14.32",
2656
- "hyper-rustls 0.24.2",
2786
+ "http 1.4.2",
2787
+ "http-body",
2788
+ "http-body-util",
2789
+ "hyper",
2790
+ "hyper-rustls",
2657
2791
  "hyper-timeout",
2792
+ "hyper-util",
2793
+ "jiff",
2658
2794
  "jsonpath-rust",
2659
2795
  "k8s-openapi",
2660
2796
  "kube-core",
2661
2797
  "pem",
2662
- "pin-project",
2663
- "rustls 0.21.12",
2664
- "rustls-pemfile 1.0.4",
2665
- "secrecy 0.8.0",
2798
+ "rustls",
2799
+ "secrecy",
2666
2800
  "serde",
2801
+ "serde-saphyr",
2667
2802
  "serde_json",
2668
- "serde_yaml",
2669
- "thiserror 1.0.69",
2803
+ "thiserror 2.0.18",
2670
2804
  "tokio",
2671
2805
  "tokio-util",
2672
- "tower 0.4.13",
2673
- "tower-http 0.4.4",
2806
+ "tower",
2807
+ "tower-http",
2674
2808
  "tracing",
2675
2809
  ]
2676
2810
 
2677
2811
  [[package]]
2678
2812
  name = "kube-core"
2679
- version = "0.88.1"
2813
+ version = "4.0.0"
2680
2814
  source = "registry+https://github.com/rust-lang/crates.io-index"
2681
- checksum = "a6b42844e9172f631b8263ea9ce003b9251da13beb1401580937ad206dd82f4c"
2815
+ checksum = "c1b02f5933ba06140d58c7d6727f6c319f0962ec6a344aa5e21e475e891deaa8"
2682
2816
  dependencies = [
2683
- "chrono",
2817
+ "derive_more",
2684
2818
  "form_urlencoded",
2685
- "http 0.2.12",
2819
+ "http 1.4.2",
2820
+ "jiff",
2686
2821
  "k8s-openapi",
2687
- "once_cell",
2688
2822
  "serde",
2823
+ "serde-value",
2689
2824
  "serde_json",
2690
- "thiserror 1.0.69",
2825
+ "thiserror 2.0.18",
2691
2826
  ]
2692
2827
 
2693
2828
  [[package]]
@@ -2764,35 +2899,26 @@ dependencies = [
2764
2899
 
2765
2900
  [[package]]
2766
2901
  name = "libc"
2767
- version = "0.2.177"
2902
+ version = "0.2.186"
2768
2903
  source = "registry+https://github.com/rust-lang/crates.io-index"
2769
- checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
2770
-
2771
- [[package]]
2772
- name = "libloading"
2773
- version = "0.8.9"
2774
- source = "registry+https://github.com/rust-lang/crates.io-index"
2775
- checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
2776
- dependencies = [
2777
- "cfg-if",
2778
- "windows-link",
2779
- ]
2904
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
2780
2905
 
2781
2906
  [[package]]
2782
2907
  name = "libm"
2783
- version = "0.2.15"
2908
+ version = "0.2.16"
2784
2909
  source = "registry+https://github.com/rust-lang/crates.io-index"
2785
- checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
2910
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
2786
2911
 
2787
2912
  [[package]]
2788
2913
  name = "libredox"
2789
- version = "0.1.10"
2914
+ version = "0.1.18"
2790
2915
  source = "registry+https://github.com/rust-lang/crates.io-index"
2791
- checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
2916
+ checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
2792
2917
  dependencies = [
2793
- "bitflags",
2918
+ "bitflags 2.13.0",
2794
2919
  "libc",
2795
- "redox_syscall",
2920
+ "plain",
2921
+ "redox_syscall 0.9.0",
2796
2922
  ]
2797
2923
 
2798
2924
  [[package]]
@@ -2806,20 +2932,11 @@ dependencies = [
2806
2932
  "vcpkg",
2807
2933
  ]
2808
2934
 
2809
- [[package]]
2810
- name = "libz-rs-sys"
2811
- version = "0.5.2"
2812
- source = "registry+https://github.com/rust-lang/crates.io-index"
2813
- checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
2814
- dependencies = [
2815
- "zlib-rs",
2816
- ]
2817
-
2818
2935
  [[package]]
2819
2936
  name = "litemap"
2820
- version = "0.8.0"
2937
+ version = "0.8.2"
2821
2938
  source = "registry+https://github.com/rust-lang/crates.io-index"
2822
- checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
2939
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
2823
2940
 
2824
2941
  [[package]]
2825
2942
  name = "local-channel"
@@ -2849,9 +2966,9 @@ dependencies = [
2849
2966
 
2850
2967
  [[package]]
2851
2968
  name = "log"
2852
- version = "0.4.28"
2969
+ version = "0.4.33"
2853
2970
  source = "registry+https://github.com/rust-lang/crates.io-index"
2854
- checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
2971
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
2855
2972
 
2856
2973
  [[package]]
2857
2974
  name = "lru-slab"
@@ -2861,9 +2978,9 @@ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2861
2978
 
2862
2979
  [[package]]
2863
2980
  name = "lz4_flex"
2864
- version = "0.11.5"
2981
+ version = "0.13.1"
2865
2982
  source = "registry+https://github.com/rust-lang/crates.io-index"
2866
- checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
2983
+ checksum = "7ef0d4ed8669f8f8826eb00dc878084aa8f253506c4fd5e8f58f5bce72ddb97e"
2867
2984
  dependencies = [
2868
2985
  "twox-hash",
2869
2986
  ]
@@ -2884,23 +3001,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2884
3001
  checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
2885
3002
  dependencies = [
2886
3003
  "cfg-if",
2887
- "digest",
3004
+ "digest 0.10.7",
2888
3005
  ]
2889
3006
 
2890
3007
  [[package]]
2891
3008
  name = "memchr"
2892
- version = "2.7.6"
3009
+ version = "2.8.3"
2893
3010
  source = "registry+https://github.com/rust-lang/crates.io-index"
2894
- checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
2895
-
2896
- [[package]]
2897
- name = "memoffset"
2898
- version = "0.9.1"
2899
- source = "registry+https://github.com/rust-lang/crates.io-index"
2900
- checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2901
- dependencies = [
2902
- "autocfg",
2903
- ]
3011
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
2904
3012
 
2905
3013
  [[package]]
2906
3014
  name = "mime"
@@ -2910,9 +3018,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2910
3018
 
2911
3019
  [[package]]
2912
3020
  name = "minicov"
2913
- version = "0.3.7"
3021
+ version = "0.3.8"
2914
3022
  source = "registry+https://github.com/rust-lang/crates.io-index"
2915
- checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
3023
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
2916
3024
  dependencies = [
2917
3025
  "cc",
2918
3026
  "walkdir",
@@ -2936,9 +3044,9 @@ dependencies = [
2936
3044
 
2937
3045
  [[package]]
2938
3046
  name = "mio"
2939
- version = "1.1.0"
3047
+ version = "1.2.1"
2940
3048
  source = "registry+https://github.com/rust-lang/crates.io-index"
2941
- checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
3049
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
2942
3050
  dependencies = [
2943
3051
  "libc",
2944
3052
  "log",
@@ -2961,6 +3069,12 @@ dependencies = [
2961
3069
  "spin 0.5.2",
2962
3070
  ]
2963
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
+
2964
3078
  [[package]]
2965
3079
  name = "nom"
2966
3080
  version = "7.1.3"
@@ -2982,9 +3096,9 @@ dependencies = [
2982
3096
 
2983
3097
  [[package]]
2984
3098
  name = "num-bigint"
2985
- version = "0.4.6"
3099
+ version = "0.4.8"
2986
3100
  source = "registry+https://github.com/rust-lang/crates.io-index"
2987
- checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
3101
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
2988
3102
  dependencies = [
2989
3103
  "num-integer",
2990
3104
  "num-traits",
@@ -2992,17 +3106,16 @@ dependencies = [
2992
3106
 
2993
3107
  [[package]]
2994
3108
  name = "num-bigint-dig"
2995
- version = "0.8.4"
3109
+ version = "0.8.6"
2996
3110
  source = "registry+https://github.com/rust-lang/crates.io-index"
2997
- checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
3111
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
2998
3112
  dependencies = [
2999
- "byteorder",
3000
3113
  "lazy_static",
3001
3114
  "libm",
3002
3115
  "num-integer",
3003
3116
  "num-iter",
3004
3117
  "num-traits",
3005
- "rand 0.8.5",
3118
+ "rand 0.8.7",
3006
3119
  "smallvec",
3007
3120
  "zeroize",
3008
3121
  ]
@@ -3018,9 +3131,9 @@ dependencies = [
3018
3131
 
3019
3132
  [[package]]
3020
3133
  name = "num-conv"
3021
- version = "0.1.0"
3134
+ version = "0.2.2"
3022
3135
  source = "registry+https://github.com/rust-lang/crates.io-index"
3023
- checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
3136
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
3024
3137
 
3025
3138
  [[package]]
3026
3139
  name = "num-derive"
@@ -3044,11 +3157,10 @@ dependencies = [
3044
3157
 
3045
3158
  [[package]]
3046
3159
  name = "num-iter"
3047
- version = "0.1.45"
3160
+ version = "0.1.46"
3048
3161
  source = "registry+https://github.com/rust-lang/crates.io-index"
3049
- checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
3162
+ checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
3050
3163
  dependencies = [
3051
- "autocfg",
3052
3164
  "num-integer",
3053
3165
  "num-traits",
3054
3166
  ]
@@ -3093,9 +3205,9 @@ dependencies = [
3093
3205
 
3094
3206
  [[package]]
3095
3207
  name = "once_cell"
3096
- version = "1.21.3"
3208
+ version = "1.21.4"
3097
3209
  source = "registry+https://github.com/rust-lang/crates.io-index"
3098
- checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
3210
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
3099
3211
  dependencies = [
3100
3212
  "portable-atomic",
3101
3213
  ]
@@ -3108,9 +3220,9 @@ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
3108
3220
 
3109
3221
  [[package]]
3110
3222
  name = "openssl-probe"
3111
- version = "0.1.6"
3223
+ version = "0.2.1"
3112
3224
  source = "registry+https://github.com/rust-lang/crates.io-index"
3113
- checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
3225
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
3114
3226
 
3115
3227
  [[package]]
3116
3228
  name = "opentelemetry"
@@ -3206,7 +3318,7 @@ dependencies = [
3206
3318
  "opentelemetry 0.23.0",
3207
3319
  "ordered-float 4.6.0",
3208
3320
  "percent-encoding",
3209
- "rand 0.8.5",
3321
+ "rand 0.8.7",
3210
3322
  "thiserror 1.0.69",
3211
3323
  ]
3212
3324
 
@@ -3240,9 +3352,19 @@ dependencies = [
3240
3352
 
3241
3353
  [[package]]
3242
3354
  name = "owo-colors"
3243
- version = "4.2.3"
3355
+ version = "4.3.0"
3244
3356
  source = "registry+https://github.com/rust-lang/crates.io-index"
3245
- checksum = "9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52"
3357
+ checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
3358
+
3359
+ [[package]]
3360
+ name = "page_size"
3361
+ version = "0.6.0"
3362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3363
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
3364
+ dependencies = [
3365
+ "libc",
3366
+ "winapi",
3367
+ ]
3246
3368
 
3247
3369
  [[package]]
3248
3370
  name = "parking"
@@ -3268,32 +3390,31 @@ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
3268
3390
  dependencies = [
3269
3391
  "cfg-if",
3270
3392
  "libc",
3271
- "redox_syscall",
3393
+ "redox_syscall 0.5.18",
3272
3394
  "smallvec",
3273
3395
  "windows-link",
3274
3396
  ]
3275
3397
 
3276
3398
  [[package]]
3277
3399
  name = "parquet"
3278
- version = "57.0.0"
3400
+ version = "59.1.0"
3279
3401
  source = "registry+https://github.com/rust-lang/crates.io-index"
3280
- checksum = "7a0f31027ef1af7549f7cec603a9a21dce706d3f8d7c2060a68f43c1773be95a"
3402
+ checksum = "5302d4da74d6596a1f11f9928767995b53bca657cbeea1e4e8c5074f8a1157dd"
3281
3403
  dependencies = [
3282
3404
  "ahash",
3283
3405
  "arrow-array",
3284
3406
  "arrow-buffer",
3285
- "arrow-cast",
3286
3407
  "arrow-data",
3287
3408
  "arrow-ipc",
3288
3409
  "arrow-schema",
3289
3410
  "arrow-select",
3290
- "base64 0.22.1",
3411
+ "base64",
3291
3412
  "brotli",
3292
3413
  "bytes",
3293
3414
  "chrono",
3294
3415
  "flate2",
3295
3416
  "half",
3296
- "hashbrown 0.16.0",
3417
+ "hashbrown 0.17.1",
3297
3418
  "lz4_flex",
3298
3419
  "num-bigint",
3299
3420
  "num-integer",
@@ -3302,7 +3423,6 @@ dependencies = [
3302
3423
  "seq-macro",
3303
3424
  "simdutf8",
3304
3425
  "snap",
3305
- "thrift",
3306
3426
  "twox-hash",
3307
3427
  "zstd",
3308
3428
  ]
@@ -3325,7 +3445,7 @@ version = "3.0.6"
3325
3445
  source = "registry+https://github.com/rust-lang/crates.io-index"
3326
3446
  checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
3327
3447
  dependencies = [
3328
- "base64 0.22.1",
3448
+ "base64",
3329
3449
  "serde_core",
3330
3450
  ]
3331
3451
 
@@ -3346,9 +3466,9 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
3346
3466
 
3347
3467
  [[package]]
3348
3468
  name = "pest"
3349
- version = "2.8.3"
3469
+ version = "2.8.7"
3350
3470
  source = "registry+https://github.com/rust-lang/crates.io-index"
3351
- checksum = "989e7521a040efde50c3ab6bbadafbe15ab6dc042686926be59ac35d74607df4"
3471
+ checksum = "47627dd7305c6a2d6c8c6bcd24c5a4c17dbbf425f4f9c5313e724b38fc9782e9"
3352
3472
  dependencies = [
3353
3473
  "memchr",
3354
3474
  "ucd-trie",
@@ -3356,9 +3476,9 @@ dependencies = [
3356
3476
 
3357
3477
  [[package]]
3358
3478
  name = "pest_derive"
3359
- version = "2.8.3"
3479
+ version = "2.8.7"
3360
3480
  source = "registry+https://github.com/rust-lang/crates.io-index"
3361
- checksum = "187da9a3030dbafabbbfb20cb323b976dc7b7ce91fcd84f2f74d6e31d378e2de"
3481
+ checksum = "4b4254325ecad416ab689e27ba51da03ba01a9632bc6e108f5fe7c3c4ad29d58"
3362
3482
  dependencies = [
3363
3483
  "pest",
3364
3484
  "pest_generator",
@@ -3366,9 +3486,9 @@ dependencies = [
3366
3486
 
3367
3487
  [[package]]
3368
3488
  name = "pest_generator"
3369
- version = "2.8.3"
3489
+ version = "2.8.7"
3370
3490
  source = "registry+https://github.com/rust-lang/crates.io-index"
3371
- checksum = "49b401d98f5757ebe97a26085998d6c0eecec4995cad6ab7fc30ffdf4b052843"
3491
+ checksum = "6c4c0e91ead7a8f7acecbca6f003fc2e8282b1dbe2dd9c9d2f16aba42995e0a7"
3372
3492
  dependencies = [
3373
3493
  "pest",
3374
3494
  "pest_meta",
@@ -3379,12 +3499,11 @@ dependencies = [
3379
3499
 
3380
3500
  [[package]]
3381
3501
  name = "pest_meta"
3382
- version = "2.8.3"
3502
+ version = "2.8.7"
3383
3503
  source = "registry+https://github.com/rust-lang/crates.io-index"
3384
- checksum = "72f27a2cfee9f9039c4d86faa5af122a0ac3851441a34865b8a043b46be0065a"
3504
+ checksum = "f9744bc48116fee06334924bb5f2bad41eed5e89bd26e29b0b799f9a3f82c210"
3385
3505
  dependencies = [
3386
3506
  "pest",
3387
- "sha2",
3388
3507
  ]
3389
3508
 
3390
3509
  [[package]]
@@ -3394,7 +3513,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3394
3513
  checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
3395
3514
  dependencies = [
3396
3515
  "fixedbitset",
3397
- "indexmap 2.12.0",
3516
+ "indexmap 2.14.0",
3398
3517
  ]
3399
3518
 
3400
3519
  [[package]]
@@ -3417,18 +3536,18 @@ dependencies = [
3417
3536
 
3418
3537
  [[package]]
3419
3538
  name = "pin-project"
3420
- version = "1.1.10"
3539
+ version = "1.1.13"
3421
3540
  source = "registry+https://github.com/rust-lang/crates.io-index"
3422
- checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
3541
+ checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
3423
3542
  dependencies = [
3424
3543
  "pin-project-internal",
3425
3544
  ]
3426
3545
 
3427
3546
  [[package]]
3428
3547
  name = "pin-project-internal"
3429
- version = "1.1.10"
3548
+ version = "1.1.13"
3430
3549
  source = "registry+https://github.com/rust-lang/crates.io-index"
3431
- checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
3550
+ checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
3432
3551
  dependencies = [
3433
3552
  "proc-macro2",
3434
3553
  "quote",
@@ -3437,15 +3556,9 @@ dependencies = [
3437
3556
 
3438
3557
  [[package]]
3439
3558
  name = "pin-project-lite"
3440
- version = "0.2.16"
3441
- source = "registry+https://github.com/rust-lang/crates.io-index"
3442
- checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
3443
-
3444
- [[package]]
3445
- name = "pin-utils"
3446
- version = "0.1.0"
3559
+ version = "0.2.17"
3447
3560
  source = "registry+https://github.com/rust-lang/crates.io-index"
3448
- checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
3561
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
3449
3562
 
3450
3563
  [[package]]
3451
3564
  name = "pkcs1"
@@ -3470,9 +3583,15 @@ dependencies = [
3470
3583
 
3471
3584
  [[package]]
3472
3585
  name = "pkg-config"
3473
- version = "0.3.32"
3586
+ version = "0.3.33"
3474
3587
  source = "registry+https://github.com/rust-lang/crates.io-index"
3475
- checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
3588
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
3589
+
3590
+ [[package]]
3591
+ name = "plain"
3592
+ version = "0.2.3"
3593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3594
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
3476
3595
 
3477
3596
  [[package]]
3478
3597
  name = "plotters"
@@ -3504,15 +3623,24 @@ dependencies = [
3504
3623
 
3505
3624
  [[package]]
3506
3625
  name = "portable-atomic"
3507
- version = "1.11.1"
3626
+ version = "1.13.1"
3627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3628
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
3629
+
3630
+ [[package]]
3631
+ name = "portable-atomic-util"
3632
+ version = "0.2.7"
3508
3633
  source = "registry+https://github.com/rust-lang/crates.io-index"
3509
- checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
3634
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
3635
+ dependencies = [
3636
+ "portable-atomic",
3637
+ ]
3510
3638
 
3511
3639
  [[package]]
3512
3640
  name = "potential_utf"
3513
- version = "0.1.3"
3641
+ version = "0.1.5"
3514
3642
  source = "registry+https://github.com/rust-lang/crates.io-index"
3515
- checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
3643
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
3516
3644
  dependencies = [
3517
3645
  "zerovec",
3518
3646
  ]
@@ -3532,21 +3660,11 @@ dependencies = [
3532
3660
  "zerocopy",
3533
3661
  ]
3534
3662
 
3535
- [[package]]
3536
- name = "prettyplease"
3537
- version = "0.2.37"
3538
- source = "registry+https://github.com/rust-lang/crates.io-index"
3539
- checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
3540
- dependencies = [
3541
- "proc-macro2",
3542
- "syn",
3543
- ]
3544
-
3545
3663
  [[package]]
3546
3664
  name = "proc-macro2"
3547
- version = "1.0.103"
3665
+ version = "1.0.106"
3548
3666
  source = "registry+https://github.com/rust-lang/crates.io-index"
3549
- checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
3667
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
3550
3668
  dependencies = [
3551
3669
  "unicode-ident",
3552
3670
  ]
@@ -3588,31 +3706,28 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
3588
3706
 
3589
3707
  [[package]]
3590
3708
  name = "pyo3"
3591
- version = "0.24.2"
3709
+ version = "0.29.0"
3592
3710
  source = "registry+https://github.com/rust-lang/crates.io-index"
3593
- checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
3711
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
3594
3712
  dependencies = [
3595
3713
  "anyhow",
3596
- "cfg-if",
3597
3714
  "chrono",
3598
- "indoc",
3599
3715
  "libc",
3600
- "memoffset",
3601
3716
  "once_cell",
3602
3717
  "portable-atomic",
3603
3718
  "pyo3-build-config",
3604
3719
  "pyo3-ffi",
3605
3720
  "pyo3-macros",
3606
- "unindent",
3607
3721
  ]
3608
3722
 
3609
3723
  [[package]]
3610
3724
  name = "pyo3-async-runtimes"
3611
- version = "0.24.0"
3725
+ version = "0.29.0"
3612
3726
  source = "registry+https://github.com/rust-lang/crates.io-index"
3613
- checksum = "dd0b83dc42f9d41f50d38180dad65f0c99763b65a3ff2a81bf351dd35a1df8bf"
3727
+ checksum = "b3ef68daa7316a3fac65e5e18b2203f010346de1c1c53456811a2624673ab046"
3614
3728
  dependencies = [
3615
- "futures",
3729
+ "futures-channel",
3730
+ "futures-util",
3616
3731
  "once_cell",
3617
3732
  "pin-project-lite",
3618
3733
  "pyo3",
@@ -3622,9 +3737,9 @@ dependencies = [
3622
3737
 
3623
3738
  [[package]]
3624
3739
  name = "pyo3-async-runtimes-macros"
3625
- version = "0.24.0"
3740
+ version = "0.29.0"
3626
3741
  source = "registry+https://github.com/rust-lang/crates.io-index"
3627
- checksum = "cf103ba4062fbb1e8022d9ed9b9830fbab074b2db0a0496c78e45a62f4330bcd"
3742
+ checksum = "faf75ff3922e6830adcaa30f3a359ce861326f6161f16a13d97adb40ba6a744a"
3628
3743
  dependencies = [
3629
3744
  "proc-macro2",
3630
3745
  "quote",
@@ -3633,19 +3748,18 @@ dependencies = [
3633
3748
 
3634
3749
  [[package]]
3635
3750
  name = "pyo3-build-config"
3636
- version = "0.24.2"
3751
+ version = "0.29.0"
3637
3752
  source = "registry+https://github.com/rust-lang/crates.io-index"
3638
- checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
3753
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
3639
3754
  dependencies = [
3640
- "once_cell",
3641
3755
  "target-lexicon",
3642
3756
  ]
3643
3757
 
3644
3758
  [[package]]
3645
3759
  name = "pyo3-ffi"
3646
- version = "0.24.2"
3760
+ version = "0.29.0"
3647
3761
  source = "registry+https://github.com/rust-lang/crates.io-index"
3648
- checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
3762
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
3649
3763
  dependencies = [
3650
3764
  "libc",
3651
3765
  "pyo3-build-config",
@@ -3653,9 +3767,9 @@ dependencies = [
3653
3767
 
3654
3768
  [[package]]
3655
3769
  name = "pyo3-macros"
3656
- version = "0.24.2"
3770
+ version = "0.29.0"
3657
3771
  source = "registry+https://github.com/rust-lang/crates.io-index"
3658
- checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
3772
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
3659
3773
  dependencies = [
3660
3774
  "proc-macro2",
3661
3775
  "pyo3-macros-backend",
@@ -3665,20 +3779,19 @@ dependencies = [
3665
3779
 
3666
3780
  [[package]]
3667
3781
  name = "pyo3-macros-backend"
3668
- version = "0.24.2"
3782
+ version = "0.29.0"
3669
3783
  source = "registry+https://github.com/rust-lang/crates.io-index"
3670
- checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
3784
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
3671
3785
  dependencies = [
3672
3786
  "heck",
3673
3787
  "proc-macro2",
3674
- "pyo3-build-config",
3675
3788
  "quote",
3676
3789
  "syn",
3677
3790
  ]
3678
3791
 
3679
3792
  [[package]]
3680
3793
  name = "python-auditor"
3681
- version = "0.10.1"
3794
+ version = "0.11.0"
3682
3795
  dependencies = [
3683
3796
  "anyhow",
3684
3797
  "auditor",
@@ -3693,20 +3806,20 @@ dependencies = [
3693
3806
 
3694
3807
  [[package]]
3695
3808
  name = "quickcheck"
3696
- version = "1.0.3"
3809
+ version = "1.1.0"
3697
3810
  source = "registry+https://github.com/rust-lang/crates.io-index"
3698
- checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
3811
+ checksum = "95c589f335db0f6aaa168a7cd27b1fc6920f5e1470c804f814d9cd6e62a0f70b"
3699
3812
  dependencies = [
3700
3813
  "env_logger",
3701
3814
  "log",
3702
- "rand 0.8.5",
3815
+ "rand 0.10.2",
3703
3816
  ]
3704
3817
 
3705
3818
  [[package]]
3706
3819
  name = "quickcheck_macros"
3707
- version = "1.1.0"
3820
+ version = "1.2.0"
3708
3821
  source = "registry+https://github.com/rust-lang/crates.io-index"
3709
- checksum = "f71ee38b42f8459a88d3362be6f9b841ad2d5421844f61eb1c59c11bff3ac14a"
3822
+ checksum = "a9a28b8493dd664c8b171dd944da82d933f7d456b829bfb236738e1fe06c5ba4"
3710
3823
  dependencies = [
3711
3824
  "proc-macro2",
3712
3825
  "quote",
@@ -3715,9 +3828,9 @@ dependencies = [
3715
3828
 
3716
3829
  [[package]]
3717
3830
  name = "quinn"
3718
- version = "0.11.9"
3831
+ version = "0.11.11"
3719
3832
  source = "registry+https://github.com/rust-lang/crates.io-index"
3720
- checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
3833
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
3721
3834
  dependencies = [
3722
3835
  "bytes",
3723
3836
  "cfg_aliases",
@@ -3725,9 +3838,9 @@ dependencies = [
3725
3838
  "quinn-proto",
3726
3839
  "quinn-udp",
3727
3840
  "rustc-hash",
3728
- "rustls 0.23.34",
3729
- "socket2 0.6.1",
3730
- "thiserror 2.0.17",
3841
+ "rustls",
3842
+ "socket2 0.6.4",
3843
+ "thiserror 2.0.18",
3731
3844
  "tokio",
3732
3845
  "tracing",
3733
3846
  "web-time",
@@ -3735,20 +3848,21 @@ dependencies = [
3735
3848
 
3736
3849
  [[package]]
3737
3850
  name = "quinn-proto"
3738
- version = "0.11.13"
3851
+ version = "0.11.16"
3739
3852
  source = "registry+https://github.com/rust-lang/crates.io-index"
3740
- checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
3853
+ checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
3741
3854
  dependencies = [
3742
3855
  "bytes",
3743
- "getrandom 0.3.4",
3856
+ "getrandom 0.4.3",
3744
3857
  "lru-slab",
3745
- "rand 0.9.2",
3858
+ "rand 0.10.2",
3859
+ "rand_pcg",
3746
3860
  "ring",
3747
3861
  "rustc-hash",
3748
- "rustls 0.23.34",
3862
+ "rustls",
3749
3863
  "rustls-pki-types",
3750
3864
  "slab",
3751
- "thiserror 2.0.17",
3865
+ "thiserror 2.0.18",
3752
3866
  "tinyvec",
3753
3867
  "tracing",
3754
3868
  "web-time",
@@ -3756,23 +3870,23 @@ dependencies = [
3756
3870
 
3757
3871
  [[package]]
3758
3872
  name = "quinn-udp"
3759
- version = "0.5.14"
3873
+ version = "0.5.15"
3760
3874
  source = "registry+https://github.com/rust-lang/crates.io-index"
3761
- checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
3875
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
3762
3876
  dependencies = [
3763
3877
  "cfg_aliases",
3764
3878
  "libc",
3765
3879
  "once_cell",
3766
- "socket2 0.6.1",
3880
+ "socket2 0.6.4",
3767
3881
  "tracing",
3768
- "windows-sys 0.60.2",
3882
+ "windows-sys 0.61.2",
3769
3883
  ]
3770
3884
 
3771
3885
  [[package]]
3772
3886
  name = "quote"
3773
- version = "1.0.41"
3887
+ version = "1.0.46"
3774
3888
  source = "registry+https://github.com/rust-lang/crates.io-index"
3775
- checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
3889
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
3776
3890
  dependencies = [
3777
3891
  "proc-macro2",
3778
3892
  ]
@@ -3783,25 +3897,32 @@ version = "5.3.0"
3783
3897
  source = "registry+https://github.com/rust-lang/crates.io-index"
3784
3898
  checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
3785
3899
 
3900
+ [[package]]
3901
+ name = "r-efi"
3902
+ version = "6.0.0"
3903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3904
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
3905
+
3786
3906
  [[package]]
3787
3907
  name = "rand"
3788
- version = "0.8.5"
3908
+ version = "0.8.7"
3789
3909
  source = "registry+https://github.com/rust-lang/crates.io-index"
3790
- checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
3910
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
3791
3911
  dependencies = [
3792
3912
  "libc",
3793
- "rand_chacha 0.3.1",
3913
+ "rand_chacha",
3794
3914
  "rand_core 0.6.4",
3795
3915
  ]
3796
3916
 
3797
3917
  [[package]]
3798
3918
  name = "rand"
3799
- version = "0.9.2"
3919
+ version = "0.10.2"
3800
3920
  source = "registry+https://github.com/rust-lang/crates.io-index"
3801
- checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
3921
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
3802
3922
  dependencies = [
3803
- "rand_chacha 0.9.0",
3804
- "rand_core 0.9.3",
3923
+ "chacha20",
3924
+ "getrandom 0.4.3",
3925
+ "rand_core 0.10.1",
3805
3926
  ]
3806
3927
 
3807
3928
  [[package]]
@@ -3814,49 +3935,45 @@ dependencies = [
3814
3935
  "rand_core 0.6.4",
3815
3936
  ]
3816
3937
 
3817
- [[package]]
3818
- name = "rand_chacha"
3819
- version = "0.9.0"
3820
- source = "registry+https://github.com/rust-lang/crates.io-index"
3821
- checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
3822
- dependencies = [
3823
- "ppv-lite86",
3824
- "rand_core 0.9.3",
3825
- ]
3826
-
3827
3938
  [[package]]
3828
3939
  name = "rand_core"
3829
3940
  version = "0.6.4"
3830
3941
  source = "registry+https://github.com/rust-lang/crates.io-index"
3831
3942
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
3832
3943
  dependencies = [
3833
- "getrandom 0.2.16",
3944
+ "getrandom 0.2.17",
3834
3945
  ]
3835
3946
 
3836
3947
  [[package]]
3837
3948
  name = "rand_core"
3838
- version = "0.9.3"
3949
+ version = "0.10.1"
3839
3950
  source = "registry+https://github.com/rust-lang/crates.io-index"
3840
- checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
3841
- dependencies = [
3842
- "getrandom 0.3.4",
3843
- ]
3951
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
3844
3952
 
3845
3953
  [[package]]
3846
3954
  name = "rand_distr"
3847
- version = "0.5.1"
3955
+ version = "0.6.0"
3848
3956
  source = "registry+https://github.com/rust-lang/crates.io-index"
3849
- checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
3957
+ checksum = "4d431c2703ccf129de4d45253c03f49ebb22b97d6ad79ee3ecfc7e3f4862c1d8"
3850
3958
  dependencies = [
3851
3959
  "num-traits",
3852
- "rand 0.9.2",
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",
3853
3970
  ]
3854
3971
 
3855
3972
  [[package]]
3856
3973
  name = "rayon"
3857
- version = "1.11.0"
3974
+ version = "1.12.0"
3858
3975
  source = "registry+https://github.com/rust-lang/crates.io-index"
3859
- checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
3976
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
3860
3977
  dependencies = [
3861
3978
  "either",
3862
3979
  "rayon-core",
@@ -3878,7 +3995,16 @@ version = "0.5.18"
3878
3995
  source = "registry+https://github.com/rust-lang/crates.io-index"
3879
3996
  checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
3880
3997
  dependencies = [
3881
- "bitflags",
3998
+ "bitflags 2.13.0",
3999
+ ]
4000
+
4001
+ [[package]]
4002
+ name = "redox_syscall"
4003
+ version = "0.9.0"
4004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4005
+ checksum = "c5102a6aaa05aa011a238e178e6bca86d2cb56fc9f586d37cb80f5bca6e07759"
4006
+ dependencies = [
4007
+ "bitflags 2.13.0",
3882
4008
  ]
3883
4009
 
3884
4010
  [[package]]
@@ -3903,9 +4029,9 @@ dependencies = [
3903
4029
 
3904
4030
  [[package]]
3905
4031
  name = "regex"
3906
- version = "1.12.2"
4032
+ version = "1.13.0"
3907
4033
  source = "registry+https://github.com/rust-lang/crates.io-index"
3908
- checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
4034
+ checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2"
3909
4035
  dependencies = [
3910
4036
  "aho-corasick",
3911
4037
  "memchr",
@@ -3915,9 +4041,9 @@ dependencies = [
3915
4041
 
3916
4042
  [[package]]
3917
4043
  name = "regex-automata"
3918
- version = "0.4.13"
4044
+ version = "0.4.15"
3919
4045
  source = "registry+https://github.com/rust-lang/crates.io-index"
3920
- checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
4046
+ checksum = "1f388202e4b80542a0921078cc23b6333bcf1409c1e3f86404cae4766a6131db"
3921
4047
  dependencies = [
3922
4048
  "aho-corasick",
3923
4049
  "memchr",
@@ -3926,56 +4052,56 @@ dependencies = [
3926
4052
 
3927
4053
  [[package]]
3928
4054
  name = "regex-lite"
3929
- version = "0.1.8"
4055
+ version = "0.1.9"
3930
4056
  source = "registry+https://github.com/rust-lang/crates.io-index"
3931
- checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
4057
+ checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
3932
4058
 
3933
4059
  [[package]]
3934
4060
  name = "regex-syntax"
3935
- version = "0.8.8"
4061
+ version = "0.8.11"
3936
4062
  source = "registry+https://github.com/rust-lang/crates.io-index"
3937
- checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
4063
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
3938
4064
 
3939
4065
  [[package]]
3940
4066
  name = "reqwest"
3941
- version = "0.12.24"
4067
+ version = "0.12.28"
3942
4068
  source = "registry+https://github.com/rust-lang/crates.io-index"
3943
- checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
4069
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
3944
4070
  dependencies = [
3945
- "base64 0.22.1",
4071
+ "base64",
3946
4072
  "bytes",
3947
4073
  "futures-channel",
3948
4074
  "futures-core",
3949
4075
  "futures-util",
3950
- "http 1.3.1",
3951
- "http-body 1.0.1",
4076
+ "http 1.4.2",
4077
+ "http-body",
3952
4078
  "http-body-util",
3953
- "hyper 1.7.0",
3954
- "hyper-rustls 0.27.7",
4079
+ "hyper",
4080
+ "hyper-rustls",
3955
4081
  "hyper-util",
3956
4082
  "js-sys",
3957
4083
  "log",
3958
4084
  "percent-encoding",
3959
4085
  "pin-project-lite",
3960
4086
  "quinn",
3961
- "rustls 0.23.34",
4087
+ "rustls",
3962
4088
  "rustls-pki-types",
3963
4089
  "serde",
3964
4090
  "serde_json",
3965
4091
  "serde_urlencoded",
3966
4092
  "sync_wrapper",
3967
4093
  "tokio",
3968
- "tokio-rustls 0.26.4",
4094
+ "tokio-rustls",
3969
4095
  "tokio-util",
3970
- "tower 0.5.2",
3971
- "tower-http 0.6.6",
4096
+ "tower",
4097
+ "tower-http",
3972
4098
  "tower-service",
3973
4099
  "url",
3974
4100
  "wasm-bindgen",
3975
4101
  "wasm-bindgen-futures",
3976
4102
  "wasm-streams",
3977
4103
  "web-sys",
3978
- "webpki-roots 1.0.3",
4104
+ "webpki-roots 1.0.8",
3979
4105
  ]
3980
4106
 
3981
4107
  [[package]]
@@ -3996,13 +4122,12 @@ dependencies = [
3996
4122
 
3997
4123
  [[package]]
3998
4124
  name = "rhai"
3999
- version = "1.23.4"
4125
+ version = "1.25.1"
4000
4126
  source = "registry+https://github.com/rust-lang/crates.io-index"
4001
- checksum = "527390cc333a8d2cd8237890e15c36518c26f8b54c903d86fc59f42f08d25594"
4127
+ checksum = "dd4dd0f8c36625202a4ba553c416c19b719947cd2a31d1bda06126e4a5727daf"
4002
4128
  dependencies = [
4003
4129
  "ahash",
4004
- "bitflags",
4005
- "instant",
4130
+ "bitflags 2.13.0",
4006
4131
  "no-std-compat",
4007
4132
  "num-traits",
4008
4133
  "once_cell",
@@ -4011,13 +4136,14 @@ dependencies = [
4011
4136
  "smallvec",
4012
4137
  "smartstring",
4013
4138
  "thin-vec",
4139
+ "web-time",
4014
4140
  ]
4015
4141
 
4016
4142
  [[package]]
4017
4143
  name = "rhai_codegen"
4018
- version = "3.1.0"
4144
+ version = "3.2.0"
4019
4145
  source = "registry+https://github.com/rust-lang/crates.io-index"
4020
- checksum = "d4322a2a4e8cf30771dd9f27f7f37ca9ac8fe812dddd811096a98483080dabe6"
4146
+ checksum = "3cd3a7535e50bf36857e7be7bec276d334e8c2dfa469c2201226fd01638ea5ca"
4021
4147
  dependencies = [
4022
4148
  "proc-macro2",
4023
4149
  "quote",
@@ -4032,32 +4158,43 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
4032
4158
  dependencies = [
4033
4159
  "cc",
4034
4160
  "cfg-if",
4035
- "getrandom 0.2.16",
4161
+ "getrandom 0.2.17",
4036
4162
  "libc",
4037
4163
  "untrusted",
4038
4164
  "windows-sys 0.52.0",
4039
4165
  ]
4040
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
+
4041
4176
  [[package]]
4042
4177
  name = "ron"
4043
- version = "0.8.1"
4178
+ version = "0.12.2"
4044
4179
  source = "registry+https://github.com/rust-lang/crates.io-index"
4045
- checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94"
4180
+ checksum = "81116b9531d61eabc41aeb228e4b6b2435bcca3233b98cf3b3077d4e6e9debb3"
4046
4181
  dependencies = [
4047
- "base64 0.21.7",
4048
- "bitflags",
4182
+ "bitflags 2.13.0",
4183
+ "once_cell",
4049
4184
  "serde",
4050
4185
  "serde_derive",
4186
+ "typeid",
4187
+ "unicode-ident",
4051
4188
  ]
4052
4189
 
4053
4190
  [[package]]
4054
4191
  name = "rsa"
4055
- version = "0.9.8"
4192
+ version = "0.9.10"
4056
4193
  source = "registry+https://github.com/rust-lang/crates.io-index"
4057
- checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
4194
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
4058
4195
  dependencies = [
4059
- "const-oid",
4060
- "digest",
4196
+ "const-oid 0.9.6",
4197
+ "digest 0.10.7",
4061
4198
  "num-bigint-dig",
4062
4199
  "num-integer",
4063
4200
  "num-traits",
@@ -4091,26 +4228,26 @@ dependencies = [
4091
4228
  "chrono",
4092
4229
  "config",
4093
4230
  "parquet",
4094
- "secrecy 0.10.3",
4231
+ "secrecy",
4095
4232
  "serde",
4096
4233
  "serde-aux",
4097
4234
  "serde_json",
4098
4235
  "sqlx",
4099
- "thiserror 2.0.17",
4236
+ "thiserror 2.0.18",
4100
4237
  "tokio",
4101
4238
  ]
4102
4239
 
4103
4240
  [[package]]
4104
4241
  name = "rustc-demangle"
4105
- version = "0.1.26"
4242
+ version = "0.1.28"
4106
4243
  source = "registry+https://github.com/rust-lang/crates.io-index"
4107
- checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
4244
+ checksum = "b74b56ffa8bb2830709a538c2cbcae9aa062db0d2a42563bfb09bdaae44020eb"
4108
4245
 
4109
4246
  [[package]]
4110
4247
  name = "rustc-hash"
4111
- version = "2.1.1"
4248
+ version = "2.1.3"
4112
4249
  source = "registry+https://github.com/rust-lang/crates.io-index"
4113
- checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
4250
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
4114
4251
 
4115
4252
  [[package]]
4116
4253
  name = "rustc_version"
@@ -4132,87 +4269,47 @@ dependencies = [
4132
4269
 
4133
4270
  [[package]]
4134
4271
  name = "rustls"
4135
- version = "0.21.12"
4136
- source = "registry+https://github.com/rust-lang/crates.io-index"
4137
- checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
4138
- dependencies = [
4139
- "log",
4140
- "ring",
4141
- "rustls-webpki 0.101.7",
4142
- "sct",
4143
- ]
4144
-
4145
- [[package]]
4146
- name = "rustls"
4147
- version = "0.23.34"
4272
+ version = "0.23.41"
4148
4273
  source = "registry+https://github.com/rust-lang/crates.io-index"
4149
- checksum = "6a9586e9ee2b4f8fab52a0048ca7334d7024eef48e2cb9407e3497bb7cab7fa7"
4274
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
4150
4275
  dependencies = [
4151
4276
  "aws-lc-rs",
4152
4277
  "log",
4153
4278
  "once_cell",
4154
4279
  "ring",
4155
4280
  "rustls-pki-types",
4156
- "rustls-webpki 0.103.7",
4281
+ "rustls-webpki",
4157
4282
  "subtle",
4158
4283
  "zeroize",
4159
4284
  ]
4160
4285
 
4161
4286
  [[package]]
4162
4287
  name = "rustls-native-certs"
4163
- version = "0.6.3"
4288
+ version = "0.8.4"
4164
4289
  source = "registry+https://github.com/rust-lang/crates.io-index"
4165
- checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
4290
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
4166
4291
  dependencies = [
4167
4292
  "openssl-probe",
4168
- "rustls-pemfile 1.0.4",
4293
+ "rustls-pki-types",
4169
4294
  "schannel",
4170
4295
  "security-framework",
4171
4296
  ]
4172
4297
 
4173
- [[package]]
4174
- name = "rustls-pemfile"
4175
- version = "1.0.4"
4176
- source = "registry+https://github.com/rust-lang/crates.io-index"
4177
- checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
4178
- dependencies = [
4179
- "base64 0.21.7",
4180
- ]
4181
-
4182
- [[package]]
4183
- name = "rustls-pemfile"
4184
- version = "2.2.0"
4185
- source = "registry+https://github.com/rust-lang/crates.io-index"
4186
- checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
4187
- dependencies = [
4188
- "rustls-pki-types",
4189
- ]
4190
-
4191
4298
  [[package]]
4192
4299
  name = "rustls-pki-types"
4193
- version = "1.12.0"
4194
- source = "registry+https://github.com/rust-lang/crates.io-index"
4195
- checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
4196
- dependencies = [
4197
- "web-time",
4198
- "zeroize",
4199
- ]
4200
-
4201
- [[package]]
4202
- name = "rustls-webpki"
4203
- version = "0.101.7"
4300
+ version = "1.15.0"
4204
4301
  source = "registry+https://github.com/rust-lang/crates.io-index"
4205
- checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
4302
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
4206
4303
  dependencies = [
4207
- "ring",
4208
- "untrusted",
4304
+ "web-time",
4305
+ "zeroize",
4209
4306
  ]
4210
4307
 
4211
4308
  [[package]]
4212
4309
  name = "rustls-webpki"
4213
- version = "0.103.7"
4310
+ version = "0.103.13"
4214
4311
  source = "registry+https://github.com/rust-lang/crates.io-index"
4215
- checksum = "e10b3f4191e8a80e6b43eebabfac91e5dcecebb27a71f04e820c47ec41d314bf"
4312
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
4216
4313
  dependencies = [
4217
4314
  "aws-lc-rs",
4218
4315
  "ring",
@@ -4222,15 +4319,15 @@ dependencies = [
4222
4319
 
4223
4320
  [[package]]
4224
4321
  name = "rustversion"
4225
- version = "1.0.22"
4322
+ version = "1.0.23"
4226
4323
  source = "registry+https://github.com/rust-lang/crates.io-index"
4227
- checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
4324
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
4228
4325
 
4229
4326
  [[package]]
4230
4327
  name = "ryu"
4231
- version = "1.0.20"
4328
+ version = "1.0.23"
4232
4329
  source = "registry+https://github.com/rust-lang/crates.io-index"
4233
- checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
4330
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
4234
4331
 
4235
4332
  [[package]]
4236
4333
  name = "same-file"
@@ -4243,9 +4340,9 @@ dependencies = [
4243
4340
 
4244
4341
  [[package]]
4245
4342
  name = "schannel"
4246
- version = "0.1.28"
4343
+ version = "0.1.29"
4247
4344
  source = "registry+https://github.com/rust-lang/crates.io-index"
4248
- checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
4345
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
4249
4346
  dependencies = [
4250
4347
  "windows-sys 0.61.2",
4251
4348
  ]
@@ -4264,9 +4361,9 @@ dependencies = [
4264
4361
 
4265
4362
  [[package]]
4266
4363
  name = "schemars"
4267
- version = "1.0.4"
4364
+ version = "1.2.1"
4268
4365
  source = "registry+https://github.com/rust-lang/crates.io-index"
4269
- checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0"
4366
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
4270
4367
  dependencies = [
4271
4368
  "dyn-clone",
4272
4369
  "ref-cast",
@@ -4280,26 +4377,6 @@ version = "1.2.0"
4280
4377
  source = "registry+https://github.com/rust-lang/crates.io-index"
4281
4378
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
4282
4379
 
4283
- [[package]]
4284
- name = "sct"
4285
- version = "0.7.1"
4286
- source = "registry+https://github.com/rust-lang/crates.io-index"
4287
- checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
4288
- dependencies = [
4289
- "ring",
4290
- "untrusted",
4291
- ]
4292
-
4293
- [[package]]
4294
- name = "secrecy"
4295
- version = "0.8.0"
4296
- source = "registry+https://github.com/rust-lang/crates.io-index"
4297
- checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e"
4298
- dependencies = [
4299
- "serde",
4300
- "zeroize",
4301
- ]
4302
-
4303
4380
  [[package]]
4304
4381
  name = "secrecy"
4305
4382
  version = "0.10.3"
@@ -4312,11 +4389,11 @@ dependencies = [
4312
4389
 
4313
4390
  [[package]]
4314
4391
  name = "security-framework"
4315
- version = "2.11.1"
4392
+ version = "3.7.0"
4316
4393
  source = "registry+https://github.com/rust-lang/crates.io-index"
4317
- checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
4394
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
4318
4395
  dependencies = [
4319
- "bitflags",
4396
+ "bitflags 2.13.0",
4320
4397
  "core-foundation",
4321
4398
  "core-foundation-sys",
4322
4399
  "libc",
@@ -4325,9 +4402,9 @@ dependencies = [
4325
4402
 
4326
4403
  [[package]]
4327
4404
  name = "security-framework-sys"
4328
- version = "2.15.0"
4405
+ version = "2.17.0"
4329
4406
  source = "registry+https://github.com/rust-lang/crates.io-index"
4330
- checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
4407
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
4331
4408
  dependencies = [
4332
4409
  "core-foundation-sys",
4333
4410
  "libc",
@@ -4335,9 +4412,9 @@ dependencies = [
4335
4412
 
4336
4413
  [[package]]
4337
4414
  name = "semver"
4338
- version = "1.0.27"
4415
+ version = "1.0.28"
4339
4416
  source = "registry+https://github.com/rust-lang/crates.io-index"
4340
- checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
4417
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
4341
4418
 
4342
4419
  [[package]]
4343
4420
  name = "seq-macro"
@@ -4367,6 +4444,25 @@ dependencies = [
4367
4444
  "serde_json",
4368
4445
  ]
4369
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
+
4370
4466
  [[package]]
4371
4467
  name = "serde-untagged"
4372
4468
  version = "0.1.9"
@@ -4411,15 +4507,15 @@ dependencies = [
4411
4507
 
4412
4508
  [[package]]
4413
4509
  name = "serde_json"
4414
- version = "1.0.145"
4510
+ version = "1.0.150"
4415
4511
  source = "registry+https://github.com/rust-lang/crates.io-index"
4416
- checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
4512
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
4417
4513
  dependencies = [
4418
4514
  "itoa",
4419
4515
  "memchr",
4420
- "ryu",
4421
4516
  "serde",
4422
4517
  "serde_core",
4518
+ "zmij",
4423
4519
  ]
4424
4520
 
4425
4521
  [[package]]
@@ -4432,14 +4528,14 @@ dependencies = [
4432
4528
  "futures",
4433
4529
  "percent-encoding",
4434
4530
  "serde",
4435
- "thiserror 2.0.17",
4531
+ "thiserror 2.0.18",
4436
4532
  ]
4437
4533
 
4438
4534
  [[package]]
4439
4535
  name = "serde_spanned"
4440
- version = "1.0.3"
4536
+ version = "1.1.1"
4441
4537
  source = "registry+https://github.com/rust-lang/crates.io-index"
4442
- checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
4538
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
4443
4539
  dependencies = [
4444
4540
  "serde_core",
4445
4541
  ]
@@ -4458,17 +4554,18 @@ dependencies = [
4458
4554
 
4459
4555
  [[package]]
4460
4556
  name = "serde_with"
4461
- version = "3.15.1"
4557
+ version = "3.21.0"
4462
4558
  source = "registry+https://github.com/rust-lang/crates.io-index"
4463
- checksum = "aa66c845eee442168b2c8134fec70ac50dc20e760769c8ba0ad1319ca1959b04"
4559
+ checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
4464
4560
  dependencies = [
4465
- "base64 0.22.1",
4561
+ "base64",
4562
+ "bs58",
4466
4563
  "chrono",
4467
4564
  "hex",
4468
4565
  "indexmap 1.9.3",
4469
- "indexmap 2.12.0",
4566
+ "indexmap 2.14.0",
4470
4567
  "schemars 0.9.0",
4471
- "schemars 1.0.4",
4568
+ "schemars 1.2.1",
4472
4569
  "serde_core",
4473
4570
  "serde_json",
4474
4571
  "serde_with_macros",
@@ -4477,11 +4574,11 @@ dependencies = [
4477
4574
 
4478
4575
  [[package]]
4479
4576
  name = "serde_with_macros"
4480
- version = "3.15.1"
4577
+ version = "3.21.0"
4481
4578
  source = "registry+https://github.com/rust-lang/crates.io-index"
4482
- checksum = "b91a903660542fced4e99881aa481bdbaec1634568ee02e0b8bd57c64cb38955"
4579
+ checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
4483
4580
  dependencies = [
4484
- "darling 0.21.3",
4581
+ "darling 0.23.0",
4485
4582
  "proc-macro2",
4486
4583
  "quote",
4487
4584
  "syn",
@@ -4493,7 +4590,7 @@ version = "0.9.34+deprecated"
4493
4590
  source = "registry+https://github.com/rust-lang/crates.io-index"
4494
4591
  checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
4495
4592
  dependencies = [
4496
- "indexmap 2.12.0",
4593
+ "indexmap 2.14.0",
4497
4594
  "itoa",
4498
4595
  "ryu",
4499
4596
  "serde",
@@ -4502,13 +4599,24 @@ dependencies = [
4502
4599
 
4503
4600
  [[package]]
4504
4601
  name = "sha1"
4505
- version = "0.10.6"
4602
+ version = "0.10.7"
4603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4604
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
4605
+ dependencies = [
4606
+ "cfg-if",
4607
+ "cpufeatures 0.2.17",
4608
+ "digest 0.10.7",
4609
+ ]
4610
+
4611
+ [[package]]
4612
+ name = "sha1"
4613
+ version = "0.11.0"
4506
4614
  source = "registry+https://github.com/rust-lang/crates.io-index"
4507
- checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
4615
+ checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
4508
4616
  dependencies = [
4509
4617
  "cfg-if",
4510
- "cpufeatures",
4511
- "digest",
4618
+ "cpufeatures 0.3.0",
4619
+ "digest 0.11.3",
4512
4620
  ]
4513
4621
 
4514
4622
  [[package]]
@@ -4518,8 +4626,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4518
4626
  checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
4519
4627
  dependencies = [
4520
4628
  "cfg-if",
4521
- "cpufeatures",
4522
- "digest",
4629
+ "cpufeatures 0.2.17",
4630
+ "digest 0.10.7",
4523
4631
  ]
4524
4632
 
4525
4633
  [[package]]
@@ -4533,22 +4641,23 @@ dependencies = [
4533
4641
 
4534
4642
  [[package]]
4535
4643
  name = "shell-words"
4536
- version = "1.1.0"
4644
+ version = "1.1.1"
4537
4645
  source = "registry+https://github.com/rust-lang/crates.io-index"
4538
- checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
4646
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
4539
4647
 
4540
4648
  [[package]]
4541
4649
  name = "shlex"
4542
- version = "1.3.0"
4650
+ version = "2.0.1"
4543
4651
  source = "registry+https://github.com/rust-lang/crates.io-index"
4544
- checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
4652
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
4545
4653
 
4546
4654
  [[package]]
4547
4655
  name = "signal-hook-registry"
4548
- version = "1.4.6"
4656
+ version = "1.4.8"
4549
4657
  source = "registry+https://github.com/rust-lang/crates.io-index"
4550
- checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
4658
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
4551
4659
  dependencies = [
4660
+ "errno",
4552
4661
  "libc",
4553
4662
  ]
4554
4663
 
@@ -4558,15 +4667,15 @@ version = "2.2.0"
4558
4667
  source = "registry+https://github.com/rust-lang/crates.io-index"
4559
4668
  checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
4560
4669
  dependencies = [
4561
- "digest",
4670
+ "digest 0.10.7",
4562
4671
  "rand_core 0.6.4",
4563
4672
  ]
4564
4673
 
4565
4674
  [[package]]
4566
4675
  name = "simd-adler32"
4567
- version = "0.3.7"
4676
+ version = "0.3.9"
4568
4677
  source = "registry+https://github.com/rust-lang/crates.io-index"
4569
- checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
4678
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
4570
4679
 
4571
4680
  [[package]]
4572
4681
  name = "simdutf8"
@@ -4576,21 +4685,21 @@ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
4576
4685
 
4577
4686
  [[package]]
4578
4687
  name = "siphasher"
4579
- version = "1.0.1"
4688
+ version = "1.0.3"
4580
4689
  source = "registry+https://github.com/rust-lang/crates.io-index"
4581
- checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
4690
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
4582
4691
 
4583
4692
  [[package]]
4584
4693
  name = "slab"
4585
- version = "0.4.11"
4694
+ version = "0.4.12"
4586
4695
  source = "registry+https://github.com/rust-lang/crates.io-index"
4587
- checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
4696
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
4588
4697
 
4589
4698
  [[package]]
4590
4699
  name = "smallvec"
4591
- version = "1.15.1"
4700
+ version = "1.15.2"
4592
4701
  source = "registry+https://github.com/rust-lang/crates.io-index"
4593
- checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
4702
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
4594
4703
  dependencies = [
4595
4704
  "serde",
4596
4705
  ]
@@ -4625,12 +4734,12 @@ dependencies = [
4625
4734
 
4626
4735
  [[package]]
4627
4736
  name = "socket2"
4628
- version = "0.6.1"
4737
+ version = "0.6.4"
4629
4738
  source = "registry+https://github.com/rust-lang/crates.io-index"
4630
- checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
4739
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
4631
4740
  dependencies = [
4632
4741
  "libc",
4633
- "windows-sys 0.60.2",
4742
+ "windows-sys 0.61.2",
4634
4743
  ]
4635
4744
 
4636
4745
  [[package]]
@@ -4677,7 +4786,7 @@ version = "0.8.6"
4677
4786
  source = "registry+https://github.com/rust-lang/crates.io-index"
4678
4787
  checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
4679
4788
  dependencies = [
4680
- "base64 0.22.1",
4789
+ "base64",
4681
4790
  "bytes",
4682
4791
  "chrono",
4683
4792
  "crc",
@@ -4690,17 +4799,17 @@ dependencies = [
4690
4799
  "futures-util",
4691
4800
  "hashbrown 0.15.5",
4692
4801
  "hashlink 0.10.0",
4693
- "indexmap 2.12.0",
4802
+ "indexmap 2.14.0",
4694
4803
  "log",
4695
4804
  "memchr",
4696
4805
  "once_cell",
4697
4806
  "percent-encoding",
4698
- "rustls 0.23.34",
4807
+ "rustls",
4699
4808
  "serde",
4700
4809
  "serde_json",
4701
4810
  "sha2",
4702
4811
  "smallvec",
4703
- "thiserror 2.0.17",
4812
+ "thiserror 2.0.18",
4704
4813
  "tokio",
4705
4814
  "tokio-stream",
4706
4815
  "tracing",
@@ -4754,13 +4863,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4754
4863
  checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
4755
4864
  dependencies = [
4756
4865
  "atoi",
4757
- "base64 0.22.1",
4758
- "bitflags",
4866
+ "base64",
4867
+ "bitflags 2.13.0",
4759
4868
  "byteorder",
4760
4869
  "bytes",
4761
4870
  "chrono",
4762
4871
  "crc",
4763
- "digest",
4872
+ "digest 0.10.7",
4764
4873
  "dotenvy",
4765
4874
  "either",
4766
4875
  "futures-channel",
@@ -4777,15 +4886,15 @@ dependencies = [
4777
4886
  "memchr",
4778
4887
  "once_cell",
4779
4888
  "percent-encoding",
4780
- "rand 0.8.5",
4889
+ "rand 0.8.7",
4781
4890
  "rsa",
4782
4891
  "serde",
4783
- "sha1",
4892
+ "sha1 0.10.7",
4784
4893
  "sha2",
4785
4894
  "smallvec",
4786
4895
  "sqlx-core",
4787
4896
  "stringprep",
4788
- "thiserror 2.0.17",
4897
+ "thiserror 2.0.18",
4789
4898
  "tracing",
4790
4899
  "uuid",
4791
4900
  "whoami",
@@ -4798,8 +4907,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
4798
4907
  checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46"
4799
4908
  dependencies = [
4800
4909
  "atoi",
4801
- "base64 0.22.1",
4802
- "bitflags",
4910
+ "base64",
4911
+ "bitflags 2.13.0",
4803
4912
  "byteorder",
4804
4913
  "chrono",
4805
4914
  "crc",
@@ -4817,14 +4926,14 @@ dependencies = [
4817
4926
  "md-5",
4818
4927
  "memchr",
4819
4928
  "once_cell",
4820
- "rand 0.8.5",
4929
+ "rand 0.8.7",
4821
4930
  "serde",
4822
4931
  "serde_json",
4823
4932
  "sha2",
4824
4933
  "smallvec",
4825
4934
  "sqlx-core",
4826
4935
  "stringprep",
4827
- "thiserror 2.0.17",
4936
+ "thiserror 2.0.18",
4828
4937
  "tracing",
4829
4938
  "uuid",
4830
4939
  "whoami",
@@ -4850,7 +4959,7 @@ dependencies = [
4850
4959
  "serde",
4851
4960
  "serde_urlencoded",
4852
4961
  "sqlx-core",
4853
- "thiserror 2.0.17",
4962
+ "thiserror 2.0.18",
4854
4963
  "tracing",
4855
4964
  "url",
4856
4965
  "uuid",
@@ -4912,11 +5021,17 @@ version = "2.6.1"
4912
5021
  source = "registry+https://github.com/rust-lang/crates.io-index"
4913
5022
  checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
4914
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
+
4915
5030
  [[package]]
4916
5031
  name = "syn"
4917
- version = "2.0.108"
5032
+ version = "2.0.118"
4918
5033
  source = "registry+https://github.com/rust-lang/crates.io-index"
4919
- checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
5034
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
4920
5035
  dependencies = [
4921
5036
  "proc-macro2",
4922
5037
  "quote",
@@ -4945,15 +5060,15 @@ dependencies = [
4945
5060
 
4946
5061
  [[package]]
4947
5062
  name = "target-lexicon"
4948
- version = "0.13.3"
5063
+ version = "0.13.5"
4949
5064
  source = "registry+https://github.com/rust-lang/crates.io-index"
4950
- checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
5065
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
4951
5066
 
4952
5067
  [[package]]
4953
5068
  name = "thin-vec"
4954
- version = "0.2.14"
5069
+ version = "0.2.18"
4955
5070
  source = "registry+https://github.com/rust-lang/crates.io-index"
4956
- checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
5071
+ checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
4957
5072
  dependencies = [
4958
5073
  "serde",
4959
5074
  ]
@@ -4969,11 +5084,11 @@ dependencies = [
4969
5084
 
4970
5085
  [[package]]
4971
5086
  name = "thiserror"
4972
- version = "2.0.17"
5087
+ version = "2.0.18"
4973
5088
  source = "registry+https://github.com/rust-lang/crates.io-index"
4974
- checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
5089
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
4975
5090
  dependencies = [
4976
- "thiserror-impl 2.0.17",
5091
+ "thiserror-impl 2.0.18",
4977
5092
  ]
4978
5093
 
4979
5094
  [[package]]
@@ -4989,9 +5104,9 @@ dependencies = [
4989
5104
 
4990
5105
  [[package]]
4991
5106
  name = "thiserror-impl"
4992
- version = "2.0.17"
5107
+ version = "2.0.18"
4993
5108
  source = "registry+https://github.com/rust-lang/crates.io-index"
4994
- checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
5109
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
4995
5110
  dependencies = [
4996
5111
  "proc-macro2",
4997
5112
  "quote",
@@ -5000,50 +5115,38 @@ dependencies = [
5000
5115
 
5001
5116
  [[package]]
5002
5117
  name = "thread_local"
5003
- version = "1.1.9"
5118
+ version = "1.1.10"
5004
5119
  source = "registry+https://github.com/rust-lang/crates.io-index"
5005
- checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
5120
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
5006
5121
  dependencies = [
5007
5122
  "cfg-if",
5008
5123
  ]
5009
5124
 
5010
- [[package]]
5011
- name = "thrift"
5012
- version = "0.17.0"
5013
- source = "registry+https://github.com/rust-lang/crates.io-index"
5014
- checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
5015
- dependencies = [
5016
- "byteorder",
5017
- "integer-encoding",
5018
- "ordered-float 2.10.1",
5019
- ]
5020
-
5021
5125
  [[package]]
5022
5126
  name = "time"
5023
- version = "0.3.44"
5127
+ version = "0.3.53"
5024
5128
  source = "registry+https://github.com/rust-lang/crates.io-index"
5025
- checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
5129
+ checksum = "18dfaaeddcb932337b5e7866ee7d0ce9b76d2fd092997146f187ec09b4558a50"
5026
5130
  dependencies = [
5027
5131
  "deranged",
5028
- "itoa",
5029
5132
  "num-conv",
5030
5133
  "powerfmt",
5031
- "serde",
5134
+ "serde_core",
5032
5135
  "time-core",
5033
5136
  "time-macros",
5034
5137
  ]
5035
5138
 
5036
5139
  [[package]]
5037
5140
  name = "time-core"
5038
- version = "0.1.6"
5141
+ version = "0.1.9"
5039
5142
  source = "registry+https://github.com/rust-lang/crates.io-index"
5040
- checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
5143
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
5041
5144
 
5042
5145
  [[package]]
5043
5146
  name = "time-macros"
5044
- version = "0.2.24"
5147
+ version = "0.2.31"
5045
5148
  source = "registry+https://github.com/rust-lang/crates.io-index"
5046
- checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
5149
+ checksum = "c431b87111666e491a90baa837f914fb45cd5dc3c268591b0220ff5057f2085f"
5047
5150
  dependencies = [
5048
5151
  "num-conv",
5049
5152
  "time-core",
@@ -5060,9 +5163,9 @@ dependencies = [
5060
5163
 
5061
5164
  [[package]]
5062
5165
  name = "tinystr"
5063
- version = "0.8.1"
5166
+ version = "0.8.3"
5064
5167
  source = "registry+https://github.com/rust-lang/crates.io-index"
5065
- checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
5168
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
5066
5169
  dependencies = [
5067
5170
  "displaydoc",
5068
5171
  "zerovec",
@@ -5080,9 +5183,9 @@ dependencies = [
5080
5183
 
5081
5184
  [[package]]
5082
5185
  name = "tinyvec"
5083
- version = "1.10.0"
5186
+ version = "1.12.0"
5084
5187
  source = "registry+https://github.com/rust-lang/crates.io-index"
5085
- checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
5188
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
5086
5189
  dependencies = [
5087
5190
  "tinyvec_macros",
5088
5191
  ]
@@ -5095,9 +5198,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
5095
5198
 
5096
5199
  [[package]]
5097
5200
  name = "tokio"
5098
- version = "1.48.0"
5201
+ version = "1.52.3"
5099
5202
  source = "registry+https://github.com/rust-lang/crates.io-index"
5100
- checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
5203
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
5101
5204
  dependencies = [
5102
5205
  "bytes",
5103
5206
  "libc",
@@ -5105,16 +5208,16 @@ dependencies = [
5105
5208
  "parking_lot",
5106
5209
  "pin-project-lite",
5107
5210
  "signal-hook-registry",
5108
- "socket2 0.6.1",
5211
+ "socket2 0.6.4",
5109
5212
  "tokio-macros",
5110
5213
  "windows-sys 0.61.2",
5111
5214
  ]
5112
5215
 
5113
5216
  [[package]]
5114
5217
  name = "tokio-cron-scheduler"
5115
- version = "0.15.0"
5218
+ version = "0.15.1"
5116
5219
  source = "registry+https://github.com/rust-lang/crates.io-index"
5117
- checksum = "bb73c4033ddcbbf81fd828293fd41a0145cde2cbc30dd782227c5081a523214d"
5220
+ checksum = "1f50e41f200fd8ed426489bd356910ede4f053e30cebfbd59ef0f856f0d7432a"
5118
5221
  dependencies = [
5119
5222
  "chrono",
5120
5223
  "chrono-tz",
@@ -5126,52 +5229,32 @@ dependencies = [
5126
5229
  "uuid",
5127
5230
  ]
5128
5231
 
5129
- [[package]]
5130
- name = "tokio-io-timeout"
5131
- version = "1.2.1"
5132
- source = "registry+https://github.com/rust-lang/crates.io-index"
5133
- checksum = "0bd86198d9ee903fedd2f9a2e72014287c0d9167e4ae43b5853007205dda1b76"
5134
- dependencies = [
5135
- "pin-project-lite",
5136
- "tokio",
5137
- ]
5138
-
5139
5232
  [[package]]
5140
5233
  name = "tokio-macros"
5141
- version = "2.6.0"
5234
+ version = "2.7.0"
5142
5235
  source = "registry+https://github.com/rust-lang/crates.io-index"
5143
- checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
5236
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
5144
5237
  dependencies = [
5145
5238
  "proc-macro2",
5146
5239
  "quote",
5147
5240
  "syn",
5148
5241
  ]
5149
5242
 
5150
- [[package]]
5151
- name = "tokio-rustls"
5152
- version = "0.24.1"
5153
- source = "registry+https://github.com/rust-lang/crates.io-index"
5154
- checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
5155
- dependencies = [
5156
- "rustls 0.21.12",
5157
- "tokio",
5158
- ]
5159
-
5160
5243
  [[package]]
5161
5244
  name = "tokio-rustls"
5162
5245
  version = "0.26.4"
5163
5246
  source = "registry+https://github.com/rust-lang/crates.io-index"
5164
5247
  checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
5165
5248
  dependencies = [
5166
- "rustls 0.23.34",
5249
+ "rustls",
5167
5250
  "tokio",
5168
5251
  ]
5169
5252
 
5170
5253
  [[package]]
5171
5254
  name = "tokio-stream"
5172
- version = "0.1.17"
5255
+ version = "0.1.18"
5173
5256
  source = "registry+https://github.com/rust-lang/crates.io-index"
5174
- checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
5257
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
5175
5258
  dependencies = [
5176
5259
  "futures-core",
5177
5260
  "pin-project-lite",
@@ -5180,9 +5263,9 @@ dependencies = [
5180
5263
 
5181
5264
  [[package]]
5182
5265
  name = "tokio-util"
5183
- version = "0.7.16"
5266
+ version = "0.7.18"
5184
5267
  source = "registry+https://github.com/rust-lang/crates.io-index"
5185
- checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
5268
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
5186
5269
  dependencies = [
5187
5270
  "bytes",
5188
5271
  "futures-core",
@@ -5193,9 +5276,9 @@ dependencies = [
5193
5276
 
5194
5277
  [[package]]
5195
5278
  name = "toml"
5196
- version = "0.9.8"
5279
+ version = "1.1.2+spec-1.1.0"
5197
5280
  source = "registry+https://github.com/rust-lang/crates.io-index"
5198
- checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
5281
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
5199
5282
  dependencies = [
5200
5283
  "serde_core",
5201
5284
  "serde_spanned",
@@ -5206,32 +5289,32 @@ dependencies = [
5206
5289
 
5207
5290
  [[package]]
5208
5291
  name = "toml_datetime"
5209
- version = "0.7.3"
5292
+ version = "1.1.1+spec-1.1.0"
5210
5293
  source = "registry+https://github.com/rust-lang/crates.io-index"
5211
- checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
5294
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
5212
5295
  dependencies = [
5213
5296
  "serde_core",
5214
5297
  ]
5215
5298
 
5216
5299
  [[package]]
5217
5300
  name = "toml_parser"
5218
- version = "1.0.4"
5301
+ version = "1.1.2+spec-1.1.0"
5219
5302
  source = "registry+https://github.com/rust-lang/crates.io-index"
5220
- checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
5303
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
5221
5304
  dependencies = [
5222
5305
  "winnow",
5223
5306
  ]
5224
5307
 
5225
5308
  [[package]]
5226
5309
  name = "tower"
5227
- version = "0.4.13"
5310
+ version = "0.5.3"
5228
5311
  source = "registry+https://github.com/rust-lang/crates.io-index"
5229
- checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
5312
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
5230
5313
  dependencies = [
5231
5314
  "futures-core",
5232
5315
  "futures-util",
5233
- "pin-project",
5234
5316
  "pin-project-lite",
5317
+ "sync_wrapper",
5235
5318
  "tokio",
5236
5319
  "tokio-util",
5237
5320
  "tower-layer",
@@ -5239,58 +5322,25 @@ dependencies = [
5239
5322
  "tracing",
5240
5323
  ]
5241
5324
 
5242
- [[package]]
5243
- name = "tower"
5244
- version = "0.5.2"
5245
- source = "registry+https://github.com/rust-lang/crates.io-index"
5246
- checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
5247
- dependencies = [
5248
- "futures-core",
5249
- "futures-util",
5250
- "pin-project-lite",
5251
- "sync_wrapper",
5252
- "tokio",
5253
- "tower-layer",
5254
- "tower-service",
5255
- ]
5256
-
5257
5325
  [[package]]
5258
5326
  name = "tower-http"
5259
- version = "0.4.4"
5327
+ version = "0.6.11"
5260
5328
  source = "registry+https://github.com/rust-lang/crates.io-index"
5261
- checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"
5329
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
5262
5330
  dependencies = [
5263
- "base64 0.21.7",
5264
- "bitflags",
5331
+ "base64",
5332
+ "bitflags 2.13.0",
5265
5333
  "bytes",
5266
- "futures-core",
5267
5334
  "futures-util",
5268
- "http 0.2.12",
5269
- "http-body 0.4.6",
5270
- "http-range-header",
5335
+ "http 1.4.2",
5336
+ "http-body",
5271
5337
  "mime",
5272
5338
  "pin-project-lite",
5339
+ "tower",
5273
5340
  "tower-layer",
5274
5341
  "tower-service",
5275
5342
  "tracing",
5276
- ]
5277
-
5278
- [[package]]
5279
- name = "tower-http"
5280
- version = "0.6.6"
5281
- source = "registry+https://github.com/rust-lang/crates.io-index"
5282
- checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
5283
- dependencies = [
5284
- "bitflags",
5285
- "bytes",
5286
- "futures-util",
5287
- "http 1.3.1",
5288
- "http-body 1.0.1",
5289
- "iri-string",
5290
- "pin-project-lite",
5291
- "tower 0.5.2",
5292
- "tower-layer",
5293
- "tower-service",
5343
+ "url",
5294
5344
  ]
5295
5345
 
5296
5346
  [[package]]
@@ -5307,9 +5357,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
5307
5357
 
5308
5358
  [[package]]
5309
5359
  name = "tracing"
5310
- version = "0.1.41"
5360
+ version = "0.1.44"
5311
5361
  source = "registry+https://github.com/rust-lang/crates.io-index"
5312
- checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
5362
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
5313
5363
  dependencies = [
5314
5364
  "log",
5315
5365
  "pin-project-lite",
@@ -5319,9 +5369,9 @@ dependencies = [
5319
5369
 
5320
5370
  [[package]]
5321
5371
  name = "tracing-actix-web"
5322
- version = "0.7.19"
5372
+ version = "0.7.22"
5323
5373
  source = "registry+https://github.com/rust-lang/crates.io-index"
5324
- checksum = "5360edd490ec8dee9fedfc6a9fd83ac2f01b3e1996e3261b9ad18a61971fe064"
5374
+ checksum = "36bb7a33ce7f0807d44124b5119ea3581fd59028db56477a7aa01741c869ca6a"
5325
5375
  dependencies = [
5326
5376
  "actix-web",
5327
5377
  "mutually_exclusive_features",
@@ -5330,11 +5380,24 @@ dependencies = [
5330
5380
  "uuid",
5331
5381
  ]
5332
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
+
5333
5396
  [[package]]
5334
5397
  name = "tracing-attributes"
5335
- version = "0.1.30"
5398
+ version = "0.1.31"
5336
5399
  source = "registry+https://github.com/rust-lang/crates.io-index"
5337
- checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
5400
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
5338
5401
  dependencies = [
5339
5402
  "proc-macro2",
5340
5403
  "quote",
@@ -5361,9 +5424,9 @@ dependencies = [
5361
5424
 
5362
5425
  [[package]]
5363
5426
  name = "tracing-core"
5364
- version = "0.1.34"
5427
+ version = "0.1.36"
5365
5428
  source = "registry+https://github.com/rust-lang/crates.io-index"
5366
- checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
5429
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
5367
5430
  dependencies = [
5368
5431
  "once_cell",
5369
5432
  "valuable",
@@ -5403,9 +5466,9 @@ dependencies = [
5403
5466
 
5404
5467
  [[package]]
5405
5468
  name = "tracing-subscriber"
5406
- version = "0.3.20"
5469
+ version = "0.3.23"
5407
5470
  source = "registry+https://github.com/rust-lang/crates.io-index"
5408
- checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
5471
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
5409
5472
  dependencies = [
5410
5473
  "matchers",
5411
5474
  "nu-ansi-term",
@@ -5439,9 +5502,9 @@ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
5439
5502
 
5440
5503
  [[package]]
5441
5504
  name = "typenum"
5442
- version = "1.19.0"
5505
+ version = "1.20.1"
5443
5506
  source = "registry+https://github.com/rust-lang/crates.io-index"
5444
- checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
5507
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
5445
5508
 
5446
5509
  [[package]]
5447
5510
  name = "ucd-trie"
@@ -5457,42 +5520,42 @@ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
5457
5520
 
5458
5521
  [[package]]
5459
5522
  name = "unicode-ident"
5460
- version = "1.0.20"
5523
+ version = "1.0.24"
5461
5524
  source = "registry+https://github.com/rust-lang/crates.io-index"
5462
- checksum = "462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06"
5525
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
5463
5526
 
5464
5527
  [[package]]
5465
5528
  name = "unicode-normalization"
5466
- version = "0.1.24"
5529
+ version = "0.1.25"
5467
5530
  source = "registry+https://github.com/rust-lang/crates.io-index"
5468
- checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
5531
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
5469
5532
  dependencies = [
5470
5533
  "tinyvec",
5471
5534
  ]
5472
5535
 
5473
5536
  [[package]]
5474
5537
  name = "unicode-properties"
5475
- version = "0.1.3"
5538
+ version = "0.1.4"
5476
5539
  source = "registry+https://github.com/rust-lang/crates.io-index"
5477
- checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
5540
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
5478
5541
 
5479
5542
  [[package]]
5480
5543
  name = "unicode-segmentation"
5481
- version = "1.12.0"
5544
+ version = "1.13.3"
5482
5545
  source = "registry+https://github.com/rust-lang/crates.io-index"
5483
- checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
5546
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
5484
5547
 
5485
5548
  [[package]]
5486
- name = "unicode-xid"
5487
- version = "0.2.6"
5549
+ name = "unicode-width"
5550
+ version = "0.2.2"
5488
5551
  source = "registry+https://github.com/rust-lang/crates.io-index"
5489
- checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
5552
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
5490
5553
 
5491
5554
  [[package]]
5492
- name = "unindent"
5493
- version = "0.2.4"
5555
+ name = "unicode-xid"
5556
+ version = "0.2.6"
5494
5557
  source = "registry+https://github.com/rust-lang/crates.io-index"
5495
- checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
5558
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
5496
5559
 
5497
5560
  [[package]]
5498
5561
  name = "unsafe-libyaml"
@@ -5508,14 +5571,15 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
5508
5571
 
5509
5572
  [[package]]
5510
5573
  name = "url"
5511
- version = "2.5.7"
5574
+ version = "2.5.8"
5512
5575
  source = "registry+https://github.com/rust-lang/crates.io-index"
5513
- checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
5576
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
5514
5577
  dependencies = [
5515
5578
  "form_urlencoded",
5516
5579
  "idna",
5517
5580
  "percent-encoding",
5518
5581
  "serde",
5582
+ "serde_derive",
5519
5583
  ]
5520
5584
 
5521
5585
  [[package]]
@@ -5532,11 +5596,11 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
5532
5596
 
5533
5597
  [[package]]
5534
5598
  name = "uuid"
5535
- version = "1.18.1"
5599
+ version = "1.23.5"
5536
5600
  source = "registry+https://github.com/rust-lang/crates.io-index"
5537
- checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
5601
+ checksum = "ea5fab0d6c3c01ae70085a09cb03d4c7a1d6314e2b3e075392783396d724ca0a"
5538
5602
  dependencies = [
5539
- "getrandom 0.3.4",
5603
+ "getrandom 0.4.3",
5540
5604
  "js-sys",
5541
5605
  "wasm-bindgen",
5542
5606
  ]
@@ -5586,9 +5650,9 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
5586
5650
 
5587
5651
  [[package]]
5588
5652
  name = "wasip2"
5589
- version = "1.0.1+wasi-0.2.4"
5653
+ version = "1.0.4+wasi-0.2.12"
5590
5654
  source = "registry+https://github.com/rust-lang/crates.io-index"
5591
- checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
5655
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
5592
5656
  dependencies = [
5593
5657
  "wit-bindgen",
5594
5658
  ]
@@ -5601,9 +5665,9 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
5601
5665
 
5602
5666
  [[package]]
5603
5667
  name = "wasm-bindgen"
5604
- version = "0.2.104"
5668
+ version = "0.2.126"
5605
5669
  source = "registry+https://github.com/rust-lang/crates.io-index"
5606
- checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
5670
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
5607
5671
  dependencies = [
5608
5672
  "cfg-if",
5609
5673
  "once_cell",
@@ -5612,38 +5676,21 @@ dependencies = [
5612
5676
  "wasm-bindgen-shared",
5613
5677
  ]
5614
5678
 
5615
- [[package]]
5616
- name = "wasm-bindgen-backend"
5617
- version = "0.2.104"
5618
- source = "registry+https://github.com/rust-lang/crates.io-index"
5619
- checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
5620
- dependencies = [
5621
- "bumpalo",
5622
- "log",
5623
- "proc-macro2",
5624
- "quote",
5625
- "syn",
5626
- "wasm-bindgen-shared",
5627
- ]
5628
-
5629
5679
  [[package]]
5630
5680
  name = "wasm-bindgen-futures"
5631
- version = "0.4.54"
5681
+ version = "0.4.76"
5632
5682
  source = "registry+https://github.com/rust-lang/crates.io-index"
5633
- checksum = "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c"
5683
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
5634
5684
  dependencies = [
5635
- "cfg-if",
5636
5685
  "js-sys",
5637
- "once_cell",
5638
5686
  "wasm-bindgen",
5639
- "web-sys",
5640
5687
  ]
5641
5688
 
5642
5689
  [[package]]
5643
5690
  name = "wasm-bindgen-macro"
5644
- version = "0.2.104"
5691
+ version = "0.2.126"
5645
5692
  source = "registry+https://github.com/rust-lang/crates.io-index"
5646
- checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
5693
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
5647
5694
  dependencies = [
5648
5695
  "quote",
5649
5696
  "wasm-bindgen-macro-support",
@@ -5651,50 +5698,65 @@ dependencies = [
5651
5698
 
5652
5699
  [[package]]
5653
5700
  name = "wasm-bindgen-macro-support"
5654
- version = "0.2.104"
5701
+ version = "0.2.126"
5655
5702
  source = "registry+https://github.com/rust-lang/crates.io-index"
5656
- checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
5703
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
5657
5704
  dependencies = [
5705
+ "bumpalo",
5658
5706
  "proc-macro2",
5659
5707
  "quote",
5660
5708
  "syn",
5661
- "wasm-bindgen-backend",
5662
5709
  "wasm-bindgen-shared",
5663
5710
  ]
5664
5711
 
5665
5712
  [[package]]
5666
5713
  name = "wasm-bindgen-shared"
5667
- version = "0.2.104"
5714
+ version = "0.2.126"
5668
5715
  source = "registry+https://github.com/rust-lang/crates.io-index"
5669
- checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
5716
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
5670
5717
  dependencies = [
5671
5718
  "unicode-ident",
5672
5719
  ]
5673
5720
 
5674
5721
  [[package]]
5675
5722
  name = "wasm-bindgen-test"
5676
- version = "0.3.54"
5723
+ version = "0.3.76"
5677
5724
  source = "registry+https://github.com/rust-lang/crates.io-index"
5678
- checksum = "4e381134e148c1062f965a42ed1f5ee933eef2927c3f70d1812158f711d39865"
5725
+ checksum = "2a0d555ca874445df8d314f94f5c948a4e74e5418f332c89f660a3d8310a96f4"
5679
5726
  dependencies = [
5727
+ "async-trait",
5728
+ "cast",
5680
5729
  "js-sys",
5730
+ "libm",
5681
5731
  "minicov",
5732
+ "nu-ansi-term",
5733
+ "num-traits",
5734
+ "oorandom",
5735
+ "serde",
5736
+ "serde_json",
5682
5737
  "wasm-bindgen",
5683
5738
  "wasm-bindgen-futures",
5684
5739
  "wasm-bindgen-test-macro",
5740
+ "wasm-bindgen-test-shared",
5685
5741
  ]
5686
5742
 
5687
5743
  [[package]]
5688
5744
  name = "wasm-bindgen-test-macro"
5689
- version = "0.3.54"
5745
+ version = "0.3.76"
5690
5746
  source = "registry+https://github.com/rust-lang/crates.io-index"
5691
- checksum = "b673bca3298fe582aeef8352330ecbad91849f85090805582400850f8270a2e8"
5747
+ checksum = "94eb68555b95bcea5e8cf4abe280b529049479fa995bfc23734af96a6aedc120"
5692
5748
  dependencies = [
5693
5749
  "proc-macro2",
5694
5750
  "quote",
5695
5751
  "syn",
5696
5752
  ]
5697
5753
 
5754
+ [[package]]
5755
+ name = "wasm-bindgen-test-shared"
5756
+ version = "0.2.126"
5757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5758
+ checksum = "c31d56021e873866c968588ed85ccdf56db5c426e44afdb4618c39895104b920"
5759
+
5698
5760
  [[package]]
5699
5761
  name = "wasm-streams"
5700
5762
  version = "0.4.2"
@@ -5710,9 +5772,9 @@ dependencies = [
5710
5772
 
5711
5773
  [[package]]
5712
5774
  name = "web-sys"
5713
- version = "0.3.81"
5775
+ version = "0.3.103"
5714
5776
  source = "registry+https://github.com/rust-lang/crates.io-index"
5715
- checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120"
5777
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
5716
5778
  dependencies = [
5717
5779
  "js-sys",
5718
5780
  "wasm-bindgen",
@@ -5734,14 +5796,14 @@ version = "0.26.11"
5734
5796
  source = "registry+https://github.com/rust-lang/crates.io-index"
5735
5797
  checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
5736
5798
  dependencies = [
5737
- "webpki-roots 1.0.3",
5799
+ "webpki-roots 1.0.8",
5738
5800
  ]
5739
5801
 
5740
5802
  [[package]]
5741
5803
  name = "webpki-roots"
5742
- version = "1.0.3"
5804
+ version = "1.0.8"
5743
5805
  source = "registry+https://github.com/rust-lang/crates.io-index"
5744
- checksum = "32b130c0d2d49f8b6889abc456e795e82525204f27c42cf767cf0d7734e089b8"
5806
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
5745
5807
  dependencies = [
5746
5808
  "rustls-pki-types",
5747
5809
  ]
@@ -5864,15 +5926,6 @@ dependencies = [
5864
5926
  "windows-targets 0.52.6",
5865
5927
  ]
5866
5928
 
5867
- [[package]]
5868
- name = "windows-sys"
5869
- version = "0.60.2"
5870
- source = "registry+https://github.com/rust-lang/crates.io-index"
5871
- checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
5872
- dependencies = [
5873
- "windows-targets 0.53.5",
5874
- ]
5875
-
5876
5929
  [[package]]
5877
5930
  name = "windows-sys"
5878
5931
  version = "0.61.2"
@@ -5906,30 +5959,13 @@ dependencies = [
5906
5959
  "windows_aarch64_gnullvm 0.52.6",
5907
5960
  "windows_aarch64_msvc 0.52.6",
5908
5961
  "windows_i686_gnu 0.52.6",
5909
- "windows_i686_gnullvm 0.52.6",
5962
+ "windows_i686_gnullvm",
5910
5963
  "windows_i686_msvc 0.52.6",
5911
5964
  "windows_x86_64_gnu 0.52.6",
5912
5965
  "windows_x86_64_gnullvm 0.52.6",
5913
5966
  "windows_x86_64_msvc 0.52.6",
5914
5967
  ]
5915
5968
 
5916
- [[package]]
5917
- name = "windows-targets"
5918
- version = "0.53.5"
5919
- source = "registry+https://github.com/rust-lang/crates.io-index"
5920
- checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
5921
- dependencies = [
5922
- "windows-link",
5923
- "windows_aarch64_gnullvm 0.53.1",
5924
- "windows_aarch64_msvc 0.53.1",
5925
- "windows_i686_gnu 0.53.1",
5926
- "windows_i686_gnullvm 0.53.1",
5927
- "windows_i686_msvc 0.53.1",
5928
- "windows_x86_64_gnu 0.53.1",
5929
- "windows_x86_64_gnullvm 0.53.1",
5930
- "windows_x86_64_msvc 0.53.1",
5931
- ]
5932
-
5933
5969
  [[package]]
5934
5970
  name = "windows_aarch64_gnullvm"
5935
5971
  version = "0.48.5"
@@ -5942,12 +5978,6 @@ version = "0.52.6"
5942
5978
  source = "registry+https://github.com/rust-lang/crates.io-index"
5943
5979
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
5944
5980
 
5945
- [[package]]
5946
- name = "windows_aarch64_gnullvm"
5947
- version = "0.53.1"
5948
- source = "registry+https://github.com/rust-lang/crates.io-index"
5949
- checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
5950
-
5951
5981
  [[package]]
5952
5982
  name = "windows_aarch64_msvc"
5953
5983
  version = "0.48.5"
@@ -5960,12 +5990,6 @@ version = "0.52.6"
5960
5990
  source = "registry+https://github.com/rust-lang/crates.io-index"
5961
5991
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
5962
5992
 
5963
- [[package]]
5964
- name = "windows_aarch64_msvc"
5965
- version = "0.53.1"
5966
- source = "registry+https://github.com/rust-lang/crates.io-index"
5967
- checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
5968
-
5969
5993
  [[package]]
5970
5994
  name = "windows_i686_gnu"
5971
5995
  version = "0.48.5"
@@ -5978,24 +6002,12 @@ version = "0.52.6"
5978
6002
  source = "registry+https://github.com/rust-lang/crates.io-index"
5979
6003
  checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
5980
6004
 
5981
- [[package]]
5982
- name = "windows_i686_gnu"
5983
- version = "0.53.1"
5984
- source = "registry+https://github.com/rust-lang/crates.io-index"
5985
- checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
5986
-
5987
6005
  [[package]]
5988
6006
  name = "windows_i686_gnullvm"
5989
6007
  version = "0.52.6"
5990
6008
  source = "registry+https://github.com/rust-lang/crates.io-index"
5991
6009
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
5992
6010
 
5993
- [[package]]
5994
- name = "windows_i686_gnullvm"
5995
- version = "0.53.1"
5996
- source = "registry+https://github.com/rust-lang/crates.io-index"
5997
- checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
5998
-
5999
6011
  [[package]]
6000
6012
  name = "windows_i686_msvc"
6001
6013
  version = "0.48.5"
@@ -6008,12 +6020,6 @@ version = "0.52.6"
6008
6020
  source = "registry+https://github.com/rust-lang/crates.io-index"
6009
6021
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
6010
6022
 
6011
- [[package]]
6012
- name = "windows_i686_msvc"
6013
- version = "0.53.1"
6014
- source = "registry+https://github.com/rust-lang/crates.io-index"
6015
- checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
6016
-
6017
6023
  [[package]]
6018
6024
  name = "windows_x86_64_gnu"
6019
6025
  version = "0.48.5"
@@ -6026,12 +6032,6 @@ version = "0.52.6"
6026
6032
  source = "registry+https://github.com/rust-lang/crates.io-index"
6027
6033
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
6028
6034
 
6029
- [[package]]
6030
- name = "windows_x86_64_gnu"
6031
- version = "0.53.1"
6032
- source = "registry+https://github.com/rust-lang/crates.io-index"
6033
- checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
6034
-
6035
6035
  [[package]]
6036
6036
  name = "windows_x86_64_gnullvm"
6037
6037
  version = "0.48.5"
@@ -6044,12 +6044,6 @@ version = "0.52.6"
6044
6044
  source = "registry+https://github.com/rust-lang/crates.io-index"
6045
6045
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
6046
6046
 
6047
- [[package]]
6048
- name = "windows_x86_64_gnullvm"
6049
- version = "0.53.1"
6050
- source = "registry+https://github.com/rust-lang/crates.io-index"
6051
- checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
6052
-
6053
6047
  [[package]]
6054
6048
  name = "windows_x86_64_msvc"
6055
6049
  version = "0.48.5"
@@ -6062,17 +6056,11 @@ version = "0.52.6"
6062
6056
  source = "registry+https://github.com/rust-lang/crates.io-index"
6063
6057
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
6064
6058
 
6065
- [[package]]
6066
- name = "windows_x86_64_msvc"
6067
- version = "0.53.1"
6068
- source = "registry+https://github.com/rust-lang/crates.io-index"
6069
- checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
6070
-
6071
6059
  [[package]]
6072
6060
  name = "winnow"
6073
- version = "0.7.13"
6061
+ version = "1.0.3"
6074
6062
  source = "registry+https://github.com/rust-lang/crates.io-index"
6075
- checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
6063
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
6076
6064
  dependencies = [
6077
6065
  "memchr",
6078
6066
  ]
@@ -6084,12 +6072,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
6084
6072
  checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
6085
6073
  dependencies = [
6086
6074
  "assert-json-diff",
6087
- "base64 0.22.1",
6075
+ "base64",
6088
6076
  "deadpool",
6089
6077
  "futures",
6090
- "http 1.3.1",
6078
+ "http 1.4.2",
6091
6079
  "http-body-util",
6092
- "hyper 1.7.0",
6080
+ "hyper",
6093
6081
  "hyper-util",
6094
6082
  "log",
6095
6083
  "once_cell",
@@ -6102,21 +6090,21 @@ dependencies = [
6102
6090
 
6103
6091
  [[package]]
6104
6092
  name = "wit-bindgen"
6105
- version = "0.46.0"
6093
+ version = "0.57.1"
6106
6094
  source = "registry+https://github.com/rust-lang/crates.io-index"
6107
- checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
6095
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
6108
6096
 
6109
6097
  [[package]]
6110
6098
  name = "writeable"
6111
- version = "0.6.1"
6099
+ version = "0.6.3"
6112
6100
  source = "registry+https://github.com/rust-lang/crates.io-index"
6113
- checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
6101
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
6114
6102
 
6115
6103
  [[package]]
6116
6104
  name = "x509-parser"
6117
- version = "0.18.0"
6105
+ version = "0.18.1"
6118
6106
  source = "registry+https://github.com/rust-lang/crates.io-index"
6119
- checksum = "eb3e137310115a65136898d2079f003ce33331a6c4b0d51f1531d1be082b6425"
6107
+ checksum = "d43b0f71ce057da06bc0851b23ee24f3f86190b07203dd8f567d0b706a185202"
6120
6108
  dependencies = [
6121
6109
  "asn1-rs",
6122
6110
  "data-encoding",
@@ -6125,28 +6113,27 @@ dependencies = [
6125
6113
  "nom",
6126
6114
  "oid-registry",
6127
6115
  "rusticata-macros",
6128
- "thiserror 2.0.17",
6116
+ "thiserror 2.0.18",
6129
6117
  "time",
6130
6118
  ]
6131
6119
 
6132
6120
  [[package]]
6133
6121
  name = "yaml-rust2"
6134
- version = "0.10.4"
6122
+ version = "0.11.0"
6135
6123
  source = "registry+https://github.com/rust-lang/crates.io-index"
6136
- checksum = "2462ea039c445496d8793d052e13787f2b90e750b833afee748e601c17621ed9"
6124
+ checksum = "631a50d867fafb7093e709d75aaee9e0e0d5deb934021fcea25ac2fe09edc51e"
6137
6125
  dependencies = [
6138
6126
  "arraydeque",
6139
6127
  "encoding_rs",
6140
- "hashlink 0.10.0",
6128
+ "hashlink 0.11.1",
6141
6129
  ]
6142
6130
 
6143
6131
  [[package]]
6144
6132
  name = "yoke"
6145
- version = "0.8.0"
6133
+ version = "0.8.3"
6146
6134
  source = "registry+https://github.com/rust-lang/crates.io-index"
6147
- checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
6135
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
6148
6136
  dependencies = [
6149
- "serde",
6150
6137
  "stable_deref_trait",
6151
6138
  "yoke-derive",
6152
6139
  "zerofrom",
@@ -6154,9 +6141,9 @@ dependencies = [
6154
6141
 
6155
6142
  [[package]]
6156
6143
  name = "yoke-derive"
6157
- version = "0.8.0"
6144
+ version = "0.8.2"
6158
6145
  source = "registry+https://github.com/rust-lang/crates.io-index"
6159
- checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
6146
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
6160
6147
  dependencies = [
6161
6148
  "proc-macro2",
6162
6149
  "quote",
@@ -6166,18 +6153,18 @@ dependencies = [
6166
6153
 
6167
6154
  [[package]]
6168
6155
  name = "zerocopy"
6169
- version = "0.8.27"
6156
+ version = "0.8.54"
6170
6157
  source = "registry+https://github.com/rust-lang/crates.io-index"
6171
- checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
6158
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
6172
6159
  dependencies = [
6173
6160
  "zerocopy-derive",
6174
6161
  ]
6175
6162
 
6176
6163
  [[package]]
6177
6164
  name = "zerocopy-derive"
6178
- version = "0.8.27"
6165
+ version = "0.8.54"
6179
6166
  source = "registry+https://github.com/rust-lang/crates.io-index"
6180
- checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
6167
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
6181
6168
  dependencies = [
6182
6169
  "proc-macro2",
6183
6170
  "quote",
@@ -6186,18 +6173,18 @@ dependencies = [
6186
6173
 
6187
6174
  [[package]]
6188
6175
  name = "zerofrom"
6189
- version = "0.1.6"
6176
+ version = "0.1.8"
6190
6177
  source = "registry+https://github.com/rust-lang/crates.io-index"
6191
- checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
6178
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
6192
6179
  dependencies = [
6193
6180
  "zerofrom-derive",
6194
6181
  ]
6195
6182
 
6196
6183
  [[package]]
6197
6184
  name = "zerofrom-derive"
6198
- version = "0.1.6"
6185
+ version = "0.1.7"
6199
6186
  source = "registry+https://github.com/rust-lang/crates.io-index"
6200
- checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
6187
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
6201
6188
  dependencies = [
6202
6189
  "proc-macro2",
6203
6190
  "quote",
@@ -6207,15 +6194,15 @@ dependencies = [
6207
6194
 
6208
6195
  [[package]]
6209
6196
  name = "zeroize"
6210
- version = "1.8.2"
6197
+ version = "1.9.0"
6211
6198
  source = "registry+https://github.com/rust-lang/crates.io-index"
6212
- checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
6199
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
6213
6200
 
6214
6201
  [[package]]
6215
6202
  name = "zerotrie"
6216
- version = "0.2.2"
6203
+ version = "0.2.4"
6217
6204
  source = "registry+https://github.com/rust-lang/crates.io-index"
6218
- checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
6205
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
6219
6206
  dependencies = [
6220
6207
  "displaydoc",
6221
6208
  "yoke",
@@ -6224,9 +6211,9 @@ dependencies = [
6224
6211
 
6225
6212
  [[package]]
6226
6213
  name = "zerovec"
6227
- version = "0.11.4"
6214
+ version = "0.11.6"
6228
6215
  source = "registry+https://github.com/rust-lang/crates.io-index"
6229
- checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
6216
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
6230
6217
  dependencies = [
6231
6218
  "yoke",
6232
6219
  "zerofrom",
@@ -6235,9 +6222,9 @@ dependencies = [
6235
6222
 
6236
6223
  [[package]]
6237
6224
  name = "zerovec-derive"
6238
- version = "0.11.1"
6225
+ version = "0.11.3"
6239
6226
  source = "registry+https://github.com/rust-lang/crates.io-index"
6240
- checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
6227
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
6241
6228
  dependencies = [
6242
6229
  "proc-macro2",
6243
6230
  "quote",
@@ -6246,9 +6233,15 @@ dependencies = [
6246
6233
 
6247
6234
  [[package]]
6248
6235
  name = "zlib-rs"
6249
- version = "0.5.2"
6236
+ version = "0.6.6"
6237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6238
+ checksum = "b142a20ec14a91d5bc708c1dc21b080c550113d8aa77afa29635673a65dd02c5"
6239
+
6240
+ [[package]]
6241
+ name = "zmij"
6242
+ version = "1.0.22"
6250
6243
  source = "registry+https://github.com/rust-lang/crates.io-index"
6251
- checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"
6244
+ checksum = "bd2f034a4bebf216c9e4b7083603e024cf930873fd67830cfb083c9fa33129d9"
6252
6245
 
6253
6246
  [[package]]
6254
6247
  name = "zstd"