python-auditor 0.6.3__tar.gz → 0.7.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (138) hide show
  1. {python_auditor-0.6.3 → python_auditor-0.7.1}/Cargo.lock +1374 -445
  2. {python_auditor-0.6.3 → python_auditor-0.7.1}/Cargo.toml +8 -8
  3. {python_auditor-0.6.3 → python_auditor-0.7.1}/PKG-INFO +2 -2
  4. {python_auditor-0.6.3 → python_auditor-0.7.1}/docs/index.rst +1 -1
  5. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/Cargo.toml +16 -26
  6. python_auditor-0.7.1/local_dependencies/auditor/certs/rootCA-key.pem +40 -0
  7. python_auditor-0.7.1/local_dependencies/auditor/certs/rootCA.pem +28 -0
  8. python_auditor-0.7.1/local_dependencies/auditor/certs/server-cert.pem +26 -0
  9. python_auditor-0.7.1/local_dependencies/auditor/certs/server-key.pem +28 -0
  10. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/configuration/base.yaml +5 -0
  11. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/configuration/priority-plugin/base.yml +3 -0
  12. python_auditor-0.7.1/local_dependencies/auditor/configuration/tls_config.yaml +21 -0
  13. python_auditor-0.7.1/local_dependencies/auditor/scripts/revert_encoding/.env +6 -0
  14. python_auditor-0.7.1/local_dependencies/auditor/scripts/revert_encoding/requirements.txt +7 -0
  15. python_auditor-0.7.1/local_dependencies/auditor/scripts/revert_encoding/revert_encodings.py +83 -0
  16. python_auditor-0.7.1/local_dependencies/auditor/scripts/revert_encoding/test_script.py +102 -0
  17. python_auditor-0.7.1/local_dependencies/auditor/scripts/test_valid_names/test_slurm_decoding.py +69 -0
  18. python_auditor-0.7.1/local_dependencies/auditor/scripts/test_valid_names/test_valid_names.py +69 -0
  19. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/configuration.rs +45 -1
  20. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/constants.rs +0 -1
  21. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/mod.rs +1 -1
  22. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/record.rs +0 -37
  23. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/validamount.rs +1 -1
  24. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/validname.rs +2 -13
  25. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/validvalue.rs +1 -1
  26. python_auditor-0.7.1/local_dependencies/auditor/src/main.rs +133 -0
  27. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/routes/add.rs +1 -1
  28. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/routes/health_check.rs +1 -1
  29. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/routes/record_handlers.rs +3 -3
  30. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/routes/update.rs +1 -1
  31. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/startup.rs +32 -7
  32. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/telemetry.rs +3 -3
  33. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/add.rs +0 -67
  34. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/helpers.rs +10 -3
  35. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/Cargo.toml +9 -19
  36. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/benches/benchmark_with_http_request.rs +1 -1
  37. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/src/database.rs +2 -2
  38. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/src/lib.rs +136 -11
  39. {python_auditor-0.6.3 → python_auditor-0.7.1}/pyproject.toml +1 -2
  40. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_advanced_query.py +1 -1
  41. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_advanced_query_blocking.py +1 -1
  42. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_advanced_query_queued.py +1 -1
  43. python_auditor-0.7.1/scripts/tls_test/test_tls.py +117 -0
  44. {python_auditor-0.6.3 → python_auditor-0.7.1}/src/blocking_client.rs +8 -2
  45. {python_auditor-0.6.3 → python_auditor-0.7.1}/src/builder.rs +24 -2
  46. {python_auditor-0.6.3 → python_auditor-0.7.1}/src/client.rs +26 -24
  47. {python_auditor-0.6.3 → python_auditor-0.7.1}/src/domain/component.rs +3 -2
  48. {python_auditor-0.6.3 → python_auditor-0.7.1}/src/domain/meta.rs +3 -2
  49. {python_auditor-0.6.3 → python_auditor-0.7.1}/src/domain/record.rs +7 -6
  50. {python_auditor-0.6.3 → python_auditor-0.7.1}/src/domain/score.rs +3 -2
  51. {python_auditor-0.6.3 → python_auditor-0.7.1}/src/lib.rs +1 -1
  52. {python_auditor-0.6.3 → python_auditor-0.7.1}/src/queued_client.rs +25 -24
  53. python_auditor-0.6.3/local_dependencies/auditor/src/main.rs +0 -48
  54. {python_auditor-0.6.3 → python_auditor-0.7.1}/.cargo/config.toml +0 -0
  55. {python_auditor-0.6.3 → python_auditor-0.7.1}/.readthedocs.yaml +0 -0
  56. {python_auditor-0.6.3 → python_auditor-0.7.1}/README.md +0 -0
  57. {python_auditor-0.6.3 → python_auditor-0.7.1}/docs/Makefile +0 -0
  58. {python_auditor-0.6.3 → python_auditor-0.7.1}/docs/api.rst +0 -0
  59. {python_auditor-0.6.3 → python_auditor-0.7.1}/docs/changelog.rst +0 -0
  60. {python_auditor-0.6.3 → python_auditor-0.7.1}/docs/conf.py +0 -0
  61. {python_auditor-0.6.3 → python_auditor-0.7.1}/docs/examples.rst +0 -0
  62. {python_auditor-0.6.3 → python_auditor-0.7.1}/docs/make.bat +0 -0
  63. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/.env +0 -0
  64. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-0723e1854dee7d889745714fe094a64edfcf3f389eec3e77fefca2d753f1eceb.json +0 -0
  65. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-26a72be3c4ba0fddc30f53a71e0317e21982fde8bd24d8b5714439c1af835080.json +0 -0
  66. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-56c4218a1b59d8f9dc0af7191e516cb8f505a7d953ef5b2706e2427a136a918b.json +0 -0
  67. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-90e6c5e852ed16ef84a113c260d99efb6e193fa46b8115df94e750440e2d5517.json +0 -0
  68. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-a5c2d5afb25cf16a58a73c11cdde1bf5d2336cf42c6e84bf24ba27313d827a1f.json +0 -0
  69. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-a621b3eb5f42f24a04d216b9ce3c490182712e1276512cdfe74dcbb9e3e9e54e.json +0 -0
  70. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-aa313afec8c23e75ee45750e2ce8e520b96a98670d3c46572a6f942f839b99c0.json +0 -0
  71. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-cb3125aad5e124a24a976c2cb20a6e8859709f978c9f651740c439abe3b41adb.json +0 -0
  72. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-d8c6add014ac34e66ffb0178d497b9e822c569f86a89525f6ed5cc306713995a.json +0 -0
  73. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-dc5295938290703233cfe51c2215e6a5f6a6afe26b6ba3635210f5c157032f78.json +0 -0
  74. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-e4129d556ba749cb664ef6e876264efd36d82d813c2c9670dde24e4cfd042f94.json +0 -0
  75. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/.sqlx/query-e88b5acb79055b5c307e15481bc270e47d65b525ef6d98376455a267972be532.json +0 -0
  76. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/build.rs +0 -0
  77. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/configuration/local.yaml +0 -0
  78. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/configuration/production.yaml +0 -0
  79. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
  80. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +0 -0
  81. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +0 -0
  82. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_single_entry.py +0 -0
  83. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/component.rs +1 -1
  84. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/meta.rs +0 -0
  85. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/domain/score.rs +0 -0
  86. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/error.rs +0 -0
  87. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/lib.rs +0 -0
  88. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/macros.rs +0 -0
  89. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/metrics/database.rs +0 -0
  90. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/metrics/mod.rs +0 -0
  91. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/routes/advanced_record_filters.rs +0 -0
  92. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/routes/get.rs +0 -0
  93. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/src/routes/mod.rs +0 -0
  94. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/advanced_queries.rs +0 -0
  95. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/get.rs +0 -0
  96. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/get_one_record.rs +0 -0
  97. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/get_since.rs +0 -0
  98. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
  99. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/main.rs +0 -0
  100. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor/tests/api/update.rs +0 -0
  101. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/.env +0 -0
  102. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-256977e5f7886c61625e92a77efb52b9ca4321cefcac0e544d64334cdbca93ba.json +0 -0
  103. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-440620430cdcfb05e9ded5312614fae4df18e20a2a0730ec9e914ce34338df2d.json +0 -0
  104. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-5b1885d85159029e95b3f6d8dcee5eac70e683956480d225143c1de9169e233b.json +0 -0
  105. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-6be1ec652f57f24ba44ee6efa08a2c5985cf4375e563a1bff02dbc6fc4a1ac6d.json +0 -0
  106. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-7022afed3a87000ca2c5a5a829f8bdfddb266e0a577c428c830b02e3736d264e.json +0 -0
  107. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-7ab91dc1d18e4de022a7bbacc463476f8be8a8992b49fe363f70a2d58460e877.json +0 -0
  108. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-8de0a0fada9ffea04721b67f8df443a8c496bfccef4be482bbdaa36ef7d508a5.json +0 -0
  109. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-c8cba44011d83cdabb543adfae1637c5045144ecc61a6597f538d95a8cc756d4.json +0 -0
  110. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/.sqlx/query-f36fa62228e6ca304003dbd75448e95558f544fdbd602173af16c4bada2a3daf.json +0 -0
  111. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/benches/README.md +0 -0
  112. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/benches/configuration/bench.yaml +0 -0
  113. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/benches/configuration.rs +0 -0
  114. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/configuration/base.yaml +0 -0
  115. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/configuration/local.yaml +0 -0
  116. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/migrations/20231122115509_create_record_table.sql +0 -0
  117. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/src/configuration.rs +0 -0
  118. {python_auditor-0.6.3 → python_auditor-0.7.1}/local_dependencies/auditor-client/src/constants.rs +0 -0
  119. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_add_update.py +0 -0
  120. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_add_update_blocking.py +0 -0
  121. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_add_update_queued.py +0 -0
  122. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_bulk_insert.py +0 -0
  123. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_bulk_insert_blocking.py +0 -0
  124. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_bulk_insert_queued.py +0 -0
  125. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_components.py +0 -0
  126. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_components_blocking.py +0 -0
  127. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_components_queued.py +0 -0
  128. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_eq.py +0 -0
  129. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_get_since.py +0 -0
  130. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_get_since_blocking.py +0 -0
  131. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_get_since_queued.py +0 -0
  132. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_get_single_record.py +0 -0
  133. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_get_single_record_blocking.py +0 -0
  134. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_get_single_record_queued.py +0 -0
  135. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_meta.py +0 -0
  136. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_meta_blocking.py +0 -0
  137. {python_auditor-0.6.3 → python_auditor-0.7.1}/scripts/test_meta_queued.py +0 -0
  138. {python_auditor-0.6.3 → python_auditor-0.7.1}/src/domain/mod.rs +0 -0
@@ -1,6 +1,6 @@
1
1
  # This file is automatically @generated by Cargo.
2
2
  # It is not intended for manual editing.
3
- version = 3
3
+ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "actix-codec"
@@ -8,7 +8,7 @@ version = "0.5.2"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
9
  checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
10
10
  dependencies = [
11
- "bitflags 2.6.0",
11
+ "bitflags 2.8.0",
12
12
  "bytes",
13
13
  "futures-core",
14
14
  "futures-sink",
@@ -28,10 +28,11 @@ dependencies = [
28
28
  "actix-codec",
29
29
  "actix-rt",
30
30
  "actix-service",
31
+ "actix-tls",
31
32
  "actix-utils",
32
33
  "ahash 0.8.11",
33
34
  "base64 0.22.1",
34
- "bitflags 2.6.0",
35
+ "bitflags 2.8.0",
35
36
  "brotli",
36
37
  "bytes",
37
38
  "bytestring",
@@ -65,7 +66,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
65
66
  checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
66
67
  dependencies = [
67
68
  "quote",
68
- "syn 2.0.85",
69
+ "syn 2.0.98",
69
70
  ]
70
71
 
71
72
  [[package]]
@@ -121,6 +122,25 @@ dependencies = [
121
122
  "pin-project-lite",
122
123
  ]
123
124
 
125
+ [[package]]
126
+ name = "actix-tls"
127
+ version = "3.4.0"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "ac453898d866cdbecdbc2334fe1738c747b4eba14a677261f2b768ba05329389"
130
+ dependencies = [
131
+ "actix-rt",
132
+ "actix-service",
133
+ "actix-utils",
134
+ "futures-core",
135
+ "impl-more",
136
+ "pin-project-lite",
137
+ "rustls-pki-types",
138
+ "tokio",
139
+ "tokio-rustls 0.26.1",
140
+ "tokio-util",
141
+ "tracing",
142
+ ]
143
+
124
144
  [[package]]
125
145
  name = "actix-utils"
126
146
  version = "3.0.1"
@@ -144,6 +164,7 @@ dependencies = [
144
164
  "actix-rt",
145
165
  "actix-server",
146
166
  "actix-service",
167
+ "actix-tls",
147
168
  "actix-utils",
148
169
  "actix-web-codegen",
149
170
  "ahash 0.8.11",
@@ -182,7 +203,7 @@ dependencies = [
182
203
  "actix-router",
183
204
  "proc-macro2",
184
205
  "quote",
185
- "syn 2.0.85",
206
+ "syn 2.0.98",
186
207
  ]
187
208
 
188
209
  [[package]]
@@ -228,7 +249,7 @@ version = "0.7.8"
228
249
  source = "registry+https://github.com/rust-lang/crates.io-index"
229
250
  checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
230
251
  dependencies = [
231
- "getrandom",
252
+ "getrandom 0.2.15",
232
253
  "once_cell",
233
254
  "version_check",
234
255
  ]
@@ -240,7 +261,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
240
261
  checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
241
262
  dependencies = [
242
263
  "cfg-if",
243
- "getrandom",
264
+ "getrandom 0.2.15",
244
265
  "once_cell",
245
266
  "version_check",
246
267
  "zerocopy",
@@ -272,9 +293,9 @@ dependencies = [
272
293
 
273
294
  [[package]]
274
295
  name = "allocator-api2"
275
- version = "0.2.18"
296
+ version = "0.2.21"
276
297
  source = "registry+https://github.com/rust-lang/crates.io-index"
277
- checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
298
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
278
299
 
279
300
  [[package]]
280
301
  name = "android-tzdata"
@@ -299,15 +320,15 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
299
320
 
300
321
  [[package]]
301
322
  name = "anstyle"
302
- version = "1.0.9"
323
+ version = "1.0.10"
303
324
  source = "registry+https://github.com/rust-lang/crates.io-index"
304
- checksum = "8365de52b16c035ff4fcafe0092ba9390540e3e352870ac09933bebcaa2c8c56"
325
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
305
326
 
306
327
  [[package]]
307
328
  name = "anyhow"
308
- version = "1.0.91"
329
+ version = "1.0.96"
309
330
  source = "registry+https://github.com/rust-lang/crates.io-index"
310
- checksum = "c042108f3ed77fd83760a5fd79b53be043192bb3b9dba91d8c574c0ada7850c8"
331
+ checksum = "6b964d184e89d9b6b67dd2715bc8e74cf3107fb2b529990c90cf517326150bf4"
311
332
 
312
333
  [[package]]
313
334
  name = "assert-json-diff"
@@ -321,13 +342,13 @@ dependencies = [
321
342
 
322
343
  [[package]]
323
344
  name = "async-trait"
324
- version = "0.1.83"
345
+ version = "0.1.86"
325
346
  source = "registry+https://github.com/rust-lang/crates.io-index"
326
- checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
347
+ checksum = "644dd749086bf3771a2fbc5f256fdb982d53f011c7d5d560304eafeecebce79d"
327
348
  dependencies = [
328
349
  "proc-macro2",
329
350
  "quote",
330
- "syn 2.0.85",
351
+ "syn 2.0.98",
331
352
  ]
332
353
 
333
354
  [[package]]
@@ -347,8 +368,9 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
347
368
 
348
369
  [[package]]
349
370
  name = "auditor"
350
- version = "0.6.3"
371
+ version = "0.7.1"
351
372
  dependencies = [
373
+ "actix-tls",
352
374
  "actix-web",
353
375
  "actix-web-opentelemetry",
354
376
  "anyhow",
@@ -361,7 +383,6 @@ dependencies = [
361
383
  "once_cell",
362
384
  "opentelemetry 0.23.0",
363
385
  "opentelemetry-prometheus 0.16.0",
364
- "opentelemetry_api",
365
386
  "opentelemetry_sdk 0.23.0",
366
387
  "prometheus",
367
388
  "quickcheck",
@@ -369,6 +390,8 @@ dependencies = [
369
390
  "rand",
370
391
  "regex",
371
392
  "reqwest",
393
+ "rustls 0.23.23",
394
+ "rustls-pemfile 2.2.0",
372
395
  "secrecy",
373
396
  "serde",
374
397
  "serde-aux",
@@ -376,7 +399,7 @@ dependencies = [
376
399
  "serde_qs",
377
400
  "serde_with",
378
401
  "sqlx",
379
- "thiserror",
402
+ "thiserror 2.0.11",
380
403
  "tokio",
381
404
  "tracing",
382
405
  "tracing-actix-web",
@@ -391,7 +414,7 @@ dependencies = [
391
414
 
392
415
  [[package]]
393
416
  name = "auditor-client"
394
- version = "0.6.3"
417
+ version = "0.7.1"
395
418
  dependencies = [
396
419
  "anyhow",
397
420
  "auditor",
@@ -407,11 +430,12 @@ dependencies = [
407
430
  "rand",
408
431
  "rand_distr",
409
432
  "reqwest",
433
+ "rustls 0.23.23",
410
434
  "serde",
411
435
  "serde-aux",
412
436
  "serde_qs",
413
437
  "sqlx",
414
- "thiserror",
438
+ "thiserror 2.0.11",
415
439
  "tokio",
416
440
  "tracing",
417
441
  "tracing-subscriber",
@@ -420,9 +444,33 @@ dependencies = [
420
444
  "wiremock",
421
445
  ]
422
446
 
447
+ [[package]]
448
+ name = "auditor-kubernetes-collector"
449
+ version = "0.7.1"
450
+ dependencies = [
451
+ "anyhow",
452
+ "auditor",
453
+ "auditor-client",
454
+ "bincode",
455
+ "chrono",
456
+ "fake",
457
+ "k8s-openapi",
458
+ "kube",
459
+ "prometheus-http-query",
460
+ "reqwest",
461
+ "serde",
462
+ "serde_yaml",
463
+ "sqlx",
464
+ "tokio",
465
+ "tracing",
466
+ "tracing-subscriber",
467
+ "uuid",
468
+ "wiremock",
469
+ ]
470
+
423
471
  [[package]]
424
472
  name = "auditor-priority-plugin"
425
- version = "0.6.3"
473
+ version = "0.7.1"
426
474
  dependencies = [
427
475
  "actix-web",
428
476
  "actix-web-opentelemetry",
@@ -434,7 +482,6 @@ dependencies = [
434
482
  "num-traits",
435
483
  "opentelemetry 0.23.0",
436
484
  "opentelemetry-prometheus 0.16.0",
437
- "opentelemetry_api",
438
485
  "opentelemetry_sdk 0.23.0",
439
486
  "prometheus",
440
487
  "serde",
@@ -450,7 +497,7 @@ dependencies = [
450
497
 
451
498
  [[package]]
452
499
  name = "auditor-slurm-collector"
453
- version = "0.6.3"
500
+ version = "0.7.1"
454
501
  dependencies = [
455
502
  "anyhow",
456
503
  "auditor",
@@ -476,12 +523,13 @@ dependencies = [
476
523
 
477
524
  [[package]]
478
525
  name = "auditor-slurm-epilog-collector"
479
- version = "0.6.3"
526
+ version = "0.7.1"
480
527
  dependencies = [
481
528
  "anyhow",
482
529
  "auditor",
483
530
  "auditor-client",
484
531
  "chrono",
532
+ "color-eyre",
485
533
  "config",
486
534
  "regex",
487
535
  "serde",
@@ -498,6 +546,31 @@ version = "1.4.0"
498
546
  source = "registry+https://github.com/rust-lang/crates.io-index"
499
547
  checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
500
548
 
549
+ [[package]]
550
+ name = "aws-lc-rs"
551
+ version = "1.12.4"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "4cd755adf9707cf671e31d944a189be3deaaeee11c8bc1d669bb8022ac90fbd0"
554
+ dependencies = [
555
+ "aws-lc-sys",
556
+ "paste",
557
+ "zeroize",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "aws-lc-sys"
562
+ version = "0.26.0"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "0f9dd2e03ee80ca2822dd6ea431163d2ef259f2066a4d6ccaca6d9dcb386aa43"
565
+ dependencies = [
566
+ "bindgen",
567
+ "cc",
568
+ "cmake",
569
+ "dunce",
570
+ "fs_extra",
571
+ "paste",
572
+ ]
573
+
501
574
  [[package]]
502
575
  name = "backtrace"
503
576
  version = "0.3.71"
@@ -519,6 +592,12 @@ version = "0.13.1"
519
592
  source = "registry+https://github.com/rust-lang/crates.io-index"
520
593
  checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
521
594
 
595
+ [[package]]
596
+ name = "base64"
597
+ version = "0.21.7"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
600
+
522
601
  [[package]]
523
602
  name = "base64"
524
603
  version = "0.22.1"
@@ -527,9 +606,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
527
606
 
528
607
  [[package]]
529
608
  name = "base64ct"
530
- version = "1.6.0"
609
+ version = "1.7.0"
531
610
  source = "registry+https://github.com/rust-lang/crates.io-index"
532
- checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
611
+ checksum = "c103cbbedac994e292597ab79342dbd5b306a362045095db54917d92a9fdfd92"
533
612
 
534
613
  [[package]]
535
614
  name = "bincode"
@@ -540,6 +619,29 @@ dependencies = [
540
619
  "serde",
541
620
  ]
542
621
 
622
+ [[package]]
623
+ name = "bindgen"
624
+ version = "0.69.5"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
627
+ dependencies = [
628
+ "bitflags 2.8.0",
629
+ "cexpr",
630
+ "clang-sys",
631
+ "itertools 0.12.1",
632
+ "lazy_static",
633
+ "lazycell",
634
+ "log",
635
+ "prettyplease",
636
+ "proc-macro2",
637
+ "quote",
638
+ "regex",
639
+ "rustc-hash 1.1.0",
640
+ "shlex",
641
+ "syn 2.0.98",
642
+ "which",
643
+ ]
644
+
543
645
  [[package]]
544
646
  name = "bitflags"
545
647
  version = "1.3.2"
@@ -548,9 +650,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
548
650
 
549
651
  [[package]]
550
652
  name = "bitflags"
551
- version = "2.6.0"
653
+ version = "2.8.0"
552
654
  source = "registry+https://github.com/rust-lang/crates.io-index"
553
- checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
655
+ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
554
656
  dependencies = [
555
657
  "serde",
556
658
  ]
@@ -577,9 +679,9 @@ dependencies = [
577
679
 
578
680
  [[package]]
579
681
  name = "brotli-decompressor"
580
- version = "4.0.1"
682
+ version = "4.0.2"
581
683
  source = "registry+https://github.com/rust-lang/crates.io-index"
582
- checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
684
+ checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
583
685
  dependencies = [
584
686
  "alloc-no-stdlib",
585
687
  "alloc-stdlib",
@@ -587,9 +689,9 @@ dependencies = [
587
689
 
588
690
  [[package]]
589
691
  name = "bumpalo"
590
- version = "3.16.0"
692
+ version = "3.17.0"
591
693
  source = "registry+https://github.com/rust-lang/crates.io-index"
592
- checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
694
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
593
695
 
594
696
  [[package]]
595
697
  name = "byteorder"
@@ -599,15 +701,15 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
599
701
 
600
702
  [[package]]
601
703
  name = "bytes"
602
- version = "1.8.0"
704
+ version = "1.10.0"
603
705
  source = "registry+https://github.com/rust-lang/crates.io-index"
604
- checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
706
+ checksum = "f61dac84819c6588b558454b194026eb1f09c293b9036ae9b159e74e73ab6cf9"
605
707
 
606
708
  [[package]]
607
709
  name = "bytestring"
608
- version = "1.3.1"
710
+ version = "1.4.0"
609
711
  source = "registry+https://github.com/rust-lang/crates.io-index"
610
- checksum = "74d80203ea6b29df88012294f62733de21cfeab47f17b41af3a38bc30a03ee72"
712
+ checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f"
611
713
  dependencies = [
612
714
  "bytes",
613
715
  ]
@@ -620,15 +722,24 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
620
722
 
621
723
  [[package]]
622
724
  name = "cc"
623
- version = "1.1.31"
725
+ version = "1.2.15"
624
726
  source = "registry+https://github.com/rust-lang/crates.io-index"
625
- checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f"
727
+ checksum = "c736e259eea577f443d5c86c304f9f4ae0295c43f3ba05c21f1d66b5f06001af"
626
728
  dependencies = [
627
729
  "jobserver",
628
730
  "libc",
629
731
  "shlex",
630
732
  ]
631
733
 
734
+ [[package]]
735
+ name = "cexpr"
736
+ version = "0.6.0"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
739
+ dependencies = [
740
+ "nom",
741
+ ]
742
+
632
743
  [[package]]
633
744
  name = "cfg-if"
634
745
  version = "1.0.0"
@@ -643,15 +754,15 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
643
754
 
644
755
  [[package]]
645
756
  name = "chrono"
646
- version = "0.4.38"
757
+ version = "0.4.40"
647
758
  source = "registry+https://github.com/rust-lang/crates.io-index"
648
- checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
759
+ checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c"
649
760
  dependencies = [
650
761
  "android-tzdata",
651
762
  "iana-time-zone",
652
763
  "num-traits",
653
764
  "serde",
654
- "windows-targets 0.52.6",
765
+ "windows-link",
655
766
  ]
656
767
 
657
768
  [[package]]
@@ -690,20 +801,31 @@ dependencies = [
690
801
  "autocfg",
691
802
  ]
692
803
 
804
+ [[package]]
805
+ name = "clang-sys"
806
+ version = "1.8.1"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
809
+ dependencies = [
810
+ "glob",
811
+ "libc",
812
+ "libloading",
813
+ ]
814
+
693
815
  [[package]]
694
816
  name = "clap"
695
- version = "4.5.20"
817
+ version = "4.5.31"
696
818
  source = "registry+https://github.com/rust-lang/crates.io-index"
697
- checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8"
819
+ checksum = "027bb0d98429ae334a8698531da7077bdf906419543a35a55c2cb1b66437d767"
698
820
  dependencies = [
699
821
  "clap_builder",
700
822
  ]
701
823
 
702
824
  [[package]]
703
825
  name = "clap_builder"
704
- version = "4.5.20"
826
+ version = "4.5.31"
705
827
  source = "registry+https://github.com/rust-lang/crates.io-index"
706
- checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54"
828
+ checksum = "5589e0cba072e0f3d23791efac0fd8627b49c829c196a492e88168e6a669d863"
707
829
  dependencies = [
708
830
  "anstyle",
709
831
  "clap_lex",
@@ -711,9 +833,18 @@ dependencies = [
711
833
 
712
834
  [[package]]
713
835
  name = "clap_lex"
714
- version = "0.7.2"
836
+ version = "0.7.4"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
839
+
840
+ [[package]]
841
+ name = "cmake"
842
+ version = "0.1.54"
715
843
  source = "registry+https://github.com/rust-lang/crates.io-index"
716
- checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
844
+ checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
845
+ dependencies = [
846
+ "cc",
847
+ ]
717
848
 
718
849
  [[package]]
719
850
  name = "color-eyre"
@@ -793,6 +924,16 @@ dependencies = [
793
924
  "version_check",
794
925
  ]
795
926
 
927
+ [[package]]
928
+ name = "core-foundation"
929
+ version = "0.9.4"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
932
+ dependencies = [
933
+ "core-foundation-sys",
934
+ "libc",
935
+ ]
936
+
796
937
  [[package]]
797
938
  name = "core-foundation-sys"
798
939
  version = "0.8.7"
@@ -801,9 +942,9 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
801
942
 
802
943
  [[package]]
803
944
  name = "cpufeatures"
804
- version = "0.2.14"
945
+ version = "0.2.17"
805
946
  source = "registry+https://github.com/rust-lang/crates.io-index"
806
- checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
947
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
807
948
  dependencies = [
808
949
  "libc",
809
950
  ]
@@ -882,9 +1023,9 @@ dependencies = [
882
1023
 
883
1024
  [[package]]
884
1025
  name = "crossbeam-deque"
885
- version = "0.8.5"
1026
+ version = "0.8.6"
886
1027
  source = "registry+https://github.com/rust-lang/crates.io-index"
887
- checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
1028
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
888
1029
  dependencies = [
889
1030
  "crossbeam-epoch",
890
1031
  "crossbeam-utils",
@@ -901,24 +1042,24 @@ dependencies = [
901
1042
 
902
1043
  [[package]]
903
1044
  name = "crossbeam-queue"
904
- version = "0.3.11"
1045
+ version = "0.3.12"
905
1046
  source = "registry+https://github.com/rust-lang/crates.io-index"
906
- checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
1047
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
907
1048
  dependencies = [
908
1049
  "crossbeam-utils",
909
1050
  ]
910
1051
 
911
1052
  [[package]]
912
1053
  name = "crossbeam-utils"
913
- version = "0.8.20"
1054
+ version = "0.8.21"
914
1055
  source = "registry+https://github.com/rust-lang/crates.io-index"
915
- checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
1056
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
916
1057
 
917
1058
  [[package]]
918
1059
  name = "crunchy"
919
- version = "0.2.2"
1060
+ version = "0.2.3"
920
1061
  source = "registry+https://github.com/rust-lang/crates.io-index"
921
- checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
1062
+ checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
922
1063
 
923
1064
  [[package]]
924
1065
  name = "crypto-common"
@@ -951,7 +1092,7 @@ dependencies = [
951
1092
  "proc-macro2",
952
1093
  "quote",
953
1094
  "strsim",
954
- "syn 2.0.85",
1095
+ "syn 2.0.98",
955
1096
  ]
956
1097
 
957
1098
  [[package]]
@@ -962,7 +1103,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
962
1103
  dependencies = [
963
1104
  "darling_core",
964
1105
  "quote",
965
- "syn 2.0.85",
1106
+ "syn 2.0.98",
966
1107
  ]
967
1108
 
968
1109
  [[package]]
@@ -1006,15 +1147,15 @@ dependencies = [
1006
1147
 
1007
1148
  [[package]]
1008
1149
  name = "derive_more"
1009
- version = "0.99.18"
1150
+ version = "0.99.19"
1010
1151
  source = "registry+https://github.com/rust-lang/crates.io-index"
1011
- checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
1152
+ checksum = "3da29a38df43d6f156149c9b43ded5e018ddff2a855cf2cfd62e8cd7d079c69f"
1012
1153
  dependencies = [
1013
1154
  "convert_case",
1014
1155
  "proc-macro2",
1015
1156
  "quote",
1016
1157
  "rustc_version",
1017
- "syn 2.0.85",
1158
+ "syn 2.0.98",
1018
1159
  ]
1019
1160
 
1020
1161
  [[package]]
@@ -1035,6 +1176,17 @@ dependencies = [
1035
1176
  "subtle",
1036
1177
  ]
1037
1178
 
1179
+ [[package]]
1180
+ name = "displaydoc"
1181
+ version = "0.2.5"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1184
+ dependencies = [
1185
+ "proc-macro2",
1186
+ "quote",
1187
+ "syn 2.0.98",
1188
+ ]
1189
+
1038
1190
  [[package]]
1039
1191
  name = "dlv-list"
1040
1192
  version = "0.3.0"
@@ -1047,11 +1199,29 @@ version = "0.15.7"
1047
1199
  source = "registry+https://github.com/rust-lang/crates.io-index"
1048
1200
  checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
1049
1201
 
1202
+ [[package]]
1203
+ name = "dummy"
1204
+ version = "0.8.0"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "1cac124e13ae9aa56acc4241f8c8207501d93afdd8d8e62f0c1f2e12f6508c65"
1207
+ dependencies = [
1208
+ "darling",
1209
+ "proc-macro2",
1210
+ "quote",
1211
+ "syn 2.0.98",
1212
+ ]
1213
+
1214
+ [[package]]
1215
+ name = "dunce"
1216
+ version = "1.0.5"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
1219
+
1050
1220
  [[package]]
1051
1221
  name = "either"
1052
- version = "1.13.0"
1222
+ version = "1.14.0"
1053
1223
  source = "registry+https://github.com/rust-lang/crates.io-index"
1054
- checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
1224
+ checksum = "b7914353092ddf589ad78f25c5c1c21b7f80b0ff8621e7c814c3485b5306da9d"
1055
1225
  dependencies = [
1056
1226
  "serde",
1057
1227
  ]
@@ -1065,6 +1235,18 @@ dependencies = [
1065
1235
  "cfg-if",
1066
1236
  ]
1067
1237
 
1238
+ [[package]]
1239
+ name = "enum-as-inner"
1240
+ version = "0.6.1"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
1243
+ dependencies = [
1244
+ "heck",
1245
+ "proc-macro2",
1246
+ "quote",
1247
+ "syn 2.0.98",
1248
+ ]
1249
+
1068
1250
  [[package]]
1069
1251
  name = "env_logger"
1070
1252
  version = "0.8.4"
@@ -1077,18 +1259,18 @@ dependencies = [
1077
1259
 
1078
1260
  [[package]]
1079
1261
  name = "equivalent"
1080
- version = "1.0.1"
1262
+ version = "1.0.2"
1081
1263
  source = "registry+https://github.com/rust-lang/crates.io-index"
1082
- checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
1264
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1083
1265
 
1084
1266
  [[package]]
1085
1267
  name = "errno"
1086
- version = "0.3.9"
1268
+ version = "0.3.10"
1087
1269
  source = "registry+https://github.com/rust-lang/crates.io-index"
1088
- checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
1270
+ checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
1089
1271
  dependencies = [
1090
1272
  "libc",
1091
- "windows-sys 0.52.0",
1273
+ "windows-sys 0.59.0",
1092
1274
  ]
1093
1275
 
1094
1276
  [[package]]
@@ -1104,9 +1286,9 @@ dependencies = [
1104
1286
 
1105
1287
  [[package]]
1106
1288
  name = "event-listener"
1107
- version = "5.3.1"
1289
+ version = "5.4.0"
1108
1290
  source = "registry+https://github.com/rust-lang/crates.io-index"
1109
- checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba"
1291
+ checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
1110
1292
  dependencies = [
1111
1293
  "concurrent-queue",
1112
1294
  "parking",
@@ -1131,23 +1313,24 @@ checksum = "2d391ba4af7f1d93f01fcf7b2f29e2bc9348e109dfdbf4dcbdc51dfa38dab0b6"
1131
1313
  dependencies = [
1132
1314
  "chrono",
1133
1315
  "deunicode",
1316
+ "dummy",
1134
1317
  "rand",
1135
1318
  ]
1136
1319
 
1137
1320
  [[package]]
1138
1321
  name = "fastrand"
1139
- version = "2.1.1"
1322
+ version = "2.3.0"
1140
1323
  source = "registry+https://github.com/rust-lang/crates.io-index"
1141
- checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
1324
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
1142
1325
 
1143
1326
  [[package]]
1144
1327
  name = "flate2"
1145
- version = "1.0.34"
1328
+ version = "1.1.0"
1146
1329
  source = "registry+https://github.com/rust-lang/crates.io-index"
1147
- checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
1330
+ checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
1148
1331
  dependencies = [
1149
1332
  "crc32fast",
1150
- "miniz_oxide 0.8.0",
1333
+ "miniz_oxide 0.8.5",
1151
1334
  ]
1152
1335
 
1153
1336
  [[package]]
@@ -1167,6 +1350,12 @@ version = "1.0.7"
1167
1350
  source = "registry+https://github.com/rust-lang/crates.io-index"
1168
1351
  checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1169
1352
 
1353
+ [[package]]
1354
+ name = "foldhash"
1355
+ version = "0.1.4"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
1358
+
1170
1359
  [[package]]
1171
1360
  name = "form_urlencoded"
1172
1361
  version = "1.2.1"
@@ -1176,6 +1365,12 @@ dependencies = [
1176
1365
  "percent-encoding",
1177
1366
  ]
1178
1367
 
1368
+ [[package]]
1369
+ name = "fs_extra"
1370
+ version = "1.3.0"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
1373
+
1179
1374
  [[package]]
1180
1375
  name = "futures"
1181
1376
  version = "0.3.31"
@@ -1243,7 +1438,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1243
1438
  dependencies = [
1244
1439
  "proc-macro2",
1245
1440
  "quote",
1246
- "syn 2.0.85",
1441
+ "syn 2.0.98",
1247
1442
  ]
1248
1443
 
1249
1444
  [[package]]
@@ -1301,10 +1496,24 @@ name = "getrandom"
1301
1496
  version = "0.2.15"
1302
1497
  source = "registry+https://github.com/rust-lang/crates.io-index"
1303
1498
  checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
1499
+ dependencies = [
1500
+ "cfg-if",
1501
+ "js-sys",
1502
+ "libc",
1503
+ "wasi 0.11.0+wasi-snapshot-preview1",
1504
+ "wasm-bindgen",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "getrandom"
1509
+ version = "0.3.1"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8"
1304
1512
  dependencies = [
1305
1513
  "cfg-if",
1306
1514
  "libc",
1307
- "wasi",
1515
+ "wasi 0.13.3+wasi-0.2.2",
1516
+ "windows-targets 0.52.6",
1308
1517
  ]
1309
1518
 
1310
1519
  [[package]]
@@ -1315,9 +1524,9 @@ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
1315
1524
 
1316
1525
  [[package]]
1317
1526
  name = "glob"
1318
- version = "0.3.1"
1527
+ version = "0.3.2"
1319
1528
  source = "registry+https://github.com/rust-lang/crates.io-index"
1320
- checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
1529
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1321
1530
 
1322
1531
  [[package]]
1323
1532
  name = "h2"
@@ -1331,7 +1540,7 @@ dependencies = [
1331
1540
  "futures-sink",
1332
1541
  "futures-util",
1333
1542
  "http 0.2.12",
1334
- "indexmap 2.6.0",
1543
+ "indexmap 2.7.1",
1335
1544
  "slab",
1336
1545
  "tokio",
1337
1546
  "tokio-util",
@@ -1340,17 +1549,17 @@ dependencies = [
1340
1549
 
1341
1550
  [[package]]
1342
1551
  name = "h2"
1343
- version = "0.4.6"
1552
+ version = "0.4.8"
1344
1553
  source = "registry+https://github.com/rust-lang/crates.io-index"
1345
- checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205"
1554
+ checksum = "5017294ff4bb30944501348f6f8e42e6ad28f42c8bbef7a74029aff064a4e3c2"
1346
1555
  dependencies = [
1347
1556
  "atomic-waker",
1348
1557
  "bytes",
1349
1558
  "fnv",
1350
1559
  "futures-core",
1351
1560
  "futures-sink",
1352
- "http 1.1.0",
1353
- "indexmap 2.6.0",
1561
+ "http 1.2.0",
1562
+ "indexmap 2.7.1",
1354
1563
  "slab",
1355
1564
  "tokio",
1356
1565
  "tokio-util",
@@ -1378,35 +1587,24 @@ dependencies = [
1378
1587
 
1379
1588
  [[package]]
1380
1589
  name = "hashbrown"
1381
- version = "0.14.5"
1590
+ version = "0.15.2"
1382
1591
  source = "registry+https://github.com/rust-lang/crates.io-index"
1383
- checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1592
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1384
1593
  dependencies = [
1385
- "ahash 0.8.11",
1386
1594
  "allocator-api2",
1595
+ "equivalent",
1596
+ "foldhash",
1387
1597
  ]
1388
1598
 
1389
- [[package]]
1390
- name = "hashbrown"
1391
- version = "0.15.0"
1392
- source = "registry+https://github.com/rust-lang/crates.io-index"
1393
- checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
1394
-
1395
1599
  [[package]]
1396
1600
  name = "hashlink"
1397
- version = "0.9.1"
1601
+ version = "0.10.0"
1398
1602
  source = "registry+https://github.com/rust-lang/crates.io-index"
1399
- checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
1603
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
1400
1604
  dependencies = [
1401
- "hashbrown 0.14.5",
1605
+ "hashbrown 0.15.2",
1402
1606
  ]
1403
1607
 
1404
- [[package]]
1405
- name = "heck"
1406
- version = "0.4.1"
1407
- source = "registry+https://github.com/rust-lang/crates.io-index"
1408
- checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1409
-
1410
1608
  [[package]]
1411
1609
  name = "heck"
1412
1610
  version = "0.5.0"
@@ -1451,11 +1649,11 @@ dependencies = [
1451
1649
 
1452
1650
  [[package]]
1453
1651
  name = "home"
1454
- version = "0.5.9"
1652
+ version = "0.5.11"
1455
1653
  source = "registry+https://github.com/rust-lang/crates.io-index"
1456
- checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
1654
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
1457
1655
  dependencies = [
1458
- "windows-sys 0.52.0",
1656
+ "windows-sys 0.59.0",
1459
1657
  ]
1460
1658
 
1461
1659
  [[package]]
@@ -1471,15 +1669,26 @@ dependencies = [
1471
1669
 
1472
1670
  [[package]]
1473
1671
  name = "http"
1474
- version = "1.1.0"
1672
+ version = "1.2.0"
1475
1673
  source = "registry+https://github.com/rust-lang/crates.io-index"
1476
- checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
1674
+ checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
1477
1675
  dependencies = [
1478
1676
  "bytes",
1479
1677
  "fnv",
1480
1678
  "itoa",
1481
1679
  ]
1482
1680
 
1681
+ [[package]]
1682
+ name = "http-body"
1683
+ version = "0.4.6"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1686
+ dependencies = [
1687
+ "bytes",
1688
+ "http 0.2.12",
1689
+ "pin-project-lite",
1690
+ ]
1691
+
1483
1692
  [[package]]
1484
1693
  name = "http-body"
1485
1694
  version = "1.0.1"
@@ -1487,7 +1696,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
1696
  checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1488
1697
  dependencies = [
1489
1698
  "bytes",
1490
- "http 1.1.0",
1699
+ "http 1.2.0",
1491
1700
  ]
1492
1701
 
1493
1702
  [[package]]
@@ -1498,16 +1707,22 @@ checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
1498
1707
  dependencies = [
1499
1708
  "bytes",
1500
1709
  "futures-util",
1501
- "http 1.1.0",
1502
- "http-body",
1710
+ "http 1.2.0",
1711
+ "http-body 1.0.1",
1503
1712
  "pin-project-lite",
1504
1713
  ]
1505
1714
 
1715
+ [[package]]
1716
+ name = "http-range-header"
1717
+ version = "0.3.1"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
1720
+
1506
1721
  [[package]]
1507
1722
  name = "httparse"
1508
- version = "1.9.5"
1723
+ version = "1.10.0"
1509
1724
  source = "registry+https://github.com/rust-lang/crates.io-index"
1510
- checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
1725
+ checksum = "f2d708df4e7140240a16cd6ab0ab65c972d7433ab77819ea693fde9c43811e2a"
1511
1726
 
1512
1727
  [[package]]
1513
1728
  name = "httpdate"
@@ -1517,16 +1732,39 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1517
1732
 
1518
1733
  [[package]]
1519
1734
  name = "hyper"
1520
- version = "1.5.0"
1735
+ version = "0.14.32"
1736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1737
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
1738
+ dependencies = [
1739
+ "bytes",
1740
+ "futures-channel",
1741
+ "futures-core",
1742
+ "futures-util",
1743
+ "http 0.2.12",
1744
+ "http-body 0.4.6",
1745
+ "httparse",
1746
+ "httpdate",
1747
+ "itoa",
1748
+ "pin-project-lite",
1749
+ "socket2",
1750
+ "tokio",
1751
+ "tower-service",
1752
+ "tracing",
1753
+ "want",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "hyper"
1758
+ version = "1.6.0"
1521
1759
  source = "registry+https://github.com/rust-lang/crates.io-index"
1522
- checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a"
1760
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
1523
1761
  dependencies = [
1524
1762
  "bytes",
1525
1763
  "futures-channel",
1526
1764
  "futures-util",
1527
- "h2 0.4.6",
1528
- "http 1.1.0",
1529
- "http-body",
1765
+ "h2 0.4.8",
1766
+ "http 1.2.0",
1767
+ "http-body 1.0.1",
1530
1768
  "httparse",
1531
1769
  "httpdate",
1532
1770
  "itoa",
@@ -1538,22 +1776,50 @@ dependencies = [
1538
1776
 
1539
1777
  [[package]]
1540
1778
  name = "hyper-rustls"
1541
- version = "0.27.3"
1779
+ version = "0.24.2"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
1782
+ dependencies = [
1783
+ "futures-util",
1784
+ "http 0.2.12",
1785
+ "hyper 0.14.32",
1786
+ "log",
1787
+ "rustls 0.21.12",
1788
+ "rustls-native-certs",
1789
+ "tokio",
1790
+ "tokio-rustls 0.24.1",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "hyper-rustls"
1795
+ version = "0.27.5"
1542
1796
  source = "registry+https://github.com/rust-lang/crates.io-index"
1543
- checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333"
1797
+ checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1544
1798
  dependencies = [
1545
1799
  "futures-util",
1546
- "http 1.1.0",
1547
- "hyper",
1800
+ "http 1.2.0",
1801
+ "hyper 1.6.0",
1548
1802
  "hyper-util",
1549
- "rustls",
1803
+ "rustls 0.23.23",
1550
1804
  "rustls-pki-types",
1551
1805
  "tokio",
1552
- "tokio-rustls",
1806
+ "tokio-rustls 0.26.1",
1553
1807
  "tower-service",
1554
1808
  "webpki-roots",
1555
1809
  ]
1556
1810
 
1811
+ [[package]]
1812
+ name = "hyper-timeout"
1813
+ version = "0.4.1"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
1816
+ dependencies = [
1817
+ "hyper 0.14.32",
1818
+ "pin-project-lite",
1819
+ "tokio",
1820
+ "tokio-io-timeout",
1821
+ ]
1822
+
1557
1823
  [[package]]
1558
1824
  name = "hyper-util"
1559
1825
  version = "0.1.10"
@@ -1563,9 +1829,9 @@ dependencies = [
1563
1829
  "bytes",
1564
1830
  "futures-channel",
1565
1831
  "futures-util",
1566
- "http 1.1.0",
1567
- "http-body",
1568
- "hyper",
1832
+ "http 1.2.0",
1833
+ "http-body 1.0.1",
1834
+ "hyper 1.6.0",
1569
1835
  "pin-project-lite",
1570
1836
  "socket2",
1571
1837
  "tokio",
@@ -1597,26 +1863,155 @@ dependencies = [
1597
1863
  ]
1598
1864
 
1599
1865
  [[package]]
1600
- name = "ident_case"
1601
- version = "1.0.1"
1866
+ name = "icu_collections"
1867
+ version = "1.5.0"
1602
1868
  source = "registry+https://github.com/rust-lang/crates.io-index"
1603
- checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1869
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1870
+ dependencies = [
1871
+ "displaydoc",
1872
+ "yoke",
1873
+ "zerofrom",
1874
+ "zerovec",
1875
+ ]
1604
1876
 
1605
1877
  [[package]]
1606
- name = "idna"
1607
- version = "0.5.0"
1878
+ name = "icu_locid"
1879
+ version = "1.5.0"
1608
1880
  source = "registry+https://github.com/rust-lang/crates.io-index"
1609
- checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
1881
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1610
1882
  dependencies = [
1611
- "unicode-bidi",
1612
- "unicode-normalization",
1883
+ "displaydoc",
1884
+ "litemap",
1885
+ "tinystr",
1886
+ "writeable",
1887
+ "zerovec",
1613
1888
  ]
1614
1889
 
1615
1890
  [[package]]
1616
- name = "impl-more"
1617
- version = "0.1.8"
1891
+ name = "icu_locid_transform"
1892
+ version = "1.5.0"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1895
+ dependencies = [
1896
+ "displaydoc",
1897
+ "icu_locid",
1898
+ "icu_locid_transform_data",
1899
+ "icu_provider",
1900
+ "tinystr",
1901
+ "zerovec",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "icu_locid_transform_data"
1906
+ version = "1.5.0"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1909
+
1910
+ [[package]]
1911
+ name = "icu_normalizer"
1912
+ version = "1.5.0"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1915
+ dependencies = [
1916
+ "displaydoc",
1917
+ "icu_collections",
1918
+ "icu_normalizer_data",
1919
+ "icu_properties",
1920
+ "icu_provider",
1921
+ "smallvec",
1922
+ "utf16_iter",
1923
+ "utf8_iter",
1924
+ "write16",
1925
+ "zerovec",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "icu_normalizer_data"
1930
+ version = "1.5.0"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1933
+
1934
+ [[package]]
1935
+ name = "icu_properties"
1936
+ version = "1.5.1"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1939
+ dependencies = [
1940
+ "displaydoc",
1941
+ "icu_collections",
1942
+ "icu_locid_transform",
1943
+ "icu_properties_data",
1944
+ "icu_provider",
1945
+ "tinystr",
1946
+ "zerovec",
1947
+ ]
1948
+
1949
+ [[package]]
1950
+ name = "icu_properties_data"
1951
+ version = "1.5.0"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1954
+
1955
+ [[package]]
1956
+ name = "icu_provider"
1957
+ version = "1.5.0"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1960
+ dependencies = [
1961
+ "displaydoc",
1962
+ "icu_locid",
1963
+ "icu_provider_macros",
1964
+ "stable_deref_trait",
1965
+ "tinystr",
1966
+ "writeable",
1967
+ "yoke",
1968
+ "zerofrom",
1969
+ "zerovec",
1970
+ ]
1971
+
1972
+ [[package]]
1973
+ name = "icu_provider_macros"
1974
+ version = "1.5.0"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1977
+ dependencies = [
1978
+ "proc-macro2",
1979
+ "quote",
1980
+ "syn 2.0.98",
1981
+ ]
1982
+
1983
+ [[package]]
1984
+ name = "ident_case"
1985
+ version = "1.0.1"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1988
+
1989
+ [[package]]
1990
+ name = "idna"
1991
+ version = "1.0.3"
1618
1992
  source = "registry+https://github.com/rust-lang/crates.io-index"
1619
- checksum = "aae21c3177a27788957044151cc2800043d127acaa460a47ebb9b84dfa2c6aa0"
1993
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1994
+ dependencies = [
1995
+ "idna_adapter",
1996
+ "smallvec",
1997
+ "utf8_iter",
1998
+ ]
1999
+
2000
+ [[package]]
2001
+ name = "idna_adapter"
2002
+ version = "1.2.0"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
2005
+ dependencies = [
2006
+ "icu_normalizer",
2007
+ "icu_properties",
2008
+ ]
2009
+
2010
+ [[package]]
2011
+ name = "impl-more"
2012
+ version = "0.1.9"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
1620
2015
 
1621
2016
  [[package]]
1622
2017
  name = "indenter"
@@ -1637,12 +2032,12 @@ dependencies = [
1637
2032
 
1638
2033
  [[package]]
1639
2034
  name = "indexmap"
1640
- version = "2.6.0"
2035
+ version = "2.7.1"
1641
2036
  source = "registry+https://github.com/rust-lang/crates.io-index"
1642
- checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
2037
+ checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
1643
2038
  dependencies = [
1644
2039
  "equivalent",
1645
- "hashbrown 0.15.0",
2040
+ "hashbrown 0.15.2",
1646
2041
  "serde",
1647
2042
  ]
1648
2043
 
@@ -1654,19 +2049,19 @@ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
1654
2049
 
1655
2050
  [[package]]
1656
2051
  name = "ipnet"
1657
- version = "2.10.1"
2052
+ version = "2.11.0"
1658
2053
  source = "registry+https://github.com/rust-lang/crates.io-index"
1659
- checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
2054
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1660
2055
 
1661
2056
  [[package]]
1662
2057
  name = "is-terminal"
1663
- version = "0.4.13"
2058
+ version = "0.4.15"
1664
2059
  source = "registry+https://github.com/rust-lang/crates.io-index"
1665
- checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
2060
+ checksum = "e19b23d53f35ce9f56aebc7d1bb4e6ac1e9c0db7ac85c8d1760c04379edced37"
1666
2061
  dependencies = [
1667
2062
  "hermit-abi 0.4.0",
1668
2063
  "libc",
1669
- "windows-sys 0.52.0",
2064
+ "windows-sys 0.59.0",
1670
2065
  ]
1671
2066
 
1672
2067
  [[package]]
@@ -1678,6 +2073,15 @@ dependencies = [
1678
2073
  "either",
1679
2074
  ]
1680
2075
 
2076
+ [[package]]
2077
+ name = "itertools"
2078
+ version = "0.12.1"
2079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2080
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
2081
+ dependencies = [
2082
+ "either",
2083
+ ]
2084
+
1681
2085
  [[package]]
1682
2086
  name = "itertools"
1683
2087
  version = "0.13.0"
@@ -1689,9 +2093,9 @@ dependencies = [
1689
2093
 
1690
2094
  [[package]]
1691
2095
  name = "itoa"
1692
- version = "1.0.11"
2096
+ version = "1.0.14"
1693
2097
  source = "registry+https://github.com/rust-lang/crates.io-index"
1694
- checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
2098
+ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1695
2099
 
1696
2100
  [[package]]
1697
2101
  name = "jobserver"
@@ -1704,10 +2108,11 @@ dependencies = [
1704
2108
 
1705
2109
  [[package]]
1706
2110
  name = "js-sys"
1707
- version = "0.3.72"
2111
+ version = "0.3.77"
1708
2112
  source = "registry+https://github.com/rust-lang/crates.io-index"
1709
- checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
2113
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1710
2114
  dependencies = [
2115
+ "once_cell",
1711
2116
  "wasm-bindgen",
1712
2117
  ]
1713
2118
 
@@ -1722,6 +2127,95 @@ dependencies = [
1722
2127
  "serde",
1723
2128
  ]
1724
2129
 
2130
+ [[package]]
2131
+ name = "jsonpath-rust"
2132
+ version = "0.4.0"
2133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+ checksum = "96acbc6188d3bd83519d053efec756aa4419de62ec47be7f28dec297f7dc9eb0"
2135
+ dependencies = [
2136
+ "pest",
2137
+ "pest_derive",
2138
+ "regex",
2139
+ "serde_json",
2140
+ "thiserror 1.0.69",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "k8s-openapi"
2145
+ version = "0.21.1"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "550f99d93aa4c2b25de527bce492d772caf5e21d7ac9bd4b508ba781c8d91e30"
2148
+ dependencies = [
2149
+ "base64 0.21.7",
2150
+ "chrono",
2151
+ "serde",
2152
+ "serde-value",
2153
+ "serde_json",
2154
+ ]
2155
+
2156
+ [[package]]
2157
+ name = "kube"
2158
+ version = "0.88.1"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "462fe330a0617b276ec864c2255810adcdf519ecb6844253c54074b2086a97bc"
2161
+ dependencies = [
2162
+ "k8s-openapi",
2163
+ "kube-client",
2164
+ "kube-core",
2165
+ ]
2166
+
2167
+ [[package]]
2168
+ name = "kube-client"
2169
+ version = "0.88.1"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "7fe0d65dd6f3adba29cfb84f19dfe55449c7f6c35425f9d8294bec40313e0b64"
2172
+ dependencies = [
2173
+ "base64 0.21.7",
2174
+ "bytes",
2175
+ "chrono",
2176
+ "either",
2177
+ "futures",
2178
+ "home",
2179
+ "http 0.2.12",
2180
+ "http-body 0.4.6",
2181
+ "hyper 0.14.32",
2182
+ "hyper-rustls 0.24.2",
2183
+ "hyper-timeout",
2184
+ "jsonpath-rust",
2185
+ "k8s-openapi",
2186
+ "kube-core",
2187
+ "pem",
2188
+ "pin-project",
2189
+ "rustls 0.21.12",
2190
+ "rustls-pemfile 1.0.4",
2191
+ "secrecy",
2192
+ "serde",
2193
+ "serde_json",
2194
+ "serde_yaml",
2195
+ "thiserror 1.0.69",
2196
+ "tokio",
2197
+ "tokio-util",
2198
+ "tower 0.4.13",
2199
+ "tower-http",
2200
+ "tracing",
2201
+ ]
2202
+
2203
+ [[package]]
2204
+ name = "kube-core"
2205
+ version = "0.88.1"
2206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2207
+ checksum = "a6b42844e9172f631b8263ea9ce003b9251da13beb1401580937ad206dd82f4c"
2208
+ dependencies = [
2209
+ "chrono",
2210
+ "form_urlencoded",
2211
+ "http 0.2.12",
2212
+ "k8s-openapi",
2213
+ "once_cell",
2214
+ "serde",
2215
+ "serde_json",
2216
+ "thiserror 1.0.69",
2217
+ ]
2218
+
1725
2219
  [[package]]
1726
2220
  name = "language-tags"
1727
2221
  version = "0.3.2"
@@ -1737,11 +2231,27 @@ dependencies = [
1737
2231
  "spin",
1738
2232
  ]
1739
2233
 
2234
+ [[package]]
2235
+ name = "lazycell"
2236
+ version = "1.3.0"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2239
+
1740
2240
  [[package]]
1741
2241
  name = "libc"
1742
- version = "0.2.161"
2242
+ version = "0.2.170"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828"
2245
+
2246
+ [[package]]
2247
+ name = "libloading"
2248
+ version = "0.8.6"
1743
2249
  source = "registry+https://github.com/rust-lang/crates.io-index"
1744
- checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
2250
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
2251
+ dependencies = [
2252
+ "cfg-if",
2253
+ "windows-targets 0.52.6",
2254
+ ]
1745
2255
 
1746
2256
  [[package]]
1747
2257
  name = "libm"
@@ -1768,9 +2278,15 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1768
2278
 
1769
2279
  [[package]]
1770
2280
  name = "linux-raw-sys"
1771
- version = "0.4.14"
2281
+ version = "0.4.15"
1772
2282
  source = "registry+https://github.com/rust-lang/crates.io-index"
1773
- checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
2283
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
2284
+
2285
+ [[package]]
2286
+ name = "litemap"
2287
+ version = "0.7.4"
2288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2289
+ checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
1774
2290
 
1775
2291
  [[package]]
1776
2292
  name = "local-channel"
@@ -1801,9 +2317,9 @@ dependencies = [
1801
2317
 
1802
2318
  [[package]]
1803
2319
  name = "log"
1804
- version = "0.4.22"
2320
+ version = "0.4.26"
1805
2321
  source = "registry+https://github.com/rust-lang/crates.io-index"
1806
- checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
2322
+ checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
1807
2323
 
1808
2324
  [[package]]
1809
2325
  name = "matchers"
@@ -1862,23 +2378,22 @@ dependencies = [
1862
2378
 
1863
2379
  [[package]]
1864
2380
  name = "miniz_oxide"
1865
- version = "0.8.0"
2381
+ version = "0.8.5"
1866
2382
  source = "registry+https://github.com/rust-lang/crates.io-index"
1867
- checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
2383
+ checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
1868
2384
  dependencies = [
1869
2385
  "adler2",
1870
2386
  ]
1871
2387
 
1872
2388
  [[package]]
1873
2389
  name = "mio"
1874
- version = "1.0.2"
2390
+ version = "1.0.3"
1875
2391
  source = "registry+https://github.com/rust-lang/crates.io-index"
1876
- checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
2392
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1877
2393
  dependencies = [
1878
- "hermit-abi 0.3.9",
1879
2394
  "libc",
1880
2395
  "log",
1881
- "wasi",
2396
+ "wasi 0.11.0+wasi-snapshot-preview1",
1882
2397
  "windows-sys 0.52.0",
1883
2398
  ]
1884
2399
 
@@ -1982,9 +2497,9 @@ dependencies = [
1982
2497
 
1983
2498
  [[package]]
1984
2499
  name = "once_cell"
1985
- version = "1.20.2"
2500
+ version = "1.20.3"
1986
2501
  source = "registry+https://github.com/rust-lang/crates.io-index"
1987
- checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
2502
+ checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e"
1988
2503
 
1989
2504
  [[package]]
1990
2505
  name = "oorandom"
@@ -1992,6 +2507,12 @@ version = "11.1.4"
1992
2507
  source = "registry+https://github.com/rust-lang/crates.io-index"
1993
2508
  checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
1994
2509
 
2510
+ [[package]]
2511
+ name = "openssl-probe"
2512
+ version = "0.1.6"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
2515
+
1995
2516
  [[package]]
1996
2517
  name = "opentelemetry"
1997
2518
  version = "0.22.0"
@@ -2003,7 +2524,7 @@ dependencies = [
2003
2524
  "js-sys",
2004
2525
  "once_cell",
2005
2526
  "pin-project-lite",
2006
- "thiserror",
2527
+ "thiserror 1.0.69",
2007
2528
  "urlencoding",
2008
2529
  ]
2009
2530
 
@@ -2018,7 +2539,7 @@ dependencies = [
2018
2539
  "js-sys",
2019
2540
  "once_cell",
2020
2541
  "pin-project-lite",
2021
- "thiserror",
2542
+ "thiserror 1.0.69",
2022
2543
  ]
2023
2544
 
2024
2545
  [[package]]
@@ -2053,22 +2574,6 @@ version = "0.14.0"
2053
2574
  source = "registry+https://github.com/rust-lang/crates.io-index"
2054
2575
  checksum = "f9ab5bd6c42fb9349dcf28af2ba9a0667f697f9bdcca045d39f2cec5543e2910"
2055
2576
 
2056
- [[package]]
2057
- name = "opentelemetry_api"
2058
- version = "0.20.0"
2059
- source = "registry+https://github.com/rust-lang/crates.io-index"
2060
- checksum = "8a81f725323db1b1206ca3da8bb19874bbd3f57c3bcd59471bfb04525b265b9b"
2061
- dependencies = [
2062
- "futures-channel",
2063
- "futures-util",
2064
- "indexmap 1.9.3",
2065
- "js-sys",
2066
- "once_cell",
2067
- "pin-project-lite",
2068
- "thiserror",
2069
- "urlencoding",
2070
- ]
2071
-
2072
2577
  [[package]]
2073
2578
  name = "opentelemetry_sdk"
2074
2579
  version = "0.22.1"
@@ -2082,8 +2587,8 @@ dependencies = [
2082
2587
  "glob",
2083
2588
  "once_cell",
2084
2589
  "opentelemetry 0.22.0",
2085
- "ordered-float",
2086
- "thiserror",
2590
+ "ordered-float 4.6.0",
2591
+ "thiserror 1.0.69",
2087
2592
  ]
2088
2593
 
2089
2594
  [[package]]
@@ -2100,17 +2605,26 @@ dependencies = [
2100
2605
  "lazy_static",
2101
2606
  "once_cell",
2102
2607
  "opentelemetry 0.23.0",
2103
- "ordered-float",
2608
+ "ordered-float 4.6.0",
2104
2609
  "percent-encoding",
2105
2610
  "rand",
2106
- "thiserror",
2611
+ "thiserror 1.0.69",
2612
+ ]
2613
+
2614
+ [[package]]
2615
+ name = "ordered-float"
2616
+ version = "2.10.1"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
2619
+ dependencies = [
2620
+ "num-traits",
2107
2621
  ]
2108
2622
 
2109
2623
  [[package]]
2110
2624
  name = "ordered-float"
2111
- version = "4.4.0"
2625
+ version = "4.6.0"
2112
2626
  source = "registry+https://github.com/rust-lang/crates.io-index"
2113
- checksum = "83e7ccb95e240b7c9506a3d544f10d935e142cc90b0a1d56954fb44d89ad6b97"
2627
+ checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
2114
2628
  dependencies = [
2115
2629
  "num-traits",
2116
2630
  ]
@@ -2174,9 +2688,19 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2174
2688
 
2175
2689
  [[package]]
2176
2690
  name = "pathdiff"
2177
- version = "0.2.2"
2691
+ version = "0.2.3"
2178
2692
  source = "registry+https://github.com/rust-lang/crates.io-index"
2179
- checksum = "d61c5ce1153ab5b689d0c074c4e7fc613e942dfb7dd9eea5ab202d2ad91fe361"
2693
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
2694
+
2695
+ [[package]]
2696
+ name = "pem"
2697
+ version = "3.0.5"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
2700
+ dependencies = [
2701
+ "base64 0.22.1",
2702
+ "serde",
2703
+ ]
2180
2704
 
2181
2705
  [[package]]
2182
2706
  name = "pem-rfc7468"
@@ -2195,20 +2719,20 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2195
2719
 
2196
2720
  [[package]]
2197
2721
  name = "pest"
2198
- version = "2.7.14"
2722
+ version = "2.7.15"
2199
2723
  source = "registry+https://github.com/rust-lang/crates.io-index"
2200
- checksum = "879952a81a83930934cbf1786752d6dedc3b1f29e8f8fb2ad1d0a36f377cf442"
2724
+ checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
2201
2725
  dependencies = [
2202
2726
  "memchr",
2203
- "thiserror",
2727
+ "thiserror 2.0.11",
2204
2728
  "ucd-trie",
2205
2729
  ]
2206
2730
 
2207
2731
  [[package]]
2208
2732
  name = "pest_derive"
2209
- version = "2.7.14"
2733
+ version = "2.7.15"
2210
2734
  source = "registry+https://github.com/rust-lang/crates.io-index"
2211
- checksum = "d214365f632b123a47fd913301e14c946c61d1c183ee245fa76eb752e59a02dd"
2735
+ checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e"
2212
2736
  dependencies = [
2213
2737
  "pest",
2214
2738
  "pest_generator",
@@ -2216,22 +2740,22 @@ dependencies = [
2216
2740
 
2217
2741
  [[package]]
2218
2742
  name = "pest_generator"
2219
- version = "2.7.14"
2743
+ version = "2.7.15"
2220
2744
  source = "registry+https://github.com/rust-lang/crates.io-index"
2221
- checksum = "eb55586734301717aea2ac313f50b2eb8f60d2fc3dc01d190eefa2e625f60c4e"
2745
+ checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b"
2222
2746
  dependencies = [
2223
2747
  "pest",
2224
2748
  "pest_meta",
2225
2749
  "proc-macro2",
2226
2750
  "quote",
2227
- "syn 2.0.85",
2751
+ "syn 2.0.98",
2228
2752
  ]
2229
2753
 
2230
2754
  [[package]]
2231
2755
  name = "pest_meta"
2232
- version = "2.7.14"
2756
+ version = "2.7.15"
2233
2757
  source = "registry+https://github.com/rust-lang/crates.io-index"
2234
- checksum = "b75da2a70cf4d9cb76833c990ac9cd3923c9a8905a8929789ce347c84564d03d"
2758
+ checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea"
2235
2759
  dependencies = [
2236
2760
  "once_cell",
2237
2761
  "pest",
@@ -2240,29 +2764,29 @@ dependencies = [
2240
2764
 
2241
2765
  [[package]]
2242
2766
  name = "pin-project"
2243
- version = "1.1.7"
2767
+ version = "1.1.9"
2244
2768
  source = "registry+https://github.com/rust-lang/crates.io-index"
2245
- checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95"
2769
+ checksum = "dfe2e71e1471fe07709406bf725f710b02927c9c54b2b5b2ec0e8087d97c327d"
2246
2770
  dependencies = [
2247
2771
  "pin-project-internal",
2248
2772
  ]
2249
2773
 
2250
2774
  [[package]]
2251
2775
  name = "pin-project-internal"
2252
- version = "1.1.7"
2776
+ version = "1.1.9"
2253
2777
  source = "registry+https://github.com/rust-lang/crates.io-index"
2254
- checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c"
2778
+ checksum = "f6e859e6e5bd50440ab63c47e3ebabc90f26251f7c73c3d3e837b74a1cc3fa67"
2255
2779
  dependencies = [
2256
2780
  "proc-macro2",
2257
2781
  "quote",
2258
- "syn 2.0.85",
2782
+ "syn 2.0.98",
2259
2783
  ]
2260
2784
 
2261
2785
  [[package]]
2262
2786
  name = "pin-project-lite"
2263
- version = "0.2.15"
2787
+ version = "0.2.16"
2264
2788
  source = "registry+https://github.com/rust-lang/crates.io-index"
2265
- checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
2789
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2266
2790
 
2267
2791
  [[package]]
2268
2792
  name = "pin-utils"
@@ -2327,9 +2851,9 @@ dependencies = [
2327
2851
 
2328
2852
  [[package]]
2329
2853
  name = "portable-atomic"
2330
- version = "1.9.0"
2854
+ version = "1.11.0"
2331
2855
  source = "registry+https://github.com/rust-lang/crates.io-index"
2332
- checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
2856
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
2333
2857
 
2334
2858
  [[package]]
2335
2859
  name = "powerfmt"
@@ -2346,11 +2870,21 @@ dependencies = [
2346
2870
  "zerocopy",
2347
2871
  ]
2348
2872
 
2873
+ [[package]]
2874
+ name = "prettyplease"
2875
+ version = "0.2.29"
2876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2877
+ checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
2878
+ dependencies = [
2879
+ "proc-macro2",
2880
+ "syn 2.0.98",
2881
+ ]
2882
+
2349
2883
  [[package]]
2350
2884
  name = "proc-macro2"
2351
- version = "1.0.89"
2885
+ version = "1.0.93"
2352
2886
  source = "registry+https://github.com/rust-lang/crates.io-index"
2353
- checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
2887
+ checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
2354
2888
  dependencies = [
2355
2889
  "unicode-ident",
2356
2890
  ]
@@ -2367,7 +2901,21 @@ dependencies = [
2367
2901
  "memchr",
2368
2902
  "parking_lot",
2369
2903
  "protobuf",
2370
- "thiserror",
2904
+ "thiserror 1.0.69",
2905
+ ]
2906
+
2907
+ [[package]]
2908
+ name = "prometheus-http-query"
2909
+ version = "0.8.3"
2910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2911
+ checksum = "0fcebfa99f03ae51220778316b37d24981e36322c82c24848f48c5bd0f64cbdb"
2912
+ dependencies = [
2913
+ "enum-as-inner",
2914
+ "mime",
2915
+ "reqwest",
2916
+ "serde",
2917
+ "time",
2918
+ "url",
2371
2919
  ]
2372
2920
 
2373
2921
  [[package]]
@@ -2378,9 +2926,9 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
2378
2926
 
2379
2927
  [[package]]
2380
2928
  name = "pyo3"
2381
- version = "0.20.3"
2929
+ version = "0.23.5"
2382
2930
  source = "registry+https://github.com/rust-lang/crates.io-index"
2383
- checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
2931
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
2384
2932
  dependencies = [
2385
2933
  "anyhow",
2386
2934
  "cfg-if",
@@ -2388,7 +2936,7 @@ dependencies = [
2388
2936
  "indoc",
2389
2937
  "libc",
2390
2938
  "memoffset",
2391
- "parking_lot",
2939
+ "once_cell",
2392
2940
  "portable-atomic",
2393
2941
  "pyo3-build-config",
2394
2942
  "pyo3-ffi",
@@ -2397,35 +2945,35 @@ dependencies = [
2397
2945
  ]
2398
2946
 
2399
2947
  [[package]]
2400
- name = "pyo3-asyncio"
2401
- version = "0.20.0"
2948
+ name = "pyo3-async-runtimes"
2949
+ version = "0.23.0"
2402
2950
  source = "registry+https://github.com/rust-lang/crates.io-index"
2403
- checksum = "6ea6b68e93db3622f3bb3bf363246cf948ed5375afe7abff98ccbdd50b184995"
2951
+ checksum = "977dc837525cfd22919ba6a831413854beb7c99a256c03bf8624ad707e45810e"
2404
2952
  dependencies = [
2405
2953
  "futures",
2406
2954
  "once_cell",
2407
2955
  "pin-project-lite",
2408
2956
  "pyo3",
2409
- "pyo3-asyncio-macros",
2957
+ "pyo3-async-runtimes-macros",
2410
2958
  "tokio",
2411
2959
  ]
2412
2960
 
2413
2961
  [[package]]
2414
- name = "pyo3-asyncio-macros"
2415
- version = "0.20.0"
2962
+ name = "pyo3-async-runtimes-macros"
2963
+ version = "0.23.0"
2416
2964
  source = "registry+https://github.com/rust-lang/crates.io-index"
2417
- checksum = "56c467178e1da6252c95c29ecf898b133f742e9181dca5def15dc24e19d45a39"
2965
+ checksum = "b2df2884957d2476731f987673befac5d521dff10abb0a7cbe12015bc7702fe9"
2418
2966
  dependencies = [
2419
2967
  "proc-macro2",
2420
2968
  "quote",
2421
- "syn 1.0.109",
2969
+ "syn 2.0.98",
2422
2970
  ]
2423
2971
 
2424
2972
  [[package]]
2425
2973
  name = "pyo3-build-config"
2426
- version = "0.20.3"
2974
+ version = "0.23.5"
2427
2975
  source = "registry+https://github.com/rust-lang/crates.io-index"
2428
- checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
2976
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
2429
2977
  dependencies = [
2430
2978
  "once_cell",
2431
2979
  "target-lexicon",
@@ -2433,9 +2981,9 @@ dependencies = [
2433
2981
 
2434
2982
  [[package]]
2435
2983
  name = "pyo3-ffi"
2436
- version = "0.20.3"
2984
+ version = "0.23.5"
2437
2985
  source = "registry+https://github.com/rust-lang/crates.io-index"
2438
- checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
2986
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
2439
2987
  dependencies = [
2440
2988
  "libc",
2441
2989
  "pyo3-build-config",
@@ -2443,39 +2991,39 @@ dependencies = [
2443
2991
 
2444
2992
  [[package]]
2445
2993
  name = "pyo3-macros"
2446
- version = "0.20.3"
2994
+ version = "0.23.5"
2447
2995
  source = "registry+https://github.com/rust-lang/crates.io-index"
2448
- checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
2996
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
2449
2997
  dependencies = [
2450
2998
  "proc-macro2",
2451
2999
  "pyo3-macros-backend",
2452
3000
  "quote",
2453
- "syn 2.0.85",
3001
+ "syn 2.0.98",
2454
3002
  ]
2455
3003
 
2456
3004
  [[package]]
2457
3005
  name = "pyo3-macros-backend"
2458
- version = "0.20.3"
3006
+ version = "0.23.5"
2459
3007
  source = "registry+https://github.com/rust-lang/crates.io-index"
2460
- checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
3008
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
2461
3009
  dependencies = [
2462
- "heck 0.4.1",
3010
+ "heck",
2463
3011
  "proc-macro2",
2464
3012
  "pyo3-build-config",
2465
3013
  "quote",
2466
- "syn 2.0.85",
3014
+ "syn 2.0.98",
2467
3015
  ]
2468
3016
 
2469
3017
  [[package]]
2470
3018
  name = "python-auditor"
2471
- version = "0.6.3"
3019
+ version = "0.7.1"
2472
3020
  dependencies = [
2473
3021
  "anyhow",
2474
3022
  "auditor",
2475
3023
  "auditor-client",
2476
3024
  "chrono",
2477
3025
  "pyo3",
2478
- "pyo3-asyncio",
3026
+ "pyo3-async-runtimes",
2479
3027
  "serde",
2480
3028
  "serde_json",
2481
3029
  "tokio",
@@ -2505,44 +3053,47 @@ dependencies = [
2505
3053
 
2506
3054
  [[package]]
2507
3055
  name = "quinn"
2508
- version = "0.11.5"
3056
+ version = "0.11.6"
2509
3057
  source = "registry+https://github.com/rust-lang/crates.io-index"
2510
- checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684"
3058
+ checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
2511
3059
  dependencies = [
2512
3060
  "bytes",
2513
3061
  "pin-project-lite",
2514
3062
  "quinn-proto",
2515
3063
  "quinn-udp",
2516
- "rustc-hash",
2517
- "rustls",
3064
+ "rustc-hash 2.1.1",
3065
+ "rustls 0.23.23",
2518
3066
  "socket2",
2519
- "thiserror",
3067
+ "thiserror 2.0.11",
2520
3068
  "tokio",
2521
3069
  "tracing",
2522
3070
  ]
2523
3071
 
2524
3072
  [[package]]
2525
3073
  name = "quinn-proto"
2526
- version = "0.11.8"
3074
+ version = "0.11.9"
2527
3075
  source = "registry+https://github.com/rust-lang/crates.io-index"
2528
- checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6"
3076
+ checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
2529
3077
  dependencies = [
2530
3078
  "bytes",
3079
+ "getrandom 0.2.15",
2531
3080
  "rand",
2532
3081
  "ring",
2533
- "rustc-hash",
2534
- "rustls",
3082
+ "rustc-hash 2.1.1",
3083
+ "rustls 0.23.23",
3084
+ "rustls-pki-types",
2535
3085
  "slab",
2536
- "thiserror",
3086
+ "thiserror 2.0.11",
2537
3087
  "tinyvec",
2538
3088
  "tracing",
3089
+ "web-time",
2539
3090
  ]
2540
3091
 
2541
3092
  [[package]]
2542
3093
  name = "quinn-udp"
2543
- version = "0.5.6"
3094
+ version = "0.5.10"
2544
3095
  source = "registry+https://github.com/rust-lang/crates.io-index"
2545
- checksum = "e346e016eacfff12233c243718197ca12f148c84e1e84268a896699b41c71780"
3096
+ checksum = "e46f3055866785f6b92bc6164b76be02ca8f2eb4b002c0354b28cf4c119e5944"
2546
3097
  dependencies = [
2547
3098
  "cfg_aliases",
2548
3099
  "libc",
@@ -2554,9 +3105,9 @@ dependencies = [
2554
3105
 
2555
3106
  [[package]]
2556
3107
  name = "quote"
2557
- version = "1.0.37"
3108
+ version = "1.0.38"
2558
3109
  source = "registry+https://github.com/rust-lang/crates.io-index"
2559
- checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
3110
+ checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
2560
3111
  dependencies = [
2561
3112
  "proc-macro2",
2562
3113
  ]
@@ -2588,7 +3139,7 @@ version = "0.6.4"
2588
3139
  source = "registry+https://github.com/rust-lang/crates.io-index"
2589
3140
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2590
3141
  dependencies = [
2591
- "getrandom",
3142
+ "getrandom 0.2.15",
2592
3143
  ]
2593
3144
 
2594
3145
  [[package]]
@@ -2623,11 +3174,11 @@ dependencies = [
2623
3174
 
2624
3175
  [[package]]
2625
3176
  name = "redox_syscall"
2626
- version = "0.5.7"
3177
+ version = "0.5.9"
2627
3178
  source = "registry+https://github.com/rust-lang/crates.io-index"
2628
- checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
3179
+ checksum = "82b568323e98e49e2a0899dcee453dd679fae22d69adf9b11dd508d1549b7e2f"
2629
3180
  dependencies = [
2630
- "bitflags 2.6.0",
3181
+ "bitflags 2.8.0",
2631
3182
  ]
2632
3183
 
2633
3184
  [[package]]
@@ -2638,7 +3189,7 @@ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2638
3189
  dependencies = [
2639
3190
  "aho-corasick",
2640
3191
  "memchr",
2641
- "regex-automata 0.4.8",
3192
+ "regex-automata 0.4.9",
2642
3193
  "regex-syntax 0.8.5",
2643
3194
  ]
2644
3195
 
@@ -2653,9 +3204,9 @@ dependencies = [
2653
3204
 
2654
3205
  [[package]]
2655
3206
  name = "regex-automata"
2656
- version = "0.4.8"
3207
+ version = "0.4.9"
2657
3208
  source = "registry+https://github.com/rust-lang/crates.io-index"
2658
- checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
3209
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2659
3210
  dependencies = [
2660
3211
  "aho-corasick",
2661
3212
  "memchr",
@@ -2682,20 +3233,20 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2682
3233
 
2683
3234
  [[package]]
2684
3235
  name = "reqwest"
2685
- version = "0.12.9"
3236
+ version = "0.12.12"
2686
3237
  source = "registry+https://github.com/rust-lang/crates.io-index"
2687
- checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f"
3238
+ checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da"
2688
3239
  dependencies = [
2689
3240
  "base64 0.22.1",
2690
3241
  "bytes",
2691
3242
  "futures-channel",
2692
3243
  "futures-core",
2693
3244
  "futures-util",
2694
- "http 1.1.0",
2695
- "http-body",
3245
+ "http 1.2.0",
3246
+ "http-body 1.0.1",
2696
3247
  "http-body-util",
2697
- "hyper",
2698
- "hyper-rustls",
3248
+ "hyper 1.6.0",
3249
+ "hyper-rustls 0.27.5",
2699
3250
  "hyper-util",
2700
3251
  "ipnet",
2701
3252
  "js-sys",
@@ -2705,15 +3256,16 @@ dependencies = [
2705
3256
  "percent-encoding",
2706
3257
  "pin-project-lite",
2707
3258
  "quinn",
2708
- "rustls",
2709
- "rustls-pemfile",
3259
+ "rustls 0.23.23",
3260
+ "rustls-pemfile 2.2.0",
2710
3261
  "rustls-pki-types",
2711
3262
  "serde",
2712
3263
  "serde_json",
2713
3264
  "serde_urlencoded",
2714
3265
  "sync_wrapper",
2715
3266
  "tokio",
2716
- "tokio-rustls",
3267
+ "tokio-rustls 0.26.1",
3268
+ "tower 0.5.2",
2717
3269
  "tower-service",
2718
3270
  "url",
2719
3271
  "wasm-bindgen",
@@ -2725,15 +3277,14 @@ dependencies = [
2725
3277
 
2726
3278
  [[package]]
2727
3279
  name = "ring"
2728
- version = "0.17.8"
3280
+ version = "0.17.11"
2729
3281
  source = "registry+https://github.com/rust-lang/crates.io-index"
2730
- checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
3282
+ checksum = "da5349ae27d3887ca812fb375b45a4fbb36d8d12d2df394968cd86e35683fe73"
2731
3283
  dependencies = [
2732
3284
  "cc",
2733
3285
  "cfg-if",
2734
- "getrandom",
3286
+ "getrandom 0.2.15",
2735
3287
  "libc",
2736
- "spin",
2737
3288
  "untrusted",
2738
3289
  "windows-sys 0.52.0",
2739
3290
  ]
@@ -2751,9 +3302,9 @@ dependencies = [
2751
3302
 
2752
3303
  [[package]]
2753
3304
  name = "rsa"
2754
- version = "0.9.6"
3305
+ version = "0.9.7"
2755
3306
  source = "registry+https://github.com/rust-lang/crates.io-index"
2756
- checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc"
3307
+ checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519"
2757
3308
  dependencies = [
2758
3309
  "const-oid",
2759
3310
  "digest",
@@ -2787,9 +3338,15 @@ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2787
3338
 
2788
3339
  [[package]]
2789
3340
  name = "rustc-hash"
2790
- version = "2.0.0"
3341
+ version = "1.1.0"
3342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3343
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
3344
+
3345
+ [[package]]
3346
+ name = "rustc-hash"
3347
+ version = "2.1.1"
2791
3348
  source = "registry+https://github.com/rust-lang/crates.io-index"
2792
- checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
3349
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2793
3350
 
2794
3351
  [[package]]
2795
3352
  name = "rustc_version"
@@ -2802,31 +3359,66 @@ dependencies = [
2802
3359
 
2803
3360
  [[package]]
2804
3361
  name = "rustix"
2805
- version = "0.38.38"
3362
+ version = "0.38.44"
2806
3363
  source = "registry+https://github.com/rust-lang/crates.io-index"
2807
- checksum = "aa260229e6538e52293eeb577aabd09945a09d6d9cc0fc550ed7529056c2e32a"
3364
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2808
3365
  dependencies = [
2809
- "bitflags 2.6.0",
3366
+ "bitflags 2.8.0",
2810
3367
  "errno",
2811
3368
  "libc",
2812
3369
  "linux-raw-sys",
2813
- "windows-sys 0.52.0",
3370
+ "windows-sys 0.59.0",
2814
3371
  ]
2815
3372
 
2816
3373
  [[package]]
2817
3374
  name = "rustls"
2818
- version = "0.23.16"
3375
+ version = "0.21.12"
2819
3376
  source = "registry+https://github.com/rust-lang/crates.io-index"
2820
- checksum = "eee87ff5d9b36712a58574e12e9f0ea80f915a5b0ac518d322b24a465617925e"
3377
+ checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
2821
3378
  dependencies = [
3379
+ "log",
3380
+ "ring",
3381
+ "rustls-webpki 0.101.7",
3382
+ "sct",
3383
+ ]
3384
+
3385
+ [[package]]
3386
+ name = "rustls"
3387
+ version = "0.23.23"
3388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3389
+ checksum = "47796c98c480fce5406ef69d1c76378375492c3b0a0de587be0c1d9feb12f395"
3390
+ dependencies = [
3391
+ "aws-lc-rs",
3392
+ "log",
2822
3393
  "once_cell",
2823
3394
  "ring",
2824
3395
  "rustls-pki-types",
2825
- "rustls-webpki",
3396
+ "rustls-webpki 0.102.8",
2826
3397
  "subtle",
2827
3398
  "zeroize",
2828
3399
  ]
2829
3400
 
3401
+ [[package]]
3402
+ name = "rustls-native-certs"
3403
+ version = "0.6.3"
3404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3405
+ checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
3406
+ dependencies = [
3407
+ "openssl-probe",
3408
+ "rustls-pemfile 1.0.4",
3409
+ "schannel",
3410
+ "security-framework",
3411
+ ]
3412
+
3413
+ [[package]]
3414
+ name = "rustls-pemfile"
3415
+ version = "1.0.4"
3416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3417
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
3418
+ dependencies = [
3419
+ "base64 0.21.7",
3420
+ ]
3421
+
2830
3422
  [[package]]
2831
3423
  name = "rustls-pemfile"
2832
3424
  version = "2.2.0"
@@ -2838,9 +3430,22 @@ dependencies = [
2838
3430
 
2839
3431
  [[package]]
2840
3432
  name = "rustls-pki-types"
2841
- version = "1.10.0"
3433
+ version = "1.11.0"
3434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3435
+ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
3436
+ dependencies = [
3437
+ "web-time",
3438
+ ]
3439
+
3440
+ [[package]]
3441
+ name = "rustls-webpki"
3442
+ version = "0.101.7"
2842
3443
  source = "registry+https://github.com/rust-lang/crates.io-index"
2843
- checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
3444
+ checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
3445
+ dependencies = [
3446
+ "ring",
3447
+ "untrusted",
3448
+ ]
2844
3449
 
2845
3450
  [[package]]
2846
3451
  name = "rustls-webpki"
@@ -2848,16 +3453,23 @@ version = "0.102.8"
2848
3453
  source = "registry+https://github.com/rust-lang/crates.io-index"
2849
3454
  checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2850
3455
  dependencies = [
3456
+ "aws-lc-rs",
2851
3457
  "ring",
2852
3458
  "rustls-pki-types",
2853
3459
  "untrusted",
2854
3460
  ]
2855
3461
 
3462
+ [[package]]
3463
+ name = "rustversion"
3464
+ version = "1.0.19"
3465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3466
+ checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
3467
+
2856
3468
  [[package]]
2857
3469
  name = "ryu"
2858
- version = "1.0.18"
3470
+ version = "1.0.19"
2859
3471
  source = "registry+https://github.com/rust-lang/crates.io-index"
2860
- checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
3472
+ checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
2861
3473
 
2862
3474
  [[package]]
2863
3475
  name = "same-file"
@@ -2868,11 +3480,30 @@ dependencies = [
2868
3480
  "winapi-util",
2869
3481
  ]
2870
3482
 
3483
+ [[package]]
3484
+ name = "schannel"
3485
+ version = "0.1.27"
3486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3487
+ checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
3488
+ dependencies = [
3489
+ "windows-sys 0.59.0",
3490
+ ]
3491
+
2871
3492
  [[package]]
2872
3493
  name = "scopeguard"
2873
3494
  version = "1.2.0"
2874
3495
  source = "registry+https://github.com/rust-lang/crates.io-index"
2875
- checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3496
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3497
+
3498
+ [[package]]
3499
+ name = "sct"
3500
+ version = "0.7.1"
3501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3502
+ checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
3503
+ dependencies = [
3504
+ "ring",
3505
+ "untrusted",
3506
+ ]
2876
3507
 
2877
3508
  [[package]]
2878
3509
  name = "secrecy"
@@ -2884,48 +3515,82 @@ dependencies = [
2884
3515
  "zeroize",
2885
3516
  ]
2886
3517
 
3518
+ [[package]]
3519
+ name = "security-framework"
3520
+ version = "2.11.1"
3521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3522
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
3523
+ dependencies = [
3524
+ "bitflags 2.8.0",
3525
+ "core-foundation",
3526
+ "core-foundation-sys",
3527
+ "libc",
3528
+ "security-framework-sys",
3529
+ ]
3530
+
3531
+ [[package]]
3532
+ name = "security-framework-sys"
3533
+ version = "2.14.0"
3534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3535
+ checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
3536
+ dependencies = [
3537
+ "core-foundation-sys",
3538
+ "libc",
3539
+ ]
3540
+
2887
3541
  [[package]]
2888
3542
  name = "semver"
2889
- version = "1.0.23"
3543
+ version = "1.0.25"
2890
3544
  source = "registry+https://github.com/rust-lang/crates.io-index"
2891
- checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
3545
+ checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03"
2892
3546
 
2893
3547
  [[package]]
2894
3548
  name = "serde"
2895
- version = "1.0.214"
3549
+ version = "1.0.218"
2896
3550
  source = "registry+https://github.com/rust-lang/crates.io-index"
2897
- checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5"
3551
+ checksum = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60"
2898
3552
  dependencies = [
2899
3553
  "serde_derive",
2900
3554
  ]
2901
3555
 
2902
3556
  [[package]]
2903
3557
  name = "serde-aux"
2904
- version = "4.5.0"
3558
+ version = "4.6.0"
2905
3559
  source = "registry+https://github.com/rust-lang/crates.io-index"
2906
- checksum = "0d2e8bfba469d06512e11e3311d4d051a4a387a5b42d010404fecf3200321c95"
3560
+ checksum = "5290c39c5f6992b9dddbda28541d965dba46468294e6018a408fa297e6c602de"
2907
3561
  dependencies = [
2908
3562
  "chrono",
2909
3563
  "serde",
3564
+ "serde-value",
2910
3565
  "serde_json",
2911
3566
  ]
2912
3567
 
3568
+ [[package]]
3569
+ name = "serde-value"
3570
+ version = "0.7.0"
3571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3572
+ checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
3573
+ dependencies = [
3574
+ "ordered-float 2.10.1",
3575
+ "serde",
3576
+ ]
3577
+
2913
3578
  [[package]]
2914
3579
  name = "serde_derive"
2915
- version = "1.0.214"
3580
+ version = "1.0.218"
2916
3581
  source = "registry+https://github.com/rust-lang/crates.io-index"
2917
- checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766"
3582
+ checksum = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b"
2918
3583
  dependencies = [
2919
3584
  "proc-macro2",
2920
3585
  "quote",
2921
- "syn 2.0.85",
3586
+ "syn 2.0.98",
2922
3587
  ]
2923
3588
 
2924
3589
  [[package]]
2925
3590
  name = "serde_json"
2926
- version = "1.0.132"
3591
+ version = "1.0.139"
2927
3592
  source = "registry+https://github.com/rust-lang/crates.io-index"
2928
- checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03"
3593
+ checksum = "44f86c3acccc9c65b153fe1b85a3be07fe5515274ec9f0653b4a0875731c72a6"
2929
3594
  dependencies = [
2930
3595
  "itoa",
2931
3596
  "memchr",
@@ -2943,7 +3608,7 @@ dependencies = [
2943
3608
  "futures",
2944
3609
  "percent-encoding",
2945
3610
  "serde",
2946
- "thiserror",
3611
+ "thiserror 1.0.69",
2947
3612
  ]
2948
3613
 
2949
3614
  [[package]]
@@ -2960,15 +3625,15 @@ dependencies = [
2960
3625
 
2961
3626
  [[package]]
2962
3627
  name = "serde_with"
2963
- version = "3.11.0"
3628
+ version = "3.12.0"
2964
3629
  source = "registry+https://github.com/rust-lang/crates.io-index"
2965
- checksum = "8e28bdad6db2b8340e449f7108f020b3b092e8583a9e3fb82713e1d4e71fe817"
3630
+ checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
2966
3631
  dependencies = [
2967
3632
  "base64 0.22.1",
2968
3633
  "chrono",
2969
3634
  "hex",
2970
3635
  "indexmap 1.9.3",
2971
- "indexmap 2.6.0",
3636
+ "indexmap 2.7.1",
2972
3637
  "serde",
2973
3638
  "serde_derive",
2974
3639
  "serde_json",
@@ -2978,14 +3643,27 @@ dependencies = [
2978
3643
 
2979
3644
  [[package]]
2980
3645
  name = "serde_with_macros"
2981
- version = "3.11.0"
3646
+ version = "3.12.0"
2982
3647
  source = "registry+https://github.com/rust-lang/crates.io-index"
2983
- checksum = "9d846214a9854ef724f3da161b426242d8de7c1fc7de2f89bb1efcb154dca79d"
3648
+ checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
2984
3649
  dependencies = [
2985
3650
  "darling",
2986
3651
  "proc-macro2",
2987
3652
  "quote",
2988
- "syn 2.0.85",
3653
+ "syn 2.0.98",
3654
+ ]
3655
+
3656
+ [[package]]
3657
+ name = "serde_yaml"
3658
+ version = "0.9.34+deprecated"
3659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3660
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
3661
+ dependencies = [
3662
+ "indexmap 2.7.1",
3663
+ "itoa",
3664
+ "ryu",
3665
+ "serde",
3666
+ "unsafe-libyaml",
2989
3667
  ]
2990
3668
 
2991
3669
  [[package]]
@@ -3061,18 +3739,18 @@ dependencies = [
3061
3739
 
3062
3740
  [[package]]
3063
3741
  name = "smallvec"
3064
- version = "1.13.2"
3742
+ version = "1.14.0"
3065
3743
  source = "registry+https://github.com/rust-lang/crates.io-index"
3066
- checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
3744
+ checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
3067
3745
  dependencies = [
3068
3746
  "serde",
3069
3747
  ]
3070
3748
 
3071
3749
  [[package]]
3072
3750
  name = "socket2"
3073
- version = "0.5.7"
3751
+ version = "0.5.8"
3074
3752
  source = "registry+https://github.com/rust-lang/crates.io-index"
3075
- checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
3753
+ checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
3076
3754
  dependencies = [
3077
3755
  "libc",
3078
3756
  "windows-sys 0.52.0",
@@ -3097,21 +3775,11 @@ dependencies = [
3097
3775
  "der",
3098
3776
  ]
3099
3777
 
3100
- [[package]]
3101
- name = "sqlformat"
3102
- version = "0.2.6"
3103
- source = "registry+https://github.com/rust-lang/crates.io-index"
3104
- checksum = "7bba3a93db0cc4f7bdece8bb09e77e2e785c20bfebf79eb8340ed80708048790"
3105
- dependencies = [
3106
- "nom",
3107
- "unicode_categories",
3108
- ]
3109
-
3110
3778
  [[package]]
3111
3779
  name = "sqlx"
3112
- version = "0.8.2"
3780
+ version = "0.8.3"
3113
3781
  source = "registry+https://github.com/rust-lang/crates.io-index"
3114
- checksum = "93334716a037193fac19df402f8571269c84a00852f6a7066b5d2616dcd64d3e"
3782
+ checksum = "4410e73b3c0d8442c5f99b425d7a435b5ee0ae4167b3196771dd3f7a01be745f"
3115
3783
  dependencies = [
3116
3784
  "sqlx-core",
3117
3785
  "sqlx-macros",
@@ -3122,40 +3790,34 @@ dependencies = [
3122
3790
 
3123
3791
  [[package]]
3124
3792
  name = "sqlx-core"
3125
- version = "0.8.2"
3793
+ version = "0.8.3"
3126
3794
  source = "registry+https://github.com/rust-lang/crates.io-index"
3127
- checksum = "d4d8060b456358185f7d50c55d9b5066ad956956fddec42ee2e8567134a8936e"
3795
+ checksum = "6a007b6936676aa9ab40207cde35daab0a04b823be8ae004368c0793b96a61e0"
3128
3796
  dependencies = [
3129
- "atoi",
3130
- "byteorder",
3131
3797
  "bytes",
3132
3798
  "chrono",
3133
3799
  "crc",
3134
3800
  "crossbeam-queue",
3135
3801
  "either",
3136
3802
  "event-listener",
3137
- "futures-channel",
3138
3803
  "futures-core",
3139
3804
  "futures-intrusive",
3140
3805
  "futures-io",
3141
3806
  "futures-util",
3142
- "hashbrown 0.14.5",
3807
+ "hashbrown 0.15.2",
3143
3808
  "hashlink",
3144
- "hex",
3145
- "indexmap 2.6.0",
3809
+ "indexmap 2.7.1",
3146
3810
  "log",
3147
3811
  "memchr",
3148
3812
  "once_cell",
3149
- "paste",
3150
3813
  "percent-encoding",
3151
- "rustls",
3152
- "rustls-pemfile",
3814
+ "rustls 0.23.23",
3815
+ "rustls-pemfile 2.2.0",
3153
3816
  "serde",
3154
3817
  "serde_json",
3155
3818
  "sha2",
3156
3819
  "smallvec",
3157
- "sqlformat",
3158
- "thiserror",
3820
+ "thiserror 2.0.11",
3159
3821
  "tokio",
3160
3822
  "tokio-stream",
3161
3823
  "tracing",
@@ -3166,26 +3828,26 @@ dependencies = [
3166
3828
 
3167
3829
  [[package]]
3168
3830
  name = "sqlx-macros"
3169
- version = "0.8.2"
3831
+ version = "0.8.3"
3170
3832
  source = "registry+https://github.com/rust-lang/crates.io-index"
3171
- checksum = "cac0692bcc9de3b073e8d747391827297e075c7710ff6276d9f7a1f3d58c6657"
3833
+ checksum = "3112e2ad78643fef903618d78cf0aec1cb3134b019730edb039b69eaf531f310"
3172
3834
  dependencies = [
3173
3835
  "proc-macro2",
3174
3836
  "quote",
3175
3837
  "sqlx-core",
3176
3838
  "sqlx-macros-core",
3177
- "syn 2.0.85",
3839
+ "syn 2.0.98",
3178
3840
  ]
3179
3841
 
3180
3842
  [[package]]
3181
3843
  name = "sqlx-macros-core"
3182
- version = "0.8.2"
3844
+ version = "0.8.3"
3183
3845
  source = "registry+https://github.com/rust-lang/crates.io-index"
3184
- checksum = "1804e8a7c7865599c9c79be146dc8a9fd8cc86935fa641d3ea58e5f0688abaa5"
3846
+ checksum = "4e9f90acc5ab146a99bf5061a7eb4976b573f560bc898ef3bf8435448dd5e7ad"
3185
3847
  dependencies = [
3186
3848
  "dotenvy",
3187
3849
  "either",
3188
- "heck 0.5.0",
3850
+ "heck",
3189
3851
  "hex",
3190
3852
  "once_cell",
3191
3853
  "proc-macro2",
@@ -3197,7 +3859,7 @@ dependencies = [
3197
3859
  "sqlx-mysql",
3198
3860
  "sqlx-postgres",
3199
3861
  "sqlx-sqlite",
3200
- "syn 2.0.85",
3862
+ "syn 2.0.98",
3201
3863
  "tempfile",
3202
3864
  "tokio",
3203
3865
  "url",
@@ -3205,13 +3867,13 @@ dependencies = [
3205
3867
 
3206
3868
  [[package]]
3207
3869
  name = "sqlx-mysql"
3208
- version = "0.8.2"
3870
+ version = "0.8.3"
3209
3871
  source = "registry+https://github.com/rust-lang/crates.io-index"
3210
- checksum = "64bb4714269afa44aef2755150a0fc19d756fb580a67db8885608cf02f47d06a"
3872
+ checksum = "4560278f0e00ce64938540546f59f590d60beee33fffbd3b9cd47851e5fff233"
3211
3873
  dependencies = [
3212
3874
  "atoi",
3213
3875
  "base64 0.22.1",
3214
- "bitflags 2.6.0",
3876
+ "bitflags 2.8.0",
3215
3877
  "byteorder",
3216
3878
  "bytes",
3217
3879
  "chrono",
@@ -3241,7 +3903,7 @@ dependencies = [
3241
3903
  "smallvec",
3242
3904
  "sqlx-core",
3243
3905
  "stringprep",
3244
- "thiserror",
3906
+ "thiserror 2.0.11",
3245
3907
  "tracing",
3246
3908
  "uuid",
3247
3909
  "whoami",
@@ -3249,13 +3911,13 @@ dependencies = [
3249
3911
 
3250
3912
  [[package]]
3251
3913
  name = "sqlx-postgres"
3252
- version = "0.8.2"
3914
+ version = "0.8.3"
3253
3915
  source = "registry+https://github.com/rust-lang/crates.io-index"
3254
- checksum = "6fa91a732d854c5d7726349bb4bb879bb9478993ceb764247660aee25f67c2f8"
3916
+ checksum = "c5b98a57f363ed6764d5b3a12bfedf62f07aa16e1856a7ddc2a0bb190a959613"
3255
3917
  dependencies = [
3256
3918
  "atoi",
3257
3919
  "base64 0.22.1",
3258
- "bitflags 2.6.0",
3920
+ "bitflags 2.8.0",
3259
3921
  "byteorder",
3260
3922
  "chrono",
3261
3923
  "crc",
@@ -3263,7 +3925,6 @@ dependencies = [
3263
3925
  "etcetera",
3264
3926
  "futures-channel",
3265
3927
  "futures-core",
3266
- "futures-io",
3267
3928
  "futures-util",
3268
3929
  "hex",
3269
3930
  "hkdf",
@@ -3281,7 +3942,7 @@ dependencies = [
3281
3942
  "smallvec",
3282
3943
  "sqlx-core",
3283
3944
  "stringprep",
3284
- "thiserror",
3945
+ "thiserror 2.0.11",
3285
3946
  "tracing",
3286
3947
  "uuid",
3287
3948
  "whoami",
@@ -3289,9 +3950,9 @@ dependencies = [
3289
3950
 
3290
3951
  [[package]]
3291
3952
  name = "sqlx-sqlite"
3292
- version = "0.8.2"
3953
+ version = "0.8.3"
3293
3954
  source = "registry+https://github.com/rust-lang/crates.io-index"
3294
- checksum = "d5b2cf34a45953bfd3daaf3db0f7a7878ab9b7a6b91b422d24a7a9e4c857b680"
3955
+ checksum = "f85ca71d3a5b24e64e1d08dd8fe36c6c95c339a896cc33068148906784620540"
3295
3956
  dependencies = [
3296
3957
  "atoi",
3297
3958
  "chrono",
@@ -3312,6 +3973,12 @@ dependencies = [
3312
3973
  "uuid",
3313
3974
  ]
3314
3975
 
3976
+ [[package]]
3977
+ name = "stable_deref_trait"
3978
+ version = "1.2.0"
3979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3980
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3981
+
3315
3982
  [[package]]
3316
3983
  name = "stringprep"
3317
3984
  version = "0.1.5"
@@ -3348,9 +4015,9 @@ dependencies = [
3348
4015
 
3349
4016
  [[package]]
3350
4017
  name = "syn"
3351
- version = "2.0.85"
4018
+ version = "2.0.98"
3352
4019
  source = "registry+https://github.com/rust-lang/crates.io-index"
3353
- checksum = "5023162dfcd14ef8f32034d8bcd4cc5ddc61ef7a247c024a33e24e1f24d21b56"
4020
+ checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1"
3354
4021
  dependencies = [
3355
4022
  "proc-macro2",
3356
4023
  "quote",
@@ -3359,13 +4026,24 @@ dependencies = [
3359
4026
 
3360
4027
  [[package]]
3361
4028
  name = "sync_wrapper"
3362
- version = "1.0.1"
4029
+ version = "1.0.2"
3363
4030
  source = "registry+https://github.com/rust-lang/crates.io-index"
3364
- checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
4031
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3365
4032
  dependencies = [
3366
4033
  "futures-core",
3367
4034
  ]
3368
4035
 
4036
+ [[package]]
4037
+ name = "synstructure"
4038
+ version = "0.13.1"
4039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4040
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
4041
+ dependencies = [
4042
+ "proc-macro2",
4043
+ "quote",
4044
+ "syn 2.0.98",
4045
+ ]
4046
+
3369
4047
  [[package]]
3370
4048
  name = "target-lexicon"
3371
4049
  version = "0.12.16"
@@ -3374,12 +4052,13 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3374
4052
 
3375
4053
  [[package]]
3376
4054
  name = "tempfile"
3377
- version = "3.13.0"
4055
+ version = "3.17.1"
3378
4056
  source = "registry+https://github.com/rust-lang/crates.io-index"
3379
- checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
4057
+ checksum = "22e5a0acb1f3f55f65cc4a866c361b2fb2a0ff6366785ae6fbb5f85df07ba230"
3380
4058
  dependencies = [
3381
4059
  "cfg-if",
3382
4060
  "fastrand",
4061
+ "getrandom 0.3.1",
3383
4062
  "once_cell",
3384
4063
  "rustix",
3385
4064
  "windows-sys 0.59.0",
@@ -3387,22 +4066,42 @@ dependencies = [
3387
4066
 
3388
4067
  [[package]]
3389
4068
  name = "thiserror"
3390
- version = "1.0.65"
4069
+ version = "1.0.69"
4070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4071
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
4072
+ dependencies = [
4073
+ "thiserror-impl 1.0.69",
4074
+ ]
4075
+
4076
+ [[package]]
4077
+ name = "thiserror"
4078
+ version = "2.0.11"
4079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4080
+ checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
4081
+ dependencies = [
4082
+ "thiserror-impl 2.0.11",
4083
+ ]
4084
+
4085
+ [[package]]
4086
+ name = "thiserror-impl"
4087
+ version = "1.0.69"
3391
4088
  source = "registry+https://github.com/rust-lang/crates.io-index"
3392
- checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5"
4089
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3393
4090
  dependencies = [
3394
- "thiserror-impl",
4091
+ "proc-macro2",
4092
+ "quote",
4093
+ "syn 2.0.98",
3395
4094
  ]
3396
4095
 
3397
4096
  [[package]]
3398
4097
  name = "thiserror-impl"
3399
- version = "1.0.65"
4098
+ version = "2.0.11"
3400
4099
  source = "registry+https://github.com/rust-lang/crates.io-index"
3401
- checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602"
4100
+ checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
3402
4101
  dependencies = [
3403
4102
  "proc-macro2",
3404
4103
  "quote",
3405
- "syn 2.0.85",
4104
+ "syn 2.0.98",
3406
4105
  ]
3407
4106
 
3408
4107
  [[package]]
@@ -3417,9 +4116,9 @@ dependencies = [
3417
4116
 
3418
4117
  [[package]]
3419
4118
  name = "time"
3420
- version = "0.3.36"
4119
+ version = "0.3.37"
3421
4120
  source = "registry+https://github.com/rust-lang/crates.io-index"
3422
- checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
4121
+ checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
3423
4122
  dependencies = [
3424
4123
  "deranged",
3425
4124
  "itoa",
@@ -3438,14 +4137,24 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3438
4137
 
3439
4138
  [[package]]
3440
4139
  name = "time-macros"
3441
- version = "0.2.18"
4140
+ version = "0.2.19"
3442
4141
  source = "registry+https://github.com/rust-lang/crates.io-index"
3443
- checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
4142
+ checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
3444
4143
  dependencies = [
3445
4144
  "num-conv",
3446
4145
  "time-core",
3447
4146
  ]
3448
4147
 
4148
+ [[package]]
4149
+ name = "tinystr"
4150
+ version = "0.7.6"
4151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4152
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
4153
+ dependencies = [
4154
+ "displaydoc",
4155
+ "zerovec",
4156
+ ]
4157
+
3449
4158
  [[package]]
3450
4159
  name = "tinytemplate"
3451
4160
  version = "1.2.1"
@@ -3458,9 +4167,9 @@ dependencies = [
3458
4167
 
3459
4168
  [[package]]
3460
4169
  name = "tinyvec"
3461
- version = "1.8.0"
4170
+ version = "1.8.1"
3462
4171
  source = "registry+https://github.com/rust-lang/crates.io-index"
3463
- checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
4172
+ checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
3464
4173
  dependencies = [
3465
4174
  "tinyvec_macros",
3466
4175
  ]
@@ -3473,9 +4182,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3473
4182
 
3474
4183
  [[package]]
3475
4184
  name = "tokio"
3476
- version = "1.41.0"
4185
+ version = "1.43.0"
3477
4186
  source = "registry+https://github.com/rust-lang/crates.io-index"
3478
- checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb"
4187
+ checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e"
3479
4188
  dependencies = [
3480
4189
  "backtrace",
3481
4190
  "bytes",
@@ -3489,33 +4198,52 @@ dependencies = [
3489
4198
  "windows-sys 0.52.0",
3490
4199
  ]
3491
4200
 
4201
+ [[package]]
4202
+ name = "tokio-io-timeout"
4203
+ version = "1.2.0"
4204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4205
+ checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
4206
+ dependencies = [
4207
+ "pin-project-lite",
4208
+ "tokio",
4209
+ ]
4210
+
3492
4211
  [[package]]
3493
4212
  name = "tokio-macros"
3494
- version = "2.4.0"
4213
+ version = "2.5.0"
3495
4214
  source = "registry+https://github.com/rust-lang/crates.io-index"
3496
- checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
4215
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3497
4216
  dependencies = [
3498
4217
  "proc-macro2",
3499
4218
  "quote",
3500
- "syn 2.0.85",
4219
+ "syn 2.0.98",
3501
4220
  ]
3502
4221
 
3503
4222
  [[package]]
3504
4223
  name = "tokio-rustls"
3505
- version = "0.26.0"
4224
+ version = "0.24.1"
3506
4225
  source = "registry+https://github.com/rust-lang/crates.io-index"
3507
- checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
4226
+ checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
3508
4227
  dependencies = [
3509
- "rustls",
3510
- "rustls-pki-types",
4228
+ "rustls 0.21.12",
4229
+ "tokio",
4230
+ ]
4231
+
4232
+ [[package]]
4233
+ name = "tokio-rustls"
4234
+ version = "0.26.1"
4235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4236
+ checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37"
4237
+ dependencies = [
4238
+ "rustls 0.23.23",
3511
4239
  "tokio",
3512
4240
  ]
3513
4241
 
3514
4242
  [[package]]
3515
4243
  name = "tokio-stream"
3516
- version = "0.1.16"
4244
+ version = "0.1.17"
3517
4245
  source = "registry+https://github.com/rust-lang/crates.io-index"
3518
- checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1"
4246
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
3519
4247
  dependencies = [
3520
4248
  "futures-core",
3521
4249
  "pin-project-lite",
@@ -3524,9 +4252,9 @@ dependencies = [
3524
4252
 
3525
4253
  [[package]]
3526
4254
  name = "tokio-util"
3527
- version = "0.7.12"
4255
+ version = "0.7.13"
3528
4256
  source = "registry+https://github.com/rust-lang/crates.io-index"
3529
- checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
4257
+ checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
3530
4258
  dependencies = [
3531
4259
  "bytes",
3532
4260
  "futures-core",
@@ -3544,6 +4272,65 @@ dependencies = [
3544
4272
  "serde",
3545
4273
  ]
3546
4274
 
4275
+ [[package]]
4276
+ name = "tower"
4277
+ version = "0.4.13"
4278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4279
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
4280
+ dependencies = [
4281
+ "futures-core",
4282
+ "futures-util",
4283
+ "pin-project",
4284
+ "pin-project-lite",
4285
+ "tokio",
4286
+ "tokio-util",
4287
+ "tower-layer",
4288
+ "tower-service",
4289
+ "tracing",
4290
+ ]
4291
+
4292
+ [[package]]
4293
+ name = "tower"
4294
+ version = "0.5.2"
4295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4296
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
4297
+ dependencies = [
4298
+ "futures-core",
4299
+ "futures-util",
4300
+ "pin-project-lite",
4301
+ "sync_wrapper",
4302
+ "tokio",
4303
+ "tower-layer",
4304
+ "tower-service",
4305
+ ]
4306
+
4307
+ [[package]]
4308
+ name = "tower-http"
4309
+ version = "0.4.4"
4310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4311
+ checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"
4312
+ dependencies = [
4313
+ "base64 0.21.7",
4314
+ "bitflags 2.8.0",
4315
+ "bytes",
4316
+ "futures-core",
4317
+ "futures-util",
4318
+ "http 0.2.12",
4319
+ "http-body 0.4.6",
4320
+ "http-range-header",
4321
+ "mime",
4322
+ "pin-project-lite",
4323
+ "tower-layer",
4324
+ "tower-service",
4325
+ "tracing",
4326
+ ]
4327
+
4328
+ [[package]]
4329
+ name = "tower-layer"
4330
+ version = "0.3.3"
4331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4332
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
4333
+
3547
4334
  [[package]]
3548
4335
  name = "tower-service"
3549
4336
  version = "0.3.3"
@@ -3552,9 +4339,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3552
4339
 
3553
4340
  [[package]]
3554
4341
  name = "tracing"
3555
- version = "0.1.40"
4342
+ version = "0.1.41"
3556
4343
  source = "registry+https://github.com/rust-lang/crates.io-index"
3557
- checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
4344
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3558
4345
  dependencies = [
3559
4346
  "log",
3560
4347
  "pin-project-lite",
@@ -3564,9 +4351,9 @@ dependencies = [
3564
4351
 
3565
4352
  [[package]]
3566
4353
  name = "tracing-actix-web"
3567
- version = "0.7.14"
4354
+ version = "0.7.16"
3568
4355
  source = "registry+https://github.com/rust-lang/crates.io-index"
3569
- checksum = "6b87073920bcce23e9f5cb0d2671e9f01d6803bb5229c159b2f5ce6806d73ffc"
4356
+ checksum = "332bbdf3bd208d1fe6446f8ffb4e8c2ae66e25da0fb38e0b69545e640ecee6a6"
3570
4357
  dependencies = [
3571
4358
  "actix-web",
3572
4359
  "mutually_exclusive_features",
@@ -3577,20 +4364,20 @@ dependencies = [
3577
4364
 
3578
4365
  [[package]]
3579
4366
  name = "tracing-attributes"
3580
- version = "0.1.27"
4367
+ version = "0.1.28"
3581
4368
  source = "registry+https://github.com/rust-lang/crates.io-index"
3582
- checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
4369
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3583
4370
  dependencies = [
3584
4371
  "proc-macro2",
3585
4372
  "quote",
3586
- "syn 2.0.85",
4373
+ "syn 2.0.98",
3587
4374
  ]
3588
4375
 
3589
4376
  [[package]]
3590
4377
  name = "tracing-bunyan-formatter"
3591
- version = "0.3.9"
4378
+ version = "0.3.10"
3592
4379
  source = "registry+https://github.com/rust-lang/crates.io-index"
3593
- checksum = "b5c266b9ac83dedf0e0385ad78514949e6d89491269e7065bee51d2bb8ec7373"
4380
+ checksum = "2d637245a0d8774bd48df6482e086c59a8b5348a910c3b0579354045a9d82411"
3594
4381
  dependencies = [
3595
4382
  "ahash 0.8.11",
3596
4383
  "gethostname",
@@ -3606,9 +4393,9 @@ dependencies = [
3606
4393
 
3607
4394
  [[package]]
3608
4395
  name = "tracing-core"
3609
- version = "0.1.32"
4396
+ version = "0.1.33"
3610
4397
  source = "registry+https://github.com/rust-lang/crates.io-index"
3611
- checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
4398
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3612
4399
  dependencies = [
3613
4400
  "once_cell",
3614
4401
  "valuable",
@@ -3616,9 +4403,9 @@ dependencies = [
3616
4403
 
3617
4404
  [[package]]
3618
4405
  name = "tracing-error"
3619
- version = "0.2.0"
4406
+ version = "0.2.1"
3620
4407
  source = "registry+https://github.com/rust-lang/crates.io-index"
3621
- checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e"
4408
+ checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db"
3622
4409
  dependencies = [
3623
4410
  "tracing",
3624
4411
  "tracing-subscriber",
@@ -3648,9 +4435,9 @@ dependencies = [
3648
4435
 
3649
4436
  [[package]]
3650
4437
  name = "tracing-subscriber"
3651
- version = "0.3.18"
4438
+ version = "0.3.19"
3652
4439
  source = "registry+https://github.com/rust-lang/crates.io-index"
3653
- checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
4440
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
3654
4441
  dependencies = [
3655
4442
  "matchers",
3656
4443
  "nu-ansi-term",
@@ -3672,9 +4459,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3672
4459
 
3673
4460
  [[package]]
3674
4461
  name = "typenum"
3675
- version = "1.17.0"
4462
+ version = "1.18.0"
3676
4463
  source = "registry+https://github.com/rust-lang/crates.io-index"
3677
- checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
4464
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
3678
4465
 
3679
4466
  [[package]]
3680
4467
  name = "ucd-trie"
@@ -3684,15 +4471,15 @@ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
3684
4471
 
3685
4472
  [[package]]
3686
4473
  name = "unicode-bidi"
3687
- version = "0.3.17"
4474
+ version = "0.3.18"
3688
4475
  source = "registry+https://github.com/rust-lang/crates.io-index"
3689
- checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
4476
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
3690
4477
 
3691
4478
  [[package]]
3692
4479
  name = "unicode-ident"
3693
- version = "1.0.13"
4480
+ version = "1.0.17"
3694
4481
  source = "registry+https://github.com/rust-lang/crates.io-index"
3695
- checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
4482
+ checksum = "00e2473a93778eb0bad35909dff6a10d28e63f792f16ed15e404fca9d5eeedbe"
3696
4483
 
3697
4484
  [[package]]
3698
4485
  name = "unicode-normalization"
@@ -3715,18 +4502,18 @@ version = "1.12.0"
3715
4502
  source = "registry+https://github.com/rust-lang/crates.io-index"
3716
4503
  checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3717
4504
 
3718
- [[package]]
3719
- name = "unicode_categories"
3720
- version = "0.1.1"
3721
- source = "registry+https://github.com/rust-lang/crates.io-index"
3722
- checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
3723
-
3724
4505
  [[package]]
3725
4506
  name = "unindent"
3726
4507
  version = "0.2.3"
3727
4508
  source = "registry+https://github.com/rust-lang/crates.io-index"
3728
4509
  checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
3729
4510
 
4511
+ [[package]]
4512
+ name = "unsafe-libyaml"
4513
+ version = "0.2.11"
4514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4515
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
4516
+
3730
4517
  [[package]]
3731
4518
  name = "untrusted"
3732
4519
  version = "0.9.0"
@@ -3735,13 +4522,14 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3735
4522
 
3736
4523
  [[package]]
3737
4524
  name = "url"
3738
- version = "2.5.2"
4525
+ version = "2.5.4"
3739
4526
  source = "registry+https://github.com/rust-lang/crates.io-index"
3740
- checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
4527
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3741
4528
  dependencies = [
3742
4529
  "form_urlencoded",
3743
4530
  "idna",
3744
4531
  "percent-encoding",
4532
+ "serde",
3745
4533
  ]
3746
4534
 
3747
4535
  [[package]]
@@ -3750,20 +4538,32 @@ version = "2.1.3"
3750
4538
  source = "registry+https://github.com/rust-lang/crates.io-index"
3751
4539
  checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
3752
4540
 
4541
+ [[package]]
4542
+ name = "utf16_iter"
4543
+ version = "1.0.5"
4544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4545
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
4546
+
4547
+ [[package]]
4548
+ name = "utf8_iter"
4549
+ version = "1.0.4"
4550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4551
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4552
+
3753
4553
  [[package]]
3754
4554
  name = "uuid"
3755
- version = "1.11.0"
4555
+ version = "1.15.0"
3756
4556
  source = "registry+https://github.com/rust-lang/crates.io-index"
3757
- checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
4557
+ checksum = "bd8dcafa1ca14750d8d7a05aa05988c17aab20886e1f3ae33a40223c58d92ef7"
3758
4558
  dependencies = [
3759
- "getrandom",
4559
+ "getrandom 0.3.1",
3760
4560
  ]
3761
4561
 
3762
4562
  [[package]]
3763
4563
  name = "valuable"
3764
- version = "0.1.0"
4564
+ version = "0.1.1"
3765
4565
  source = "registry+https://github.com/rust-lang/crates.io-index"
3766
- checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
4566
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3767
4567
 
3768
4568
  [[package]]
3769
4569
  name = "vcpkg"
@@ -3802,6 +4602,15 @@ version = "0.11.0+wasi-snapshot-preview1"
3802
4602
  source = "registry+https://github.com/rust-lang/crates.io-index"
3803
4603
  checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3804
4604
 
4605
+ [[package]]
4606
+ name = "wasi"
4607
+ version = "0.13.3+wasi-0.2.2"
4608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4609
+ checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
4610
+ dependencies = [
4611
+ "wit-bindgen-rt",
4612
+ ]
4613
+
3805
4614
  [[package]]
3806
4615
  name = "wasite"
3807
4616
  version = "0.1.0"
@@ -3810,47 +4619,48 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
3810
4619
 
3811
4620
  [[package]]
3812
4621
  name = "wasm-bindgen"
3813
- version = "0.2.95"
4622
+ version = "0.2.100"
3814
4623
  source = "registry+https://github.com/rust-lang/crates.io-index"
3815
- checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
4624
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3816
4625
  dependencies = [
3817
4626
  "cfg-if",
3818
4627
  "once_cell",
4628
+ "rustversion",
3819
4629
  "wasm-bindgen-macro",
3820
4630
  ]
3821
4631
 
3822
4632
  [[package]]
3823
4633
  name = "wasm-bindgen-backend"
3824
- version = "0.2.95"
4634
+ version = "0.2.100"
3825
4635
  source = "registry+https://github.com/rust-lang/crates.io-index"
3826
- checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
4636
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3827
4637
  dependencies = [
3828
4638
  "bumpalo",
3829
4639
  "log",
3830
- "once_cell",
3831
4640
  "proc-macro2",
3832
4641
  "quote",
3833
- "syn 2.0.85",
4642
+ "syn 2.0.98",
3834
4643
  "wasm-bindgen-shared",
3835
4644
  ]
3836
4645
 
3837
4646
  [[package]]
3838
4647
  name = "wasm-bindgen-futures"
3839
- version = "0.4.45"
4648
+ version = "0.4.50"
3840
4649
  source = "registry+https://github.com/rust-lang/crates.io-index"
3841
- checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
4650
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
3842
4651
  dependencies = [
3843
4652
  "cfg-if",
3844
4653
  "js-sys",
4654
+ "once_cell",
3845
4655
  "wasm-bindgen",
3846
4656
  "web-sys",
3847
4657
  ]
3848
4658
 
3849
4659
  [[package]]
3850
4660
  name = "wasm-bindgen-macro"
3851
- version = "0.2.95"
4661
+ version = "0.2.100"
3852
4662
  source = "registry+https://github.com/rust-lang/crates.io-index"
3853
- checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
4663
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3854
4664
  dependencies = [
3855
4665
  "quote",
3856
4666
  "wasm-bindgen-macro-support",
@@ -3858,28 +4668,41 @@ dependencies = [
3858
4668
 
3859
4669
  [[package]]
3860
4670
  name = "wasm-bindgen-macro-support"
3861
- version = "0.2.95"
4671
+ version = "0.2.100"
3862
4672
  source = "registry+https://github.com/rust-lang/crates.io-index"
3863
- checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
4673
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3864
4674
  dependencies = [
3865
4675
  "proc-macro2",
3866
4676
  "quote",
3867
- "syn 2.0.85",
4677
+ "syn 2.0.98",
3868
4678
  "wasm-bindgen-backend",
3869
4679
  "wasm-bindgen-shared",
3870
4680
  ]
3871
4681
 
3872
4682
  [[package]]
3873
4683
  name = "wasm-bindgen-shared"
3874
- version = "0.2.95"
4684
+ version = "0.2.100"
3875
4685
  source = "registry+https://github.com/rust-lang/crates.io-index"
3876
- checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
4686
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
4687
+ dependencies = [
4688
+ "unicode-ident",
4689
+ ]
3877
4690
 
3878
4691
  [[package]]
3879
4692
  name = "web-sys"
3880
- version = "0.3.72"
4693
+ version = "0.3.77"
4694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4695
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
4696
+ dependencies = [
4697
+ "js-sys",
4698
+ "wasm-bindgen",
4699
+ ]
4700
+
4701
+ [[package]]
4702
+ name = "web-time"
4703
+ version = "1.1.0"
3881
4704
  source = "registry+https://github.com/rust-lang/crates.io-index"
3882
- checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
4705
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3883
4706
  dependencies = [
3884
4707
  "js-sys",
3885
4708
  "wasm-bindgen",
@@ -3887,13 +4710,25 @@ dependencies = [
3887
4710
 
3888
4711
  [[package]]
3889
4712
  name = "webpki-roots"
3890
- version = "0.26.6"
4713
+ version = "0.26.8"
3891
4714
  source = "registry+https://github.com/rust-lang/crates.io-index"
3892
- checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958"
4715
+ checksum = "2210b291f7ea53617fbafcc4939f10914214ec15aace5ba62293a668f322c5c9"
3893
4716
  dependencies = [
3894
4717
  "rustls-pki-types",
3895
4718
  ]
3896
4719
 
4720
+ [[package]]
4721
+ name = "which"
4722
+ version = "4.4.2"
4723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4724
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
4725
+ dependencies = [
4726
+ "either",
4727
+ "home",
4728
+ "once_cell",
4729
+ "rustix",
4730
+ ]
4731
+
3897
4732
  [[package]]
3898
4733
  name = "whoami"
3899
4734
  version = "1.5.2"
@@ -3944,6 +4779,12 @@ dependencies = [
3944
4779
  "windows-targets 0.52.6",
3945
4780
  ]
3946
4781
 
4782
+ [[package]]
4783
+ name = "windows-link"
4784
+ version = "0.1.0"
4785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4786
+ checksum = "6dccfd733ce2b1753b03b6d3c65edf020262ea35e20ccdf3e288043e6dd620e3"
4787
+
3947
4788
  [[package]]
3948
4789
  name = "windows-registry"
3949
4790
  version = "0.2.0"
@@ -4133,9 +4974,9 @@ dependencies = [
4133
4974
  "base64 0.22.1",
4134
4975
  "deadpool",
4135
4976
  "futures",
4136
- "http 1.1.0",
4977
+ "http 1.2.0",
4137
4978
  "http-body-util",
4138
- "hyper",
4979
+ "hyper 1.6.0",
4139
4980
  "hyper-util",
4140
4981
  "log",
4141
4982
  "once_cell",
@@ -4146,6 +4987,27 @@ dependencies = [
4146
4987
  "url",
4147
4988
  ]
4148
4989
 
4990
+ [[package]]
4991
+ name = "wit-bindgen-rt"
4992
+ version = "0.33.0"
4993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4994
+ checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
4995
+ dependencies = [
4996
+ "bitflags 2.8.0",
4997
+ ]
4998
+
4999
+ [[package]]
5000
+ name = "write16"
5001
+ version = "1.0.0"
5002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5003
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
5004
+
5005
+ [[package]]
5006
+ name = "writeable"
5007
+ version = "0.5.5"
5008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5009
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
5010
+
4149
5011
  [[package]]
4150
5012
  name = "yaml-rust"
4151
5013
  version = "0.4.5"
@@ -4155,6 +5017,30 @@ dependencies = [
4155
5017
  "linked-hash-map",
4156
5018
  ]
4157
5019
 
5020
+ [[package]]
5021
+ name = "yoke"
5022
+ version = "0.7.5"
5023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5024
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
5025
+ dependencies = [
5026
+ "serde",
5027
+ "stable_deref_trait",
5028
+ "yoke-derive",
5029
+ "zerofrom",
5030
+ ]
5031
+
5032
+ [[package]]
5033
+ name = "yoke-derive"
5034
+ version = "0.7.5"
5035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5036
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
5037
+ dependencies = [
5038
+ "proc-macro2",
5039
+ "quote",
5040
+ "syn 2.0.98",
5041
+ "synstructure",
5042
+ ]
5043
+
4158
5044
  [[package]]
4159
5045
  name = "zerocopy"
4160
5046
  version = "0.7.35"
@@ -4173,7 +5059,28 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4173
5059
  dependencies = [
4174
5060
  "proc-macro2",
4175
5061
  "quote",
4176
- "syn 2.0.85",
5062
+ "syn 2.0.98",
5063
+ ]
5064
+
5065
+ [[package]]
5066
+ name = "zerofrom"
5067
+ version = "0.1.5"
5068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5069
+ checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
5070
+ dependencies = [
5071
+ "zerofrom-derive",
5072
+ ]
5073
+
5074
+ [[package]]
5075
+ name = "zerofrom-derive"
5076
+ version = "0.1.5"
5077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5078
+ checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
5079
+ dependencies = [
5080
+ "proc-macro2",
5081
+ "quote",
5082
+ "syn 2.0.98",
5083
+ "synstructure",
4177
5084
  ]
4178
5085
 
4179
5086
  [[package]]
@@ -4182,29 +5089,51 @@ version = "1.8.1"
4182
5089
  source = "registry+https://github.com/rust-lang/crates.io-index"
4183
5090
  checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
4184
5091
 
5092
+ [[package]]
5093
+ name = "zerovec"
5094
+ version = "0.10.4"
5095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5096
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
5097
+ dependencies = [
5098
+ "yoke",
5099
+ "zerofrom",
5100
+ "zerovec-derive",
5101
+ ]
5102
+
5103
+ [[package]]
5104
+ name = "zerovec-derive"
5105
+ version = "0.10.3"
5106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5107
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
5108
+ dependencies = [
5109
+ "proc-macro2",
5110
+ "quote",
5111
+ "syn 2.0.98",
5112
+ ]
5113
+
4185
5114
  [[package]]
4186
5115
  name = "zstd"
4187
- version = "0.13.2"
5116
+ version = "0.13.3"
4188
5117
  source = "registry+https://github.com/rust-lang/crates.io-index"
4189
- checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
5118
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4190
5119
  dependencies = [
4191
5120
  "zstd-safe",
4192
5121
  ]
4193
5122
 
4194
5123
  [[package]]
4195
5124
  name = "zstd-safe"
4196
- version = "7.2.1"
5125
+ version = "7.2.3"
4197
5126
  source = "registry+https://github.com/rust-lang/crates.io-index"
4198
- checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
5127
+ checksum = "f3051792fbdc2e1e143244dc28c60f73d8470e93f3f9cbd0ead44da5ed802722"
4199
5128
  dependencies = [
4200
5129
  "zstd-sys",
4201
5130
  ]
4202
5131
 
4203
5132
  [[package]]
4204
5133
  name = "zstd-sys"
4205
- version = "2.0.13+zstd.1.5.6"
5134
+ version = "2.0.14+zstd.1.5.7"
4206
5135
  source = "registry+https://github.com/rust-lang/crates.io-index"
4207
- checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
5136
+ checksum = "8fb060d4926e4ac3a3ad15d864e99ceb5f343c6b34f5bd6d81ae6ed417311be5"
4208
5137
  dependencies = [
4209
5138
  "cc",
4210
5139
  "pkg-config",