python-auditor 0.9.4__tar.gz → 0.10.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (150) hide show
  1. {python_auditor-0.9.4 → python_auditor-0.10.1}/Cargo.lock +1575 -648
  2. {python_auditor-0.9.4 → python_auditor-0.10.1}/Cargo.toml +6 -5
  3. {python_auditor-0.9.4 → python_auditor-0.10.1}/PKG-INFO +1 -1
  4. {python_auditor-0.9.4 → python_auditor-0.10.1}/docs/examples.rst +20 -20
  5. python_auditor-0.10.1/local_dependencies/auditor/.sqlx/query-bac1cfa96d1801a491bc325101a0ea88c18a9e1ca50b2b623e07791a46d61b48.json +28 -0
  6. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/Cargo.toml +26 -21
  7. python_auditor-0.10.1/local_dependencies/auditor/certs/rootCA-key.pem +52 -0
  8. python_auditor-0.10.1/local_dependencies/auditor/certs/rootCA.pem +31 -0
  9. python_auditor-0.10.1/local_dependencies/auditor/certs/server-cert.pem +27 -0
  10. python_auditor-0.10.1/local_dependencies/auditor/certs/server-key.pem +28 -0
  11. python_auditor-0.10.1/local_dependencies/auditor/configuration/archive.yaml +27 -0
  12. python_auditor-0.10.1/local_dependencies/auditor/configuration/rbac.yaml +35 -0
  13. python_auditor-0.10.1/local_dependencies/auditor/scripts/parquet_to_auditor/python_script/.env +7 -0
  14. python_auditor-0.10.1/local_dependencies/auditor/scripts/parquet_to_auditor/python_script/parquet_to_auditor.py +104 -0
  15. python_auditor-0.10.1/local_dependencies/auditor/scripts/parquet_to_auditor/python_script/requirements.txt +5 -0
  16. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/scripts/revert_encoding/requirements.txt +2 -2
  17. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/scripts/revert_encoding/revert_encodings.py +2 -1
  18. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +12 -12
  19. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_single_entry.py +3 -3
  20. python_auditor-0.10.1/local_dependencies/auditor/src/archive.rs +400 -0
  21. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/configuration.rs +129 -3
  22. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/domain/score.rs +2 -7
  23. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/lib.rs +3 -0
  24. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/main.rs +121 -5
  25. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/metrics/database.rs +18 -9
  26. python_auditor-0.10.1/local_dependencies/auditor/src/middleware.rs +163 -0
  27. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/routes/add.rs +52 -25
  28. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/routes/advanced_record_filters.rs +126 -35
  29. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/routes/record_handlers.rs +16 -4
  30. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/startup.rs +92 -9
  31. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/tests/api/advanced_queries.rs +8 -11
  32. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/tests/api/helpers.rs +4 -0
  33. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/Cargo.toml +14 -13
  34. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/benches/benchmark_with_http_request.rs +13 -13
  35. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/src/database.rs +3 -0
  36. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/src/lib.rs +16 -16
  37. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_advanced_query.py +3 -3
  38. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_advanced_query_blocking.py +3 -3
  39. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_advanced_query_queued.py +3 -3
  40. {python_auditor-0.9.4 → python_auditor-0.10.1}/src/client.rs +2 -2
  41. python_auditor-0.9.4/local_dependencies/auditor/certs/rootCA-key.pem +0 -40
  42. python_auditor-0.9.4/local_dependencies/auditor/certs/rootCA.pem +0 -28
  43. python_auditor-0.9.4/local_dependencies/auditor/certs/server-cert.pem +0 -26
  44. python_auditor-0.9.4/local_dependencies/auditor/certs/server-key.pem +0 -28
  45. {python_auditor-0.9.4 → python_auditor-0.10.1}/.cargo/config.toml +0 -0
  46. {python_auditor-0.9.4 → python_auditor-0.10.1}/.readthedocs.yaml +0 -0
  47. {python_auditor-0.9.4 → python_auditor-0.10.1}/README.md +0 -0
  48. {python_auditor-0.9.4 → python_auditor-0.10.1}/docs/Makefile +0 -0
  49. {python_auditor-0.9.4 → python_auditor-0.10.1}/docs/api.rst +0 -0
  50. {python_auditor-0.9.4 → python_auditor-0.10.1}/docs/changelog.rst +0 -0
  51. {python_auditor-0.9.4 → python_auditor-0.10.1}/docs/conf.py +0 -0
  52. {python_auditor-0.9.4 → python_auditor-0.10.1}/docs/index.rst +0 -0
  53. {python_auditor-0.9.4 → python_auditor-0.10.1}/docs/make.bat +0 -0
  54. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/.env +0 -0
  55. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/.sqlx/query-0723e1854dee7d889745714fe094a64edfcf3f389eec3e77fefca2d753f1eceb.json +0 -0
  56. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/.sqlx/query-26a72be3c4ba0fddc30f53a71e0317e21982fde8bd24d8b5714439c1af835080.json +0 -0
  57. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/.sqlx/query-56c4218a1b59d8f9dc0af7191e516cb8f505a7d953ef5b2706e2427a136a918b.json +0 -0
  58. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/.sqlx/query-90e6c5e852ed16ef84a113c260d99efb6e193fa46b8115df94e750440e2d5517.json +0 -0
  59. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/.sqlx/query-a5c2d5afb25cf16a58a73c11cdde1bf5d2336cf42c6e84bf24ba27313d827a1f.json +0 -0
  60. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/.sqlx/query-a621b3eb5f42f24a04d216b9ce3c490182712e1276512cdfe74dcbb9e3e9e54e.json +0 -0
  61. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/.sqlx/query-aa313afec8c23e75ee45750e2ce8e520b96a98670d3c46572a6f942f839b99c0.json +0 -0
  62. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/.sqlx/query-cb3125aad5e124a24a976c2cb20a6e8859709f978c9f651740c439abe3b41adb.json +0 -0
  63. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/.sqlx/query-d8c6add014ac34e66ffb0178d497b9e822c569f86a89525f6ed5cc306713995a.json +0 -0
  64. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/.sqlx/query-dc5295938290703233cfe51c2215e6a5f6a6afe26b6ba3635210f5c157032f78.json +0 -0
  65. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/.sqlx/query-e4129d556ba749cb664ef6e876264efd36d82d813c2c9670dde24e4cfd042f94.json +0 -0
  66. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/.sqlx/query-e88b5acb79055b5c307e15481bc270e47d65b525ef6d98376455a267972be532.json +0 -0
  67. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/build.rs +0 -0
  68. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/configuration/base.yaml +0 -0
  69. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/configuration/dualstack.yaml +0 -0
  70. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/configuration/local.yaml +0 -0
  71. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/configuration/priority-plugin/base.yml +0 -0
  72. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/configuration/production.yaml +0 -0
  73. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
  74. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/configuration/tls_config.yaml +0 -0
  75. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/scripts/revert_encoding/.env +0 -0
  76. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/scripts/revert_encoding/test_script.py +0 -0
  77. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +0 -0
  78. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/scripts/test_valid_names/test_slurm_decoding.py +0 -0
  79. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/scripts/test_valid_names/test_valid_names.py +0 -0
  80. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/constants.rs +0 -0
  81. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/domain/component.rs +0 -0
  82. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/domain/meta.rs +0 -0
  83. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/domain/mod.rs +0 -0
  84. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/domain/record.rs +0 -0
  85. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/domain/validamount.rs +0 -0
  86. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/domain/validname.rs +0 -0
  87. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/domain/validvalue.rs +0 -0
  88. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/error.rs +0 -0
  89. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/macros.rs +0 -0
  90. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/metrics/mod.rs +0 -0
  91. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/routes/get.rs +0 -0
  92. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/routes/health_check.rs +0 -0
  93. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/routes/mod.rs +0 -0
  94. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/routes/update.rs +0 -0
  95. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/src/telemetry.rs +0 -0
  96. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/tests/api/add.rs +0 -0
  97. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/tests/api/get.rs +0 -0
  98. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/tests/api/get_one_record.rs +0 -0
  99. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/tests/api/get_since.rs +0 -0
  100. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
  101. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/tests/api/main.rs +0 -0
  102. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor/tests/api/update.rs +0 -0
  103. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/.env +0 -0
  104. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/.sqlx/query-256977e5f7886c61625e92a77efb52b9ca4321cefcac0e544d64334cdbca93ba.json +0 -0
  105. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/.sqlx/query-440620430cdcfb05e9ded5312614fae4df18e20a2a0730ec9e914ce34338df2d.json +0 -0
  106. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/.sqlx/query-5b1885d85159029e95b3f6d8dcee5eac70e683956480d225143c1de9169e233b.json +0 -0
  107. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/.sqlx/query-6be1ec652f57f24ba44ee6efa08a2c5985cf4375e563a1bff02dbc6fc4a1ac6d.json +0 -0
  108. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/.sqlx/query-7022afed3a87000ca2c5a5a829f8bdfddb266e0a577c428c830b02e3736d264e.json +0 -0
  109. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/.sqlx/query-7ab91dc1d18e4de022a7bbacc463476f8be8a8992b49fe363f70a2d58460e877.json +0 -0
  110. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/.sqlx/query-8de0a0fada9ffea04721b67f8df443a8c496bfccef4be482bbdaa36ef7d508a5.json +0 -0
  111. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/.sqlx/query-c8cba44011d83cdabb543adfae1637c5045144ecc61a6597f538d95a8cc756d4.json +0 -0
  112. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/.sqlx/query-f36fa62228e6ca304003dbd75448e95558f544fdbd602173af16c4bada2a3daf.json +0 -0
  113. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/benches/README.md +0 -0
  114. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/benches/configuration/bench.yaml +0 -0
  115. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/benches/configuration.rs +0 -0
  116. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/configuration/base.yaml +0 -0
  117. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/configuration/local.yaml +0 -0
  118. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/migrations/20231122115509_create_record_table.sql +0 -0
  119. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/src/configuration.rs +0 -0
  120. {python_auditor-0.9.4 → python_auditor-0.10.1}/local_dependencies/auditor-client/src/constants.rs +0 -0
  121. {python_auditor-0.9.4 → python_auditor-0.10.1}/pyproject.toml +0 -0
  122. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_add_update.py +0 -0
  123. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_add_update_blocking.py +0 -0
  124. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_add_update_queued.py +0 -0
  125. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_bulk_insert.py +0 -0
  126. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_bulk_insert_blocking.py +0 -0
  127. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_bulk_insert_queued.py +0 -0
  128. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_components.py +0 -0
  129. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_components_blocking.py +0 -0
  130. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_components_queued.py +0 -0
  131. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_eq.py +0 -0
  132. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_get_since.py +0 -0
  133. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_get_since_blocking.py +0 -0
  134. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_get_since_queued.py +0 -0
  135. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_get_single_record.py +0 -0
  136. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_get_single_record_blocking.py +0 -0
  137. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_get_single_record_queued.py +0 -0
  138. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_meta.py +0 -0
  139. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_meta_blocking.py +0 -0
  140. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/test_meta_queued.py +0 -0
  141. {python_auditor-0.9.4 → python_auditor-0.10.1}/scripts/tls_test/test_tls.py +1 -1
  142. {python_auditor-0.9.4 → python_auditor-0.10.1}/src/blocking_client.rs +0 -0
  143. {python_auditor-0.9.4 → python_auditor-0.10.1}/src/builder.rs +1 -1
  144. {python_auditor-0.9.4 → python_auditor-0.10.1}/src/domain/component.rs +0 -0
  145. {python_auditor-0.9.4 → python_auditor-0.10.1}/src/domain/meta.rs +0 -0
  146. {python_auditor-0.9.4 → python_auditor-0.10.1}/src/domain/mod.rs +0 -0
  147. {python_auditor-0.9.4 → python_auditor-0.10.1}/src/domain/record.rs +0 -0
  148. {python_auditor-0.9.4 → python_auditor-0.10.1}/src/domain/score.rs +0 -0
  149. {python_auditor-0.9.4 → python_auditor-0.10.1}/src/lib.rs +0 -0
  150. {python_auditor-0.9.4 → python_auditor-0.10.1}/src/queued_client.rs +0 -0
@@ -21,9 +21,9 @@ dependencies = [
21
21
 
22
22
  [[package]]
23
23
  name = "actix-http"
24
- version = "3.11.0"
24
+ version = "3.11.2"
25
25
  source = "registry+https://github.com/rust-lang/crates.io-index"
26
- checksum = "44dfe5c9e0004c623edc65391dfd51daa201e7e30ebd9c9bedf873048ec32bc2"
26
+ checksum = "7926860314cbe2fb5d1f13731e387ab43bd32bca224e82e6e2db85de0a3dba49"
27
27
  dependencies = [
28
28
  "actix-codec",
29
29
  "actix-rt",
@@ -40,7 +40,7 @@ dependencies = [
40
40
  "flate2",
41
41
  "foldhash",
42
42
  "futures-core",
43
- "h2 0.3.26",
43
+ "h2 0.3.27",
44
44
  "http 0.2.12",
45
45
  "httparse",
46
46
  "httpdate",
@@ -50,7 +50,7 @@ dependencies = [
50
50
  "mime",
51
51
  "percent-encoding",
52
52
  "pin-project-lite",
53
- "rand 0.9.1",
53
+ "rand 0.9.2",
54
54
  "sha1",
55
55
  "smallvec",
56
56
  "tokio",
@@ -86,9 +86,9 @@ dependencies = [
86
86
 
87
87
  [[package]]
88
88
  name = "actix-rt"
89
- version = "2.10.0"
89
+ version = "2.11.0"
90
90
  source = "registry+https://github.com/rust-lang/crates.io-index"
91
- checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208"
91
+ checksum = "92589714878ca59a7626ea19734f0e07a6a875197eec751bb5d3f99e64998c63"
92
92
  dependencies = [
93
93
  "futures-core",
94
94
  "tokio",
@@ -106,7 +106,7 @@ dependencies = [
106
106
  "futures-core",
107
107
  "futures-util",
108
108
  "mio",
109
- "socket2",
109
+ "socket2 0.5.10",
110
110
  "tokio",
111
111
  "tracing",
112
112
  ]
@@ -135,7 +135,7 @@ dependencies = [
135
135
  "pin-project-lite",
136
136
  "rustls-pki-types",
137
137
  "tokio",
138
- "tokio-rustls 0.26.2",
138
+ "tokio-rustls 0.26.4",
139
139
  "tokio-util",
140
140
  "tracing",
141
141
  ]
@@ -188,7 +188,7 @@ dependencies = [
188
188
  "serde_json",
189
189
  "serde_urlencoded",
190
190
  "smallvec",
191
- "socket2",
191
+ "socket2 0.5.10",
192
192
  "time",
193
193
  "tracing",
194
194
  "url",
@@ -224,18 +224,18 @@ dependencies = [
224
224
 
225
225
  [[package]]
226
226
  name = "addr2line"
227
- version = "0.24.2"
227
+ version = "0.25.1"
228
228
  source = "registry+https://github.com/rust-lang/crates.io-index"
229
- checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
229
+ checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
230
230
  dependencies = [
231
231
  "gimli",
232
232
  ]
233
233
 
234
234
  [[package]]
235
235
  name = "adler2"
236
- version = "2.0.0"
236
+ version = "2.0.1"
237
237
  source = "registry+https://github.com/rust-lang/crates.io-index"
238
- checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
238
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
239
239
 
240
240
  [[package]]
241
241
  name = "ahash"
@@ -244,7 +244,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
244
244
  checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
245
245
  dependencies = [
246
246
  "cfg-if",
247
- "getrandom 0.3.3",
247
+ "const-random",
248
+ "getrandom 0.3.4",
248
249
  "once_cell",
249
250
  "version_check",
250
251
  "zerocopy",
@@ -280,12 +281,6 @@ version = "0.2.21"
280
281
  source = "registry+https://github.com/rust-lang/crates.io-index"
281
282
  checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
282
283
 
283
- [[package]]
284
- name = "android-tzdata"
285
- version = "0.1.1"
286
- source = "registry+https://github.com/rust-lang/crates.io-index"
287
- checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
288
-
289
284
  [[package]]
290
285
  name = "android_system_properties"
291
286
  version = "0.1.5"
@@ -303,15 +298,15 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
303
298
 
304
299
  [[package]]
305
300
  name = "anstyle"
306
- version = "1.0.10"
301
+ version = "1.0.13"
307
302
  source = "registry+https://github.com/rust-lang/crates.io-index"
308
- checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
303
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
309
304
 
310
305
  [[package]]
311
306
  name = "anyhow"
312
- version = "1.0.98"
307
+ version = "1.0.100"
313
308
  source = "registry+https://github.com/rust-lang/crates.io-index"
314
- checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
309
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
315
310
 
316
311
  [[package]]
317
312
  name = "arraydeque"
@@ -319,6 +314,259 @@ version = "0.5.1"
319
314
  source = "registry+https://github.com/rust-lang/crates.io-index"
320
315
  checksum = "7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236"
321
316
 
317
+ [[package]]
318
+ name = "arrow"
319
+ version = "57.0.0"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "4df8bb5b0bd64c0b9bc61317fcc480bad0f00e56d3bc32c69a4c8dada4786bae"
322
+ dependencies = [
323
+ "arrow-arith",
324
+ "arrow-array",
325
+ "arrow-buffer",
326
+ "arrow-cast",
327
+ "arrow-csv",
328
+ "arrow-data",
329
+ "arrow-ipc",
330
+ "arrow-json",
331
+ "arrow-ord",
332
+ "arrow-row",
333
+ "arrow-schema",
334
+ "arrow-select",
335
+ "arrow-string",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "arrow-arith"
340
+ version = "57.0.0"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "a1a640186d3bd30a24cb42264c2dafb30e236a6f50d510e56d40b708c9582491"
343
+ dependencies = [
344
+ "arrow-array",
345
+ "arrow-buffer",
346
+ "arrow-data",
347
+ "arrow-schema",
348
+ "chrono",
349
+ "num-traits",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "arrow-array"
354
+ version = "57.0.0"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "219fe420e6800979744c8393b687afb0252b3f8a89b91027d27887b72aa36d31"
357
+ dependencies = [
358
+ "ahash",
359
+ "arrow-buffer",
360
+ "arrow-data",
361
+ "arrow-schema",
362
+ "chrono",
363
+ "half",
364
+ "hashbrown 0.16.0",
365
+ "num-complex",
366
+ "num-integer",
367
+ "num-traits",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "arrow-buffer"
372
+ version = "57.0.0"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "76885a2697a7edf6b59577f568b456afc94ce0e2edc15b784ce3685b6c3c5c27"
375
+ dependencies = [
376
+ "bytes",
377
+ "half",
378
+ "num-bigint",
379
+ "num-traits",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "arrow-cast"
384
+ version = "57.0.0"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "9c9ebb4c987e6b3b236fb4a14b20b34835abfdd80acead3ccf1f9bf399e1f168"
387
+ dependencies = [
388
+ "arrow-array",
389
+ "arrow-buffer",
390
+ "arrow-data",
391
+ "arrow-schema",
392
+ "arrow-select",
393
+ "atoi",
394
+ "base64 0.22.1",
395
+ "chrono",
396
+ "half",
397
+ "lexical-core",
398
+ "num-traits",
399
+ "ryu",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "arrow-csv"
404
+ version = "57.0.0"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "92386159c8d4bce96f8bd396b0642a0d544d471bdc2ef34d631aec80db40a09c"
407
+ dependencies = [
408
+ "arrow-array",
409
+ "arrow-cast",
410
+ "arrow-schema",
411
+ "chrono",
412
+ "csv",
413
+ "csv-core",
414
+ "regex",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "arrow-data"
419
+ version = "57.0.0"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "727681b95de313b600eddc2a37e736dcb21980a40f640314dcf360e2f36bc89b"
422
+ dependencies = [
423
+ "arrow-buffer",
424
+ "arrow-schema",
425
+ "half",
426
+ "num-integer",
427
+ "num-traits",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "arrow-ipc"
432
+ version = "57.0.0"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "da9ba92e3de170295c98a84e5af22e2b037f0c7b32449445e6c493b5fca27f27"
435
+ dependencies = [
436
+ "arrow-array",
437
+ "arrow-buffer",
438
+ "arrow-data",
439
+ "arrow-schema",
440
+ "arrow-select",
441
+ "flatbuffers",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "arrow-json"
446
+ version = "57.0.0"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "b969b4a421ae83828591c6bf5450bd52e6d489584142845ad6a861f42fe35df8"
449
+ dependencies = [
450
+ "arrow-array",
451
+ "arrow-buffer",
452
+ "arrow-cast",
453
+ "arrow-data",
454
+ "arrow-schema",
455
+ "chrono",
456
+ "half",
457
+ "indexmap 2.12.0",
458
+ "itoa",
459
+ "lexical-core",
460
+ "memchr",
461
+ "num-traits",
462
+ "ryu",
463
+ "serde_core",
464
+ "serde_json",
465
+ "simdutf8",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "arrow-ord"
470
+ version = "57.0.0"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "141c05298b21d03e88062317a1f1a73f5ba7b6eb041b350015b1cd6aabc0519b"
473
+ dependencies = [
474
+ "arrow-array",
475
+ "arrow-buffer",
476
+ "arrow-data",
477
+ "arrow-schema",
478
+ "arrow-select",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "arrow-row"
483
+ version = "57.0.0"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "c5f3c06a6abad6164508ed283c7a02151515cef3de4b4ff2cebbcaeb85533db2"
486
+ dependencies = [
487
+ "arrow-array",
488
+ "arrow-buffer",
489
+ "arrow-data",
490
+ "arrow-schema",
491
+ "half",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "arrow-schema"
496
+ version = "57.0.0"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "9cfa7a03d1eee2a4d061476e1840ad5c9867a544ca6c4c59256496af5d0a8be5"
499
+
500
+ [[package]]
501
+ name = "arrow-select"
502
+ version = "57.0.0"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "bafa595babaad59f2455f4957d0f26448fb472722c186739f4fac0823a1bdb47"
505
+ dependencies = [
506
+ "ahash",
507
+ "arrow-array",
508
+ "arrow-buffer",
509
+ "arrow-data",
510
+ "arrow-schema",
511
+ "num-traits",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "arrow-string"
516
+ version = "57.0.0"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "32f46457dbbb99f2650ff3ac23e46a929e0ab81db809b02aa5511c258348bef2"
519
+ dependencies = [
520
+ "arrow-array",
521
+ "arrow-buffer",
522
+ "arrow-data",
523
+ "arrow-schema",
524
+ "arrow-select",
525
+ "memchr",
526
+ "num-traits",
527
+ "regex",
528
+ "regex-syntax",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "asn1-rs"
533
+ version = "0.7.1"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60"
536
+ dependencies = [
537
+ "asn1-rs-derive",
538
+ "asn1-rs-impl",
539
+ "displaydoc",
540
+ "nom",
541
+ "num-traits",
542
+ "rusticata-macros",
543
+ "thiserror 2.0.17",
544
+ "time",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "asn1-rs-derive"
549
+ version = "0.6.0"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
552
+ dependencies = [
553
+ "proc-macro2",
554
+ "quote",
555
+ "syn",
556
+ "synstructure",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "asn1-rs-impl"
561
+ version = "0.2.0"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
564
+ dependencies = [
565
+ "proc-macro2",
566
+ "quote",
567
+ "syn",
568
+ ]
569
+
322
570
  [[package]]
323
571
  name = "assert-json-diff"
324
572
  version = "2.0.2"
@@ -353,9 +601,9 @@ dependencies = [
353
601
 
354
602
  [[package]]
355
603
  name = "async-trait"
356
- version = "0.1.88"
604
+ version = "0.1.89"
357
605
  source = "registry+https://github.com/rust-lang/crates.io-index"
358
- checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
606
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
359
607
  dependencies = [
360
608
  "proc-macro2",
361
609
  "quote",
@@ -379,43 +627,49 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
379
627
 
380
628
  [[package]]
381
629
  name = "auditor"
382
- version = "0.9.4"
630
+ version = "0.10.1"
383
631
  dependencies = [
384
632
  "actix-tls",
385
633
  "actix-web",
386
634
  "actix-web-opentelemetry",
387
635
  "anyhow",
636
+ "arrow",
637
+ "arrow-array",
388
638
  "async-stream",
639
+ "casbin",
389
640
  "chrono",
390
641
  "claims",
391
642
  "config",
643
+ "csv",
392
644
  "fake",
393
645
  "futures",
394
646
  "futures-util",
395
- "itertools 0.13.0",
647
+ "itertools 0.14.0",
396
648
  "num-traits",
397
649
  "once_cell",
398
650
  "opentelemetry 0.23.0",
399
651
  "opentelemetry-prometheus 0.16.0",
400
652
  "opentelemetry_sdk 0.23.0",
653
+ "parquet",
401
654
  "prometheus",
402
655
  "quickcheck",
403
656
  "quickcheck_macros",
404
- "rand 0.8.5",
657
+ "rand 0.9.2",
405
658
  "regex",
406
659
  "reqwest",
407
660
  "reqwest-streams",
408
- "rustls 0.23.27",
661
+ "rustls 0.23.34",
409
662
  "rustls-pemfile 2.2.0",
410
- "secrecy",
663
+ "secrecy 0.10.3",
411
664
  "serde",
412
665
  "serde-aux",
413
666
  "serde_json",
414
667
  "serde_qs",
415
668
  "serde_with",
416
669
  "sqlx",
417
- "thiserror 2.0.12",
670
+ "thiserror 2.0.17",
418
671
  "tokio",
672
+ "tokio-cron-scheduler",
419
673
  "tracing",
420
674
  "tracing-actix-web",
421
675
  "tracing-bunyan-formatter",
@@ -425,11 +679,12 @@ dependencies = [
425
679
  "urlencoding",
426
680
  "uuid",
427
681
  "wiremock",
682
+ "x509-parser",
428
683
  ]
429
684
 
430
685
  [[package]]
431
686
  name = "auditor-client"
432
- version = "0.9.4"
687
+ version = "0.10.1"
433
688
  dependencies = [
434
689
  "anyhow",
435
690
  "auditor",
@@ -441,19 +696,19 @@ dependencies = [
441
696
  "criterion-macro",
442
697
  "fake",
443
698
  "futures",
444
- "itertools 0.13.0",
699
+ "itertools 0.14.0",
445
700
  "once_cell",
446
- "rand 0.8.5",
701
+ "rand 0.9.2",
447
702
  "rand_distr",
448
703
  "reqwest",
449
704
  "reqwest-streams",
450
- "rustls 0.23.27",
705
+ "rustls 0.23.34",
451
706
  "serde",
452
707
  "serde-aux",
453
708
  "serde_json",
454
709
  "serde_qs",
455
710
  "sqlx",
456
- "thiserror 2.0.12",
711
+ "thiserror 2.0.17",
457
712
  "tokio",
458
713
  "tracing",
459
714
  "tracing-subscriber",
@@ -464,7 +719,7 @@ dependencies = [
464
719
 
465
720
  [[package]]
466
721
  name = "auditor-kubernetes-collector"
467
- version = "0.9.4"
722
+ version = "0.10.1"
468
723
  dependencies = [
469
724
  "anyhow",
470
725
  "auditor",
@@ -488,7 +743,7 @@ dependencies = [
488
743
 
489
744
  [[package]]
490
745
  name = "auditor-priority-plugin"
491
- version = "0.9.4"
746
+ version = "0.10.1"
492
747
  dependencies = [
493
748
  "actix-web",
494
749
  "actix-web-opentelemetry",
@@ -515,7 +770,7 @@ dependencies = [
515
770
 
516
771
  [[package]]
517
772
  name = "auditor-slurm-collector"
518
- version = "0.9.4"
773
+ version = "0.10.1"
519
774
  dependencies = [
520
775
  "anyhow",
521
776
  "auditor",
@@ -525,7 +780,7 @@ dependencies = [
525
780
  "color-eyre",
526
781
  "config",
527
782
  "fake",
528
- "itertools 0.13.0",
783
+ "itertools 0.14.0",
529
784
  "once_cell",
530
785
  "regex",
531
786
  "serde",
@@ -541,7 +796,7 @@ dependencies = [
541
796
 
542
797
  [[package]]
543
798
  name = "auditor-slurm-epilog-collector"
544
- version = "0.9.4"
799
+ version = "0.10.1"
545
800
  dependencies = [
546
801
  "anyhow",
547
802
  "auditor",
@@ -560,15 +815,15 @@ dependencies = [
560
815
 
561
816
  [[package]]
562
817
  name = "autocfg"
563
- version = "1.4.0"
818
+ version = "1.5.0"
564
819
  source = "registry+https://github.com/rust-lang/crates.io-index"
565
- checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
820
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
566
821
 
567
822
  [[package]]
568
823
  name = "aws-lc-rs"
569
- version = "1.13.1"
824
+ version = "1.14.1"
570
825
  source = "registry+https://github.com/rust-lang/crates.io-index"
571
- checksum = "93fcc8f365936c834db5514fc45aee5b1202d677e6b40e48468aaaa8183ca8c7"
826
+ checksum = "879b6c89592deb404ba4dc0ae6b58ffd1795c78991cbb5b8bc441c48a070440d"
572
827
  dependencies = [
573
828
  "aws-lc-sys",
574
829
  "zeroize",
@@ -576,9 +831,9 @@ dependencies = [
576
831
 
577
832
  [[package]]
578
833
  name = "aws-lc-sys"
579
- version = "0.29.0"
834
+ version = "0.32.3"
580
835
  source = "registry+https://github.com/rust-lang/crates.io-index"
581
- checksum = "61b1d86e7705efe1be1b569bab41d4fa1e14e220b60a160f78de2db687add079"
836
+ checksum = "107a4e9d9cab9963e04e84bb8dee0e25f2a987f9a8bad5ed054abd439caa8f8c"
582
837
  dependencies = [
583
838
  "bindgen",
584
839
  "cc",
@@ -589,9 +844,9 @@ dependencies = [
589
844
 
590
845
  [[package]]
591
846
  name = "backtrace"
592
- version = "0.3.75"
847
+ version = "0.3.76"
593
848
  source = "registry+https://github.com/rust-lang/crates.io-index"
594
- checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
849
+ checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
595
850
  dependencies = [
596
851
  "addr2line",
597
852
  "cfg-if",
@@ -599,7 +854,7 @@ dependencies = [
599
854
  "miniz_oxide",
600
855
  "object",
601
856
  "rustc-demangle",
602
- "windows-targets 0.52.6",
857
+ "windows-link",
603
858
  ]
604
859
 
605
860
  [[package]]
@@ -616,9 +871,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
616
871
 
617
872
  [[package]]
618
873
  name = "base64ct"
619
- version = "1.7.3"
874
+ version = "1.8.0"
620
875
  source = "registry+https://github.com/rust-lang/crates.io-index"
621
- checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3"
876
+ checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
622
877
 
623
878
  [[package]]
624
879
  name = "bincode"
@@ -631,34 +886,31 @@ dependencies = [
631
886
 
632
887
  [[package]]
633
888
  name = "bindgen"
634
- version = "0.69.5"
889
+ version = "0.72.1"
635
890
  source = "registry+https://github.com/rust-lang/crates.io-index"
636
- checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
891
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
637
892
  dependencies = [
638
893
  "bitflags",
639
894
  "cexpr",
640
895
  "clang-sys",
641
- "itertools 0.12.1",
642
- "lazy_static",
643
- "lazycell",
896
+ "itertools 0.13.0",
644
897
  "log",
645
898
  "prettyplease",
646
899
  "proc-macro2",
647
900
  "quote",
648
901
  "regex",
649
- "rustc-hash 1.1.0",
902
+ "rustc-hash",
650
903
  "shlex",
651
904
  "syn",
652
- "which",
653
905
  ]
654
906
 
655
907
  [[package]]
656
908
  name = "bitflags"
657
- version = "2.9.1"
909
+ version = "2.10.0"
658
910
  source = "registry+https://github.com/rust-lang/crates.io-index"
659
- checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
911
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
660
912
  dependencies = [
661
- "serde",
913
+ "serde_core",
662
914
  ]
663
915
 
664
916
  [[package]]
@@ -672,9 +924,9 @@ dependencies = [
672
924
 
673
925
  [[package]]
674
926
  name = "brotli"
675
- version = "8.0.1"
927
+ version = "8.0.2"
676
928
  source = "registry+https://github.com/rust-lang/crates.io-index"
677
- checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d"
929
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
678
930
  dependencies = [
679
931
  "alloc-no-stdlib",
680
932
  "alloc-stdlib",
@@ -693,9 +945,9 @@ dependencies = [
693
945
 
694
946
  [[package]]
695
947
  name = "bumpalo"
696
- version = "3.17.0"
948
+ version = "3.19.0"
697
949
  source = "registry+https://github.com/rust-lang/crates.io-index"
698
- checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
950
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
699
951
 
700
952
  [[package]]
701
953
  name = "byteorder"
@@ -711,9 +963,9 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
711
963
 
712
964
  [[package]]
713
965
  name = "bytestring"
714
- version = "1.4.0"
966
+ version = "1.5.0"
715
967
  source = "registry+https://github.com/rust-lang/crates.io-index"
716
- checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f"
968
+ checksum = "113b4343b5f6617e7ad401ced8de3cc8b012e73a594347c307b90db3e9271289"
717
969
  dependencies = [
718
970
  "bytes",
719
971
  ]
@@ -724,6 +976,28 @@ version = "1.5.0"
724
976
  source = "registry+https://github.com/rust-lang/crates.io-index"
725
977
  checksum = "7b02b629252fe8ef6460461409564e2c21d0c8e77e0944f3d189ff06c4e932ad"
726
978
 
979
+ [[package]]
980
+ name = "casbin"
981
+ version = "2.15.0"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "204a52f19e041f2abcc31cd10e6692ea441ab420e163b4e7cf1238315204ab86"
984
+ dependencies = [
985
+ "async-trait",
986
+ "fixedbitset",
987
+ "getrandom 0.3.4",
988
+ "hashlink 0.9.1",
989
+ "once_cell",
990
+ "parking_lot",
991
+ "petgraph",
992
+ "regex",
993
+ "rhai",
994
+ "serde",
995
+ "serde_json",
996
+ "thiserror 1.0.69",
997
+ "tokio",
998
+ "wasm-bindgen-test",
999
+ ]
1000
+
727
1001
  [[package]]
728
1002
  name = "cast"
729
1003
  version = "0.3.0"
@@ -732,10 +1006,11 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
732
1006
 
733
1007
  [[package]]
734
1008
  name = "cc"
735
- version = "1.2.23"
1009
+ version = "1.2.43"
736
1010
  source = "registry+https://github.com/rust-lang/crates.io-index"
737
- checksum = "5f4ac86a9e5bc1e2b3449ab9d7d3a6a405e3d1bb28d7b9be8614f55846ae3766"
1011
+ checksum = "739eb0f94557554b3ca9a86d2d37bebd49c5e6d0c1d2bda35ba5bdac830befc2"
738
1012
  dependencies = [
1013
+ "find-msvc-tools",
739
1014
  "jobserver",
740
1015
  "libc",
741
1016
  "shlex",
@@ -752,9 +1027,9 @@ dependencies = [
752
1027
 
753
1028
  [[package]]
754
1029
  name = "cfg-if"
755
- version = "1.0.0"
1030
+ version = "1.0.4"
756
1031
  source = "registry+https://github.com/rust-lang/crates.io-index"
757
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
1032
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
758
1033
 
759
1034
  [[package]]
760
1035
  name = "cfg_aliases"
@@ -764,17 +1039,28 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
764
1039
 
765
1040
  [[package]]
766
1041
  name = "chrono"
767
- version = "0.4.41"
1042
+ version = "0.4.42"
768
1043
  source = "registry+https://github.com/rust-lang/crates.io-index"
769
- checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
1044
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
770
1045
  dependencies = [
771
- "android-tzdata",
772
1046
  "iana-time-zone",
1047
+ "js-sys",
773
1048
  "num-traits",
774
1049
  "serde",
1050
+ "wasm-bindgen",
775
1051
  "windows-link",
776
1052
  ]
777
1053
 
1054
+ [[package]]
1055
+ name = "chrono-tz"
1056
+ version = "0.10.4"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
1059
+ dependencies = [
1060
+ "chrono",
1061
+ "phf",
1062
+ ]
1063
+
778
1064
  [[package]]
779
1065
  name = "ciborium"
780
1066
  version = "0.2.2"
@@ -824,18 +1110,18 @@ dependencies = [
824
1110
 
825
1111
  [[package]]
826
1112
  name = "clap"
827
- version = "4.5.38"
1113
+ version = "4.5.50"
828
1114
  source = "registry+https://github.com/rust-lang/crates.io-index"
829
- checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000"
1115
+ checksum = "0c2cfd7bf8a6017ddaa4e32ffe7403d547790db06bd171c1c53926faab501623"
830
1116
  dependencies = [
831
1117
  "clap_builder",
832
1118
  ]
833
1119
 
834
1120
  [[package]]
835
1121
  name = "clap_builder"
836
- version = "4.5.38"
1122
+ version = "4.5.50"
837
1123
  source = "registry+https://github.com/rust-lang/crates.io-index"
838
- checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120"
1124
+ checksum = "0a4c05b9e80c5ccd3a7ef080ad7b6ba7d6fc00a985b8b157197075677c82c7a0"
839
1125
  dependencies = [
840
1126
  "anstyle",
841
1127
  "clap_lex",
@@ -843,9 +1129,9 @@ dependencies = [
843
1129
 
844
1130
  [[package]]
845
1131
  name = "clap_lex"
846
- version = "0.7.4"
1132
+ version = "0.7.6"
847
1133
  source = "registry+https://github.com/rust-lang/crates.io-index"
848
- checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
1134
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
849
1135
 
850
1136
  [[package]]
851
1137
  name = "cmake"
@@ -858,9 +1144,9 @@ dependencies = [
858
1144
 
859
1145
  [[package]]
860
1146
  name = "color-eyre"
861
- version = "0.6.4"
1147
+ version = "0.6.5"
862
1148
  source = "registry+https://github.com/rust-lang/crates.io-index"
863
- checksum = "e6e1761c0e16f8883bbbb8ce5990867f4f06bf11a0253da6495a04ce4b6ef0ec"
1149
+ checksum = "e5920befb47832a6d61ee3a3a846565cfa39b331331e68a3b1d1116630f2f26d"
864
1150
  dependencies = [
865
1151
  "backtrace",
866
1152
  "color-spantrace",
@@ -873,9 +1159,9 @@ dependencies = [
873
1159
 
874
1160
  [[package]]
875
1161
  name = "color-spantrace"
876
- version = "0.2.2"
1162
+ version = "0.3.0"
877
1163
  source = "registry+https://github.com/rust-lang/crates.io-index"
878
- checksum = "2ddd8d5bfda1e11a501d0a7303f3bfed9aa632ebdb859be40d0fd70478ed70d5"
1164
+ checksum = "b8b88ea9df13354b55bc7234ebcce36e6ef896aca2e42a15de9e10edce01b427"
879
1165
  dependencies = [
880
1166
  "once_cell",
881
1167
  "owo-colors",
@@ -894,9 +1180,9 @@ dependencies = [
894
1180
 
895
1181
  [[package]]
896
1182
  name = "config"
897
- version = "0.15.11"
1183
+ version = "0.15.18"
898
1184
  source = "registry+https://github.com/rust-lang/crates.io-index"
899
- checksum = "595aae20e65c3be792d05818e8c63025294ac3cb7e200f11459063a352a6ef80"
1185
+ checksum = "180e549344080374f9b32ed41bf3b6b57885ff6a289367b3dbc10eea8acc1918"
900
1186
  dependencies = [
901
1187
  "async-trait",
902
1188
  "convert_case",
@@ -904,7 +1190,8 @@ dependencies = [
904
1190
  "pathdiff",
905
1191
  "ron",
906
1192
  "rust-ini",
907
- "serde",
1193
+ "serde-untagged",
1194
+ "serde_core",
908
1195
  "serde_json",
909
1196
  "toml",
910
1197
  "winnow",
@@ -999,35 +1286,31 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
999
1286
 
1000
1287
  [[package]]
1001
1288
  name = "crc32fast"
1002
- version = "1.4.2"
1289
+ version = "1.5.0"
1003
1290
  source = "registry+https://github.com/rust-lang/crates.io-index"
1004
- checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
1291
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
1005
1292
  dependencies = [
1006
1293
  "cfg-if",
1007
1294
  ]
1008
1295
 
1009
1296
  [[package]]
1010
1297
  name = "criterion"
1011
- version = "0.5.1"
1298
+ version = "0.7.0"
1012
1299
  source = "registry+https://github.com/rust-lang/crates.io-index"
1013
- checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
1300
+ checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
1014
1301
  dependencies = [
1015
1302
  "anes",
1016
1303
  "cast",
1017
1304
  "ciborium",
1018
1305
  "clap",
1019
1306
  "criterion-plot",
1020
- "futures",
1021
- "is-terminal",
1022
- "itertools 0.10.5",
1307
+ "itertools 0.13.0",
1023
1308
  "num-traits",
1024
- "once_cell",
1025
1309
  "oorandom",
1026
1310
  "plotters",
1027
1311
  "rayon",
1028
1312
  "regex",
1029
1313
  "serde",
1030
- "serde_derive",
1031
1314
  "serde_json",
1032
1315
  "tinytemplate",
1033
1316
  "tokio",
@@ -1046,12 +1329,23 @@ dependencies = [
1046
1329
 
1047
1330
  [[package]]
1048
1331
  name = "criterion-plot"
1049
- version = "0.5.0"
1332
+ version = "0.6.0"
1050
1333
  source = "registry+https://github.com/rust-lang/crates.io-index"
1051
- checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
1334
+ checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
1052
1335
  dependencies = [
1053
1336
  "cast",
1054
- "itertools 0.10.5",
1337
+ "itertools 0.13.0",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "croner"
1342
+ version = "3.0.0"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "4c007081651a19b42931f86f7d4f74ee1c2a7d0cd2c6636a81695b5ffd4e9990"
1345
+ dependencies = [
1346
+ "chrono",
1347
+ "derive_builder",
1348
+ "strum",
1055
1349
  ]
1056
1350
 
1057
1351
  [[package]]
@@ -1090,9 +1384,9 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
1090
1384
 
1091
1385
  [[package]]
1092
1386
  name = "crunchy"
1093
- version = "0.2.3"
1387
+ version = "0.2.4"
1094
1388
  source = "registry+https://github.com/rust-lang/crates.io-index"
1095
- checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
1389
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
1096
1390
 
1097
1391
  [[package]]
1098
1392
  name = "crypto-common"
@@ -1104,14 +1398,45 @@ dependencies = [
1104
1398
  "typenum",
1105
1399
  ]
1106
1400
 
1401
+ [[package]]
1402
+ name = "csv"
1403
+ version = "1.4.0"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
1406
+ dependencies = [
1407
+ "csv-core",
1408
+ "itoa",
1409
+ "ryu",
1410
+ "serde_core",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "csv-core"
1415
+ version = "0.1.13"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
1418
+ dependencies = [
1419
+ "memchr",
1420
+ ]
1421
+
1107
1422
  [[package]]
1108
1423
  name = "darling"
1109
1424
  version = "0.20.11"
1110
1425
  source = "registry+https://github.com/rust-lang/crates.io-index"
1111
1426
  checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
1112
1427
  dependencies = [
1113
- "darling_core",
1114
- "darling_macro",
1428
+ "darling_core 0.20.11",
1429
+ "darling_macro 0.20.11",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "darling"
1434
+ version = "0.21.3"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
1437
+ dependencies = [
1438
+ "darling_core 0.21.3",
1439
+ "darling_macro 0.21.3",
1115
1440
  ]
1116
1441
 
1117
1442
  [[package]]
@@ -1128,25 +1453,56 @@ dependencies = [
1128
1453
  "syn",
1129
1454
  ]
1130
1455
 
1456
+ [[package]]
1457
+ name = "darling_core"
1458
+ version = "0.21.3"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
1461
+ dependencies = [
1462
+ "fnv",
1463
+ "ident_case",
1464
+ "proc-macro2",
1465
+ "quote",
1466
+ "strsim",
1467
+ "syn",
1468
+ ]
1469
+
1131
1470
  [[package]]
1132
1471
  name = "darling_macro"
1133
1472
  version = "0.20.11"
1134
1473
  source = "registry+https://github.com/rust-lang/crates.io-index"
1135
1474
  checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
1136
1475
  dependencies = [
1137
- "darling_core",
1476
+ "darling_core 0.20.11",
1138
1477
  "quote",
1139
1478
  "syn",
1140
1479
  ]
1141
1480
 
1481
+ [[package]]
1482
+ name = "darling_macro"
1483
+ version = "0.21.3"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
1486
+ dependencies = [
1487
+ "darling_core 0.21.3",
1488
+ "quote",
1489
+ "syn",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "data-encoding"
1494
+ version = "2.9.0"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
1497
+
1142
1498
  [[package]]
1143
1499
  name = "deadpool"
1144
- version = "0.10.0"
1500
+ version = "0.12.3"
1145
1501
  source = "registry+https://github.com/rust-lang/crates.io-index"
1146
- checksum = "fb84100978c1c7b37f09ed3ce3e5f843af02c2a2c431bae5b19230dad2c1b490"
1502
+ checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
1147
1503
  dependencies = [
1148
- "async-trait",
1149
1504
  "deadpool-runtime",
1505
+ "lazy_static",
1150
1506
  "num_cpus",
1151
1507
  "tokio",
1152
1508
  ]
@@ -1168,14 +1524,59 @@ dependencies = [
1168
1524
  "zeroize",
1169
1525
  ]
1170
1526
 
1527
+ [[package]]
1528
+ name = "der-parser"
1529
+ version = "10.0.0"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6"
1532
+ dependencies = [
1533
+ "asn1-rs",
1534
+ "displaydoc",
1535
+ "nom",
1536
+ "num-bigint",
1537
+ "num-traits",
1538
+ "rusticata-macros",
1539
+ ]
1540
+
1171
1541
  [[package]]
1172
1542
  name = "deranged"
1173
- version = "0.4.0"
1543
+ version = "0.5.5"
1174
1544
  source = "registry+https://github.com/rust-lang/crates.io-index"
1175
- checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
1545
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
1176
1546
  dependencies = [
1177
1547
  "powerfmt",
1178
- "serde",
1548
+ "serde_core",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "derive_builder"
1553
+ version = "0.20.2"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
1556
+ dependencies = [
1557
+ "derive_builder_macro",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "derive_builder_core"
1562
+ version = "0.20.2"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
1565
+ dependencies = [
1566
+ "darling 0.20.11",
1567
+ "proc-macro2",
1568
+ "quote",
1569
+ "syn",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "derive_builder_macro"
1574
+ version = "0.20.2"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
1577
+ dependencies = [
1578
+ "derive_builder_core",
1579
+ "syn",
1179
1580
  ]
1180
1581
 
1181
1582
  [[package]]
@@ -1245,11 +1646,11 @@ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
1245
1646
 
1246
1647
  [[package]]
1247
1648
  name = "dummy"
1248
- version = "0.8.0"
1649
+ version = "0.11.0"
1249
1650
  source = "registry+https://github.com/rust-lang/crates.io-index"
1250
- checksum = "1cac124e13ae9aa56acc4241f8c8207501d93afdd8d8e62f0c1f2e12f6508c65"
1651
+ checksum = "3bbcf21279103a67372982cb1156a2154a452451dff2b884cf897ccecce389e0"
1251
1652
  dependencies = [
1252
- "darling",
1653
+ "darling 0.20.11",
1253
1654
  "proc-macro2",
1254
1655
  "quote",
1255
1656
  "syn",
@@ -1261,6 +1662,12 @@ version = "1.0.5"
1261
1662
  source = "registry+https://github.com/rust-lang/crates.io-index"
1262
1663
  checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
1263
1664
 
1665
+ [[package]]
1666
+ name = "dyn-clone"
1667
+ version = "1.0.20"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
1670
+
1264
1671
  [[package]]
1265
1672
  name = "either"
1266
1673
  version = "1.15.0"
@@ -1308,13 +1715,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
1715
  checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1309
1716
 
1310
1717
  [[package]]
1311
- name = "errno"
1312
- version = "0.3.12"
1718
+ name = "erased-serde"
1719
+ version = "0.4.8"
1313
1720
  source = "registry+https://github.com/rust-lang/crates.io-index"
1314
- checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
1721
+ checksum = "259d404d09818dec19332e31d94558aeb442fea04c817006456c24b5460bbd4b"
1315
1722
  dependencies = [
1316
- "libc",
1317
- "windows-sys 0.59.0",
1723
+ "serde",
1724
+ "serde_core",
1725
+ "typeid",
1318
1726
  ]
1319
1727
 
1320
1728
  [[package]]
@@ -1330,9 +1738,9 @@ dependencies = [
1330
1738
 
1331
1739
  [[package]]
1332
1740
  name = "event-listener"
1333
- version = "5.4.0"
1741
+ version = "5.4.1"
1334
1742
  source = "registry+https://github.com/rust-lang/crates.io-index"
1335
- checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
1743
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
1336
1744
  dependencies = [
1337
1745
  "concurrent-queue",
1338
1746
  "parking",
@@ -1351,23 +1759,47 @@ dependencies = [
1351
1759
 
1352
1760
  [[package]]
1353
1761
  name = "fake"
1354
- version = "2.10.0"
1762
+ version = "4.4.0"
1355
1763
  source = "registry+https://github.com/rust-lang/crates.io-index"
1356
- checksum = "2d391ba4af7f1d93f01fcf7b2f29e2bc9348e109dfdbf4dcbdc51dfa38dab0b6"
1764
+ checksum = "f2b0902eb36fbab51c14eda1c186bda119fcff91e5e4e7fc2dd2077298197ce8"
1357
1765
  dependencies = [
1358
1766
  "chrono",
1359
1767
  "deunicode",
1360
1768
  "dummy",
1361
- "rand 0.8.5",
1769
+ "either",
1770
+ "rand 0.9.2",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "find-msvc-tools"
1775
+ version = "0.1.4"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
1778
+
1779
+ [[package]]
1780
+ name = "fixedbitset"
1781
+ version = "0.4.2"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
1784
+
1785
+ [[package]]
1786
+ name = "flatbuffers"
1787
+ version = "25.9.23"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "09b6620799e7340ebd9968d2e0708eb82cf1971e9a16821e2091b6d6e475eed5"
1790
+ dependencies = [
1791
+ "bitflags",
1792
+ "rustc_version",
1362
1793
  ]
1363
1794
 
1364
1795
  [[package]]
1365
1796
  name = "flate2"
1366
- version = "1.1.1"
1797
+ version = "1.1.5"
1367
1798
  source = "registry+https://github.com/rust-lang/crates.io-index"
1368
- checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
1799
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
1369
1800
  dependencies = [
1370
1801
  "crc32fast",
1802
+ "libz-rs-sys",
1371
1803
  "miniz_oxide",
1372
1804
  ]
1373
1805
 
@@ -1379,7 +1811,7 @@ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
1379
1811
  dependencies = [
1380
1812
  "futures-core",
1381
1813
  "futures-sink",
1382
- "spin",
1814
+ "spin 0.9.8",
1383
1815
  ]
1384
1816
 
1385
1817
  [[package]]
@@ -1396,9 +1828,9 @@ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1396
1828
 
1397
1829
  [[package]]
1398
1830
  name = "form_urlencoded"
1399
- version = "1.2.1"
1831
+ version = "1.2.2"
1400
1832
  source = "registry+https://github.com/rust-lang/crates.io-index"
1401
- checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
1833
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1402
1834
  dependencies = [
1403
1835
  "percent-encoding",
1404
1836
  ]
@@ -1511,9 +1943,9 @@ dependencies = [
1511
1943
 
1512
1944
  [[package]]
1513
1945
  name = "generic-array"
1514
- version = "0.14.7"
1946
+ version = "0.14.9"
1515
1947
  source = "registry+https://github.com/rust-lang/crates.io-index"
1516
- checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1948
+ checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
1517
1949
  dependencies = [
1518
1950
  "typenum",
1519
1951
  "version_check",
@@ -1538,41 +1970,41 @@ dependencies = [
1538
1970
  "cfg-if",
1539
1971
  "js-sys",
1540
1972
  "libc",
1541
- "wasi 0.11.0+wasi-snapshot-preview1",
1973
+ "wasi",
1542
1974
  "wasm-bindgen",
1543
1975
  ]
1544
1976
 
1545
1977
  [[package]]
1546
1978
  name = "getrandom"
1547
- version = "0.3.3"
1979
+ version = "0.3.4"
1548
1980
  source = "registry+https://github.com/rust-lang/crates.io-index"
1549
- checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
1981
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1550
1982
  dependencies = [
1551
1983
  "cfg-if",
1552
1984
  "js-sys",
1553
1985
  "libc",
1554
1986
  "r-efi",
1555
- "wasi 0.14.2+wasi-0.2.4",
1987
+ "wasip2",
1556
1988
  "wasm-bindgen",
1557
1989
  ]
1558
1990
 
1559
1991
  [[package]]
1560
1992
  name = "gimli"
1561
- version = "0.31.1"
1993
+ version = "0.32.3"
1562
1994
  source = "registry+https://github.com/rust-lang/crates.io-index"
1563
- checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
1995
+ checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
1564
1996
 
1565
1997
  [[package]]
1566
1998
  name = "glob"
1567
- version = "0.3.2"
1999
+ version = "0.3.3"
1568
2000
  source = "registry+https://github.com/rust-lang/crates.io-index"
1569
- checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
2001
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1570
2002
 
1571
2003
  [[package]]
1572
2004
  name = "h2"
1573
- version = "0.3.26"
2005
+ version = "0.3.27"
1574
2006
  source = "registry+https://github.com/rust-lang/crates.io-index"
1575
- checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
2007
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
1576
2008
  dependencies = [
1577
2009
  "bytes",
1578
2010
  "fnv",
@@ -1580,7 +2012,7 @@ dependencies = [
1580
2012
  "futures-sink",
1581
2013
  "futures-util",
1582
2014
  "http 0.2.12",
1583
- "indexmap 2.9.0",
2015
+ "indexmap 2.12.0",
1584
2016
  "slab",
1585
2017
  "tokio",
1586
2018
  "tokio-util",
@@ -1589,9 +2021,9 @@ dependencies = [
1589
2021
 
1590
2022
  [[package]]
1591
2023
  name = "h2"
1592
- version = "0.4.10"
2024
+ version = "0.4.12"
1593
2025
  source = "registry+https://github.com/rust-lang/crates.io-index"
1594
- checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
2026
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
1595
2027
  dependencies = [
1596
2028
  "atomic-waker",
1597
2029
  "bytes",
@@ -1599,7 +2031,7 @@ dependencies = [
1599
2031
  "futures-core",
1600
2032
  "futures-sink",
1601
2033
  "http 1.3.1",
1602
- "indexmap 2.9.0",
2034
+ "indexmap 2.12.0",
1603
2035
  "slab",
1604
2036
  "tokio",
1605
2037
  "tokio-util",
@@ -1608,12 +2040,14 @@ dependencies = [
1608
2040
 
1609
2041
  [[package]]
1610
2042
  name = "half"
1611
- version = "2.6.0"
2043
+ version = "2.7.1"
1612
2044
  source = "registry+https://github.com/rust-lang/crates.io-index"
1613
- checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
2045
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1614
2046
  dependencies = [
1615
2047
  "cfg-if",
1616
2048
  "crunchy",
2049
+ "num-traits",
2050
+ "zerocopy",
1617
2051
  ]
1618
2052
 
1619
2053
  [[package]]
@@ -1627,25 +2061,43 @@ name = "hashbrown"
1627
2061
  version = "0.14.5"
1628
2062
  source = "registry+https://github.com/rust-lang/crates.io-index"
1629
2063
  checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
2064
+ dependencies = [
2065
+ "ahash",
2066
+ ]
1630
2067
 
1631
2068
  [[package]]
1632
2069
  name = "hashbrown"
1633
- version = "0.15.3"
2070
+ version = "0.15.5"
1634
2071
  source = "registry+https://github.com/rust-lang/crates.io-index"
1635
- checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
2072
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1636
2073
  dependencies = [
1637
2074
  "allocator-api2",
1638
2075
  "equivalent",
1639
2076
  "foldhash",
1640
2077
  ]
1641
2078
 
2079
+ [[package]]
2080
+ name = "hashbrown"
2081
+ version = "0.16.0"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
2084
+
2085
+ [[package]]
2086
+ name = "hashlink"
2087
+ version = "0.9.1"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
2090
+ dependencies = [
2091
+ "hashbrown 0.14.5",
2092
+ ]
2093
+
1642
2094
  [[package]]
1643
2095
  name = "hashlink"
1644
2096
  version = "0.10.0"
1645
2097
  source = "registry+https://github.com/rust-lang/crates.io-index"
1646
2098
  checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
1647
2099
  dependencies = [
1648
- "hashbrown 0.15.3",
2100
+ "hashbrown 0.15.5",
1649
2101
  ]
1650
2102
 
1651
2103
  [[package]]
@@ -1656,15 +2108,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1656
2108
 
1657
2109
  [[package]]
1658
2110
  name = "hermit-abi"
1659
- version = "0.3.9"
1660
- source = "registry+https://github.com/rust-lang/crates.io-index"
1661
- checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1662
-
1663
- [[package]]
1664
- name = "hermit-abi"
1665
- version = "0.5.1"
2111
+ version = "0.5.2"
1666
2112
  source = "registry+https://github.com/rust-lang/crates.io-index"
1667
- checksum = "f154ce46856750ed433c8649605bf7ed2de3bc35fd9d2a9f30cddd873c80cb08"
2113
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1668
2114
 
1669
2115
  [[package]]
1670
2116
  name = "hex"
@@ -1692,11 +2138,11 @@ dependencies = [
1692
2138
 
1693
2139
  [[package]]
1694
2140
  name = "home"
1695
- version = "0.5.11"
2141
+ version = "0.5.12"
1696
2142
  source = "registry+https://github.com/rust-lang/crates.io-index"
1697
- checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
2143
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
1698
2144
  dependencies = [
1699
- "windows-sys 0.59.0",
2145
+ "windows-sys 0.61.2",
1700
2146
  ]
1701
2147
 
1702
2148
  [[package]]
@@ -1789,7 +2235,7 @@ dependencies = [
1789
2235
  "httpdate",
1790
2236
  "itoa",
1791
2237
  "pin-project-lite",
1792
- "socket2",
2238
+ "socket2 0.5.10",
1793
2239
  "tokio",
1794
2240
  "tower-service",
1795
2241
  "tracing",
@@ -1798,20 +2244,22 @@ dependencies = [
1798
2244
 
1799
2245
  [[package]]
1800
2246
  name = "hyper"
1801
- version = "1.6.0"
2247
+ version = "1.7.0"
1802
2248
  source = "registry+https://github.com/rust-lang/crates.io-index"
1803
- checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
2249
+ checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
1804
2250
  dependencies = [
2251
+ "atomic-waker",
1805
2252
  "bytes",
1806
2253
  "futures-channel",
1807
- "futures-util",
1808
- "h2 0.4.10",
2254
+ "futures-core",
2255
+ "h2 0.4.12",
1809
2256
  "http 1.3.1",
1810
2257
  "http-body 1.0.1",
1811
2258
  "httparse",
1812
2259
  "httpdate",
1813
2260
  "itoa",
1814
2261
  "pin-project-lite",
2262
+ "pin-utils",
1815
2263
  "smallvec",
1816
2264
  "tokio",
1817
2265
  "want",
@@ -1835,20 +2283,19 @@ dependencies = [
1835
2283
 
1836
2284
  [[package]]
1837
2285
  name = "hyper-rustls"
1838
- version = "0.27.5"
2286
+ version = "0.27.7"
1839
2287
  source = "registry+https://github.com/rust-lang/crates.io-index"
1840
- checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
2288
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1841
2289
  dependencies = [
1842
- "futures-util",
1843
2290
  "http 1.3.1",
1844
- "hyper 1.6.0",
2291
+ "hyper 1.7.0",
1845
2292
  "hyper-util",
1846
- "rustls 0.23.27",
2293
+ "rustls 0.23.34",
1847
2294
  "rustls-pki-types",
1848
2295
  "tokio",
1849
- "tokio-rustls 0.26.2",
2296
+ "tokio-rustls 0.26.4",
1850
2297
  "tower-service",
1851
- "webpki-roots 0.26.11",
2298
+ "webpki-roots 1.0.3",
1852
2299
  ]
1853
2300
 
1854
2301
  [[package]]
@@ -1865,19 +2312,23 @@ dependencies = [
1865
2312
 
1866
2313
  [[package]]
1867
2314
  name = "hyper-util"
1868
- version = "0.1.12"
2315
+ version = "0.1.17"
1869
2316
  source = "registry+https://github.com/rust-lang/crates.io-index"
1870
- checksum = "cf9f1e950e0d9d1d3c47184416723cf29c0d1f93bd8cccf37e4beb6b44f31710"
2317
+ checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
1871
2318
  dependencies = [
2319
+ "base64 0.22.1",
1872
2320
  "bytes",
1873
2321
  "futures-channel",
2322
+ "futures-core",
1874
2323
  "futures-util",
1875
2324
  "http 1.3.1",
1876
2325
  "http-body 1.0.1",
1877
- "hyper 1.6.0",
2326
+ "hyper 1.7.0",
2327
+ "ipnet",
1878
2328
  "libc",
2329
+ "percent-encoding",
1879
2330
  "pin-project-lite",
1880
- "socket2",
2331
+ "socket2 0.6.1",
1881
2332
  "tokio",
1882
2333
  "tower-service",
1883
2334
  "tracing",
@@ -1885,9 +2336,9 @@ dependencies = [
1885
2336
 
1886
2337
  [[package]]
1887
2338
  name = "iana-time-zone"
1888
- version = "0.1.63"
2339
+ version = "0.1.64"
1889
2340
  source = "registry+https://github.com/rust-lang/crates.io-index"
1890
- checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
2341
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1891
2342
  dependencies = [
1892
2343
  "android_system_properties",
1893
2344
  "core-foundation-sys",
@@ -2001,9 +2452,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2001
2452
 
2002
2453
  [[package]]
2003
2454
  name = "idna"
2004
- version = "1.0.3"
2455
+ version = "1.1.0"
2005
2456
  source = "registry+https://github.com/rust-lang/crates.io-index"
2006
- checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
2457
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
2007
2458
  dependencies = [
2008
2459
  "idna_adapter",
2009
2460
  "smallvec",
@@ -2028,9 +2479,9 @@ checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
2028
2479
 
2029
2480
  [[package]]
2030
2481
  name = "indenter"
2031
- version = "0.3.3"
2482
+ version = "0.3.4"
2032
2483
  source = "registry+https://github.com/rust-lang/crates.io-index"
2033
- checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
2484
+ checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5"
2034
2485
 
2035
2486
  [[package]]
2036
2487
  name = "indexmap"
@@ -2045,61 +2496,70 @@ dependencies = [
2045
2496
 
2046
2497
  [[package]]
2047
2498
  name = "indexmap"
2048
- version = "2.9.0"
2499
+ version = "2.12.0"
2049
2500
  source = "registry+https://github.com/rust-lang/crates.io-index"
2050
- checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
2501
+ checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
2051
2502
  dependencies = [
2052
2503
  "equivalent",
2053
- "hashbrown 0.15.3",
2504
+ "hashbrown 0.16.0",
2054
2505
  "serde",
2506
+ "serde_core",
2055
2507
  ]
2056
2508
 
2057
2509
  [[package]]
2058
2510
  name = "indoc"
2059
- version = "2.0.6"
2511
+ version = "2.0.7"
2060
2512
  source = "registry+https://github.com/rust-lang/crates.io-index"
2061
- checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
2513
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
2514
+ dependencies = [
2515
+ "rustversion",
2516
+ ]
2062
2517
 
2063
2518
  [[package]]
2064
- name = "ipnet"
2065
- version = "2.11.0"
2519
+ name = "instant"
2520
+ version = "0.1.13"
2066
2521
  source = "registry+https://github.com/rust-lang/crates.io-index"
2067
- checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
2522
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
2523
+ dependencies = [
2524
+ "cfg-if",
2525
+ ]
2068
2526
 
2069
2527
  [[package]]
2070
- name = "is-terminal"
2071
- version = "0.4.16"
2528
+ name = "integer-encoding"
2529
+ version = "3.0.4"
2072
2530
  source = "registry+https://github.com/rust-lang/crates.io-index"
2073
- checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
2074
- dependencies = [
2075
- "hermit-abi 0.5.1",
2076
- "libc",
2077
- "windows-sys 0.59.0",
2078
- ]
2531
+ checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
2079
2532
 
2080
2533
  [[package]]
2081
- name = "itertools"
2082
- version = "0.10.5"
2534
+ name = "ipnet"
2535
+ version = "2.11.0"
2083
2536
  source = "registry+https://github.com/rust-lang/crates.io-index"
2084
- checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2537
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
2538
+
2539
+ [[package]]
2540
+ name = "iri-string"
2541
+ version = "0.7.8"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
2085
2544
  dependencies = [
2086
- "either",
2545
+ "memchr",
2546
+ "serde",
2087
2547
  ]
2088
2548
 
2089
2549
  [[package]]
2090
2550
  name = "itertools"
2091
- version = "0.12.1"
2551
+ version = "0.13.0"
2092
2552
  source = "registry+https://github.com/rust-lang/crates.io-index"
2093
- checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
2553
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
2094
2554
  dependencies = [
2095
2555
  "either",
2096
2556
  ]
2097
2557
 
2098
2558
  [[package]]
2099
2559
  name = "itertools"
2100
- version = "0.13.0"
2560
+ version = "0.14.0"
2101
2561
  source = "registry+https://github.com/rust-lang/crates.io-index"
2102
- checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
2562
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
2103
2563
  dependencies = [
2104
2564
  "either",
2105
2565
  ]
@@ -2112,19 +2572,19 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
2112
2572
 
2113
2573
  [[package]]
2114
2574
  name = "jobserver"
2115
- version = "0.1.33"
2575
+ version = "0.1.34"
2116
2576
  source = "registry+https://github.com/rust-lang/crates.io-index"
2117
- checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
2577
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
2118
2578
  dependencies = [
2119
- "getrandom 0.3.3",
2579
+ "getrandom 0.3.4",
2120
2580
  "libc",
2121
2581
  ]
2122
2582
 
2123
2583
  [[package]]
2124
2584
  name = "js-sys"
2125
- version = "0.3.77"
2585
+ version = "0.3.81"
2126
2586
  source = "registry+https://github.com/rust-lang/crates.io-index"
2127
- checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
2587
+ checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
2128
2588
  dependencies = [
2129
2589
  "once_cell",
2130
2590
  "wasm-bindgen",
@@ -2202,7 +2662,7 @@ dependencies = [
2202
2662
  "pin-project",
2203
2663
  "rustls 0.21.12",
2204
2664
  "rustls-pemfile 1.0.4",
2205
- "secrecy",
2665
+ "secrecy 0.8.0",
2206
2666
  "serde",
2207
2667
  "serde_json",
2208
2668
  "serde_yaml",
@@ -2210,61 +2670,112 @@ dependencies = [
2210
2670
  "tokio",
2211
2671
  "tokio-util",
2212
2672
  "tower 0.4.13",
2213
- "tower-http",
2673
+ "tower-http 0.4.4",
2214
2674
  "tracing",
2215
2675
  ]
2216
2676
 
2217
2677
  [[package]]
2218
- name = "kube-core"
2219
- version = "0.88.1"
2678
+ name = "kube-core"
2679
+ version = "0.88.1"
2680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2681
+ checksum = "a6b42844e9172f631b8263ea9ce003b9251da13beb1401580937ad206dd82f4c"
2682
+ dependencies = [
2683
+ "chrono",
2684
+ "form_urlencoded",
2685
+ "http 0.2.12",
2686
+ "k8s-openapi",
2687
+ "once_cell",
2688
+ "serde",
2689
+ "serde_json",
2690
+ "thiserror 1.0.69",
2691
+ ]
2692
+
2693
+ [[package]]
2694
+ name = "language-tags"
2695
+ version = "0.3.2"
2696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2697
+ checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2698
+
2699
+ [[package]]
2700
+ name = "lazy_static"
2701
+ version = "1.5.0"
2702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2703
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2704
+ dependencies = [
2705
+ "spin 0.9.8",
2706
+ ]
2707
+
2708
+ [[package]]
2709
+ name = "lexical-core"
2710
+ version = "1.0.6"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
2713
+ dependencies = [
2714
+ "lexical-parse-float",
2715
+ "lexical-parse-integer",
2716
+ "lexical-util",
2717
+ "lexical-write-float",
2718
+ "lexical-write-integer",
2719
+ ]
2720
+
2721
+ [[package]]
2722
+ name = "lexical-parse-float"
2723
+ version = "1.0.6"
2724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2725
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
2726
+ dependencies = [
2727
+ "lexical-parse-integer",
2728
+ "lexical-util",
2729
+ ]
2730
+
2731
+ [[package]]
2732
+ name = "lexical-parse-integer"
2733
+ version = "1.0.6"
2220
2734
  source = "registry+https://github.com/rust-lang/crates.io-index"
2221
- checksum = "a6b42844e9172f631b8263ea9ce003b9251da13beb1401580937ad206dd82f4c"
2735
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
2222
2736
  dependencies = [
2223
- "chrono",
2224
- "form_urlencoded",
2225
- "http 0.2.12",
2226
- "k8s-openapi",
2227
- "once_cell",
2228
- "serde",
2229
- "serde_json",
2230
- "thiserror 1.0.69",
2737
+ "lexical-util",
2231
2738
  ]
2232
2739
 
2233
2740
  [[package]]
2234
- name = "language-tags"
2235
- version = "0.3.2"
2741
+ name = "lexical-util"
2742
+ version = "1.0.7"
2236
2743
  source = "registry+https://github.com/rust-lang/crates.io-index"
2237
- checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2744
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
2238
2745
 
2239
2746
  [[package]]
2240
- name = "lazy_static"
2241
- version = "1.5.0"
2747
+ name = "lexical-write-float"
2748
+ version = "1.0.6"
2242
2749
  source = "registry+https://github.com/rust-lang/crates.io-index"
2243
- checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2750
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
2244
2751
  dependencies = [
2245
- "spin",
2752
+ "lexical-util",
2753
+ "lexical-write-integer",
2246
2754
  ]
2247
2755
 
2248
2756
  [[package]]
2249
- name = "lazycell"
2250
- version = "1.3.0"
2757
+ name = "lexical-write-integer"
2758
+ version = "1.0.6"
2251
2759
  source = "registry+https://github.com/rust-lang/crates.io-index"
2252
- checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2760
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
2761
+ dependencies = [
2762
+ "lexical-util",
2763
+ ]
2253
2764
 
2254
2765
  [[package]]
2255
2766
  name = "libc"
2256
- version = "0.2.172"
2767
+ version = "0.2.177"
2257
2768
  source = "registry+https://github.com/rust-lang/crates.io-index"
2258
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
2769
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
2259
2770
 
2260
2771
  [[package]]
2261
2772
  name = "libloading"
2262
- version = "0.8.7"
2773
+ version = "0.8.9"
2263
2774
  source = "registry+https://github.com/rust-lang/crates.io-index"
2264
- checksum = "6a793df0d7afeac54f95b471d3af7f0d4fb975699f972341a4b76988d49cdf0c"
2775
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
2265
2776
  dependencies = [
2266
2777
  "cfg-if",
2267
- "windows-targets 0.53.0",
2778
+ "windows-link",
2268
2779
  ]
2269
2780
 
2270
2781
  [[package]]
@@ -2273,6 +2784,17 @@ version = "0.2.15"
2273
2784
  source = "registry+https://github.com/rust-lang/crates.io-index"
2274
2785
  checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
2275
2786
 
2787
+ [[package]]
2788
+ name = "libredox"
2789
+ version = "0.1.10"
2790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2791
+ checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
2792
+ dependencies = [
2793
+ "bitflags",
2794
+ "libc",
2795
+ "redox_syscall",
2796
+ ]
2797
+
2276
2798
  [[package]]
2277
2799
  name = "libsqlite3-sys"
2278
2800
  version = "0.30.1"
@@ -2285,10 +2807,13 @@ dependencies = [
2285
2807
  ]
2286
2808
 
2287
2809
  [[package]]
2288
- name = "linux-raw-sys"
2289
- version = "0.4.15"
2810
+ name = "libz-rs-sys"
2811
+ version = "0.5.2"
2290
2812
  source = "registry+https://github.com/rust-lang/crates.io-index"
2291
- checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
2813
+ checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
2814
+ dependencies = [
2815
+ "zlib-rs",
2816
+ ]
2292
2817
 
2293
2818
  [[package]]
2294
2819
  name = "litemap"
@@ -2315,19 +2840,18 @@ checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
2315
2840
 
2316
2841
  [[package]]
2317
2842
  name = "lock_api"
2318
- version = "0.4.12"
2843
+ version = "0.4.14"
2319
2844
  source = "registry+https://github.com/rust-lang/crates.io-index"
2320
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2845
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
2321
2846
  dependencies = [
2322
- "autocfg",
2323
2847
  "scopeguard",
2324
2848
  ]
2325
2849
 
2326
2850
  [[package]]
2327
2851
  name = "log"
2328
- version = "0.4.27"
2852
+ version = "0.4.28"
2329
2853
  source = "registry+https://github.com/rust-lang/crates.io-index"
2330
- checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
2854
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
2331
2855
 
2332
2856
  [[package]]
2333
2857
  name = "lru-slab"
@@ -2335,13 +2859,22 @@ version = "0.1.2"
2335
2859
  source = "registry+https://github.com/rust-lang/crates.io-index"
2336
2860
  checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2337
2861
 
2862
+ [[package]]
2863
+ name = "lz4_flex"
2864
+ version = "0.11.5"
2865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2866
+ checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
2867
+ dependencies = [
2868
+ "twox-hash",
2869
+ ]
2870
+
2338
2871
  [[package]]
2339
2872
  name = "matchers"
2340
- version = "0.1.0"
2873
+ version = "0.2.0"
2341
2874
  source = "registry+https://github.com/rust-lang/crates.io-index"
2342
- checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
2875
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
2343
2876
  dependencies = [
2344
- "regex-automata 0.1.10",
2877
+ "regex-automata",
2345
2878
  ]
2346
2879
 
2347
2880
  [[package]]
@@ -2356,9 +2889,9 @@ dependencies = [
2356
2889
 
2357
2890
  [[package]]
2358
2891
  name = "memchr"
2359
- version = "2.7.4"
2892
+ version = "2.7.6"
2360
2893
  source = "registry+https://github.com/rust-lang/crates.io-index"
2361
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2894
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
2362
2895
 
2363
2896
  [[package]]
2364
2897
  name = "memoffset"
@@ -2375,6 +2908,16 @@ version = "0.3.17"
2375
2908
  source = "registry+https://github.com/rust-lang/crates.io-index"
2376
2909
  checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2377
2910
 
2911
+ [[package]]
2912
+ name = "minicov"
2913
+ version = "0.3.7"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
2916
+ dependencies = [
2917
+ "cc",
2918
+ "walkdir",
2919
+ ]
2920
+
2378
2921
  [[package]]
2379
2922
  name = "minimal-lexical"
2380
2923
  version = "0.2.1"
@@ -2383,23 +2926,24 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2383
2926
 
2384
2927
  [[package]]
2385
2928
  name = "miniz_oxide"
2386
- version = "0.8.8"
2929
+ version = "0.8.9"
2387
2930
  source = "registry+https://github.com/rust-lang/crates.io-index"
2388
- checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
2931
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2389
2932
  dependencies = [
2390
2933
  "adler2",
2934
+ "simd-adler32",
2391
2935
  ]
2392
2936
 
2393
2937
  [[package]]
2394
2938
  name = "mio"
2395
- version = "1.0.3"
2939
+ version = "1.1.0"
2396
2940
  source = "registry+https://github.com/rust-lang/crates.io-index"
2397
- checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
2941
+ checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
2398
2942
  dependencies = [
2399
2943
  "libc",
2400
2944
  "log",
2401
- "wasi 0.11.0+wasi-snapshot-preview1",
2402
- "windows-sys 0.52.0",
2945
+ "wasi",
2946
+ "windows-sys 0.61.2",
2403
2947
  ]
2404
2948
 
2405
2949
  [[package]]
@@ -2408,6 +2952,15 @@ version = "0.1.0"
2408
2952
  source = "registry+https://github.com/rust-lang/crates.io-index"
2409
2953
  checksum = "e94e1e6445d314f972ff7395df2de295fe51b71821694f0b0e1e79c4f12c8577"
2410
2954
 
2955
+ [[package]]
2956
+ name = "no-std-compat"
2957
+ version = "0.4.1"
2958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2959
+ checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c"
2960
+ dependencies = [
2961
+ "spin 0.5.2",
2962
+ ]
2963
+
2411
2964
  [[package]]
2412
2965
  name = "nom"
2413
2966
  version = "7.1.3"
@@ -2420,12 +2973,21 @@ dependencies = [
2420
2973
 
2421
2974
  [[package]]
2422
2975
  name = "nu-ansi-term"
2423
- version = "0.46.0"
2976
+ version = "0.50.3"
2424
2977
  source = "registry+https://github.com/rust-lang/crates.io-index"
2425
- checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
2978
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2426
2979
  dependencies = [
2427
- "overload",
2428
- "winapi",
2980
+ "windows-sys 0.61.2",
2981
+ ]
2982
+
2983
+ [[package]]
2984
+ name = "num-bigint"
2985
+ version = "0.4.6"
2986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2987
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2988
+ dependencies = [
2989
+ "num-integer",
2990
+ "num-traits",
2429
2991
  ]
2430
2992
 
2431
2993
  [[package]]
@@ -2445,12 +3007,32 @@ dependencies = [
2445
3007
  "zeroize",
2446
3008
  ]
2447
3009
 
3010
+ [[package]]
3011
+ name = "num-complex"
3012
+ version = "0.4.6"
3013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3014
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
3015
+ dependencies = [
3016
+ "num-traits",
3017
+ ]
3018
+
2448
3019
  [[package]]
2449
3020
  name = "num-conv"
2450
3021
  version = "0.1.0"
2451
3022
  source = "registry+https://github.com/rust-lang/crates.io-index"
2452
3023
  checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2453
3024
 
3025
+ [[package]]
3026
+ name = "num-derive"
3027
+ version = "0.4.2"
3028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3029
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
3030
+ dependencies = [
3031
+ "proc-macro2",
3032
+ "quote",
3033
+ "syn",
3034
+ ]
3035
+
2454
3036
  [[package]]
2455
3037
  name = "num-integer"
2456
3038
  version = "0.1.46"
@@ -2483,28 +3065,40 @@ dependencies = [
2483
3065
 
2484
3066
  [[package]]
2485
3067
  name = "num_cpus"
2486
- version = "1.16.0"
3068
+ version = "1.17.0"
2487
3069
  source = "registry+https://github.com/rust-lang/crates.io-index"
2488
- checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
3070
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2489
3071
  dependencies = [
2490
- "hermit-abi 0.3.9",
3072
+ "hermit-abi",
2491
3073
  "libc",
2492
3074
  ]
2493
3075
 
2494
3076
  [[package]]
2495
3077
  name = "object"
2496
- version = "0.36.7"
3078
+ version = "0.37.3"
2497
3079
  source = "registry+https://github.com/rust-lang/crates.io-index"
2498
- checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
3080
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
2499
3081
  dependencies = [
2500
3082
  "memchr",
2501
3083
  ]
2502
3084
 
3085
+ [[package]]
3086
+ name = "oid-registry"
3087
+ version = "0.8.1"
3088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3089
+ checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7"
3090
+ dependencies = [
3091
+ "asn1-rs",
3092
+ ]
3093
+
2503
3094
  [[package]]
2504
3095
  name = "once_cell"
2505
3096
  version = "1.21.3"
2506
3097
  source = "registry+https://github.com/rust-lang/crates.io-index"
2507
3098
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
3099
+ dependencies = [
3100
+ "portable-atomic",
3101
+ ]
2508
3102
 
2509
3103
  [[package]]
2510
3104
  name = "oorandom"
@@ -2644,17 +3238,11 @@ dependencies = [
2644
3238
  "hashbrown 0.14.5",
2645
3239
  ]
2646
3240
 
2647
- [[package]]
2648
- name = "overload"
2649
- version = "0.1.1"
2650
- source = "registry+https://github.com/rust-lang/crates.io-index"
2651
- checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2652
-
2653
3241
  [[package]]
2654
3242
  name = "owo-colors"
2655
- version = "4.2.1"
3243
+ version = "4.2.3"
2656
3244
  source = "registry+https://github.com/rust-lang/crates.io-index"
2657
- checksum = "26995317201fa17f3656c36716aed4a7c81743a9634ac4c99c0eeda495db0cec"
3245
+ checksum = "9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52"
2658
3246
 
2659
3247
  [[package]]
2660
3248
  name = "parking"
@@ -2664,9 +3252,9 @@ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2664
3252
 
2665
3253
  [[package]]
2666
3254
  name = "parking_lot"
2667
- version = "0.12.3"
3255
+ version = "0.12.5"
2668
3256
  source = "registry+https://github.com/rust-lang/crates.io-index"
2669
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
3257
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2670
3258
  dependencies = [
2671
3259
  "lock_api",
2672
3260
  "parking_lot_core",
@@ -2674,17 +3262,57 @@ dependencies = [
2674
3262
 
2675
3263
  [[package]]
2676
3264
  name = "parking_lot_core"
2677
- version = "0.9.10"
3265
+ version = "0.9.12"
2678
3266
  source = "registry+https://github.com/rust-lang/crates.io-index"
2679
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
3267
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2680
3268
  dependencies = [
2681
3269
  "cfg-if",
2682
3270
  "libc",
2683
3271
  "redox_syscall",
2684
3272
  "smallvec",
2685
- "windows-targets 0.52.6",
3273
+ "windows-link",
3274
+ ]
3275
+
3276
+ [[package]]
3277
+ name = "parquet"
3278
+ version = "57.0.0"
3279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3280
+ checksum = "7a0f31027ef1af7549f7cec603a9a21dce706d3f8d7c2060a68f43c1773be95a"
3281
+ dependencies = [
3282
+ "ahash",
3283
+ "arrow-array",
3284
+ "arrow-buffer",
3285
+ "arrow-cast",
3286
+ "arrow-data",
3287
+ "arrow-ipc",
3288
+ "arrow-schema",
3289
+ "arrow-select",
3290
+ "base64 0.22.1",
3291
+ "brotli",
3292
+ "bytes",
3293
+ "chrono",
3294
+ "flate2",
3295
+ "half",
3296
+ "hashbrown 0.16.0",
3297
+ "lz4_flex",
3298
+ "num-bigint",
3299
+ "num-integer",
3300
+ "num-traits",
3301
+ "paste",
3302
+ "seq-macro",
3303
+ "simdutf8",
3304
+ "snap",
3305
+ "thrift",
3306
+ "twox-hash",
3307
+ "zstd",
2686
3308
  ]
2687
3309
 
3310
+ [[package]]
3311
+ name = "paste"
3312
+ version = "1.0.15"
3313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3314
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
3315
+
2688
3316
  [[package]]
2689
3317
  name = "pathdiff"
2690
3318
  version = "0.2.3"
@@ -2693,12 +3321,12 @@ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
2693
3321
 
2694
3322
  [[package]]
2695
3323
  name = "pem"
2696
- version = "3.0.5"
3324
+ version = "3.0.6"
2697
3325
  source = "registry+https://github.com/rust-lang/crates.io-index"
2698
- checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
3326
+ checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
2699
3327
  dependencies = [
2700
3328
  "base64 0.22.1",
2701
- "serde",
3329
+ "serde_core",
2702
3330
  ]
2703
3331
 
2704
3332
  [[package]]
@@ -2712,26 +3340,25 @@ dependencies = [
2712
3340
 
2713
3341
  [[package]]
2714
3342
  name = "percent-encoding"
2715
- version = "2.3.1"
3343
+ version = "2.3.2"
2716
3344
  source = "registry+https://github.com/rust-lang/crates.io-index"
2717
- checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
3345
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2718
3346
 
2719
3347
  [[package]]
2720
3348
  name = "pest"
2721
- version = "2.8.0"
3349
+ version = "2.8.3"
2722
3350
  source = "registry+https://github.com/rust-lang/crates.io-index"
2723
- checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6"
3351
+ checksum = "989e7521a040efde50c3ab6bbadafbe15ab6dc042686926be59ac35d74607df4"
2724
3352
  dependencies = [
2725
3353
  "memchr",
2726
- "thiserror 2.0.12",
2727
3354
  "ucd-trie",
2728
3355
  ]
2729
3356
 
2730
3357
  [[package]]
2731
3358
  name = "pest_derive"
2732
- version = "2.8.0"
3359
+ version = "2.8.3"
2733
3360
  source = "registry+https://github.com/rust-lang/crates.io-index"
2734
- checksum = "d725d9cfd79e87dccc9341a2ef39d1b6f6353d68c4b33c177febbe1a402c97c5"
3361
+ checksum = "187da9a3030dbafabbbfb20cb323b976dc7b7ce91fcd84f2f74d6e31d378e2de"
2735
3362
  dependencies = [
2736
3363
  "pest",
2737
3364
  "pest_generator",
@@ -2739,9 +3366,9 @@ dependencies = [
2739
3366
 
2740
3367
  [[package]]
2741
3368
  name = "pest_generator"
2742
- version = "2.8.0"
3369
+ version = "2.8.3"
2743
3370
  source = "registry+https://github.com/rust-lang/crates.io-index"
2744
- checksum = "db7d01726be8ab66ab32f9df467ae8b1148906685bbe75c82d1e65d7f5b3f841"
3371
+ checksum = "49b401d98f5757ebe97a26085998d6c0eecec4995cad6ab7fc30ffdf4b052843"
2745
3372
  dependencies = [
2746
3373
  "pest",
2747
3374
  "pest_meta",
@@ -2752,15 +3379,42 @@ dependencies = [
2752
3379
 
2753
3380
  [[package]]
2754
3381
  name = "pest_meta"
2755
- version = "2.8.0"
3382
+ version = "2.8.3"
2756
3383
  source = "registry+https://github.com/rust-lang/crates.io-index"
2757
- checksum = "7f9f832470494906d1fca5329f8ab5791cc60beb230c74815dff541cbd2b5ca0"
3384
+ checksum = "72f27a2cfee9f9039c4d86faa5af122a0ac3851441a34865b8a043b46be0065a"
2758
3385
  dependencies = [
2759
- "once_cell",
2760
3386
  "pest",
2761
3387
  "sha2",
2762
3388
  ]
2763
3389
 
3390
+ [[package]]
3391
+ name = "petgraph"
3392
+ version = "0.6.5"
3393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3394
+ checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
3395
+ dependencies = [
3396
+ "fixedbitset",
3397
+ "indexmap 2.12.0",
3398
+ ]
3399
+
3400
+ [[package]]
3401
+ name = "phf"
3402
+ version = "0.12.1"
3403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3404
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
3405
+ dependencies = [
3406
+ "phf_shared",
3407
+ ]
3408
+
3409
+ [[package]]
3410
+ name = "phf_shared"
3411
+ version = "0.12.1"
3412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3413
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
3414
+ dependencies = [
3415
+ "siphasher",
3416
+ ]
3417
+
2764
3418
  [[package]]
2765
3419
  name = "pin-project"
2766
3420
  version = "1.1.10"
@@ -2850,15 +3504,15 @@ dependencies = [
2850
3504
 
2851
3505
  [[package]]
2852
3506
  name = "portable-atomic"
2853
- version = "1.11.0"
3507
+ version = "1.11.1"
2854
3508
  source = "registry+https://github.com/rust-lang/crates.io-index"
2855
- checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
3509
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2856
3510
 
2857
3511
  [[package]]
2858
3512
  name = "potential_utf"
2859
- version = "0.1.2"
3513
+ version = "0.1.3"
2860
3514
  source = "registry+https://github.com/rust-lang/crates.io-index"
2861
- checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
3515
+ checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
2862
3516
  dependencies = [
2863
3517
  "zerovec",
2864
3518
  ]
@@ -2880,9 +3534,9 @@ dependencies = [
2880
3534
 
2881
3535
  [[package]]
2882
3536
  name = "prettyplease"
2883
- version = "0.2.32"
3537
+ version = "0.2.37"
2884
3538
  source = "registry+https://github.com/rust-lang/crates.io-index"
2885
- checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
3539
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2886
3540
  dependencies = [
2887
3541
  "proc-macro2",
2888
3542
  "syn",
@@ -2890,9 +3544,9 @@ dependencies = [
2890
3544
 
2891
3545
  [[package]]
2892
3546
  name = "proc-macro2"
2893
- version = "1.0.95"
3547
+ version = "1.0.103"
2894
3548
  source = "registry+https://github.com/rust-lang/crates.io-index"
2895
- checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
3549
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
2896
3550
  dependencies = [
2897
3551
  "unicode-ident",
2898
3552
  ]
@@ -3024,7 +3678,7 @@ dependencies = [
3024
3678
 
3025
3679
  [[package]]
3026
3680
  name = "python-auditor"
3027
- version = "0.9.4"
3681
+ version = "0.10.1"
3028
3682
  dependencies = [
3029
3683
  "anyhow",
3030
3684
  "auditor",
@@ -3061,19 +3715,19 @@ dependencies = [
3061
3715
 
3062
3716
  [[package]]
3063
3717
  name = "quinn"
3064
- version = "0.11.8"
3718
+ version = "0.11.9"
3065
3719
  source = "registry+https://github.com/rust-lang/crates.io-index"
3066
- checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
3720
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
3067
3721
  dependencies = [
3068
3722
  "bytes",
3069
3723
  "cfg_aliases",
3070
3724
  "pin-project-lite",
3071
3725
  "quinn-proto",
3072
3726
  "quinn-udp",
3073
- "rustc-hash 2.1.1",
3074
- "rustls 0.23.27",
3075
- "socket2",
3076
- "thiserror 2.0.12",
3727
+ "rustc-hash",
3728
+ "rustls 0.23.34",
3729
+ "socket2 0.6.1",
3730
+ "thiserror 2.0.17",
3077
3731
  "tokio",
3078
3732
  "tracing",
3079
3733
  "web-time",
@@ -3081,20 +3735,20 @@ dependencies = [
3081
3735
 
3082
3736
  [[package]]
3083
3737
  name = "quinn-proto"
3084
- version = "0.11.12"
3738
+ version = "0.11.13"
3085
3739
  source = "registry+https://github.com/rust-lang/crates.io-index"
3086
- checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
3740
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
3087
3741
  dependencies = [
3088
3742
  "bytes",
3089
- "getrandom 0.3.3",
3743
+ "getrandom 0.3.4",
3090
3744
  "lru-slab",
3091
- "rand 0.9.1",
3745
+ "rand 0.9.2",
3092
3746
  "ring",
3093
- "rustc-hash 2.1.1",
3094
- "rustls 0.23.27",
3747
+ "rustc-hash",
3748
+ "rustls 0.23.34",
3095
3749
  "rustls-pki-types",
3096
3750
  "slab",
3097
- "thiserror 2.0.12",
3751
+ "thiserror 2.0.17",
3098
3752
  "tinyvec",
3099
3753
  "tracing",
3100
3754
  "web-time",
@@ -3102,32 +3756,32 @@ dependencies = [
3102
3756
 
3103
3757
  [[package]]
3104
3758
  name = "quinn-udp"
3105
- version = "0.5.12"
3759
+ version = "0.5.14"
3106
3760
  source = "registry+https://github.com/rust-lang/crates.io-index"
3107
- checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
3761
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
3108
3762
  dependencies = [
3109
3763
  "cfg_aliases",
3110
3764
  "libc",
3111
3765
  "once_cell",
3112
- "socket2",
3766
+ "socket2 0.6.1",
3113
3767
  "tracing",
3114
- "windows-sys 0.59.0",
3768
+ "windows-sys 0.60.2",
3115
3769
  ]
3116
3770
 
3117
3771
  [[package]]
3118
3772
  name = "quote"
3119
- version = "1.0.40"
3773
+ version = "1.0.41"
3120
3774
  source = "registry+https://github.com/rust-lang/crates.io-index"
3121
- checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
3775
+ checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
3122
3776
  dependencies = [
3123
3777
  "proc-macro2",
3124
3778
  ]
3125
3779
 
3126
3780
  [[package]]
3127
3781
  name = "r-efi"
3128
- version = "5.2.0"
3782
+ version = "5.3.0"
3129
3783
  source = "registry+https://github.com/rust-lang/crates.io-index"
3130
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
3784
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
3131
3785
 
3132
3786
  [[package]]
3133
3787
  name = "rand"
@@ -3142,9 +3796,9 @@ dependencies = [
3142
3796
 
3143
3797
  [[package]]
3144
3798
  name = "rand"
3145
- version = "0.9.1"
3799
+ version = "0.9.2"
3146
3800
  source = "registry+https://github.com/rust-lang/crates.io-index"
3147
- checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
3801
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
3148
3802
  dependencies = [
3149
3803
  "rand_chacha 0.9.0",
3150
3804
  "rand_core 0.9.3",
@@ -3185,24 +3839,24 @@ version = "0.9.3"
3185
3839
  source = "registry+https://github.com/rust-lang/crates.io-index"
3186
3840
  checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
3187
3841
  dependencies = [
3188
- "getrandom 0.3.3",
3842
+ "getrandom 0.3.4",
3189
3843
  ]
3190
3844
 
3191
3845
  [[package]]
3192
3846
  name = "rand_distr"
3193
- version = "0.4.3"
3847
+ version = "0.5.1"
3194
3848
  source = "registry+https://github.com/rust-lang/crates.io-index"
3195
- checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
3849
+ checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
3196
3850
  dependencies = [
3197
3851
  "num-traits",
3198
- "rand 0.8.5",
3852
+ "rand 0.9.2",
3199
3853
  ]
3200
3854
 
3201
3855
  [[package]]
3202
3856
  name = "rayon"
3203
- version = "1.10.0"
3857
+ version = "1.11.0"
3204
3858
  source = "registry+https://github.com/rust-lang/crates.io-index"
3205
- checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
3859
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
3206
3860
  dependencies = [
3207
3861
  "either",
3208
3862
  "rayon-core",
@@ -3210,9 +3864,9 @@ dependencies = [
3210
3864
 
3211
3865
  [[package]]
3212
3866
  name = "rayon-core"
3213
- version = "1.12.1"
3867
+ version = "1.13.0"
3214
3868
  source = "registry+https://github.com/rust-lang/crates.io-index"
3215
- checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
3869
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
3216
3870
  dependencies = [
3217
3871
  "crossbeam-deque",
3218
3872
  "crossbeam-utils",
@@ -3220,68 +3874,73 @@ dependencies = [
3220
3874
 
3221
3875
  [[package]]
3222
3876
  name = "redox_syscall"
3223
- version = "0.5.12"
3877
+ version = "0.5.18"
3224
3878
  source = "registry+https://github.com/rust-lang/crates.io-index"
3225
- checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
3879
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
3226
3880
  dependencies = [
3227
3881
  "bitflags",
3228
3882
  ]
3229
3883
 
3230
3884
  [[package]]
3231
- name = "regex"
3232
- version = "1.11.1"
3885
+ name = "ref-cast"
3886
+ version = "1.0.25"
3233
3887
  source = "registry+https://github.com/rust-lang/crates.io-index"
3234
- checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
3888
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
3235
3889
  dependencies = [
3236
- "aho-corasick",
3237
- "memchr",
3238
- "regex-automata 0.4.9",
3239
- "regex-syntax 0.8.5",
3890
+ "ref-cast-impl",
3240
3891
  ]
3241
3892
 
3242
3893
  [[package]]
3243
- name = "regex-automata"
3244
- version = "0.1.10"
3894
+ name = "ref-cast-impl"
3895
+ version = "1.0.25"
3245
3896
  source = "registry+https://github.com/rust-lang/crates.io-index"
3246
- checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
3897
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
3247
3898
  dependencies = [
3248
- "regex-syntax 0.6.29",
3899
+ "proc-macro2",
3900
+ "quote",
3901
+ "syn",
3249
3902
  ]
3250
3903
 
3251
3904
  [[package]]
3252
- name = "regex-automata"
3253
- version = "0.4.9"
3905
+ name = "regex"
3906
+ version = "1.12.2"
3254
3907
  source = "registry+https://github.com/rust-lang/crates.io-index"
3255
- checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
3908
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
3256
3909
  dependencies = [
3257
3910
  "aho-corasick",
3258
3911
  "memchr",
3259
- "regex-syntax 0.8.5",
3912
+ "regex-automata",
3913
+ "regex-syntax",
3260
3914
  ]
3261
3915
 
3262
3916
  [[package]]
3263
- name = "regex-lite"
3264
- version = "0.1.6"
3917
+ name = "regex-automata"
3918
+ version = "0.4.13"
3265
3919
  source = "registry+https://github.com/rust-lang/crates.io-index"
3266
- checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
3920
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
3921
+ dependencies = [
3922
+ "aho-corasick",
3923
+ "memchr",
3924
+ "regex-syntax",
3925
+ ]
3267
3926
 
3268
3927
  [[package]]
3269
- name = "regex-syntax"
3270
- version = "0.6.29"
3928
+ name = "regex-lite"
3929
+ version = "0.1.8"
3271
3930
  source = "registry+https://github.com/rust-lang/crates.io-index"
3272
- checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
3931
+ checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
3273
3932
 
3274
3933
  [[package]]
3275
3934
  name = "regex-syntax"
3276
- version = "0.8.5"
3935
+ version = "0.8.8"
3277
3936
  source = "registry+https://github.com/rust-lang/crates.io-index"
3278
- checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
3937
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
3279
3938
 
3280
3939
  [[package]]
3281
3940
  name = "reqwest"
3282
- version = "0.12.15"
3941
+ version = "0.12.24"
3283
3942
  source = "registry+https://github.com/rust-lang/crates.io-index"
3284
- checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
3943
+ checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
3285
3944
  dependencies = [
3286
3945
  "base64 0.22.1",
3287
3946
  "bytes",
@@ -3291,43 +3950,39 @@ dependencies = [
3291
3950
  "http 1.3.1",
3292
3951
  "http-body 1.0.1",
3293
3952
  "http-body-util",
3294
- "hyper 1.6.0",
3295
- "hyper-rustls 0.27.5",
3953
+ "hyper 1.7.0",
3954
+ "hyper-rustls 0.27.7",
3296
3955
  "hyper-util",
3297
- "ipnet",
3298
3956
  "js-sys",
3299
3957
  "log",
3300
- "mime",
3301
- "once_cell",
3302
3958
  "percent-encoding",
3303
3959
  "pin-project-lite",
3304
3960
  "quinn",
3305
- "rustls 0.23.27",
3306
- "rustls-pemfile 2.2.0",
3961
+ "rustls 0.23.34",
3307
3962
  "rustls-pki-types",
3308
3963
  "serde",
3309
3964
  "serde_json",
3310
3965
  "serde_urlencoded",
3311
3966
  "sync_wrapper",
3312
3967
  "tokio",
3313
- "tokio-rustls 0.26.2",
3968
+ "tokio-rustls 0.26.4",
3314
3969
  "tokio-util",
3315
3970
  "tower 0.5.2",
3971
+ "tower-http 0.6.6",
3316
3972
  "tower-service",
3317
3973
  "url",
3318
3974
  "wasm-bindgen",
3319
3975
  "wasm-bindgen-futures",
3320
3976
  "wasm-streams",
3321
3977
  "web-sys",
3322
- "webpki-roots 0.26.11",
3323
- "windows-registry",
3978
+ "webpki-roots 1.0.3",
3324
3979
  ]
3325
3980
 
3326
3981
  [[package]]
3327
3982
  name = "reqwest-streams"
3328
- version = "0.9.0"
3983
+ version = "0.12.0"
3329
3984
  source = "registry+https://github.com/rust-lang/crates.io-index"
3330
- checksum = "a7c5c3436b21f323e34b937f18b090a99c459b5065c710bee637645ebc703532"
3985
+ checksum = "3abcb780f3446325368204e87894b3b1c1c1b227d81f858f868c5f755716d5a6"
3331
3986
  dependencies = [
3332
3987
  "async-trait",
3333
3988
  "bytes",
@@ -3336,10 +3991,39 @@ dependencies = [
3336
3991
  "reqwest",
3337
3992
  "serde",
3338
3993
  "serde_json",
3339
- "tokio",
3340
3994
  "tokio-util",
3341
3995
  ]
3342
3996
 
3997
+ [[package]]
3998
+ name = "rhai"
3999
+ version = "1.23.4"
4000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4001
+ checksum = "527390cc333a8d2cd8237890e15c36518c26f8b54c903d86fc59f42f08d25594"
4002
+ dependencies = [
4003
+ "ahash",
4004
+ "bitflags",
4005
+ "instant",
4006
+ "no-std-compat",
4007
+ "num-traits",
4008
+ "once_cell",
4009
+ "rhai_codegen",
4010
+ "serde",
4011
+ "smallvec",
4012
+ "smartstring",
4013
+ "thin-vec",
4014
+ ]
4015
+
4016
+ [[package]]
4017
+ name = "rhai_codegen"
4018
+ version = "3.1.0"
4019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4020
+ checksum = "d4322a2a4e8cf30771dd9f27f7f37ca9ac8fe812dddd811096a98483080dabe6"
4021
+ dependencies = [
4022
+ "proc-macro2",
4023
+ "quote",
4024
+ "syn",
4025
+ ]
4026
+
3343
4027
  [[package]]
3344
4028
  name = "ring"
3345
4029
  version = "0.17.14"
@@ -3388,26 +4072,39 @@ dependencies = [
3388
4072
 
3389
4073
  [[package]]
3390
4074
  name = "rust-ini"
3391
- version = "0.21.1"
4075
+ version = "0.21.3"
3392
4076
  source = "registry+https://github.com/rust-lang/crates.io-index"
3393
- checksum = "4e310ef0e1b6eeb79169a1171daf9abcb87a2e17c03bee2c4bb100b55c75409f"
4077
+ checksum = "796e8d2b6696392a43bea58116b667fb4c29727dc5abd27d6acf338bb4f688c7"
3394
4078
  dependencies = [
3395
4079
  "cfg-if",
3396
4080
  "ordered-multimap",
3397
- "trim-in-place",
3398
4081
  ]
3399
4082
 
3400
4083
  [[package]]
3401
- name = "rustc-demangle"
3402
- version = "0.1.24"
3403
- source = "registry+https://github.com/rust-lang/crates.io-index"
3404
- checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
4084
+ name = "rust_script"
4085
+ version = "0.1.0"
4086
+ dependencies = [
4087
+ "anyhow",
4088
+ "arrow",
4089
+ "arrow-array",
4090
+ "auditor",
4091
+ "chrono",
4092
+ "config",
4093
+ "parquet",
4094
+ "secrecy 0.10.3",
4095
+ "serde",
4096
+ "serde-aux",
4097
+ "serde_json",
4098
+ "sqlx",
4099
+ "thiserror 2.0.17",
4100
+ "tokio",
4101
+ ]
3405
4102
 
3406
4103
  [[package]]
3407
- name = "rustc-hash"
3408
- version = "1.1.0"
4104
+ name = "rustc-demangle"
4105
+ version = "0.1.26"
3409
4106
  source = "registry+https://github.com/rust-lang/crates.io-index"
3410
- checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
4107
+ checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
3411
4108
 
3412
4109
  [[package]]
3413
4110
  name = "rustc-hash"
@@ -3416,16 +4113,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3416
4113
  checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
3417
4114
 
3418
4115
  [[package]]
3419
- name = "rustix"
3420
- version = "0.38.44"
4116
+ name = "rustc_version"
4117
+ version = "0.4.1"
3421
4118
  source = "registry+https://github.com/rust-lang/crates.io-index"
3422
- checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
4119
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3423
4120
  dependencies = [
3424
- "bitflags",
3425
- "errno",
3426
- "libc",
3427
- "linux-raw-sys",
3428
- "windows-sys 0.59.0",
4121
+ "semver",
4122
+ ]
4123
+
4124
+ [[package]]
4125
+ name = "rusticata-macros"
4126
+ version = "4.1.0"
4127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4128
+ checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
4129
+ dependencies = [
4130
+ "nom",
3429
4131
  ]
3430
4132
 
3431
4133
  [[package]]
@@ -3442,16 +4144,16 @@ dependencies = [
3442
4144
 
3443
4145
  [[package]]
3444
4146
  name = "rustls"
3445
- version = "0.23.27"
4147
+ version = "0.23.34"
3446
4148
  source = "registry+https://github.com/rust-lang/crates.io-index"
3447
- checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
4149
+ checksum = "6a9586e9ee2b4f8fab52a0048ca7334d7024eef48e2cb9407e3497bb7cab7fa7"
3448
4150
  dependencies = [
3449
4151
  "aws-lc-rs",
3450
4152
  "log",
3451
4153
  "once_cell",
3452
4154
  "ring",
3453
4155
  "rustls-pki-types",
3454
- "rustls-webpki 0.103.3",
4156
+ "rustls-webpki 0.103.7",
3455
4157
  "subtle",
3456
4158
  "zeroize",
3457
4159
  ]
@@ -3508,9 +4210,9 @@ dependencies = [
3508
4210
 
3509
4211
  [[package]]
3510
4212
  name = "rustls-webpki"
3511
- version = "0.103.3"
4213
+ version = "0.103.7"
3512
4214
  source = "registry+https://github.com/rust-lang/crates.io-index"
3513
- checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
4215
+ checksum = "e10b3f4191e8a80e6b43eebabfac91e5dcecebb27a71f04e820c47ec41d314bf"
3514
4216
  dependencies = [
3515
4217
  "aws-lc-rs",
3516
4218
  "ring",
@@ -3520,9 +4222,9 @@ dependencies = [
3520
4222
 
3521
4223
  [[package]]
3522
4224
  name = "rustversion"
3523
- version = "1.0.20"
4225
+ version = "1.0.22"
3524
4226
  source = "registry+https://github.com/rust-lang/crates.io-index"
3525
- checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
4227
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3526
4228
 
3527
4229
  [[package]]
3528
4230
  name = "ryu"
@@ -3541,11 +4243,35 @@ dependencies = [
3541
4243
 
3542
4244
  [[package]]
3543
4245
  name = "schannel"
3544
- version = "0.1.27"
4246
+ version = "0.1.28"
4247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4248
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
4249
+ dependencies = [
4250
+ "windows-sys 0.61.2",
4251
+ ]
4252
+
4253
+ [[package]]
4254
+ name = "schemars"
4255
+ version = "0.9.0"
4256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4257
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
4258
+ dependencies = [
4259
+ "dyn-clone",
4260
+ "ref-cast",
4261
+ "serde",
4262
+ "serde_json",
4263
+ ]
4264
+
4265
+ [[package]]
4266
+ name = "schemars"
4267
+ version = "1.0.4"
3545
4268
  source = "registry+https://github.com/rust-lang/crates.io-index"
3546
- checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
4269
+ checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0"
3547
4270
  dependencies = [
3548
- "windows-sys 0.59.0",
4271
+ "dyn-clone",
4272
+ "ref-cast",
4273
+ "serde",
4274
+ "serde_json",
3549
4275
  ]
3550
4276
 
3551
4277
  [[package]]
@@ -3574,6 +4300,16 @@ dependencies = [
3574
4300
  "zeroize",
3575
4301
  ]
3576
4302
 
4303
+ [[package]]
4304
+ name = "secrecy"
4305
+ version = "0.10.3"
4306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4307
+ checksum = "e891af845473308773346dc847b2c23ee78fe442e0472ac50e22a18a93d3ae5a"
4308
+ dependencies = [
4309
+ "serde",
4310
+ "zeroize",
4311
+ ]
4312
+
3577
4313
  [[package]]
3578
4314
  name = "security-framework"
3579
4315
  version = "2.11.1"
@@ -3589,20 +4325,33 @@ dependencies = [
3589
4325
 
3590
4326
  [[package]]
3591
4327
  name = "security-framework-sys"
3592
- version = "2.14.0"
4328
+ version = "2.15.0"
3593
4329
  source = "registry+https://github.com/rust-lang/crates.io-index"
3594
- checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
4330
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
3595
4331
  dependencies = [
3596
4332
  "core-foundation-sys",
3597
4333
  "libc",
3598
4334
  ]
3599
4335
 
4336
+ [[package]]
4337
+ name = "semver"
4338
+ version = "1.0.27"
4339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4340
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
4341
+
4342
+ [[package]]
4343
+ name = "seq-macro"
4344
+ version = "0.3.6"
4345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4346
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
4347
+
3600
4348
  [[package]]
3601
4349
  name = "serde"
3602
- version = "1.0.219"
4350
+ version = "1.0.228"
3603
4351
  source = "registry+https://github.com/rust-lang/crates.io-index"
3604
- checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
4352
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3605
4353
  dependencies = [
4354
+ "serde_core",
3606
4355
  "serde_derive",
3607
4356
  ]
3608
4357
 
@@ -3618,6 +4367,18 @@ dependencies = [
3618
4367
  "serde_json",
3619
4368
  ]
3620
4369
 
4370
+ [[package]]
4371
+ name = "serde-untagged"
4372
+ version = "0.1.9"
4373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4374
+ checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058"
4375
+ dependencies = [
4376
+ "erased-serde",
4377
+ "serde",
4378
+ "serde_core",
4379
+ "typeid",
4380
+ ]
4381
+
3621
4382
  [[package]]
3622
4383
  name = "serde-value"
3623
4384
  version = "0.7.0"
@@ -3628,11 +4389,20 @@ dependencies = [
3628
4389
  "serde",
3629
4390
  ]
3630
4391
 
4392
+ [[package]]
4393
+ name = "serde_core"
4394
+ version = "1.0.228"
4395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4396
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
4397
+ dependencies = [
4398
+ "serde_derive",
4399
+ ]
4400
+
3631
4401
  [[package]]
3632
4402
  name = "serde_derive"
3633
- version = "1.0.219"
4403
+ version = "1.0.228"
3634
4404
  source = "registry+https://github.com/rust-lang/crates.io-index"
3635
- checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
4405
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3636
4406
  dependencies = [
3637
4407
  "proc-macro2",
3638
4408
  "quote",
@@ -3641,36 +4411,37 @@ dependencies = [
3641
4411
 
3642
4412
  [[package]]
3643
4413
  name = "serde_json"
3644
- version = "1.0.140"
4414
+ version = "1.0.145"
3645
4415
  source = "registry+https://github.com/rust-lang/crates.io-index"
3646
- checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
4416
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
3647
4417
  dependencies = [
3648
4418
  "itoa",
3649
4419
  "memchr",
3650
4420
  "ryu",
3651
4421
  "serde",
4422
+ "serde_core",
3652
4423
  ]
3653
4424
 
3654
4425
  [[package]]
3655
4426
  name = "serde_qs"
3656
- version = "0.13.0"
4427
+ version = "0.15.0"
3657
4428
  source = "registry+https://github.com/rust-lang/crates.io-index"
3658
- checksum = "cd34f36fe4c5ba9654417139a9b3a20d2e1de6012ee678ad14d240c22c78d8d6"
4429
+ checksum = "f3faaf9e727533a19351a43cc5a8de957372163c7d35cc48c90b75cdda13c352"
3659
4430
  dependencies = [
3660
4431
  "actix-web",
3661
4432
  "futures",
3662
4433
  "percent-encoding",
3663
4434
  "serde",
3664
- "thiserror 1.0.69",
4435
+ "thiserror 2.0.17",
3665
4436
  ]
3666
4437
 
3667
4438
  [[package]]
3668
4439
  name = "serde_spanned"
3669
- version = "0.6.8"
4440
+ version = "1.0.3"
3670
4441
  source = "registry+https://github.com/rust-lang/crates.io-index"
3671
- checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
4442
+ checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
3672
4443
  dependencies = [
3673
- "serde",
4444
+ "serde_core",
3674
4445
  ]
3675
4446
 
3676
4447
  [[package]]
@@ -3687,17 +4458,18 @@ dependencies = [
3687
4458
 
3688
4459
  [[package]]
3689
4460
  name = "serde_with"
3690
- version = "3.12.0"
4461
+ version = "3.15.1"
3691
4462
  source = "registry+https://github.com/rust-lang/crates.io-index"
3692
- checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
4463
+ checksum = "aa66c845eee442168b2c8134fec70ac50dc20e760769c8ba0ad1319ca1959b04"
3693
4464
  dependencies = [
3694
4465
  "base64 0.22.1",
3695
4466
  "chrono",
3696
4467
  "hex",
3697
4468
  "indexmap 1.9.3",
3698
- "indexmap 2.9.0",
3699
- "serde",
3700
- "serde_derive",
4469
+ "indexmap 2.12.0",
4470
+ "schemars 0.9.0",
4471
+ "schemars 1.0.4",
4472
+ "serde_core",
3701
4473
  "serde_json",
3702
4474
  "serde_with_macros",
3703
4475
  "time",
@@ -3705,11 +4477,11 @@ dependencies = [
3705
4477
 
3706
4478
  [[package]]
3707
4479
  name = "serde_with_macros"
3708
- version = "3.12.0"
4480
+ version = "3.15.1"
3709
4481
  source = "registry+https://github.com/rust-lang/crates.io-index"
3710
- checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
4482
+ checksum = "b91a903660542fced4e99881aa481bdbaec1634568ee02e0b8bd57c64cb38955"
3711
4483
  dependencies = [
3712
- "darling",
4484
+ "darling 0.21.3",
3713
4485
  "proc-macro2",
3714
4486
  "quote",
3715
4487
  "syn",
@@ -3721,7 +4493,7 @@ version = "0.9.34+deprecated"
3721
4493
  source = "registry+https://github.com/rust-lang/crates.io-index"
3722
4494
  checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
3723
4495
  dependencies = [
3724
- "indexmap 2.9.0",
4496
+ "indexmap 2.12.0",
3725
4497
  "itoa",
3726
4498
  "ryu",
3727
4499
  "serde",
@@ -3773,9 +4545,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3773
4545
 
3774
4546
  [[package]]
3775
4547
  name = "signal-hook-registry"
3776
- version = "1.4.5"
4548
+ version = "1.4.6"
3777
4549
  source = "registry+https://github.com/rust-lang/crates.io-index"
3778
- checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
4550
+ checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
3779
4551
  dependencies = [
3780
4552
  "libc",
3781
4553
  ]
@@ -3790,34 +4562,83 @@ dependencies = [
3790
4562
  "rand_core 0.6.4",
3791
4563
  ]
3792
4564
 
4565
+ [[package]]
4566
+ name = "simd-adler32"
4567
+ version = "0.3.7"
4568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4569
+ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
4570
+
4571
+ [[package]]
4572
+ name = "simdutf8"
4573
+ version = "0.1.5"
4574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4575
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
4576
+
4577
+ [[package]]
4578
+ name = "siphasher"
4579
+ version = "1.0.1"
4580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4581
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
4582
+
3793
4583
  [[package]]
3794
4584
  name = "slab"
3795
- version = "0.4.9"
4585
+ version = "0.4.11"
3796
4586
  source = "registry+https://github.com/rust-lang/crates.io-index"
3797
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
4587
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
4588
+
4589
+ [[package]]
4590
+ name = "smallvec"
4591
+ version = "1.15.1"
4592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4593
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3798
4594
  dependencies = [
3799
- "autocfg",
4595
+ "serde",
3800
4596
  ]
3801
4597
 
3802
4598
  [[package]]
3803
- name = "smallvec"
3804
- version = "1.15.0"
4599
+ name = "smartstring"
4600
+ version = "1.0.1"
3805
4601
  source = "registry+https://github.com/rust-lang/crates.io-index"
3806
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
4602
+ checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
3807
4603
  dependencies = [
4604
+ "autocfg",
3808
4605
  "serde",
4606
+ "static_assertions",
4607
+ "version_check",
3809
4608
  ]
3810
4609
 
4610
+ [[package]]
4611
+ name = "snap"
4612
+ version = "1.1.1"
4613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4614
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
4615
+
3811
4616
  [[package]]
3812
4617
  name = "socket2"
3813
- version = "0.5.9"
4618
+ version = "0.5.10"
3814
4619
  source = "registry+https://github.com/rust-lang/crates.io-index"
3815
- checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
4620
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
3816
4621
  dependencies = [
3817
4622
  "libc",
3818
4623
  "windows-sys 0.52.0",
3819
4624
  ]
3820
4625
 
4626
+ [[package]]
4627
+ name = "socket2"
4628
+ version = "0.6.1"
4629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4630
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
4631
+ dependencies = [
4632
+ "libc",
4633
+ "windows-sys 0.60.2",
4634
+ ]
4635
+
4636
+ [[package]]
4637
+ name = "spin"
4638
+ version = "0.5.2"
4639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4640
+ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
4641
+
3821
4642
  [[package]]
3822
4643
  name = "spin"
3823
4644
  version = "0.9.8"
@@ -3867,19 +4688,19 @@ dependencies = [
3867
4688
  "futures-intrusive",
3868
4689
  "futures-io",
3869
4690
  "futures-util",
3870
- "hashbrown 0.15.3",
3871
- "hashlink",
3872
- "indexmap 2.9.0",
4691
+ "hashbrown 0.15.5",
4692
+ "hashlink 0.10.0",
4693
+ "indexmap 2.12.0",
3873
4694
  "log",
3874
4695
  "memchr",
3875
4696
  "once_cell",
3876
4697
  "percent-encoding",
3877
- "rustls 0.23.27",
4698
+ "rustls 0.23.34",
3878
4699
  "serde",
3879
4700
  "serde_json",
3880
4701
  "sha2",
3881
4702
  "smallvec",
3882
- "thiserror 2.0.12",
4703
+ "thiserror 2.0.17",
3883
4704
  "tokio",
3884
4705
  "tokio-stream",
3885
4706
  "tracing",
@@ -3964,7 +4785,7 @@ dependencies = [
3964
4785
  "smallvec",
3965
4786
  "sqlx-core",
3966
4787
  "stringprep",
3967
- "thiserror 2.0.12",
4788
+ "thiserror 2.0.17",
3968
4789
  "tracing",
3969
4790
  "uuid",
3970
4791
  "whoami",
@@ -4003,7 +4824,7 @@ dependencies = [
4003
4824
  "smallvec",
4004
4825
  "sqlx-core",
4005
4826
  "stringprep",
4006
- "thiserror 2.0.12",
4827
+ "thiserror 2.0.17",
4007
4828
  "tracing",
4008
4829
  "uuid",
4009
4830
  "whoami",
@@ -4029,7 +4850,7 @@ dependencies = [
4029
4850
  "serde",
4030
4851
  "serde_urlencoded",
4031
4852
  "sqlx-core",
4032
- "thiserror 2.0.12",
4853
+ "thiserror 2.0.17",
4033
4854
  "tracing",
4034
4855
  "url",
4035
4856
  "uuid",
@@ -4037,9 +4858,15 @@ dependencies = [
4037
4858
 
4038
4859
  [[package]]
4039
4860
  name = "stable_deref_trait"
4040
- version = "1.2.0"
4861
+ version = "1.2.1"
4862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4863
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
4864
+
4865
+ [[package]]
4866
+ name = "static_assertions"
4867
+ version = "1.1.0"
4041
4868
  source = "registry+https://github.com/rust-lang/crates.io-index"
4042
- checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
4869
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
4043
4870
 
4044
4871
  [[package]]
4045
4872
  name = "stringprep"
@@ -4058,6 +4885,27 @@ version = "0.11.1"
4058
4885
  source = "registry+https://github.com/rust-lang/crates.io-index"
4059
4886
  checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
4060
4887
 
4888
+ [[package]]
4889
+ name = "strum"
4890
+ version = "0.27.2"
4891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4892
+ checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
4893
+ dependencies = [
4894
+ "strum_macros",
4895
+ ]
4896
+
4897
+ [[package]]
4898
+ name = "strum_macros"
4899
+ version = "0.27.2"
4900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4901
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
4902
+ dependencies = [
4903
+ "heck",
4904
+ "proc-macro2",
4905
+ "quote",
4906
+ "syn",
4907
+ ]
4908
+
4061
4909
  [[package]]
4062
4910
  name = "subtle"
4063
4911
  version = "2.6.1"
@@ -4066,9 +4914,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
4066
4914
 
4067
4915
  [[package]]
4068
4916
  name = "syn"
4069
- version = "2.0.101"
4917
+ version = "2.0.108"
4070
4918
  source = "registry+https://github.com/rust-lang/crates.io-index"
4071
- checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
4919
+ checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
4072
4920
  dependencies = [
4073
4921
  "proc-macro2",
4074
4922
  "quote",
@@ -4097,9 +4945,18 @@ dependencies = [
4097
4945
 
4098
4946
  [[package]]
4099
4947
  name = "target-lexicon"
4100
- version = "0.13.2"
4948
+ version = "0.13.3"
4949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4950
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
4951
+
4952
+ [[package]]
4953
+ name = "thin-vec"
4954
+ version = "0.2.14"
4101
4955
  source = "registry+https://github.com/rust-lang/crates.io-index"
4102
- checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
4956
+ checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
4957
+ dependencies = [
4958
+ "serde",
4959
+ ]
4103
4960
 
4104
4961
  [[package]]
4105
4962
  name = "thiserror"
@@ -4112,11 +4969,11 @@ dependencies = [
4112
4969
 
4113
4970
  [[package]]
4114
4971
  name = "thiserror"
4115
- version = "2.0.12"
4972
+ version = "2.0.17"
4116
4973
  source = "registry+https://github.com/rust-lang/crates.io-index"
4117
- checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
4974
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
4118
4975
  dependencies = [
4119
- "thiserror-impl 2.0.12",
4976
+ "thiserror-impl 2.0.17",
4120
4977
  ]
4121
4978
 
4122
4979
  [[package]]
@@ -4132,9 +4989,9 @@ dependencies = [
4132
4989
 
4133
4990
  [[package]]
4134
4991
  name = "thiserror-impl"
4135
- version = "2.0.12"
4992
+ version = "2.0.17"
4136
4993
  source = "registry+https://github.com/rust-lang/crates.io-index"
4137
- checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
4994
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
4138
4995
  dependencies = [
4139
4996
  "proc-macro2",
4140
4997
  "quote",
@@ -4143,19 +5000,29 @@ dependencies = [
4143
5000
 
4144
5001
  [[package]]
4145
5002
  name = "thread_local"
4146
- version = "1.1.8"
5003
+ version = "1.1.9"
4147
5004
  source = "registry+https://github.com/rust-lang/crates.io-index"
4148
- checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
5005
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
4149
5006
  dependencies = [
4150
5007
  "cfg-if",
4151
- "once_cell",
5008
+ ]
5009
+
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",
4152
5019
  ]
4153
5020
 
4154
5021
  [[package]]
4155
5022
  name = "time"
4156
- version = "0.3.41"
5023
+ version = "0.3.44"
4157
5024
  source = "registry+https://github.com/rust-lang/crates.io-index"
4158
- checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
5025
+ checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
4159
5026
  dependencies = [
4160
5027
  "deranged",
4161
5028
  "itoa",
@@ -4168,15 +5035,15 @@ dependencies = [
4168
5035
 
4169
5036
  [[package]]
4170
5037
  name = "time-core"
4171
- version = "0.1.4"
5038
+ version = "0.1.6"
4172
5039
  source = "registry+https://github.com/rust-lang/crates.io-index"
4173
- checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
5040
+ checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
4174
5041
 
4175
5042
  [[package]]
4176
5043
  name = "time-macros"
4177
- version = "0.2.22"
5044
+ version = "0.2.24"
4178
5045
  source = "registry+https://github.com/rust-lang/crates.io-index"
4179
- checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
5046
+ checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
4180
5047
  dependencies = [
4181
5048
  "num-conv",
4182
5049
  "time-core",
@@ -4213,9 +5080,9 @@ dependencies = [
4213
5080
 
4214
5081
  [[package]]
4215
5082
  name = "tinyvec"
4216
- version = "1.9.0"
5083
+ version = "1.10.0"
4217
5084
  source = "registry+https://github.com/rust-lang/crates.io-index"
4218
- checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
5085
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
4219
5086
  dependencies = [
4220
5087
  "tinyvec_macros",
4221
5088
  ]
@@ -4228,27 +5095,42 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
4228
5095
 
4229
5096
  [[package]]
4230
5097
  name = "tokio"
4231
- version = "1.45.0"
5098
+ version = "1.48.0"
4232
5099
  source = "registry+https://github.com/rust-lang/crates.io-index"
4233
- checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
5100
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
4234
5101
  dependencies = [
4235
- "backtrace",
4236
5102
  "bytes",
4237
5103
  "libc",
4238
5104
  "mio",
4239
5105
  "parking_lot",
4240
5106
  "pin-project-lite",
4241
5107
  "signal-hook-registry",
4242
- "socket2",
5108
+ "socket2 0.6.1",
4243
5109
  "tokio-macros",
4244
- "windows-sys 0.52.0",
5110
+ "windows-sys 0.61.2",
5111
+ ]
5112
+
5113
+ [[package]]
5114
+ name = "tokio-cron-scheduler"
5115
+ version = "0.15.0"
5116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5117
+ checksum = "bb73c4033ddcbbf81fd828293fd41a0145cde2cbc30dd782227c5081a523214d"
5118
+ dependencies = [
5119
+ "chrono",
5120
+ "chrono-tz",
5121
+ "croner",
5122
+ "num-derive",
5123
+ "num-traits",
5124
+ "tokio",
5125
+ "tracing",
5126
+ "uuid",
4245
5127
  ]
4246
5128
 
4247
5129
  [[package]]
4248
5130
  name = "tokio-io-timeout"
4249
- version = "1.2.0"
5131
+ version = "1.2.1"
4250
5132
  source = "registry+https://github.com/rust-lang/crates.io-index"
4251
- checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
5133
+ checksum = "0bd86198d9ee903fedd2f9a2e72014287c0d9167e4ae43b5853007205dda1b76"
4252
5134
  dependencies = [
4253
5135
  "pin-project-lite",
4254
5136
  "tokio",
@@ -4256,9 +5138,9 @@ dependencies = [
4256
5138
 
4257
5139
  [[package]]
4258
5140
  name = "tokio-macros"
4259
- version = "2.5.0"
5141
+ version = "2.6.0"
4260
5142
  source = "registry+https://github.com/rust-lang/crates.io-index"
4261
- checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
5143
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
4262
5144
  dependencies = [
4263
5145
  "proc-macro2",
4264
5146
  "quote",
@@ -4277,11 +5159,11 @@ dependencies = [
4277
5159
 
4278
5160
  [[package]]
4279
5161
  name = "tokio-rustls"
4280
- version = "0.26.2"
5162
+ version = "0.26.4"
4281
5163
  source = "registry+https://github.com/rust-lang/crates.io-index"
4282
- checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
5164
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
4283
5165
  dependencies = [
4284
- "rustls 0.23.27",
5166
+ "rustls 0.23.34",
4285
5167
  "tokio",
4286
5168
  ]
4287
5169
 
@@ -4298,9 +5180,9 @@ dependencies = [
4298
5180
 
4299
5181
  [[package]]
4300
5182
  name = "tokio-util"
4301
- version = "0.7.15"
5183
+ version = "0.7.16"
4302
5184
  source = "registry+https://github.com/rust-lang/crates.io-index"
4303
- checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
5185
+ checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
4304
5186
  dependencies = [
4305
5187
  "bytes",
4306
5188
  "futures-core",
@@ -4311,35 +5193,32 @@ dependencies = [
4311
5193
 
4312
5194
  [[package]]
4313
5195
  name = "toml"
4314
- version = "0.8.22"
5196
+ version = "0.9.8"
4315
5197
  source = "registry+https://github.com/rust-lang/crates.io-index"
4316
- checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
5198
+ checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
4317
5199
  dependencies = [
4318
- "serde",
5200
+ "serde_core",
4319
5201
  "serde_spanned",
4320
5202
  "toml_datetime",
4321
- "toml_edit",
5203
+ "toml_parser",
5204
+ "winnow",
4322
5205
  ]
4323
5206
 
4324
5207
  [[package]]
4325
5208
  name = "toml_datetime"
4326
- version = "0.6.9"
5209
+ version = "0.7.3"
4327
5210
  source = "registry+https://github.com/rust-lang/crates.io-index"
4328
- checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
5211
+ checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
4329
5212
  dependencies = [
4330
- "serde",
5213
+ "serde_core",
4331
5214
  ]
4332
5215
 
4333
5216
  [[package]]
4334
- name = "toml_edit"
4335
- version = "0.22.26"
5217
+ name = "toml_parser"
5218
+ version = "1.0.4"
4336
5219
  source = "registry+https://github.com/rust-lang/crates.io-index"
4337
- checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
5220
+ checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
4338
5221
  dependencies = [
4339
- "indexmap 2.9.0",
4340
- "serde",
4341
- "serde_spanned",
4342
- "toml_datetime",
4343
5222
  "winnow",
4344
5223
  ]
4345
5224
 
@@ -4396,6 +5275,24 @@ dependencies = [
4396
5275
  "tracing",
4397
5276
  ]
4398
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",
5294
+ ]
5295
+
4399
5296
  [[package]]
4400
5297
  name = "tower-layer"
4401
5298
  version = "0.3.3"
@@ -4422,9 +5319,9 @@ dependencies = [
4422
5319
 
4423
5320
  [[package]]
4424
5321
  name = "tracing-actix-web"
4425
- version = "0.7.18"
5322
+ version = "0.7.19"
4426
5323
  source = "registry+https://github.com/rust-lang/crates.io-index"
4427
- checksum = "2340b7722695166c7fc9b3e3cd1166e7c74fedb9075b8f0c74d3822d2e41caf5"
5324
+ checksum = "5360edd490ec8dee9fedfc6a9fd83ac2f01b3e1996e3261b9ad18a61971fe064"
4428
5325
  dependencies = [
4429
5326
  "actix-web",
4430
5327
  "mutually_exclusive_features",
@@ -4435,9 +5332,9 @@ dependencies = [
4435
5332
 
4436
5333
  [[package]]
4437
5334
  name = "tracing-attributes"
4438
- version = "0.1.28"
5335
+ version = "0.1.30"
4439
5336
  source = "registry+https://github.com/rust-lang/crates.io-index"
4440
- checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
5337
+ checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
4441
5338
  dependencies = [
4442
5339
  "proc-macro2",
4443
5340
  "quote",
@@ -4464,9 +5361,9 @@ dependencies = [
4464
5361
 
4465
5362
  [[package]]
4466
5363
  name = "tracing-core"
4467
- version = "0.1.33"
5364
+ version = "0.1.34"
4468
5365
  source = "registry+https://github.com/rust-lang/crates.io-index"
4469
- checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
5366
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
4470
5367
  dependencies = [
4471
5368
  "once_cell",
4472
5369
  "valuable",
@@ -4506,14 +5403,14 @@ dependencies = [
4506
5403
 
4507
5404
  [[package]]
4508
5405
  name = "tracing-subscriber"
4509
- version = "0.3.19"
5406
+ version = "0.3.20"
4510
5407
  source = "registry+https://github.com/rust-lang/crates.io-index"
4511
- checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
5408
+ checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
4512
5409
  dependencies = [
4513
5410
  "matchers",
4514
5411
  "nu-ansi-term",
4515
5412
  "once_cell",
4516
- "regex",
5413
+ "regex-automata",
4517
5414
  "sharded-slab",
4518
5415
  "smallvec",
4519
5416
  "thread_local",
@@ -4522,23 +5419,29 @@ dependencies = [
4522
5419
  "tracing-log 0.2.0",
4523
5420
  ]
4524
5421
 
4525
- [[package]]
4526
- name = "trim-in-place"
4527
- version = "0.1.7"
4528
- source = "registry+https://github.com/rust-lang/crates.io-index"
4529
- checksum = "343e926fc669bc8cde4fa3129ab681c63671bae288b1f1081ceee6d9d37904fc"
4530
-
4531
5422
  [[package]]
4532
5423
  name = "try-lock"
4533
5424
  version = "0.2.5"
4534
5425
  source = "registry+https://github.com/rust-lang/crates.io-index"
4535
5426
  checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4536
5427
 
5428
+ [[package]]
5429
+ name = "twox-hash"
5430
+ version = "2.1.2"
5431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5432
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
5433
+
5434
+ [[package]]
5435
+ name = "typeid"
5436
+ version = "1.0.3"
5437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5438
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
5439
+
4537
5440
  [[package]]
4538
5441
  name = "typenum"
4539
- version = "1.18.0"
5442
+ version = "1.19.0"
4540
5443
  source = "registry+https://github.com/rust-lang/crates.io-index"
4541
- checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
5444
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
4542
5445
 
4543
5446
  [[package]]
4544
5447
  name = "ucd-trie"
@@ -4554,9 +5457,9 @@ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
4554
5457
 
4555
5458
  [[package]]
4556
5459
  name = "unicode-ident"
4557
- version = "1.0.18"
5460
+ version = "1.0.20"
4558
5461
  source = "registry+https://github.com/rust-lang/crates.io-index"
4559
- checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
5462
+ checksum = "462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06"
4560
5463
 
4561
5464
  [[package]]
4562
5465
  name = "unicode-normalization"
@@ -4605,9 +5508,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4605
5508
 
4606
5509
  [[package]]
4607
5510
  name = "url"
4608
- version = "2.5.4"
5511
+ version = "2.5.7"
4609
5512
  source = "registry+https://github.com/rust-lang/crates.io-index"
4610
- checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
5513
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
4611
5514
  dependencies = [
4612
5515
  "form_urlencoded",
4613
5516
  "idna",
@@ -4629,11 +5532,13 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4629
5532
 
4630
5533
  [[package]]
4631
5534
  name = "uuid"
4632
- version = "1.16.0"
5535
+ version = "1.18.1"
4633
5536
  source = "registry+https://github.com/rust-lang/crates.io-index"
4634
- checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
5537
+ checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
4635
5538
  dependencies = [
4636
- "getrandom 0.3.3",
5539
+ "getrandom 0.3.4",
5540
+ "js-sys",
5541
+ "wasm-bindgen",
4637
5542
  ]
4638
5543
 
4639
5544
  [[package]]
@@ -4675,17 +5580,17 @@ dependencies = [
4675
5580
 
4676
5581
  [[package]]
4677
5582
  name = "wasi"
4678
- version = "0.11.0+wasi-snapshot-preview1"
5583
+ version = "0.11.1+wasi-snapshot-preview1"
4679
5584
  source = "registry+https://github.com/rust-lang/crates.io-index"
4680
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
5585
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4681
5586
 
4682
5587
  [[package]]
4683
- name = "wasi"
4684
- version = "0.14.2+wasi-0.2.4"
5588
+ name = "wasip2"
5589
+ version = "1.0.1+wasi-0.2.4"
4685
5590
  source = "registry+https://github.com/rust-lang/crates.io-index"
4686
- checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
5591
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
4687
5592
  dependencies = [
4688
- "wit-bindgen-rt",
5593
+ "wit-bindgen",
4689
5594
  ]
4690
5595
 
4691
5596
  [[package]]
@@ -4696,21 +5601,22 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
4696
5601
 
4697
5602
  [[package]]
4698
5603
  name = "wasm-bindgen"
4699
- version = "0.2.100"
5604
+ version = "0.2.104"
4700
5605
  source = "registry+https://github.com/rust-lang/crates.io-index"
4701
- checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
5606
+ checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
4702
5607
  dependencies = [
4703
5608
  "cfg-if",
4704
5609
  "once_cell",
4705
5610
  "rustversion",
4706
5611
  "wasm-bindgen-macro",
5612
+ "wasm-bindgen-shared",
4707
5613
  ]
4708
5614
 
4709
5615
  [[package]]
4710
5616
  name = "wasm-bindgen-backend"
4711
- version = "0.2.100"
5617
+ version = "0.2.104"
4712
5618
  source = "registry+https://github.com/rust-lang/crates.io-index"
4713
- checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
5619
+ checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
4714
5620
  dependencies = [
4715
5621
  "bumpalo",
4716
5622
  "log",
@@ -4722,9 +5628,9 @@ dependencies = [
4722
5628
 
4723
5629
  [[package]]
4724
5630
  name = "wasm-bindgen-futures"
4725
- version = "0.4.50"
5631
+ version = "0.4.54"
4726
5632
  source = "registry+https://github.com/rust-lang/crates.io-index"
4727
- checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
5633
+ checksum = "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c"
4728
5634
  dependencies = [
4729
5635
  "cfg-if",
4730
5636
  "js-sys",
@@ -4735,9 +5641,9 @@ dependencies = [
4735
5641
 
4736
5642
  [[package]]
4737
5643
  name = "wasm-bindgen-macro"
4738
- version = "0.2.100"
5644
+ version = "0.2.104"
4739
5645
  source = "registry+https://github.com/rust-lang/crates.io-index"
4740
- checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
5646
+ checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
4741
5647
  dependencies = [
4742
5648
  "quote",
4743
5649
  "wasm-bindgen-macro-support",
@@ -4745,9 +5651,9 @@ dependencies = [
4745
5651
 
4746
5652
  [[package]]
4747
5653
  name = "wasm-bindgen-macro-support"
4748
- version = "0.2.100"
5654
+ version = "0.2.104"
4749
5655
  source = "registry+https://github.com/rust-lang/crates.io-index"
4750
- checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
5656
+ checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
4751
5657
  dependencies = [
4752
5658
  "proc-macro2",
4753
5659
  "quote",
@@ -4758,13 +5664,37 @@ dependencies = [
4758
5664
 
4759
5665
  [[package]]
4760
5666
  name = "wasm-bindgen-shared"
4761
- version = "0.2.100"
5667
+ version = "0.2.104"
4762
5668
  source = "registry+https://github.com/rust-lang/crates.io-index"
4763
- checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
5669
+ checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
4764
5670
  dependencies = [
4765
5671
  "unicode-ident",
4766
5672
  ]
4767
5673
 
5674
+ [[package]]
5675
+ name = "wasm-bindgen-test"
5676
+ version = "0.3.54"
5677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5678
+ checksum = "4e381134e148c1062f965a42ed1f5ee933eef2927c3f70d1812158f711d39865"
5679
+ dependencies = [
5680
+ "js-sys",
5681
+ "minicov",
5682
+ "wasm-bindgen",
5683
+ "wasm-bindgen-futures",
5684
+ "wasm-bindgen-test-macro",
5685
+ ]
5686
+
5687
+ [[package]]
5688
+ name = "wasm-bindgen-test-macro"
5689
+ version = "0.3.54"
5690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5691
+ checksum = "b673bca3298fe582aeef8352330ecbad91849f85090805582400850f8270a2e8"
5692
+ dependencies = [
5693
+ "proc-macro2",
5694
+ "quote",
5695
+ "syn",
5696
+ ]
5697
+
4768
5698
  [[package]]
4769
5699
  name = "wasm-streams"
4770
5700
  version = "0.4.2"
@@ -4780,9 +5710,9 @@ dependencies = [
4780
5710
 
4781
5711
  [[package]]
4782
5712
  name = "web-sys"
4783
- version = "0.3.77"
5713
+ version = "0.3.81"
4784
5714
  source = "registry+https://github.com/rust-lang/crates.io-index"
4785
- checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
5715
+ checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120"
4786
5716
  dependencies = [
4787
5717
  "js-sys",
4788
5718
  "wasm-bindgen",
@@ -4804,37 +5734,25 @@ version = "0.26.11"
4804
5734
  source = "registry+https://github.com/rust-lang/crates.io-index"
4805
5735
  checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
4806
5736
  dependencies = [
4807
- "webpki-roots 1.0.0",
5737
+ "webpki-roots 1.0.3",
4808
5738
  ]
4809
5739
 
4810
5740
  [[package]]
4811
5741
  name = "webpki-roots"
4812
- version = "1.0.0"
5742
+ version = "1.0.3"
4813
5743
  source = "registry+https://github.com/rust-lang/crates.io-index"
4814
- checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb"
5744
+ checksum = "32b130c0d2d49f8b6889abc456e795e82525204f27c42cf767cf0d7734e089b8"
4815
5745
  dependencies = [
4816
5746
  "rustls-pki-types",
4817
5747
  ]
4818
5748
 
4819
- [[package]]
4820
- name = "which"
4821
- version = "4.4.2"
4822
- source = "registry+https://github.com/rust-lang/crates.io-index"
4823
- checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
4824
- dependencies = [
4825
- "either",
4826
- "home",
4827
- "once_cell",
4828
- "rustix",
4829
- ]
4830
-
4831
5749
  [[package]]
4832
5750
  name = "whoami"
4833
- version = "1.6.0"
5751
+ version = "1.6.1"
4834
5752
  source = "registry+https://github.com/rust-lang/crates.io-index"
4835
- checksum = "6994d13118ab492c3c80c1f81928718159254c53c472bf9ce36f8dae4add02a7"
5753
+ checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d"
4836
5754
  dependencies = [
4837
- "redox_syscall",
5755
+ "libredox",
4838
5756
  "wasite",
4839
5757
  ]
4840
5758
 
@@ -4856,11 +5774,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4856
5774
 
4857
5775
  [[package]]
4858
5776
  name = "winapi-util"
4859
- version = "0.1.9"
5777
+ version = "0.1.11"
4860
5778
  source = "registry+https://github.com/rust-lang/crates.io-index"
4861
- checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
5779
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4862
5780
  dependencies = [
4863
- "windows-sys 0.59.0",
5781
+ "windows-sys 0.61.2",
4864
5782
  ]
4865
5783
 
4866
5784
  [[package]]
@@ -4871,22 +5789,22 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4871
5789
 
4872
5790
  [[package]]
4873
5791
  name = "windows-core"
4874
- version = "0.61.2"
5792
+ version = "0.62.2"
4875
5793
  source = "registry+https://github.com/rust-lang/crates.io-index"
4876
- checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
5794
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4877
5795
  dependencies = [
4878
5796
  "windows-implement",
4879
5797
  "windows-interface",
4880
5798
  "windows-link",
4881
5799
  "windows-result",
4882
- "windows-strings 0.4.2",
5800
+ "windows-strings",
4883
5801
  ]
4884
5802
 
4885
5803
  [[package]]
4886
5804
  name = "windows-implement"
4887
- version = "0.60.0"
5805
+ version = "0.60.2"
4888
5806
  source = "registry+https://github.com/rust-lang/crates.io-index"
4889
- checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
5807
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4890
5808
  dependencies = [
4891
5809
  "proc-macro2",
4892
5810
  "quote",
@@ -4895,9 +5813,9 @@ dependencies = [
4895
5813
 
4896
5814
  [[package]]
4897
5815
  name = "windows-interface"
4898
- version = "0.59.1"
5816
+ version = "0.59.3"
4899
5817
  source = "registry+https://github.com/rust-lang/crates.io-index"
4900
- checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
5818
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4901
5819
  dependencies = [
4902
5820
  "proc-macro2",
4903
5821
  "quote",
@@ -4906,44 +5824,24 @@ dependencies = [
4906
5824
 
4907
5825
  [[package]]
4908
5826
  name = "windows-link"
4909
- version = "0.1.1"
4910
- source = "registry+https://github.com/rust-lang/crates.io-index"
4911
- checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
4912
-
4913
- [[package]]
4914
- name = "windows-registry"
4915
- version = "0.4.0"
5827
+ version = "0.2.1"
4916
5828
  source = "registry+https://github.com/rust-lang/crates.io-index"
4917
- checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
4918
- dependencies = [
4919
- "windows-result",
4920
- "windows-strings 0.3.1",
4921
- "windows-targets 0.53.0",
4922
- ]
5829
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4923
5830
 
4924
5831
  [[package]]
4925
5832
  name = "windows-result"
4926
- version = "0.3.4"
4927
- source = "registry+https://github.com/rust-lang/crates.io-index"
4928
- checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
4929
- dependencies = [
4930
- "windows-link",
4931
- ]
4932
-
4933
- [[package]]
4934
- name = "windows-strings"
4935
- version = "0.3.1"
5833
+ version = "0.4.1"
4936
5834
  source = "registry+https://github.com/rust-lang/crates.io-index"
4937
- checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
5835
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4938
5836
  dependencies = [
4939
5837
  "windows-link",
4940
5838
  ]
4941
5839
 
4942
5840
  [[package]]
4943
5841
  name = "windows-strings"
4944
- version = "0.4.2"
5842
+ version = "0.5.1"
4945
5843
  source = "registry+https://github.com/rust-lang/crates.io-index"
4946
- checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
5844
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4947
5845
  dependencies = [
4948
5846
  "windows-link",
4949
5847
  ]
@@ -4968,11 +5866,20 @@ dependencies = [
4968
5866
 
4969
5867
  [[package]]
4970
5868
  name = "windows-sys"
4971
- version = "0.59.0"
5869
+ version = "0.60.2"
4972
5870
  source = "registry+https://github.com/rust-lang/crates.io-index"
4973
- checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
5871
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4974
5872
  dependencies = [
4975
- "windows-targets 0.52.6",
5873
+ "windows-targets 0.53.5",
5874
+ ]
5875
+
5876
+ [[package]]
5877
+ name = "windows-sys"
5878
+ version = "0.61.2"
5879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5880
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
5881
+ dependencies = [
5882
+ "windows-link",
4976
5883
  ]
4977
5884
 
4978
5885
  [[package]]
@@ -5008,18 +5915,19 @@ dependencies = [
5008
5915
 
5009
5916
  [[package]]
5010
5917
  name = "windows-targets"
5011
- version = "0.53.0"
5918
+ version = "0.53.5"
5012
5919
  source = "registry+https://github.com/rust-lang/crates.io-index"
5013
- checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
5920
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
5014
5921
  dependencies = [
5015
- "windows_aarch64_gnullvm 0.53.0",
5016
- "windows_aarch64_msvc 0.53.0",
5017
- "windows_i686_gnu 0.53.0",
5018
- "windows_i686_gnullvm 0.53.0",
5019
- "windows_i686_msvc 0.53.0",
5020
- "windows_x86_64_gnu 0.53.0",
5021
- "windows_x86_64_gnullvm 0.53.0",
5022
- "windows_x86_64_msvc 0.53.0",
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",
5023
5931
  ]
5024
5932
 
5025
5933
  [[package]]
@@ -5036,9 +5944,9 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
5036
5944
 
5037
5945
  [[package]]
5038
5946
  name = "windows_aarch64_gnullvm"
5039
- version = "0.53.0"
5947
+ version = "0.53.1"
5040
5948
  source = "registry+https://github.com/rust-lang/crates.io-index"
5041
- checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
5949
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
5042
5950
 
5043
5951
  [[package]]
5044
5952
  name = "windows_aarch64_msvc"
@@ -5054,9 +5962,9 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
5054
5962
 
5055
5963
  [[package]]
5056
5964
  name = "windows_aarch64_msvc"
5057
- version = "0.53.0"
5965
+ version = "0.53.1"
5058
5966
  source = "registry+https://github.com/rust-lang/crates.io-index"
5059
- checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
5967
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
5060
5968
 
5061
5969
  [[package]]
5062
5970
  name = "windows_i686_gnu"
@@ -5072,9 +5980,9 @@ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
5072
5980
 
5073
5981
  [[package]]
5074
5982
  name = "windows_i686_gnu"
5075
- version = "0.53.0"
5983
+ version = "0.53.1"
5076
5984
  source = "registry+https://github.com/rust-lang/crates.io-index"
5077
- checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
5985
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
5078
5986
 
5079
5987
  [[package]]
5080
5988
  name = "windows_i686_gnullvm"
@@ -5084,9 +5992,9 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
5084
5992
 
5085
5993
  [[package]]
5086
5994
  name = "windows_i686_gnullvm"
5087
- version = "0.53.0"
5995
+ version = "0.53.1"
5088
5996
  source = "registry+https://github.com/rust-lang/crates.io-index"
5089
- checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
5997
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
5090
5998
 
5091
5999
  [[package]]
5092
6000
  name = "windows_i686_msvc"
@@ -5102,9 +6010,9 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
5102
6010
 
5103
6011
  [[package]]
5104
6012
  name = "windows_i686_msvc"
5105
- version = "0.53.0"
6013
+ version = "0.53.1"
5106
6014
  source = "registry+https://github.com/rust-lang/crates.io-index"
5107
- checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
6015
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
5108
6016
 
5109
6017
  [[package]]
5110
6018
  name = "windows_x86_64_gnu"
@@ -5120,9 +6028,9 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
5120
6028
 
5121
6029
  [[package]]
5122
6030
  name = "windows_x86_64_gnu"
5123
- version = "0.53.0"
6031
+ version = "0.53.1"
5124
6032
  source = "registry+https://github.com/rust-lang/crates.io-index"
5125
- checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
6033
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
5126
6034
 
5127
6035
  [[package]]
5128
6036
  name = "windows_x86_64_gnullvm"
@@ -5138,9 +6046,9 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
5138
6046
 
5139
6047
  [[package]]
5140
6048
  name = "windows_x86_64_gnullvm"
5141
- version = "0.53.0"
6049
+ version = "0.53.1"
5142
6050
  source = "registry+https://github.com/rust-lang/crates.io-index"
5143
- checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
6051
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
5144
6052
 
5145
6053
  [[package]]
5146
6054
  name = "windows_x86_64_msvc"
@@ -5156,33 +6064,32 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
5156
6064
 
5157
6065
  [[package]]
5158
6066
  name = "windows_x86_64_msvc"
5159
- version = "0.53.0"
6067
+ version = "0.53.1"
5160
6068
  source = "registry+https://github.com/rust-lang/crates.io-index"
5161
- checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
6069
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
5162
6070
 
5163
6071
  [[package]]
5164
6072
  name = "winnow"
5165
- version = "0.7.10"
6073
+ version = "0.7.13"
5166
6074
  source = "registry+https://github.com/rust-lang/crates.io-index"
5167
- checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
6075
+ checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
5168
6076
  dependencies = [
5169
6077
  "memchr",
5170
6078
  ]
5171
6079
 
5172
6080
  [[package]]
5173
6081
  name = "wiremock"
5174
- version = "0.6.3"
6082
+ version = "0.6.5"
5175
6083
  source = "registry+https://github.com/rust-lang/crates.io-index"
5176
- checksum = "101681b74cd87b5899e87bcf5a64e83334dd313fcd3053ea72e6dba18928e301"
6084
+ checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
5177
6085
  dependencies = [
5178
6086
  "assert-json-diff",
5179
- "async-trait",
5180
6087
  "base64 0.22.1",
5181
6088
  "deadpool",
5182
6089
  "futures",
5183
6090
  "http 1.3.1",
5184
6091
  "http-body-util",
5185
- "hyper 1.6.0",
6092
+ "hyper 1.7.0",
5186
6093
  "hyper-util",
5187
6094
  "log",
5188
6095
  "once_cell",
@@ -5194,13 +6101,10 @@ dependencies = [
5194
6101
  ]
5195
6102
 
5196
6103
  [[package]]
5197
- name = "wit-bindgen-rt"
5198
- version = "0.39.0"
6104
+ name = "wit-bindgen"
6105
+ version = "0.46.0"
5199
6106
  source = "registry+https://github.com/rust-lang/crates.io-index"
5200
- checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
5201
- dependencies = [
5202
- "bitflags",
5203
- ]
6107
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
5204
6108
 
5205
6109
  [[package]]
5206
6110
  name = "writeable"
@@ -5208,15 +6112,32 @@ version = "0.6.1"
5208
6112
  source = "registry+https://github.com/rust-lang/crates.io-index"
5209
6113
  checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
5210
6114
 
6115
+ [[package]]
6116
+ name = "x509-parser"
6117
+ version = "0.18.0"
6118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6119
+ checksum = "eb3e137310115a65136898d2079f003ce33331a6c4b0d51f1531d1be082b6425"
6120
+ dependencies = [
6121
+ "asn1-rs",
6122
+ "data-encoding",
6123
+ "der-parser",
6124
+ "lazy_static",
6125
+ "nom",
6126
+ "oid-registry",
6127
+ "rusticata-macros",
6128
+ "thiserror 2.0.17",
6129
+ "time",
6130
+ ]
6131
+
5211
6132
  [[package]]
5212
6133
  name = "yaml-rust2"
5213
- version = "0.10.2"
6134
+ version = "0.10.4"
5214
6135
  source = "registry+https://github.com/rust-lang/crates.io-index"
5215
- checksum = "18b783b2c2789414f8bb84ca3318fc9c2d7e7be1c22907d37839a58dedb369d3"
6136
+ checksum = "2462ea039c445496d8793d052e13787f2b90e750b833afee748e601c17621ed9"
5216
6137
  dependencies = [
5217
6138
  "arraydeque",
5218
6139
  "encoding_rs",
5219
- "hashlink",
6140
+ "hashlink 0.10.0",
5220
6141
  ]
5221
6142
 
5222
6143
  [[package]]
@@ -5245,18 +6166,18 @@ dependencies = [
5245
6166
 
5246
6167
  [[package]]
5247
6168
  name = "zerocopy"
5248
- version = "0.8.25"
6169
+ version = "0.8.27"
5249
6170
  source = "registry+https://github.com/rust-lang/crates.io-index"
5250
- checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
6171
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
5251
6172
  dependencies = [
5252
6173
  "zerocopy-derive",
5253
6174
  ]
5254
6175
 
5255
6176
  [[package]]
5256
6177
  name = "zerocopy-derive"
5257
- version = "0.8.25"
6178
+ version = "0.8.27"
5258
6179
  source = "registry+https://github.com/rust-lang/crates.io-index"
5259
- checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
6180
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
5260
6181
  dependencies = [
5261
6182
  "proc-macro2",
5262
6183
  "quote",
@@ -5286,9 +6207,9 @@ dependencies = [
5286
6207
 
5287
6208
  [[package]]
5288
6209
  name = "zeroize"
5289
- version = "1.8.1"
6210
+ version = "1.8.2"
5290
6211
  source = "registry+https://github.com/rust-lang/crates.io-index"
5291
- checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
6212
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
5292
6213
 
5293
6214
  [[package]]
5294
6215
  name = "zerotrie"
@@ -5303,9 +6224,9 @@ dependencies = [
5303
6224
 
5304
6225
  [[package]]
5305
6226
  name = "zerovec"
5306
- version = "0.11.2"
6227
+ version = "0.11.4"
5307
6228
  source = "registry+https://github.com/rust-lang/crates.io-index"
5308
- checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
6229
+ checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
5309
6230
  dependencies = [
5310
6231
  "yoke",
5311
6232
  "zerofrom",
@@ -5323,6 +6244,12 @@ dependencies = [
5323
6244
  "syn",
5324
6245
  ]
5325
6246
 
6247
+ [[package]]
6248
+ name = "zlib-rs"
6249
+ version = "0.5.2"
6250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
6251
+ checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"
6252
+
5326
6253
  [[package]]
5327
6254
  name = "zstd"
5328
6255
  version = "0.13.3"
@@ -5343,9 +6270,9 @@ dependencies = [
5343
6270
 
5344
6271
  [[package]]
5345
6272
  name = "zstd-sys"
5346
- version = "2.0.15+zstd.1.5.7"
6273
+ version = "2.0.16+zstd.1.5.7"
5347
6274
  source = "registry+https://github.com/rust-lang/crates.io-index"
5348
- checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
6275
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
5349
6276
  dependencies = [
5350
6277
  "cc",
5351
6278
  "pkg-config",