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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (138) hide show
  1. {python_auditor-0.6.3 → python_auditor-0.7.0}/Cargo.lock +1310 -417
  2. {python_auditor-0.6.3 → python_auditor-0.7.0}/Cargo.toml +6 -6
  3. {python_auditor-0.6.3 → python_auditor-0.7.0}/PKG-INFO +2 -2
  4. {python_auditor-0.6.3 → python_auditor-0.7.0}/docs/index.rst +1 -1
  5. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/Cargo.toml +11 -9
  6. python_auditor-0.7.0/local_dependencies/auditor/certs/rootCA-key.pem +40 -0
  7. python_auditor-0.7.0/local_dependencies/auditor/certs/rootCA.pem +27 -0
  8. python_auditor-0.7.0/local_dependencies/auditor/certs/server-cert.pem +25 -0
  9. python_auditor-0.7.0/local_dependencies/auditor/certs/server-key.pem +28 -0
  10. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/configuration/base.yaml +5 -0
  11. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/configuration/priority-plugin/base.yml +3 -0
  12. python_auditor-0.7.0/local_dependencies/auditor/configuration/tls_config.yaml +21 -0
  13. python_auditor-0.7.0/local_dependencies/auditor/scripts/revert_encoding/.env +6 -0
  14. python_auditor-0.7.0/local_dependencies/auditor/scripts/revert_encoding/requirements.txt +2 -0
  15. python_auditor-0.7.0/local_dependencies/auditor/scripts/revert_encoding/revert_encodings.py +83 -0
  16. python_auditor-0.7.0/local_dependencies/auditor/scripts/revert_encoding/test_script.py +102 -0
  17. python_auditor-0.7.0/local_dependencies/auditor/scripts/test_valid_names/test_slurm_decoding.py +69 -0
  18. python_auditor-0.7.0/local_dependencies/auditor/scripts/test_valid_names/test_valid_names.py +69 -0
  19. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/configuration.rs +49 -0
  20. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/constants.rs +0 -1
  21. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/record.rs +0 -37
  22. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/validname.rs +2 -13
  23. python_auditor-0.7.0/local_dependencies/auditor/src/main.rs +126 -0
  24. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/startup.rs +20 -5
  25. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/add.rs +0 -67
  26. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/helpers.rs +1 -1
  27. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/Cargo.toml +6 -5
  28. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/src/lib.rs +110 -7
  29. {python_auditor-0.6.3 → python_auditor-0.7.0}/pyproject.toml +1 -2
  30. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_advanced_query.py +1 -1
  31. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_advanced_query_blocking.py +1 -1
  32. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_advanced_query_queued.py +1 -1
  33. python_auditor-0.7.0/scripts/test_tls.py +117 -0
  34. {python_auditor-0.6.3 → python_auditor-0.7.0}/src/blocking_client.rs +8 -2
  35. {python_auditor-0.6.3 → python_auditor-0.7.0}/src/builder.rs +24 -2
  36. {python_auditor-0.6.3 → python_auditor-0.7.0}/src/client.rs +25 -25
  37. {python_auditor-0.6.3 → python_auditor-0.7.0}/src/domain/record.rs +2 -2
  38. {python_auditor-0.6.3 → python_auditor-0.7.0}/src/lib.rs +1 -1
  39. {python_auditor-0.6.3 → python_auditor-0.7.0}/src/queued_client.rs +26 -26
  40. python_auditor-0.6.3/local_dependencies/auditor/src/main.rs +0 -48
  41. {python_auditor-0.6.3 → python_auditor-0.7.0}/.cargo/config.toml +0 -0
  42. {python_auditor-0.6.3 → python_auditor-0.7.0}/.readthedocs.yaml +0 -0
  43. {python_auditor-0.6.3 → python_auditor-0.7.0}/README.md +0 -0
  44. {python_auditor-0.6.3 → python_auditor-0.7.0}/docs/Makefile +0 -0
  45. {python_auditor-0.6.3 → python_auditor-0.7.0}/docs/api.rst +0 -0
  46. {python_auditor-0.6.3 → python_auditor-0.7.0}/docs/changelog.rst +0 -0
  47. {python_auditor-0.6.3 → python_auditor-0.7.0}/docs/conf.py +0 -0
  48. {python_auditor-0.6.3 → python_auditor-0.7.0}/docs/examples.rst +0 -0
  49. {python_auditor-0.6.3 → python_auditor-0.7.0}/docs/make.bat +0 -0
  50. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/.env +0 -0
  51. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-0723e1854dee7d889745714fe094a64edfcf3f389eec3e77fefca2d753f1eceb.json +0 -0
  52. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-26a72be3c4ba0fddc30f53a71e0317e21982fde8bd24d8b5714439c1af835080.json +0 -0
  53. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-56c4218a1b59d8f9dc0af7191e516cb8f505a7d953ef5b2706e2427a136a918b.json +0 -0
  54. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-90e6c5e852ed16ef84a113c260d99efb6e193fa46b8115df94e750440e2d5517.json +0 -0
  55. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-a5c2d5afb25cf16a58a73c11cdde1bf5d2336cf42c6e84bf24ba27313d827a1f.json +0 -0
  56. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-a621b3eb5f42f24a04d216b9ce3c490182712e1276512cdfe74dcbb9e3e9e54e.json +0 -0
  57. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-aa313afec8c23e75ee45750e2ce8e520b96a98670d3c46572a6f942f839b99c0.json +0 -0
  58. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-cb3125aad5e124a24a976c2cb20a6e8859709f978c9f651740c439abe3b41adb.json +0 -0
  59. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-d8c6add014ac34e66ffb0178d497b9e822c569f86a89525f6ed5cc306713995a.json +0 -0
  60. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-dc5295938290703233cfe51c2215e6a5f6a6afe26b6ba3635210f5c157032f78.json +0 -0
  61. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-e4129d556ba749cb664ef6e876264efd36d82d813c2c9670dde24e4cfd042f94.json +0 -0
  62. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/.sqlx/query-e88b5acb79055b5c307e15481bc270e47d65b525ef6d98376455a267972be532.json +0 -0
  63. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/build.rs +0 -0
  64. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/configuration/local.yaml +0 -0
  65. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/configuration/production.yaml +0 -0
  66. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
  67. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +0 -0
  68. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +0 -0
  69. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_single_entry.py +0 -0
  70. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/component.rs +0 -0
  71. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/meta.rs +0 -0
  72. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/mod.rs +0 -0
  73. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/score.rs +0 -0
  74. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/validamount.rs +0 -0
  75. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/domain/validvalue.rs +0 -0
  76. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/error.rs +0 -0
  77. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/lib.rs +0 -0
  78. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/macros.rs +0 -0
  79. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/metrics/database.rs +0 -0
  80. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/metrics/mod.rs +0 -0
  81. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/routes/add.rs +0 -0
  82. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/routes/advanced_record_filters.rs +0 -0
  83. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/routes/get.rs +0 -0
  84. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/routes/health_check.rs +0 -0
  85. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/routes/mod.rs +0 -0
  86. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/routes/record_handlers.rs +0 -0
  87. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/routes/update.rs +0 -0
  88. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/src/telemetry.rs +0 -0
  89. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/advanced_queries.rs +0 -0
  90. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/get.rs +0 -0
  91. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/get_one_record.rs +0 -0
  92. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/get_since.rs +0 -0
  93. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
  94. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/main.rs +0 -0
  95. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor/tests/api/update.rs +0 -0
  96. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/.env +0 -0
  97. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-256977e5f7886c61625e92a77efb52b9ca4321cefcac0e544d64334cdbca93ba.json +0 -0
  98. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-440620430cdcfb05e9ded5312614fae4df18e20a2a0730ec9e914ce34338df2d.json +0 -0
  99. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-5b1885d85159029e95b3f6d8dcee5eac70e683956480d225143c1de9169e233b.json +0 -0
  100. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-6be1ec652f57f24ba44ee6efa08a2c5985cf4375e563a1bff02dbc6fc4a1ac6d.json +0 -0
  101. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-7022afed3a87000ca2c5a5a829f8bdfddb266e0a577c428c830b02e3736d264e.json +0 -0
  102. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-7ab91dc1d18e4de022a7bbacc463476f8be8a8992b49fe363f70a2d58460e877.json +0 -0
  103. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-8de0a0fada9ffea04721b67f8df443a8c496bfccef4be482bbdaa36ef7d508a5.json +0 -0
  104. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-c8cba44011d83cdabb543adfae1637c5045144ecc61a6597f538d95a8cc756d4.json +0 -0
  105. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/.sqlx/query-f36fa62228e6ca304003dbd75448e95558f544fdbd602173af16c4bada2a3daf.json +0 -0
  106. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/benches/README.md +0 -0
  107. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/benches/benchmark_with_http_request.rs +0 -0
  108. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/benches/configuration/bench.yaml +0 -0
  109. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/benches/configuration.rs +0 -0
  110. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/configuration/base.yaml +0 -0
  111. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/configuration/local.yaml +0 -0
  112. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/migrations/20231122115509_create_record_table.sql +0 -0
  113. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/src/configuration.rs +0 -0
  114. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/src/constants.rs +0 -0
  115. {python_auditor-0.6.3 → python_auditor-0.7.0}/local_dependencies/auditor-client/src/database.rs +0 -0
  116. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_add_update.py +0 -0
  117. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_add_update_blocking.py +0 -0
  118. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_add_update_queued.py +0 -0
  119. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_bulk_insert.py +0 -0
  120. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_bulk_insert_blocking.py +0 -0
  121. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_bulk_insert_queued.py +0 -0
  122. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_components.py +0 -0
  123. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_components_blocking.py +0 -0
  124. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_components_queued.py +0 -0
  125. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_eq.py +0 -0
  126. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_get_since.py +0 -0
  127. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_get_since_blocking.py +0 -0
  128. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_get_since_queued.py +0 -0
  129. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_get_single_record.py +0 -0
  130. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_get_single_record_blocking.py +0 -0
  131. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_get_single_record_queued.py +0 -0
  132. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_meta.py +0 -0
  133. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_meta_blocking.py +0 -0
  134. {python_auditor-0.6.3 → python_auditor-0.7.0}/scripts/test_meta_queued.py +0 -0
  135. {python_auditor-0.6.3 → python_auditor-0.7.0}/src/domain/component.rs +0 -0
  136. {python_auditor-0.6.3 → python_auditor-0.7.0}/src/domain/meta.rs +0 -0
  137. {python_auditor-0.6.3 → python_auditor-0.7.0}/src/domain/mod.rs +0 -0
  138. {python_auditor-0.6.3 → python_auditor-0.7.0}/src/domain/score.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.96",
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.96",
186
207
  ]
187
208
 
188
209
  [[package]]
@@ -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.95"
309
330
  source = "registry+https://github.com/rust-lang/crates.io-index"
310
- checksum = "c042108f3ed77fd83760a5fd79b53be043192bb3b9dba91d8c574c0ada7850c8"
331
+ checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
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.85"
325
346
  source = "registry+https://github.com/rust-lang/crates.io-index"
326
- checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
347
+ checksum = "3f934833b4b7233644e5848f235df3f57ed8c80f1528a26c3dfa13d2147fa056"
327
348
  dependencies = [
328
349
  "proc-macro2",
329
350
  "quote",
330
- "syn 2.0.85",
351
+ "syn 2.0.96",
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.0"
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.21",
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.0"
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.21",
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.0"
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.0"
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.0"
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.0"
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.2"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "4c2b7ddaa2c56a367ad27a094ad8ef4faacf8a617c2575acb2ba88949df999ca"
554
+ dependencies = [
555
+ "aws-lc-sys",
556
+ "paste",
557
+ "zeroize",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "aws-lc-sys"
562
+ version = "0.25.0"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "71b2ddd3ada61a305e1d8bb6c005d1eaa7d14d903681edfc400406d523a9b491"
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"
@@ -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.96",
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",
@@ -599,15 +701,15 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
599
701
 
600
702
  [[package]]
601
703
  name = "bytes"
602
- version = "1.8.0"
704
+ version = "1.9.0"
603
705
  source = "registry+https://github.com/rust-lang/crates.io-index"
604
- checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
706
+ checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
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.10"
624
726
  source = "registry+https://github.com/rust-lang/crates.io-index"
625
- checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f"
727
+ checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
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,9 +754,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
643
754
 
644
755
  [[package]]
645
756
  name = "chrono"
646
- version = "0.4.38"
757
+ version = "0.4.39"
647
758
  source = "registry+https://github.com/rust-lang/crates.io-index"
648
- checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
759
+ checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
649
760
  dependencies = [
650
761
  "android-tzdata",
651
762
  "iana-time-zone",
@@ -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.27"
696
818
  source = "registry+https://github.com/rust-lang/crates.io-index"
697
- checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8"
819
+ checksum = "769b0145982b4b48713e01ec42d61614425f27b7058bda7180a3a41f30104796"
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.27"
705
827
  source = "registry+https://github.com/rust-lang/crates.io-index"
706
- checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54"
828
+ checksum = "1b26884eb4b57140e4d2d93652abfa49498b938b3c9179f9fc487b0acc3edad7"
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.52"
715
843
  source = "registry+https://github.com/rust-lang/crates.io-index"
716
- checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
844
+ checksum = "c682c223677e0e5b6b7f63a64b9351844c3f1b1678a68b7ee617e30fb082620e"
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.96",
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.96",
966
1107
  ]
967
1108
 
968
1109
  [[package]]
@@ -1014,7 +1155,7 @@ dependencies = [
1014
1155
  "proc-macro2",
1015
1156
  "quote",
1016
1157
  "rustc_version",
1017
- "syn 2.0.85",
1158
+ "syn 2.0.96",
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.96",
1188
+ ]
1189
+
1038
1190
  [[package]]
1039
1191
  name = "dlv-list"
1040
1192
  version = "0.3.0"
@@ -1047,6 +1199,24 @@ 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.96",
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
1222
  version = "1.13.0"
@@ -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.96",
1248
+ ]
1249
+
1068
1250
  [[package]]
1069
1251
  name = "env_logger"
1070
1252
  version = "0.8.4"
@@ -1083,12 +1265,12 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
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.0.35"
1146
1329
  source = "registry+https://github.com/rust-lang/crates.io-index"
1147
- checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
1330
+ checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
1148
1331
  dependencies = [
1149
1332
  "crc32fast",
1150
- "miniz_oxide 0.8.0",
1333
+ "miniz_oxide 0.8.3",
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.96",
1247
1442
  ]
1248
1443
 
1249
1444
  [[package]]
@@ -1303,8 +1498,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
1498
  checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
1304
1499
  dependencies = [
1305
1500
  "cfg-if",
1501
+ "js-sys",
1306
1502
  "libc",
1307
1503
  "wasi",
1504
+ "wasm-bindgen",
1308
1505
  ]
1309
1506
 
1310
1507
  [[package]]
@@ -1315,9 +1512,9 @@ checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
1315
1512
 
1316
1513
  [[package]]
1317
1514
  name = "glob"
1318
- version = "0.3.1"
1515
+ version = "0.3.2"
1319
1516
  source = "registry+https://github.com/rust-lang/crates.io-index"
1320
- checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
1517
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1321
1518
 
1322
1519
  [[package]]
1323
1520
  name = "h2"
@@ -1331,7 +1528,7 @@ dependencies = [
1331
1528
  "futures-sink",
1332
1529
  "futures-util",
1333
1530
  "http 0.2.12",
1334
- "indexmap 2.6.0",
1531
+ "indexmap 2.7.1",
1335
1532
  "slab",
1336
1533
  "tokio",
1337
1534
  "tokio-util",
@@ -1340,17 +1537,17 @@ dependencies = [
1340
1537
 
1341
1538
  [[package]]
1342
1539
  name = "h2"
1343
- version = "0.4.6"
1540
+ version = "0.4.7"
1344
1541
  source = "registry+https://github.com/rust-lang/crates.io-index"
1345
- checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205"
1542
+ checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e"
1346
1543
  dependencies = [
1347
1544
  "atomic-waker",
1348
1545
  "bytes",
1349
1546
  "fnv",
1350
1547
  "futures-core",
1351
1548
  "futures-sink",
1352
- "http 1.1.0",
1353
- "indexmap 2.6.0",
1549
+ "http 1.2.0",
1550
+ "indexmap 2.7.1",
1354
1551
  "slab",
1355
1552
  "tokio",
1356
1553
  "tokio-util",
@@ -1378,35 +1575,24 @@ dependencies = [
1378
1575
 
1379
1576
  [[package]]
1380
1577
  name = "hashbrown"
1381
- version = "0.14.5"
1578
+ version = "0.15.2"
1382
1579
  source = "registry+https://github.com/rust-lang/crates.io-index"
1383
- checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1580
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1384
1581
  dependencies = [
1385
- "ahash 0.8.11",
1386
1582
  "allocator-api2",
1583
+ "equivalent",
1584
+ "foldhash",
1387
1585
  ]
1388
1586
 
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
1587
  [[package]]
1396
1588
  name = "hashlink"
1397
- version = "0.9.1"
1589
+ version = "0.10.0"
1398
1590
  source = "registry+https://github.com/rust-lang/crates.io-index"
1399
- checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
1591
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
1400
1592
  dependencies = [
1401
- "hashbrown 0.14.5",
1593
+ "hashbrown 0.15.2",
1402
1594
  ]
1403
1595
 
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
1596
  [[package]]
1411
1597
  name = "heck"
1412
1598
  version = "0.5.0"
@@ -1451,11 +1637,11 @@ dependencies = [
1451
1637
 
1452
1638
  [[package]]
1453
1639
  name = "home"
1454
- version = "0.5.9"
1640
+ version = "0.5.11"
1455
1641
  source = "registry+https://github.com/rust-lang/crates.io-index"
1456
- checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
1642
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
1457
1643
  dependencies = [
1458
- "windows-sys 0.52.0",
1644
+ "windows-sys 0.59.0",
1459
1645
  ]
1460
1646
 
1461
1647
  [[package]]
@@ -1471,15 +1657,26 @@ dependencies = [
1471
1657
 
1472
1658
  [[package]]
1473
1659
  name = "http"
1474
- version = "1.1.0"
1660
+ version = "1.2.0"
1475
1661
  source = "registry+https://github.com/rust-lang/crates.io-index"
1476
- checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
1662
+ checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
1477
1663
  dependencies = [
1478
1664
  "bytes",
1479
1665
  "fnv",
1480
1666
  "itoa",
1481
1667
  ]
1482
1668
 
1669
+ [[package]]
1670
+ name = "http-body"
1671
+ version = "0.4.6"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1674
+ dependencies = [
1675
+ "bytes",
1676
+ "http 0.2.12",
1677
+ "pin-project-lite",
1678
+ ]
1679
+
1483
1680
  [[package]]
1484
1681
  name = "http-body"
1485
1682
  version = "1.0.1"
@@ -1487,7 +1684,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
1684
  checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1488
1685
  dependencies = [
1489
1686
  "bytes",
1490
- "http 1.1.0",
1687
+ "http 1.2.0",
1491
1688
  ]
1492
1689
 
1493
1690
  [[package]]
@@ -1498,11 +1695,17 @@ checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
1498
1695
  dependencies = [
1499
1696
  "bytes",
1500
1697
  "futures-util",
1501
- "http 1.1.0",
1502
- "http-body",
1698
+ "http 1.2.0",
1699
+ "http-body 1.0.1",
1503
1700
  "pin-project-lite",
1504
1701
  ]
1505
1702
 
1703
+ [[package]]
1704
+ name = "http-range-header"
1705
+ version = "0.3.1"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
1708
+
1506
1709
  [[package]]
1507
1710
  name = "httparse"
1508
1711
  version = "1.9.5"
@@ -1517,16 +1720,39 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1517
1720
 
1518
1721
  [[package]]
1519
1722
  name = "hyper"
1520
- version = "1.5.0"
1723
+ version = "0.14.32"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
1726
+ dependencies = [
1727
+ "bytes",
1728
+ "futures-channel",
1729
+ "futures-core",
1730
+ "futures-util",
1731
+ "http 0.2.12",
1732
+ "http-body 0.4.6",
1733
+ "httparse",
1734
+ "httpdate",
1735
+ "itoa",
1736
+ "pin-project-lite",
1737
+ "socket2",
1738
+ "tokio",
1739
+ "tower-service",
1740
+ "tracing",
1741
+ "want",
1742
+ ]
1743
+
1744
+ [[package]]
1745
+ name = "hyper"
1746
+ version = "1.5.2"
1521
1747
  source = "registry+https://github.com/rust-lang/crates.io-index"
1522
- checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a"
1748
+ checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0"
1523
1749
  dependencies = [
1524
1750
  "bytes",
1525
1751
  "futures-channel",
1526
1752
  "futures-util",
1527
- "h2 0.4.6",
1528
- "http 1.1.0",
1529
- "http-body",
1753
+ "h2 0.4.7",
1754
+ "http 1.2.0",
1755
+ "http-body 1.0.1",
1530
1756
  "httparse",
1531
1757
  "httpdate",
1532
1758
  "itoa",
@@ -1538,22 +1764,50 @@ dependencies = [
1538
1764
 
1539
1765
  [[package]]
1540
1766
  name = "hyper-rustls"
1541
- version = "0.27.3"
1767
+ version = "0.24.2"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
1770
+ dependencies = [
1771
+ "futures-util",
1772
+ "http 0.2.12",
1773
+ "hyper 0.14.32",
1774
+ "log",
1775
+ "rustls 0.21.12",
1776
+ "rustls-native-certs",
1777
+ "tokio",
1778
+ "tokio-rustls 0.24.1",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "hyper-rustls"
1783
+ version = "0.27.5"
1542
1784
  source = "registry+https://github.com/rust-lang/crates.io-index"
1543
- checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333"
1785
+ checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1544
1786
  dependencies = [
1545
1787
  "futures-util",
1546
- "http 1.1.0",
1547
- "hyper",
1788
+ "http 1.2.0",
1789
+ "hyper 1.5.2",
1548
1790
  "hyper-util",
1549
- "rustls",
1791
+ "rustls 0.23.21",
1550
1792
  "rustls-pki-types",
1551
1793
  "tokio",
1552
- "tokio-rustls",
1794
+ "tokio-rustls 0.26.1",
1553
1795
  "tower-service",
1554
1796
  "webpki-roots",
1555
1797
  ]
1556
1798
 
1799
+ [[package]]
1800
+ name = "hyper-timeout"
1801
+ version = "0.4.1"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
1804
+ dependencies = [
1805
+ "hyper 0.14.32",
1806
+ "pin-project-lite",
1807
+ "tokio",
1808
+ "tokio-io-timeout",
1809
+ ]
1810
+
1557
1811
  [[package]]
1558
1812
  name = "hyper-util"
1559
1813
  version = "0.1.10"
@@ -1563,9 +1817,9 @@ dependencies = [
1563
1817
  "bytes",
1564
1818
  "futures-channel",
1565
1819
  "futures-util",
1566
- "http 1.1.0",
1567
- "http-body",
1568
- "hyper",
1820
+ "http 1.2.0",
1821
+ "http-body 1.0.1",
1822
+ "hyper 1.5.2",
1569
1823
  "pin-project-lite",
1570
1824
  "socket2",
1571
1825
  "tokio",
@@ -1597,52 +1851,181 @@ dependencies = [
1597
1851
  ]
1598
1852
 
1599
1853
  [[package]]
1600
- name = "ident_case"
1601
- version = "1.0.1"
1854
+ name = "icu_collections"
1855
+ version = "1.5.0"
1602
1856
  source = "registry+https://github.com/rust-lang/crates.io-index"
1603
- checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1857
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1858
+ dependencies = [
1859
+ "displaydoc",
1860
+ "yoke",
1861
+ "zerofrom",
1862
+ "zerovec",
1863
+ ]
1604
1864
 
1605
1865
  [[package]]
1606
- name = "idna"
1607
- version = "0.5.0"
1866
+ name = "icu_locid"
1867
+ version = "1.5.0"
1608
1868
  source = "registry+https://github.com/rust-lang/crates.io-index"
1609
- checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
1869
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1610
1870
  dependencies = [
1611
- "unicode-bidi",
1612
- "unicode-normalization",
1871
+ "displaydoc",
1872
+ "litemap",
1873
+ "tinystr",
1874
+ "writeable",
1875
+ "zerovec",
1613
1876
  ]
1614
1877
 
1615
1878
  [[package]]
1616
- name = "impl-more"
1617
- version = "0.1.8"
1879
+ name = "icu_locid_transform"
1880
+ version = "1.5.0"
1618
1881
  source = "registry+https://github.com/rust-lang/crates.io-index"
1619
- checksum = "aae21c3177a27788957044151cc2800043d127acaa460a47ebb9b84dfa2c6aa0"
1882
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1883
+ dependencies = [
1884
+ "displaydoc",
1885
+ "icu_locid",
1886
+ "icu_locid_transform_data",
1887
+ "icu_provider",
1888
+ "tinystr",
1889
+ "zerovec",
1890
+ ]
1620
1891
 
1621
1892
  [[package]]
1622
- name = "indenter"
1623
- version = "0.3.3"
1893
+ name = "icu_locid_transform_data"
1894
+ version = "1.5.0"
1624
1895
  source = "registry+https://github.com/rust-lang/crates.io-index"
1625
- checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
1896
+ checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1626
1897
 
1627
1898
  [[package]]
1628
- name = "indexmap"
1629
- version = "1.9.3"
1899
+ name = "icu_normalizer"
1900
+ version = "1.5.0"
1630
1901
  source = "registry+https://github.com/rust-lang/crates.io-index"
1631
- checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1902
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1632
1903
  dependencies = [
1633
- "autocfg",
1634
- "hashbrown 0.12.3",
1635
- "serde",
1904
+ "displaydoc",
1905
+ "icu_collections",
1906
+ "icu_normalizer_data",
1907
+ "icu_properties",
1908
+ "icu_provider",
1909
+ "smallvec",
1910
+ "utf16_iter",
1911
+ "utf8_iter",
1912
+ "write16",
1913
+ "zerovec",
1636
1914
  ]
1637
1915
 
1638
1916
  [[package]]
1639
- name = "indexmap"
1640
- version = "2.6.0"
1917
+ name = "icu_normalizer_data"
1918
+ version = "1.5.0"
1641
1919
  source = "registry+https://github.com/rust-lang/crates.io-index"
1642
- checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
1643
- dependencies = [
1644
- "equivalent",
1645
- "hashbrown 0.15.0",
1920
+ checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1921
+
1922
+ [[package]]
1923
+ name = "icu_properties"
1924
+ version = "1.5.1"
1925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1926
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1927
+ dependencies = [
1928
+ "displaydoc",
1929
+ "icu_collections",
1930
+ "icu_locid_transform",
1931
+ "icu_properties_data",
1932
+ "icu_provider",
1933
+ "tinystr",
1934
+ "zerovec",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "icu_properties_data"
1939
+ version = "1.5.0"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1942
+
1943
+ [[package]]
1944
+ name = "icu_provider"
1945
+ version = "1.5.0"
1946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1947
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1948
+ dependencies = [
1949
+ "displaydoc",
1950
+ "icu_locid",
1951
+ "icu_provider_macros",
1952
+ "stable_deref_trait",
1953
+ "tinystr",
1954
+ "writeable",
1955
+ "yoke",
1956
+ "zerofrom",
1957
+ "zerovec",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "icu_provider_macros"
1962
+ version = "1.5.0"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1965
+ dependencies = [
1966
+ "proc-macro2",
1967
+ "quote",
1968
+ "syn 2.0.96",
1969
+ ]
1970
+
1971
+ [[package]]
1972
+ name = "ident_case"
1973
+ version = "1.0.1"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1976
+
1977
+ [[package]]
1978
+ name = "idna"
1979
+ version = "1.0.3"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1982
+ dependencies = [
1983
+ "idna_adapter",
1984
+ "smallvec",
1985
+ "utf8_iter",
1986
+ ]
1987
+
1988
+ [[package]]
1989
+ name = "idna_adapter"
1990
+ version = "1.2.0"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1993
+ dependencies = [
1994
+ "icu_normalizer",
1995
+ "icu_properties",
1996
+ ]
1997
+
1998
+ [[package]]
1999
+ name = "impl-more"
2000
+ version = "0.1.9"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
2003
+
2004
+ [[package]]
2005
+ name = "indenter"
2006
+ version = "0.3.3"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
2009
+
2010
+ [[package]]
2011
+ name = "indexmap"
2012
+ version = "1.9.3"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2015
+ dependencies = [
2016
+ "autocfg",
2017
+ "hashbrown 0.12.3",
2018
+ "serde",
2019
+ ]
2020
+
2021
+ [[package]]
2022
+ name = "indexmap"
2023
+ version = "2.7.1"
2024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2025
+ checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
2026
+ dependencies = [
2027
+ "equivalent",
2028
+ "hashbrown 0.15.2",
1646
2029
  "serde",
1647
2030
  ]
1648
2031
 
@@ -1654,19 +2037,19 @@ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
1654
2037
 
1655
2038
  [[package]]
1656
2039
  name = "ipnet"
1657
- version = "2.10.1"
2040
+ version = "2.11.0"
1658
2041
  source = "registry+https://github.com/rust-lang/crates.io-index"
1659
- checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
2042
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1660
2043
 
1661
2044
  [[package]]
1662
2045
  name = "is-terminal"
1663
- version = "0.4.13"
2046
+ version = "0.4.15"
1664
2047
  source = "registry+https://github.com/rust-lang/crates.io-index"
1665
- checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
2048
+ checksum = "e19b23d53f35ce9f56aebc7d1bb4e6ac1e9c0db7ac85c8d1760c04379edced37"
1666
2049
  dependencies = [
1667
2050
  "hermit-abi 0.4.0",
1668
2051
  "libc",
1669
- "windows-sys 0.52.0",
2052
+ "windows-sys 0.59.0",
1670
2053
  ]
1671
2054
 
1672
2055
  [[package]]
@@ -1678,6 +2061,15 @@ dependencies = [
1678
2061
  "either",
1679
2062
  ]
1680
2063
 
2064
+ [[package]]
2065
+ name = "itertools"
2066
+ version = "0.12.1"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
2069
+ dependencies = [
2070
+ "either",
2071
+ ]
2072
+
1681
2073
  [[package]]
1682
2074
  name = "itertools"
1683
2075
  version = "0.13.0"
@@ -1689,9 +2081,9 @@ dependencies = [
1689
2081
 
1690
2082
  [[package]]
1691
2083
  name = "itoa"
1692
- version = "1.0.11"
2084
+ version = "1.0.14"
1693
2085
  source = "registry+https://github.com/rust-lang/crates.io-index"
1694
- checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
2086
+ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1695
2087
 
1696
2088
  [[package]]
1697
2089
  name = "jobserver"
@@ -1704,10 +2096,11 @@ dependencies = [
1704
2096
 
1705
2097
  [[package]]
1706
2098
  name = "js-sys"
1707
- version = "0.3.72"
2099
+ version = "0.3.77"
1708
2100
  source = "registry+https://github.com/rust-lang/crates.io-index"
1709
- checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
2101
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1710
2102
  dependencies = [
2103
+ "once_cell",
1711
2104
  "wasm-bindgen",
1712
2105
  ]
1713
2106
 
@@ -1722,6 +2115,95 @@ dependencies = [
1722
2115
  "serde",
1723
2116
  ]
1724
2117
 
2118
+ [[package]]
2119
+ name = "jsonpath-rust"
2120
+ version = "0.4.0"
2121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2122
+ checksum = "96acbc6188d3bd83519d053efec756aa4419de62ec47be7f28dec297f7dc9eb0"
2123
+ dependencies = [
2124
+ "pest",
2125
+ "pest_derive",
2126
+ "regex",
2127
+ "serde_json",
2128
+ "thiserror 1.0.69",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "k8s-openapi"
2133
+ version = "0.21.1"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "550f99d93aa4c2b25de527bce492d772caf5e21d7ac9bd4b508ba781c8d91e30"
2136
+ dependencies = [
2137
+ "base64 0.21.7",
2138
+ "chrono",
2139
+ "serde",
2140
+ "serde-value",
2141
+ "serde_json",
2142
+ ]
2143
+
2144
+ [[package]]
2145
+ name = "kube"
2146
+ version = "0.88.1"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "462fe330a0617b276ec864c2255810adcdf519ecb6844253c54074b2086a97bc"
2149
+ dependencies = [
2150
+ "k8s-openapi",
2151
+ "kube-client",
2152
+ "kube-core",
2153
+ ]
2154
+
2155
+ [[package]]
2156
+ name = "kube-client"
2157
+ version = "0.88.1"
2158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2159
+ checksum = "7fe0d65dd6f3adba29cfb84f19dfe55449c7f6c35425f9d8294bec40313e0b64"
2160
+ dependencies = [
2161
+ "base64 0.21.7",
2162
+ "bytes",
2163
+ "chrono",
2164
+ "either",
2165
+ "futures",
2166
+ "home",
2167
+ "http 0.2.12",
2168
+ "http-body 0.4.6",
2169
+ "hyper 0.14.32",
2170
+ "hyper-rustls 0.24.2",
2171
+ "hyper-timeout",
2172
+ "jsonpath-rust",
2173
+ "k8s-openapi",
2174
+ "kube-core",
2175
+ "pem",
2176
+ "pin-project",
2177
+ "rustls 0.21.12",
2178
+ "rustls-pemfile 1.0.4",
2179
+ "secrecy",
2180
+ "serde",
2181
+ "serde_json",
2182
+ "serde_yaml",
2183
+ "thiserror 1.0.69",
2184
+ "tokio",
2185
+ "tokio-util",
2186
+ "tower 0.4.13",
2187
+ "tower-http",
2188
+ "tracing",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "kube-core"
2193
+ version = "0.88.1"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "a6b42844e9172f631b8263ea9ce003b9251da13beb1401580937ad206dd82f4c"
2196
+ dependencies = [
2197
+ "chrono",
2198
+ "form_urlencoded",
2199
+ "http 0.2.12",
2200
+ "k8s-openapi",
2201
+ "once_cell",
2202
+ "serde",
2203
+ "serde_json",
2204
+ "thiserror 1.0.69",
2205
+ ]
2206
+
1725
2207
  [[package]]
1726
2208
  name = "language-tags"
1727
2209
  version = "0.3.2"
@@ -1737,11 +2219,27 @@ dependencies = [
1737
2219
  "spin",
1738
2220
  ]
1739
2221
 
2222
+ [[package]]
2223
+ name = "lazycell"
2224
+ version = "1.3.0"
2225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2226
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2227
+
1740
2228
  [[package]]
1741
2229
  name = "libc"
1742
- version = "0.2.161"
2230
+ version = "0.2.169"
1743
2231
  source = "registry+https://github.com/rust-lang/crates.io-index"
1744
- checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
2232
+ checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
2233
+
2234
+ [[package]]
2235
+ name = "libloading"
2236
+ version = "0.8.6"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
2239
+ dependencies = [
2240
+ "cfg-if",
2241
+ "windows-targets 0.52.6",
2242
+ ]
1745
2243
 
1746
2244
  [[package]]
1747
2245
  name = "libm"
@@ -1768,9 +2266,15 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1768
2266
 
1769
2267
  [[package]]
1770
2268
  name = "linux-raw-sys"
1771
- version = "0.4.14"
2269
+ version = "0.4.15"
1772
2270
  source = "registry+https://github.com/rust-lang/crates.io-index"
1773
- checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
2271
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
2272
+
2273
+ [[package]]
2274
+ name = "litemap"
2275
+ version = "0.7.4"
2276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2277
+ checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
1774
2278
 
1775
2279
  [[package]]
1776
2280
  name = "local-channel"
@@ -1801,9 +2305,9 @@ dependencies = [
1801
2305
 
1802
2306
  [[package]]
1803
2307
  name = "log"
1804
- version = "0.4.22"
2308
+ version = "0.4.25"
1805
2309
  source = "registry+https://github.com/rust-lang/crates.io-index"
1806
- checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
2310
+ checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
1807
2311
 
1808
2312
  [[package]]
1809
2313
  name = "matchers"
@@ -1862,20 +2366,19 @@ dependencies = [
1862
2366
 
1863
2367
  [[package]]
1864
2368
  name = "miniz_oxide"
1865
- version = "0.8.0"
2369
+ version = "0.8.3"
1866
2370
  source = "registry+https://github.com/rust-lang/crates.io-index"
1867
- checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
2371
+ checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
1868
2372
  dependencies = [
1869
2373
  "adler2",
1870
2374
  ]
1871
2375
 
1872
2376
  [[package]]
1873
2377
  name = "mio"
1874
- version = "1.0.2"
2378
+ version = "1.0.3"
1875
2379
  source = "registry+https://github.com/rust-lang/crates.io-index"
1876
- checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
2380
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1877
2381
  dependencies = [
1878
- "hermit-abi 0.3.9",
1879
2382
  "libc",
1880
2383
  "log",
1881
2384
  "wasi",
@@ -1992,6 +2495,12 @@ version = "11.1.4"
1992
2495
  source = "registry+https://github.com/rust-lang/crates.io-index"
1993
2496
  checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
1994
2497
 
2498
+ [[package]]
2499
+ name = "openssl-probe"
2500
+ version = "0.1.6"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
2503
+
1995
2504
  [[package]]
1996
2505
  name = "opentelemetry"
1997
2506
  version = "0.22.0"
@@ -2003,7 +2512,7 @@ dependencies = [
2003
2512
  "js-sys",
2004
2513
  "once_cell",
2005
2514
  "pin-project-lite",
2006
- "thiserror",
2515
+ "thiserror 1.0.69",
2007
2516
  "urlencoding",
2008
2517
  ]
2009
2518
 
@@ -2018,7 +2527,7 @@ dependencies = [
2018
2527
  "js-sys",
2019
2528
  "once_cell",
2020
2529
  "pin-project-lite",
2021
- "thiserror",
2530
+ "thiserror 1.0.69",
2022
2531
  ]
2023
2532
 
2024
2533
  [[package]]
@@ -2053,22 +2562,6 @@ version = "0.14.0"
2053
2562
  source = "registry+https://github.com/rust-lang/crates.io-index"
2054
2563
  checksum = "f9ab5bd6c42fb9349dcf28af2ba9a0667f697f9bdcca045d39f2cec5543e2910"
2055
2564
 
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
2565
  [[package]]
2073
2566
  name = "opentelemetry_sdk"
2074
2567
  version = "0.22.1"
@@ -2082,8 +2575,8 @@ dependencies = [
2082
2575
  "glob",
2083
2576
  "once_cell",
2084
2577
  "opentelemetry 0.22.0",
2085
- "ordered-float",
2086
- "thiserror",
2578
+ "ordered-float 4.6.0",
2579
+ "thiserror 1.0.69",
2087
2580
  ]
2088
2581
 
2089
2582
  [[package]]
@@ -2100,17 +2593,26 @@ dependencies = [
2100
2593
  "lazy_static",
2101
2594
  "once_cell",
2102
2595
  "opentelemetry 0.23.0",
2103
- "ordered-float",
2596
+ "ordered-float 4.6.0",
2104
2597
  "percent-encoding",
2105
2598
  "rand",
2106
- "thiserror",
2599
+ "thiserror 1.0.69",
2107
2600
  ]
2108
2601
 
2109
2602
  [[package]]
2110
2603
  name = "ordered-float"
2111
- version = "4.4.0"
2604
+ version = "2.10.1"
2112
2605
  source = "registry+https://github.com/rust-lang/crates.io-index"
2113
- checksum = "83e7ccb95e240b7c9506a3d544f10d935e142cc90b0a1d56954fb44d89ad6b97"
2606
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
2607
+ dependencies = [
2608
+ "num-traits",
2609
+ ]
2610
+
2611
+ [[package]]
2612
+ name = "ordered-float"
2613
+ version = "4.6.0"
2614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2615
+ checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
2114
2616
  dependencies = [
2115
2617
  "num-traits",
2116
2618
  ]
@@ -2174,9 +2676,19 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2174
2676
 
2175
2677
  [[package]]
2176
2678
  name = "pathdiff"
2177
- version = "0.2.2"
2679
+ version = "0.2.3"
2178
2680
  source = "registry+https://github.com/rust-lang/crates.io-index"
2179
- checksum = "d61c5ce1153ab5b689d0c074c4e7fc613e942dfb7dd9eea5ab202d2ad91fe361"
2681
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
2682
+
2683
+ [[package]]
2684
+ name = "pem"
2685
+ version = "3.0.4"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae"
2688
+ dependencies = [
2689
+ "base64 0.22.1",
2690
+ "serde",
2691
+ ]
2180
2692
 
2181
2693
  [[package]]
2182
2694
  name = "pem-rfc7468"
@@ -2195,20 +2707,20 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2195
2707
 
2196
2708
  [[package]]
2197
2709
  name = "pest"
2198
- version = "2.7.14"
2710
+ version = "2.7.15"
2199
2711
  source = "registry+https://github.com/rust-lang/crates.io-index"
2200
- checksum = "879952a81a83930934cbf1786752d6dedc3b1f29e8f8fb2ad1d0a36f377cf442"
2712
+ checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
2201
2713
  dependencies = [
2202
2714
  "memchr",
2203
- "thiserror",
2715
+ "thiserror 2.0.11",
2204
2716
  "ucd-trie",
2205
2717
  ]
2206
2718
 
2207
2719
  [[package]]
2208
2720
  name = "pest_derive"
2209
- version = "2.7.14"
2721
+ version = "2.7.15"
2210
2722
  source = "registry+https://github.com/rust-lang/crates.io-index"
2211
- checksum = "d214365f632b123a47fd913301e14c946c61d1c183ee245fa76eb752e59a02dd"
2723
+ checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e"
2212
2724
  dependencies = [
2213
2725
  "pest",
2214
2726
  "pest_generator",
@@ -2216,22 +2728,22 @@ dependencies = [
2216
2728
 
2217
2729
  [[package]]
2218
2730
  name = "pest_generator"
2219
- version = "2.7.14"
2731
+ version = "2.7.15"
2220
2732
  source = "registry+https://github.com/rust-lang/crates.io-index"
2221
- checksum = "eb55586734301717aea2ac313f50b2eb8f60d2fc3dc01d190eefa2e625f60c4e"
2733
+ checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b"
2222
2734
  dependencies = [
2223
2735
  "pest",
2224
2736
  "pest_meta",
2225
2737
  "proc-macro2",
2226
2738
  "quote",
2227
- "syn 2.0.85",
2739
+ "syn 2.0.96",
2228
2740
  ]
2229
2741
 
2230
2742
  [[package]]
2231
2743
  name = "pest_meta"
2232
- version = "2.7.14"
2744
+ version = "2.7.15"
2233
2745
  source = "registry+https://github.com/rust-lang/crates.io-index"
2234
- checksum = "b75da2a70cf4d9cb76833c990ac9cd3923c9a8905a8929789ce347c84564d03d"
2746
+ checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea"
2235
2747
  dependencies = [
2236
2748
  "once_cell",
2237
2749
  "pest",
@@ -2240,29 +2752,29 @@ dependencies = [
2240
2752
 
2241
2753
  [[package]]
2242
2754
  name = "pin-project"
2243
- version = "1.1.7"
2755
+ version = "1.1.8"
2244
2756
  source = "registry+https://github.com/rust-lang/crates.io-index"
2245
- checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95"
2757
+ checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916"
2246
2758
  dependencies = [
2247
2759
  "pin-project-internal",
2248
2760
  ]
2249
2761
 
2250
2762
  [[package]]
2251
2763
  name = "pin-project-internal"
2252
- version = "1.1.7"
2764
+ version = "1.1.8"
2253
2765
  source = "registry+https://github.com/rust-lang/crates.io-index"
2254
- checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c"
2766
+ checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb"
2255
2767
  dependencies = [
2256
2768
  "proc-macro2",
2257
2769
  "quote",
2258
- "syn 2.0.85",
2770
+ "syn 2.0.96",
2259
2771
  ]
2260
2772
 
2261
2773
  [[package]]
2262
2774
  name = "pin-project-lite"
2263
- version = "0.2.15"
2775
+ version = "0.2.16"
2264
2776
  source = "registry+https://github.com/rust-lang/crates.io-index"
2265
- checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
2777
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2266
2778
 
2267
2779
  [[package]]
2268
2780
  name = "pin-utils"
@@ -2327,9 +2839,9 @@ dependencies = [
2327
2839
 
2328
2840
  [[package]]
2329
2841
  name = "portable-atomic"
2330
- version = "1.9.0"
2842
+ version = "1.10.0"
2331
2843
  source = "registry+https://github.com/rust-lang/crates.io-index"
2332
- checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
2844
+ checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
2333
2845
 
2334
2846
  [[package]]
2335
2847
  name = "powerfmt"
@@ -2346,11 +2858,21 @@ dependencies = [
2346
2858
  "zerocopy",
2347
2859
  ]
2348
2860
 
2861
+ [[package]]
2862
+ name = "prettyplease"
2863
+ version = "0.2.29"
2864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2865
+ checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
2866
+ dependencies = [
2867
+ "proc-macro2",
2868
+ "syn 2.0.96",
2869
+ ]
2870
+
2349
2871
  [[package]]
2350
2872
  name = "proc-macro2"
2351
- version = "1.0.89"
2873
+ version = "1.0.93"
2352
2874
  source = "registry+https://github.com/rust-lang/crates.io-index"
2353
- checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
2875
+ checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
2354
2876
  dependencies = [
2355
2877
  "unicode-ident",
2356
2878
  ]
@@ -2367,7 +2889,21 @@ dependencies = [
2367
2889
  "memchr",
2368
2890
  "parking_lot",
2369
2891
  "protobuf",
2370
- "thiserror",
2892
+ "thiserror 1.0.69",
2893
+ ]
2894
+
2895
+ [[package]]
2896
+ name = "prometheus-http-query"
2897
+ version = "0.8.3"
2898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2899
+ checksum = "0fcebfa99f03ae51220778316b37d24981e36322c82c24848f48c5bd0f64cbdb"
2900
+ dependencies = [
2901
+ "enum-as-inner",
2902
+ "mime",
2903
+ "reqwest",
2904
+ "serde",
2905
+ "time",
2906
+ "url",
2371
2907
  ]
2372
2908
 
2373
2909
  [[package]]
@@ -2378,9 +2914,9 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
2378
2914
 
2379
2915
  [[package]]
2380
2916
  name = "pyo3"
2381
- version = "0.20.3"
2917
+ version = "0.22.6"
2382
2918
  source = "registry+https://github.com/rust-lang/crates.io-index"
2383
- checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
2919
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
2384
2920
  dependencies = [
2385
2921
  "anyhow",
2386
2922
  "cfg-if",
@@ -2388,7 +2924,7 @@ dependencies = [
2388
2924
  "indoc",
2389
2925
  "libc",
2390
2926
  "memoffset",
2391
- "parking_lot",
2927
+ "once_cell",
2392
2928
  "portable-atomic",
2393
2929
  "pyo3-build-config",
2394
2930
  "pyo3-ffi",
@@ -2397,35 +2933,35 @@ dependencies = [
2397
2933
  ]
2398
2934
 
2399
2935
  [[package]]
2400
- name = "pyo3-asyncio"
2401
- version = "0.20.0"
2936
+ name = "pyo3-async-runtimes"
2937
+ version = "0.22.0"
2402
2938
  source = "registry+https://github.com/rust-lang/crates.io-index"
2403
- checksum = "6ea6b68e93db3622f3bb3bf363246cf948ed5375afe7abff98ccbdd50b184995"
2939
+ checksum = "2529f0be73ffd2be0cc43c013a640796558aa12d7ca0aab5cc14f375b4733031"
2404
2940
  dependencies = [
2405
2941
  "futures",
2406
2942
  "once_cell",
2407
2943
  "pin-project-lite",
2408
2944
  "pyo3",
2409
- "pyo3-asyncio-macros",
2945
+ "pyo3-async-runtimes-macros",
2410
2946
  "tokio",
2411
2947
  ]
2412
2948
 
2413
2949
  [[package]]
2414
- name = "pyo3-asyncio-macros"
2415
- version = "0.20.0"
2950
+ name = "pyo3-async-runtimes-macros"
2951
+ version = "0.22.0"
2416
2952
  source = "registry+https://github.com/rust-lang/crates.io-index"
2417
- checksum = "56c467178e1da6252c95c29ecf898b133f742e9181dca5def15dc24e19d45a39"
2953
+ checksum = "22c26fd8e9fc19f53f0c1e00bf61471de6789f7eb263056f7f944a9cceb5823e"
2418
2954
  dependencies = [
2419
2955
  "proc-macro2",
2420
2956
  "quote",
2421
- "syn 1.0.109",
2957
+ "syn 2.0.96",
2422
2958
  ]
2423
2959
 
2424
2960
  [[package]]
2425
2961
  name = "pyo3-build-config"
2426
- version = "0.20.3"
2962
+ version = "0.22.6"
2427
2963
  source = "registry+https://github.com/rust-lang/crates.io-index"
2428
- checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
2964
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
2429
2965
  dependencies = [
2430
2966
  "once_cell",
2431
2967
  "target-lexicon",
@@ -2433,9 +2969,9 @@ dependencies = [
2433
2969
 
2434
2970
  [[package]]
2435
2971
  name = "pyo3-ffi"
2436
- version = "0.20.3"
2972
+ version = "0.22.6"
2437
2973
  source = "registry+https://github.com/rust-lang/crates.io-index"
2438
- checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
2974
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
2439
2975
  dependencies = [
2440
2976
  "libc",
2441
2977
  "pyo3-build-config",
@@ -2443,39 +2979,39 @@ dependencies = [
2443
2979
 
2444
2980
  [[package]]
2445
2981
  name = "pyo3-macros"
2446
- version = "0.20.3"
2982
+ version = "0.22.6"
2447
2983
  source = "registry+https://github.com/rust-lang/crates.io-index"
2448
- checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
2984
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
2449
2985
  dependencies = [
2450
2986
  "proc-macro2",
2451
2987
  "pyo3-macros-backend",
2452
2988
  "quote",
2453
- "syn 2.0.85",
2989
+ "syn 2.0.96",
2454
2990
  ]
2455
2991
 
2456
2992
  [[package]]
2457
2993
  name = "pyo3-macros-backend"
2458
- version = "0.20.3"
2994
+ version = "0.22.6"
2459
2995
  source = "registry+https://github.com/rust-lang/crates.io-index"
2460
- checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
2996
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
2461
2997
  dependencies = [
2462
- "heck 0.4.1",
2998
+ "heck",
2463
2999
  "proc-macro2",
2464
3000
  "pyo3-build-config",
2465
3001
  "quote",
2466
- "syn 2.0.85",
3002
+ "syn 2.0.96",
2467
3003
  ]
2468
3004
 
2469
3005
  [[package]]
2470
3006
  name = "python-auditor"
2471
- version = "0.6.3"
3007
+ version = "0.7.0"
2472
3008
  dependencies = [
2473
3009
  "anyhow",
2474
3010
  "auditor",
2475
3011
  "auditor-client",
2476
3012
  "chrono",
2477
3013
  "pyo3",
2478
- "pyo3-asyncio",
3014
+ "pyo3-async-runtimes",
2479
3015
  "serde",
2480
3016
  "serde_json",
2481
3017
  "tokio",
@@ -2505,44 +3041,47 @@ dependencies = [
2505
3041
 
2506
3042
  [[package]]
2507
3043
  name = "quinn"
2508
- version = "0.11.5"
3044
+ version = "0.11.6"
2509
3045
  source = "registry+https://github.com/rust-lang/crates.io-index"
2510
- checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684"
3046
+ checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
2511
3047
  dependencies = [
2512
3048
  "bytes",
2513
3049
  "pin-project-lite",
2514
3050
  "quinn-proto",
2515
3051
  "quinn-udp",
2516
- "rustc-hash",
2517
- "rustls",
3052
+ "rustc-hash 2.1.0",
3053
+ "rustls 0.23.21",
2518
3054
  "socket2",
2519
- "thiserror",
3055
+ "thiserror 2.0.11",
2520
3056
  "tokio",
2521
3057
  "tracing",
2522
3058
  ]
2523
3059
 
2524
3060
  [[package]]
2525
3061
  name = "quinn-proto"
2526
- version = "0.11.8"
3062
+ version = "0.11.9"
2527
3063
  source = "registry+https://github.com/rust-lang/crates.io-index"
2528
- checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6"
3064
+ checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
2529
3065
  dependencies = [
2530
3066
  "bytes",
3067
+ "getrandom",
2531
3068
  "rand",
2532
3069
  "ring",
2533
- "rustc-hash",
2534
- "rustls",
3070
+ "rustc-hash 2.1.0",
3071
+ "rustls 0.23.21",
3072
+ "rustls-pki-types",
2535
3073
  "slab",
2536
- "thiserror",
3074
+ "thiserror 2.0.11",
2537
3075
  "tinyvec",
2538
3076
  "tracing",
3077
+ "web-time",
2539
3078
  ]
2540
3079
 
2541
3080
  [[package]]
2542
3081
  name = "quinn-udp"
2543
- version = "0.5.6"
3082
+ version = "0.5.9"
2544
3083
  source = "registry+https://github.com/rust-lang/crates.io-index"
2545
- checksum = "e346e016eacfff12233c243718197ca12f148c84e1e84268a896699b41c71780"
3084
+ checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904"
2546
3085
  dependencies = [
2547
3086
  "cfg_aliases",
2548
3087
  "libc",
@@ -2554,9 +3093,9 @@ dependencies = [
2554
3093
 
2555
3094
  [[package]]
2556
3095
  name = "quote"
2557
- version = "1.0.37"
3096
+ version = "1.0.38"
2558
3097
  source = "registry+https://github.com/rust-lang/crates.io-index"
2559
- checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
3098
+ checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
2560
3099
  dependencies = [
2561
3100
  "proc-macro2",
2562
3101
  ]
@@ -2623,11 +3162,11 @@ dependencies = [
2623
3162
 
2624
3163
  [[package]]
2625
3164
  name = "redox_syscall"
2626
- version = "0.5.7"
3165
+ version = "0.5.8"
2627
3166
  source = "registry+https://github.com/rust-lang/crates.io-index"
2628
- checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
3167
+ checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
2629
3168
  dependencies = [
2630
- "bitflags 2.6.0",
3169
+ "bitflags 2.8.0",
2631
3170
  ]
2632
3171
 
2633
3172
  [[package]]
@@ -2638,7 +3177,7 @@ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2638
3177
  dependencies = [
2639
3178
  "aho-corasick",
2640
3179
  "memchr",
2641
- "regex-automata 0.4.8",
3180
+ "regex-automata 0.4.9",
2642
3181
  "regex-syntax 0.8.5",
2643
3182
  ]
2644
3183
 
@@ -2653,9 +3192,9 @@ dependencies = [
2653
3192
 
2654
3193
  [[package]]
2655
3194
  name = "regex-automata"
2656
- version = "0.4.8"
3195
+ version = "0.4.9"
2657
3196
  source = "registry+https://github.com/rust-lang/crates.io-index"
2658
- checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
3197
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2659
3198
  dependencies = [
2660
3199
  "aho-corasick",
2661
3200
  "memchr",
@@ -2682,20 +3221,20 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2682
3221
 
2683
3222
  [[package]]
2684
3223
  name = "reqwest"
2685
- version = "0.12.9"
3224
+ version = "0.12.12"
2686
3225
  source = "registry+https://github.com/rust-lang/crates.io-index"
2687
- checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f"
3226
+ checksum = "43e734407157c3c2034e0258f5e4473ddb361b1e85f95a66690d67264d7cd1da"
2688
3227
  dependencies = [
2689
3228
  "base64 0.22.1",
2690
3229
  "bytes",
2691
3230
  "futures-channel",
2692
3231
  "futures-core",
2693
3232
  "futures-util",
2694
- "http 1.1.0",
2695
- "http-body",
3233
+ "http 1.2.0",
3234
+ "http-body 1.0.1",
2696
3235
  "http-body-util",
2697
- "hyper",
2698
- "hyper-rustls",
3236
+ "hyper 1.5.2",
3237
+ "hyper-rustls 0.27.5",
2699
3238
  "hyper-util",
2700
3239
  "ipnet",
2701
3240
  "js-sys",
@@ -2705,15 +3244,16 @@ dependencies = [
2705
3244
  "percent-encoding",
2706
3245
  "pin-project-lite",
2707
3246
  "quinn",
2708
- "rustls",
2709
- "rustls-pemfile",
3247
+ "rustls 0.23.21",
3248
+ "rustls-pemfile 2.2.0",
2710
3249
  "rustls-pki-types",
2711
3250
  "serde",
2712
3251
  "serde_json",
2713
3252
  "serde_urlencoded",
2714
3253
  "sync_wrapper",
2715
3254
  "tokio",
2716
- "tokio-rustls",
3255
+ "tokio-rustls 0.26.1",
3256
+ "tower 0.5.2",
2717
3257
  "tower-service",
2718
3258
  "url",
2719
3259
  "wasm-bindgen",
@@ -2751,9 +3291,9 @@ dependencies = [
2751
3291
 
2752
3292
  [[package]]
2753
3293
  name = "rsa"
2754
- version = "0.9.6"
3294
+ version = "0.9.7"
2755
3295
  source = "registry+https://github.com/rust-lang/crates.io-index"
2756
- checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc"
3296
+ checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519"
2757
3297
  dependencies = [
2758
3298
  "const-oid",
2759
3299
  "digest",
@@ -2787,9 +3327,15 @@ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2787
3327
 
2788
3328
  [[package]]
2789
3329
  name = "rustc-hash"
2790
- version = "2.0.0"
3330
+ version = "1.1.0"
3331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3332
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
3333
+
3334
+ [[package]]
3335
+ name = "rustc-hash"
3336
+ version = "2.1.0"
2791
3337
  source = "registry+https://github.com/rust-lang/crates.io-index"
2792
- checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
3338
+ checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
2793
3339
 
2794
3340
  [[package]]
2795
3341
  name = "rustc_version"
@@ -2802,31 +3348,66 @@ dependencies = [
2802
3348
 
2803
3349
  [[package]]
2804
3350
  name = "rustix"
2805
- version = "0.38.38"
3351
+ version = "0.38.44"
2806
3352
  source = "registry+https://github.com/rust-lang/crates.io-index"
2807
- checksum = "aa260229e6538e52293eeb577aabd09945a09d6d9cc0fc550ed7529056c2e32a"
3353
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2808
3354
  dependencies = [
2809
- "bitflags 2.6.0",
3355
+ "bitflags 2.8.0",
2810
3356
  "errno",
2811
3357
  "libc",
2812
3358
  "linux-raw-sys",
2813
- "windows-sys 0.52.0",
3359
+ "windows-sys 0.59.0",
2814
3360
  ]
2815
3361
 
2816
3362
  [[package]]
2817
3363
  name = "rustls"
2818
- version = "0.23.16"
3364
+ version = "0.21.12"
2819
3365
  source = "registry+https://github.com/rust-lang/crates.io-index"
2820
- checksum = "eee87ff5d9b36712a58574e12e9f0ea80f915a5b0ac518d322b24a465617925e"
3366
+ checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
2821
3367
  dependencies = [
3368
+ "log",
3369
+ "ring",
3370
+ "rustls-webpki 0.101.7",
3371
+ "sct",
3372
+ ]
3373
+
3374
+ [[package]]
3375
+ name = "rustls"
3376
+ version = "0.23.21"
3377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3378
+ checksum = "8f287924602bf649d949c63dc8ac8b235fa5387d394020705b80c4eb597ce5b8"
3379
+ dependencies = [
3380
+ "aws-lc-rs",
3381
+ "log",
2822
3382
  "once_cell",
2823
3383
  "ring",
2824
3384
  "rustls-pki-types",
2825
- "rustls-webpki",
3385
+ "rustls-webpki 0.102.8",
2826
3386
  "subtle",
2827
3387
  "zeroize",
2828
3388
  ]
2829
3389
 
3390
+ [[package]]
3391
+ name = "rustls-native-certs"
3392
+ version = "0.6.3"
3393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3394
+ checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
3395
+ dependencies = [
3396
+ "openssl-probe",
3397
+ "rustls-pemfile 1.0.4",
3398
+ "schannel",
3399
+ "security-framework",
3400
+ ]
3401
+
3402
+ [[package]]
3403
+ name = "rustls-pemfile"
3404
+ version = "1.0.4"
3405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3406
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
3407
+ dependencies = [
3408
+ "base64 0.21.7",
3409
+ ]
3410
+
2830
3411
  [[package]]
2831
3412
  name = "rustls-pemfile"
2832
3413
  version = "2.2.0"
@@ -2838,9 +3419,22 @@ dependencies = [
2838
3419
 
2839
3420
  [[package]]
2840
3421
  name = "rustls-pki-types"
2841
- version = "1.10.0"
3422
+ version = "1.11.0"
3423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3424
+ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
3425
+ dependencies = [
3426
+ "web-time",
3427
+ ]
3428
+
3429
+ [[package]]
3430
+ name = "rustls-webpki"
3431
+ version = "0.101.7"
2842
3432
  source = "registry+https://github.com/rust-lang/crates.io-index"
2843
- checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
3433
+ checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
3434
+ dependencies = [
3435
+ "ring",
3436
+ "untrusted",
3437
+ ]
2844
3438
 
2845
3439
  [[package]]
2846
3440
  name = "rustls-webpki"
@@ -2848,11 +3442,18 @@ version = "0.102.8"
2848
3442
  source = "registry+https://github.com/rust-lang/crates.io-index"
2849
3443
  checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2850
3444
  dependencies = [
3445
+ "aws-lc-rs",
2851
3446
  "ring",
2852
3447
  "rustls-pki-types",
2853
3448
  "untrusted",
2854
3449
  ]
2855
3450
 
3451
+ [[package]]
3452
+ name = "rustversion"
3453
+ version = "1.0.19"
3454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3455
+ checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
3456
+
2856
3457
  [[package]]
2857
3458
  name = "ryu"
2858
3459
  version = "1.0.18"
@@ -2868,12 +3469,31 @@ dependencies = [
2868
3469
  "winapi-util",
2869
3470
  ]
2870
3471
 
3472
+ [[package]]
3473
+ name = "schannel"
3474
+ version = "0.1.27"
3475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3476
+ checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
3477
+ dependencies = [
3478
+ "windows-sys 0.59.0",
3479
+ ]
3480
+
2871
3481
  [[package]]
2872
3482
  name = "scopeguard"
2873
3483
  version = "1.2.0"
2874
3484
  source = "registry+https://github.com/rust-lang/crates.io-index"
2875
3485
  checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2876
3486
 
3487
+ [[package]]
3488
+ name = "sct"
3489
+ version = "0.7.1"
3490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3491
+ checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
3492
+ dependencies = [
3493
+ "ring",
3494
+ "untrusted",
3495
+ ]
3496
+
2877
3497
  [[package]]
2878
3498
  name = "secrecy"
2879
3499
  version = "0.8.0"
@@ -2884,17 +3504,40 @@ dependencies = [
2884
3504
  "zeroize",
2885
3505
  ]
2886
3506
 
3507
+ [[package]]
3508
+ name = "security-framework"
3509
+ version = "2.11.1"
3510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3511
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
3512
+ dependencies = [
3513
+ "bitflags 2.8.0",
3514
+ "core-foundation",
3515
+ "core-foundation-sys",
3516
+ "libc",
3517
+ "security-framework-sys",
3518
+ ]
3519
+
3520
+ [[package]]
3521
+ name = "security-framework-sys"
3522
+ version = "2.14.0"
3523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3524
+ checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
3525
+ dependencies = [
3526
+ "core-foundation-sys",
3527
+ "libc",
3528
+ ]
3529
+
2887
3530
  [[package]]
2888
3531
  name = "semver"
2889
- version = "1.0.23"
3532
+ version = "1.0.25"
2890
3533
  source = "registry+https://github.com/rust-lang/crates.io-index"
2891
- checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
3534
+ checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03"
2892
3535
 
2893
3536
  [[package]]
2894
3537
  name = "serde"
2895
- version = "1.0.214"
3538
+ version = "1.0.217"
2896
3539
  source = "registry+https://github.com/rust-lang/crates.io-index"
2897
- checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5"
3540
+ checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
2898
3541
  dependencies = [
2899
3542
  "serde_derive",
2900
3543
  ]
@@ -2910,22 +3553,32 @@ dependencies = [
2910
3553
  "serde_json",
2911
3554
  ]
2912
3555
 
3556
+ [[package]]
3557
+ name = "serde-value"
3558
+ version = "0.7.0"
3559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3560
+ checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
3561
+ dependencies = [
3562
+ "ordered-float 2.10.1",
3563
+ "serde",
3564
+ ]
3565
+
2913
3566
  [[package]]
2914
3567
  name = "serde_derive"
2915
- version = "1.0.214"
3568
+ version = "1.0.217"
2916
3569
  source = "registry+https://github.com/rust-lang/crates.io-index"
2917
- checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766"
3570
+ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
2918
3571
  dependencies = [
2919
3572
  "proc-macro2",
2920
3573
  "quote",
2921
- "syn 2.0.85",
3574
+ "syn 2.0.96",
2922
3575
  ]
2923
3576
 
2924
3577
  [[package]]
2925
3578
  name = "serde_json"
2926
- version = "1.0.132"
3579
+ version = "1.0.137"
2927
3580
  source = "registry+https://github.com/rust-lang/crates.io-index"
2928
- checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03"
3581
+ checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b"
2929
3582
  dependencies = [
2930
3583
  "itoa",
2931
3584
  "memchr",
@@ -2943,7 +3596,7 @@ dependencies = [
2943
3596
  "futures",
2944
3597
  "percent-encoding",
2945
3598
  "serde",
2946
- "thiserror",
3599
+ "thiserror 1.0.69",
2947
3600
  ]
2948
3601
 
2949
3602
  [[package]]
@@ -2960,15 +3613,15 @@ dependencies = [
2960
3613
 
2961
3614
  [[package]]
2962
3615
  name = "serde_with"
2963
- version = "3.11.0"
3616
+ version = "3.12.0"
2964
3617
  source = "registry+https://github.com/rust-lang/crates.io-index"
2965
- checksum = "8e28bdad6db2b8340e449f7108f020b3b092e8583a9e3fb82713e1d4e71fe817"
3618
+ checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa"
2966
3619
  dependencies = [
2967
3620
  "base64 0.22.1",
2968
3621
  "chrono",
2969
3622
  "hex",
2970
3623
  "indexmap 1.9.3",
2971
- "indexmap 2.6.0",
3624
+ "indexmap 2.7.1",
2972
3625
  "serde",
2973
3626
  "serde_derive",
2974
3627
  "serde_json",
@@ -2978,14 +3631,27 @@ dependencies = [
2978
3631
 
2979
3632
  [[package]]
2980
3633
  name = "serde_with_macros"
2981
- version = "3.11.0"
3634
+ version = "3.12.0"
2982
3635
  source = "registry+https://github.com/rust-lang/crates.io-index"
2983
- checksum = "9d846214a9854ef724f3da161b426242d8de7c1fc7de2f89bb1efcb154dca79d"
3636
+ checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e"
2984
3637
  dependencies = [
2985
3638
  "darling",
2986
3639
  "proc-macro2",
2987
3640
  "quote",
2988
- "syn 2.0.85",
3641
+ "syn 2.0.96",
3642
+ ]
3643
+
3644
+ [[package]]
3645
+ name = "serde_yaml"
3646
+ version = "0.9.34+deprecated"
3647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3648
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
3649
+ dependencies = [
3650
+ "indexmap 2.7.1",
3651
+ "itoa",
3652
+ "ryu",
3653
+ "serde",
3654
+ "unsafe-libyaml",
2989
3655
  ]
2990
3656
 
2991
3657
  [[package]]
@@ -3070,9 +3736,9 @@ dependencies = [
3070
3736
 
3071
3737
  [[package]]
3072
3738
  name = "socket2"
3073
- version = "0.5.7"
3739
+ version = "0.5.8"
3074
3740
  source = "registry+https://github.com/rust-lang/crates.io-index"
3075
- checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
3741
+ checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
3076
3742
  dependencies = [
3077
3743
  "libc",
3078
3744
  "windows-sys 0.52.0",
@@ -3097,21 +3763,11 @@ dependencies = [
3097
3763
  "der",
3098
3764
  ]
3099
3765
 
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
3766
  [[package]]
3111
3767
  name = "sqlx"
3112
- version = "0.8.2"
3768
+ version = "0.8.3"
3113
3769
  source = "registry+https://github.com/rust-lang/crates.io-index"
3114
- checksum = "93334716a037193fac19df402f8571269c84a00852f6a7066b5d2616dcd64d3e"
3770
+ checksum = "4410e73b3c0d8442c5f99b425d7a435b5ee0ae4167b3196771dd3f7a01be745f"
3115
3771
  dependencies = [
3116
3772
  "sqlx-core",
3117
3773
  "sqlx-macros",
@@ -3122,40 +3778,34 @@ dependencies = [
3122
3778
 
3123
3779
  [[package]]
3124
3780
  name = "sqlx-core"
3125
- version = "0.8.2"
3781
+ version = "0.8.3"
3126
3782
  source = "registry+https://github.com/rust-lang/crates.io-index"
3127
- checksum = "d4d8060b456358185f7d50c55d9b5066ad956956fddec42ee2e8567134a8936e"
3783
+ checksum = "6a007b6936676aa9ab40207cde35daab0a04b823be8ae004368c0793b96a61e0"
3128
3784
  dependencies = [
3129
- "atoi",
3130
- "byteorder",
3131
3785
  "bytes",
3132
3786
  "chrono",
3133
3787
  "crc",
3134
3788
  "crossbeam-queue",
3135
3789
  "either",
3136
3790
  "event-listener",
3137
- "futures-channel",
3138
3791
  "futures-core",
3139
3792
  "futures-intrusive",
3140
3793
  "futures-io",
3141
3794
  "futures-util",
3142
- "hashbrown 0.14.5",
3795
+ "hashbrown 0.15.2",
3143
3796
  "hashlink",
3144
- "hex",
3145
- "indexmap 2.6.0",
3797
+ "indexmap 2.7.1",
3146
3798
  "log",
3147
3799
  "memchr",
3148
3800
  "once_cell",
3149
- "paste",
3150
3801
  "percent-encoding",
3151
- "rustls",
3152
- "rustls-pemfile",
3802
+ "rustls 0.23.21",
3803
+ "rustls-pemfile 2.2.0",
3153
3804
  "serde",
3154
3805
  "serde_json",
3155
3806
  "sha2",
3156
3807
  "smallvec",
3157
- "sqlformat",
3158
- "thiserror",
3808
+ "thiserror 2.0.11",
3159
3809
  "tokio",
3160
3810
  "tokio-stream",
3161
3811
  "tracing",
@@ -3166,26 +3816,26 @@ dependencies = [
3166
3816
 
3167
3817
  [[package]]
3168
3818
  name = "sqlx-macros"
3169
- version = "0.8.2"
3819
+ version = "0.8.3"
3170
3820
  source = "registry+https://github.com/rust-lang/crates.io-index"
3171
- checksum = "cac0692bcc9de3b073e8d747391827297e075c7710ff6276d9f7a1f3d58c6657"
3821
+ checksum = "3112e2ad78643fef903618d78cf0aec1cb3134b019730edb039b69eaf531f310"
3172
3822
  dependencies = [
3173
3823
  "proc-macro2",
3174
3824
  "quote",
3175
3825
  "sqlx-core",
3176
3826
  "sqlx-macros-core",
3177
- "syn 2.0.85",
3827
+ "syn 2.0.96",
3178
3828
  ]
3179
3829
 
3180
3830
  [[package]]
3181
3831
  name = "sqlx-macros-core"
3182
- version = "0.8.2"
3832
+ version = "0.8.3"
3183
3833
  source = "registry+https://github.com/rust-lang/crates.io-index"
3184
- checksum = "1804e8a7c7865599c9c79be146dc8a9fd8cc86935fa641d3ea58e5f0688abaa5"
3834
+ checksum = "4e9f90acc5ab146a99bf5061a7eb4976b573f560bc898ef3bf8435448dd5e7ad"
3185
3835
  dependencies = [
3186
3836
  "dotenvy",
3187
3837
  "either",
3188
- "heck 0.5.0",
3838
+ "heck",
3189
3839
  "hex",
3190
3840
  "once_cell",
3191
3841
  "proc-macro2",
@@ -3197,7 +3847,7 @@ dependencies = [
3197
3847
  "sqlx-mysql",
3198
3848
  "sqlx-postgres",
3199
3849
  "sqlx-sqlite",
3200
- "syn 2.0.85",
3850
+ "syn 2.0.96",
3201
3851
  "tempfile",
3202
3852
  "tokio",
3203
3853
  "url",
@@ -3205,13 +3855,13 @@ dependencies = [
3205
3855
 
3206
3856
  [[package]]
3207
3857
  name = "sqlx-mysql"
3208
- version = "0.8.2"
3858
+ version = "0.8.3"
3209
3859
  source = "registry+https://github.com/rust-lang/crates.io-index"
3210
- checksum = "64bb4714269afa44aef2755150a0fc19d756fb580a67db8885608cf02f47d06a"
3860
+ checksum = "4560278f0e00ce64938540546f59f590d60beee33fffbd3b9cd47851e5fff233"
3211
3861
  dependencies = [
3212
3862
  "atoi",
3213
3863
  "base64 0.22.1",
3214
- "bitflags 2.6.0",
3864
+ "bitflags 2.8.0",
3215
3865
  "byteorder",
3216
3866
  "bytes",
3217
3867
  "chrono",
@@ -3241,7 +3891,7 @@ dependencies = [
3241
3891
  "smallvec",
3242
3892
  "sqlx-core",
3243
3893
  "stringprep",
3244
- "thiserror",
3894
+ "thiserror 2.0.11",
3245
3895
  "tracing",
3246
3896
  "uuid",
3247
3897
  "whoami",
@@ -3249,13 +3899,13 @@ dependencies = [
3249
3899
 
3250
3900
  [[package]]
3251
3901
  name = "sqlx-postgres"
3252
- version = "0.8.2"
3902
+ version = "0.8.3"
3253
3903
  source = "registry+https://github.com/rust-lang/crates.io-index"
3254
- checksum = "6fa91a732d854c5d7726349bb4bb879bb9478993ceb764247660aee25f67c2f8"
3904
+ checksum = "c5b98a57f363ed6764d5b3a12bfedf62f07aa16e1856a7ddc2a0bb190a959613"
3255
3905
  dependencies = [
3256
3906
  "atoi",
3257
3907
  "base64 0.22.1",
3258
- "bitflags 2.6.0",
3908
+ "bitflags 2.8.0",
3259
3909
  "byteorder",
3260
3910
  "chrono",
3261
3911
  "crc",
@@ -3263,7 +3913,6 @@ dependencies = [
3263
3913
  "etcetera",
3264
3914
  "futures-channel",
3265
3915
  "futures-core",
3266
- "futures-io",
3267
3916
  "futures-util",
3268
3917
  "hex",
3269
3918
  "hkdf",
@@ -3281,7 +3930,7 @@ dependencies = [
3281
3930
  "smallvec",
3282
3931
  "sqlx-core",
3283
3932
  "stringprep",
3284
- "thiserror",
3933
+ "thiserror 2.0.11",
3285
3934
  "tracing",
3286
3935
  "uuid",
3287
3936
  "whoami",
@@ -3289,9 +3938,9 @@ dependencies = [
3289
3938
 
3290
3939
  [[package]]
3291
3940
  name = "sqlx-sqlite"
3292
- version = "0.8.2"
3941
+ version = "0.8.3"
3293
3942
  source = "registry+https://github.com/rust-lang/crates.io-index"
3294
- checksum = "d5b2cf34a45953bfd3daaf3db0f7a7878ab9b7a6b91b422d24a7a9e4c857b680"
3943
+ checksum = "f85ca71d3a5b24e64e1d08dd8fe36c6c95c339a896cc33068148906784620540"
3295
3944
  dependencies = [
3296
3945
  "atoi",
3297
3946
  "chrono",
@@ -3312,6 +3961,12 @@ dependencies = [
3312
3961
  "uuid",
3313
3962
  ]
3314
3963
 
3964
+ [[package]]
3965
+ name = "stable_deref_trait"
3966
+ version = "1.2.0"
3967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3968
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3969
+
3315
3970
  [[package]]
3316
3971
  name = "stringprep"
3317
3972
  version = "0.1.5"
@@ -3348,9 +4003,9 @@ dependencies = [
3348
4003
 
3349
4004
  [[package]]
3350
4005
  name = "syn"
3351
- version = "2.0.85"
4006
+ version = "2.0.96"
3352
4007
  source = "registry+https://github.com/rust-lang/crates.io-index"
3353
- checksum = "5023162dfcd14ef8f32034d8bcd4cc5ddc61ef7a247c024a33e24e1f24d21b56"
4008
+ checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
3354
4009
  dependencies = [
3355
4010
  "proc-macro2",
3356
4011
  "quote",
@@ -3359,13 +4014,24 @@ dependencies = [
3359
4014
 
3360
4015
  [[package]]
3361
4016
  name = "sync_wrapper"
3362
- version = "1.0.1"
4017
+ version = "1.0.2"
3363
4018
  source = "registry+https://github.com/rust-lang/crates.io-index"
3364
- checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
4019
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3365
4020
  dependencies = [
3366
4021
  "futures-core",
3367
4022
  ]
3368
4023
 
4024
+ [[package]]
4025
+ name = "synstructure"
4026
+ version = "0.13.1"
4027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4028
+ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
4029
+ dependencies = [
4030
+ "proc-macro2",
4031
+ "quote",
4032
+ "syn 2.0.96",
4033
+ ]
4034
+
3369
4035
  [[package]]
3370
4036
  name = "target-lexicon"
3371
4037
  version = "0.12.16"
@@ -3374,12 +4040,13 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3374
4040
 
3375
4041
  [[package]]
3376
4042
  name = "tempfile"
3377
- version = "3.13.0"
4043
+ version = "3.15.0"
3378
4044
  source = "registry+https://github.com/rust-lang/crates.io-index"
3379
- checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
4045
+ checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
3380
4046
  dependencies = [
3381
4047
  "cfg-if",
3382
4048
  "fastrand",
4049
+ "getrandom",
3383
4050
  "once_cell",
3384
4051
  "rustix",
3385
4052
  "windows-sys 0.59.0",
@@ -3387,22 +4054,42 @@ dependencies = [
3387
4054
 
3388
4055
  [[package]]
3389
4056
  name = "thiserror"
3390
- version = "1.0.65"
4057
+ version = "1.0.69"
4058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4059
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
4060
+ dependencies = [
4061
+ "thiserror-impl 1.0.69",
4062
+ ]
4063
+
4064
+ [[package]]
4065
+ name = "thiserror"
4066
+ version = "2.0.11"
4067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4068
+ checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
4069
+ dependencies = [
4070
+ "thiserror-impl 2.0.11",
4071
+ ]
4072
+
4073
+ [[package]]
4074
+ name = "thiserror-impl"
4075
+ version = "1.0.69"
3391
4076
  source = "registry+https://github.com/rust-lang/crates.io-index"
3392
- checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5"
4077
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3393
4078
  dependencies = [
3394
- "thiserror-impl",
4079
+ "proc-macro2",
4080
+ "quote",
4081
+ "syn 2.0.96",
3395
4082
  ]
3396
4083
 
3397
4084
  [[package]]
3398
4085
  name = "thiserror-impl"
3399
- version = "1.0.65"
4086
+ version = "2.0.11"
3400
4087
  source = "registry+https://github.com/rust-lang/crates.io-index"
3401
- checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602"
4088
+ checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
3402
4089
  dependencies = [
3403
4090
  "proc-macro2",
3404
4091
  "quote",
3405
- "syn 2.0.85",
4092
+ "syn 2.0.96",
3406
4093
  ]
3407
4094
 
3408
4095
  [[package]]
@@ -3417,9 +4104,9 @@ dependencies = [
3417
4104
 
3418
4105
  [[package]]
3419
4106
  name = "time"
3420
- version = "0.3.36"
4107
+ version = "0.3.37"
3421
4108
  source = "registry+https://github.com/rust-lang/crates.io-index"
3422
- checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
4109
+ checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
3423
4110
  dependencies = [
3424
4111
  "deranged",
3425
4112
  "itoa",
@@ -3438,14 +4125,24 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3438
4125
 
3439
4126
  [[package]]
3440
4127
  name = "time-macros"
3441
- version = "0.2.18"
4128
+ version = "0.2.19"
3442
4129
  source = "registry+https://github.com/rust-lang/crates.io-index"
3443
- checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
4130
+ checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
3444
4131
  dependencies = [
3445
4132
  "num-conv",
3446
4133
  "time-core",
3447
4134
  ]
3448
4135
 
4136
+ [[package]]
4137
+ name = "tinystr"
4138
+ version = "0.7.6"
4139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4140
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
4141
+ dependencies = [
4142
+ "displaydoc",
4143
+ "zerovec",
4144
+ ]
4145
+
3449
4146
  [[package]]
3450
4147
  name = "tinytemplate"
3451
4148
  version = "1.2.1"
@@ -3458,9 +4155,9 @@ dependencies = [
3458
4155
 
3459
4156
  [[package]]
3460
4157
  name = "tinyvec"
3461
- version = "1.8.0"
4158
+ version = "1.8.1"
3462
4159
  source = "registry+https://github.com/rust-lang/crates.io-index"
3463
- checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
4160
+ checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
3464
4161
  dependencies = [
3465
4162
  "tinyvec_macros",
3466
4163
  ]
@@ -3473,9 +4170,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3473
4170
 
3474
4171
  [[package]]
3475
4172
  name = "tokio"
3476
- version = "1.41.0"
4173
+ version = "1.43.0"
3477
4174
  source = "registry+https://github.com/rust-lang/crates.io-index"
3478
- checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb"
4175
+ checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e"
3479
4176
  dependencies = [
3480
4177
  "backtrace",
3481
4178
  "bytes",
@@ -3489,33 +4186,52 @@ dependencies = [
3489
4186
  "windows-sys 0.52.0",
3490
4187
  ]
3491
4188
 
4189
+ [[package]]
4190
+ name = "tokio-io-timeout"
4191
+ version = "1.2.0"
4192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4193
+ checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
4194
+ dependencies = [
4195
+ "pin-project-lite",
4196
+ "tokio",
4197
+ ]
4198
+
3492
4199
  [[package]]
3493
4200
  name = "tokio-macros"
3494
- version = "2.4.0"
4201
+ version = "2.5.0"
3495
4202
  source = "registry+https://github.com/rust-lang/crates.io-index"
3496
- checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
4203
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3497
4204
  dependencies = [
3498
4205
  "proc-macro2",
3499
4206
  "quote",
3500
- "syn 2.0.85",
4207
+ "syn 2.0.96",
3501
4208
  ]
3502
4209
 
3503
4210
  [[package]]
3504
4211
  name = "tokio-rustls"
3505
- version = "0.26.0"
4212
+ version = "0.24.1"
3506
4213
  source = "registry+https://github.com/rust-lang/crates.io-index"
3507
- checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
4214
+ checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
3508
4215
  dependencies = [
3509
- "rustls",
3510
- "rustls-pki-types",
4216
+ "rustls 0.21.12",
4217
+ "tokio",
4218
+ ]
4219
+
4220
+ [[package]]
4221
+ name = "tokio-rustls"
4222
+ version = "0.26.1"
4223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4224
+ checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37"
4225
+ dependencies = [
4226
+ "rustls 0.23.21",
3511
4227
  "tokio",
3512
4228
  ]
3513
4229
 
3514
4230
  [[package]]
3515
4231
  name = "tokio-stream"
3516
- version = "0.1.16"
4232
+ version = "0.1.17"
3517
4233
  source = "registry+https://github.com/rust-lang/crates.io-index"
3518
- checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1"
4234
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
3519
4235
  dependencies = [
3520
4236
  "futures-core",
3521
4237
  "pin-project-lite",
@@ -3524,9 +4240,9 @@ dependencies = [
3524
4240
 
3525
4241
  [[package]]
3526
4242
  name = "tokio-util"
3527
- version = "0.7.12"
4243
+ version = "0.7.13"
3528
4244
  source = "registry+https://github.com/rust-lang/crates.io-index"
3529
- checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
4245
+ checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
3530
4246
  dependencies = [
3531
4247
  "bytes",
3532
4248
  "futures-core",
@@ -3544,6 +4260,65 @@ dependencies = [
3544
4260
  "serde",
3545
4261
  ]
3546
4262
 
4263
+ [[package]]
4264
+ name = "tower"
4265
+ version = "0.4.13"
4266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4267
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
4268
+ dependencies = [
4269
+ "futures-core",
4270
+ "futures-util",
4271
+ "pin-project",
4272
+ "pin-project-lite",
4273
+ "tokio",
4274
+ "tokio-util",
4275
+ "tower-layer",
4276
+ "tower-service",
4277
+ "tracing",
4278
+ ]
4279
+
4280
+ [[package]]
4281
+ name = "tower"
4282
+ version = "0.5.2"
4283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4284
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
4285
+ dependencies = [
4286
+ "futures-core",
4287
+ "futures-util",
4288
+ "pin-project-lite",
4289
+ "sync_wrapper",
4290
+ "tokio",
4291
+ "tower-layer",
4292
+ "tower-service",
4293
+ ]
4294
+
4295
+ [[package]]
4296
+ name = "tower-http"
4297
+ version = "0.4.4"
4298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4299
+ checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"
4300
+ dependencies = [
4301
+ "base64 0.21.7",
4302
+ "bitflags 2.8.0",
4303
+ "bytes",
4304
+ "futures-core",
4305
+ "futures-util",
4306
+ "http 0.2.12",
4307
+ "http-body 0.4.6",
4308
+ "http-range-header",
4309
+ "mime",
4310
+ "pin-project-lite",
4311
+ "tower-layer",
4312
+ "tower-service",
4313
+ "tracing",
4314
+ ]
4315
+
4316
+ [[package]]
4317
+ name = "tower-layer"
4318
+ version = "0.3.3"
4319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4320
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
4321
+
3547
4322
  [[package]]
3548
4323
  name = "tower-service"
3549
4324
  version = "0.3.3"
@@ -3552,9 +4327,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3552
4327
 
3553
4328
  [[package]]
3554
4329
  name = "tracing"
3555
- version = "0.1.40"
4330
+ version = "0.1.41"
3556
4331
  source = "registry+https://github.com/rust-lang/crates.io-index"
3557
- checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
4332
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3558
4333
  dependencies = [
3559
4334
  "log",
3560
4335
  "pin-project-lite",
@@ -3564,9 +4339,9 @@ dependencies = [
3564
4339
 
3565
4340
  [[package]]
3566
4341
  name = "tracing-actix-web"
3567
- version = "0.7.14"
4342
+ version = "0.7.15"
3568
4343
  source = "registry+https://github.com/rust-lang/crates.io-index"
3569
- checksum = "6b87073920bcce23e9f5cb0d2671e9f01d6803bb5229c159b2f5ce6806d73ffc"
4344
+ checksum = "54a9f5c1aca50ebebf074ee665b9f99f2e84906dcf6b993a0d0090edb835166d"
3570
4345
  dependencies = [
3571
4346
  "actix-web",
3572
4347
  "mutually_exclusive_features",
@@ -3577,20 +4352,20 @@ dependencies = [
3577
4352
 
3578
4353
  [[package]]
3579
4354
  name = "tracing-attributes"
3580
- version = "0.1.27"
4355
+ version = "0.1.28"
3581
4356
  source = "registry+https://github.com/rust-lang/crates.io-index"
3582
- checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
4357
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3583
4358
  dependencies = [
3584
4359
  "proc-macro2",
3585
4360
  "quote",
3586
- "syn 2.0.85",
4361
+ "syn 2.0.96",
3587
4362
  ]
3588
4363
 
3589
4364
  [[package]]
3590
4365
  name = "tracing-bunyan-formatter"
3591
- version = "0.3.9"
4366
+ version = "0.3.10"
3592
4367
  source = "registry+https://github.com/rust-lang/crates.io-index"
3593
- checksum = "b5c266b9ac83dedf0e0385ad78514949e6d89491269e7065bee51d2bb8ec7373"
4368
+ checksum = "2d637245a0d8774bd48df6482e086c59a8b5348a910c3b0579354045a9d82411"
3594
4369
  dependencies = [
3595
4370
  "ahash 0.8.11",
3596
4371
  "gethostname",
@@ -3606,9 +4381,9 @@ dependencies = [
3606
4381
 
3607
4382
  [[package]]
3608
4383
  name = "tracing-core"
3609
- version = "0.1.32"
4384
+ version = "0.1.33"
3610
4385
  source = "registry+https://github.com/rust-lang/crates.io-index"
3611
- checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
4386
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3612
4387
  dependencies = [
3613
4388
  "once_cell",
3614
4389
  "valuable",
@@ -3616,9 +4391,9 @@ dependencies = [
3616
4391
 
3617
4392
  [[package]]
3618
4393
  name = "tracing-error"
3619
- version = "0.2.0"
4394
+ version = "0.2.1"
3620
4395
  source = "registry+https://github.com/rust-lang/crates.io-index"
3621
- checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e"
4396
+ checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db"
3622
4397
  dependencies = [
3623
4398
  "tracing",
3624
4399
  "tracing-subscriber",
@@ -3648,9 +4423,9 @@ dependencies = [
3648
4423
 
3649
4424
  [[package]]
3650
4425
  name = "tracing-subscriber"
3651
- version = "0.3.18"
4426
+ version = "0.3.19"
3652
4427
  source = "registry+https://github.com/rust-lang/crates.io-index"
3653
- checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
4428
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
3654
4429
  dependencies = [
3655
4430
  "matchers",
3656
4431
  "nu-ansi-term",
@@ -3684,15 +4459,15 @@ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
3684
4459
 
3685
4460
  [[package]]
3686
4461
  name = "unicode-bidi"
3687
- version = "0.3.17"
4462
+ version = "0.3.18"
3688
4463
  source = "registry+https://github.com/rust-lang/crates.io-index"
3689
- checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
4464
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
3690
4465
 
3691
4466
  [[package]]
3692
4467
  name = "unicode-ident"
3693
- version = "1.0.13"
4468
+ version = "1.0.15"
3694
4469
  source = "registry+https://github.com/rust-lang/crates.io-index"
3695
- checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
4470
+ checksum = "11cd88e12b17c6494200a9c1b683a04fcac9573ed74cd1b62aeb2727c5592243"
3696
4471
 
3697
4472
  [[package]]
3698
4473
  name = "unicode-normalization"
@@ -3715,18 +4490,18 @@ version = "1.12.0"
3715
4490
  source = "registry+https://github.com/rust-lang/crates.io-index"
3716
4491
  checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3717
4492
 
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
4493
  [[package]]
3725
4494
  name = "unindent"
3726
4495
  version = "0.2.3"
3727
4496
  source = "registry+https://github.com/rust-lang/crates.io-index"
3728
4497
  checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
3729
4498
 
4499
+ [[package]]
4500
+ name = "unsafe-libyaml"
4501
+ version = "0.2.11"
4502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4503
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
4504
+
3730
4505
  [[package]]
3731
4506
  name = "untrusted"
3732
4507
  version = "0.9.0"
@@ -3735,13 +4510,14 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3735
4510
 
3736
4511
  [[package]]
3737
4512
  name = "url"
3738
- version = "2.5.2"
4513
+ version = "2.5.4"
3739
4514
  source = "registry+https://github.com/rust-lang/crates.io-index"
3740
- checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
4515
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3741
4516
  dependencies = [
3742
4517
  "form_urlencoded",
3743
4518
  "idna",
3744
4519
  "percent-encoding",
4520
+ "serde",
3745
4521
  ]
3746
4522
 
3747
4523
  [[package]]
@@ -3750,20 +4526,32 @@ version = "2.1.3"
3750
4526
  source = "registry+https://github.com/rust-lang/crates.io-index"
3751
4527
  checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
3752
4528
 
4529
+ [[package]]
4530
+ name = "utf16_iter"
4531
+ version = "1.0.5"
4532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4533
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
4534
+
4535
+ [[package]]
4536
+ name = "utf8_iter"
4537
+ version = "1.0.4"
4538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4539
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4540
+
3753
4541
  [[package]]
3754
4542
  name = "uuid"
3755
- version = "1.11.0"
4543
+ version = "1.12.1"
3756
4544
  source = "registry+https://github.com/rust-lang/crates.io-index"
3757
- checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
4545
+ checksum = "b3758f5e68192bb96cc8f9b7e2c2cfdabb435499a28499a42f8f984092adad4b"
3758
4546
  dependencies = [
3759
4547
  "getrandom",
3760
4548
  ]
3761
4549
 
3762
4550
  [[package]]
3763
4551
  name = "valuable"
3764
- version = "0.1.0"
4552
+ version = "0.1.1"
3765
4553
  source = "registry+https://github.com/rust-lang/crates.io-index"
3766
- checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
4554
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3767
4555
 
3768
4556
  [[package]]
3769
4557
  name = "vcpkg"
@@ -3810,47 +4598,48 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
3810
4598
 
3811
4599
  [[package]]
3812
4600
  name = "wasm-bindgen"
3813
- version = "0.2.95"
4601
+ version = "0.2.100"
3814
4602
  source = "registry+https://github.com/rust-lang/crates.io-index"
3815
- checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
4603
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3816
4604
  dependencies = [
3817
4605
  "cfg-if",
3818
4606
  "once_cell",
4607
+ "rustversion",
3819
4608
  "wasm-bindgen-macro",
3820
4609
  ]
3821
4610
 
3822
4611
  [[package]]
3823
4612
  name = "wasm-bindgen-backend"
3824
- version = "0.2.95"
4613
+ version = "0.2.100"
3825
4614
  source = "registry+https://github.com/rust-lang/crates.io-index"
3826
- checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
4615
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3827
4616
  dependencies = [
3828
4617
  "bumpalo",
3829
4618
  "log",
3830
- "once_cell",
3831
4619
  "proc-macro2",
3832
4620
  "quote",
3833
- "syn 2.0.85",
4621
+ "syn 2.0.96",
3834
4622
  "wasm-bindgen-shared",
3835
4623
  ]
3836
4624
 
3837
4625
  [[package]]
3838
4626
  name = "wasm-bindgen-futures"
3839
- version = "0.4.45"
4627
+ version = "0.4.50"
3840
4628
  source = "registry+https://github.com/rust-lang/crates.io-index"
3841
- checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
4629
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
3842
4630
  dependencies = [
3843
4631
  "cfg-if",
3844
4632
  "js-sys",
4633
+ "once_cell",
3845
4634
  "wasm-bindgen",
3846
4635
  "web-sys",
3847
4636
  ]
3848
4637
 
3849
4638
  [[package]]
3850
4639
  name = "wasm-bindgen-macro"
3851
- version = "0.2.95"
4640
+ version = "0.2.100"
3852
4641
  source = "registry+https://github.com/rust-lang/crates.io-index"
3853
- checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
4642
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3854
4643
  dependencies = [
3855
4644
  "quote",
3856
4645
  "wasm-bindgen-macro-support",
@@ -3858,28 +4647,41 @@ dependencies = [
3858
4647
 
3859
4648
  [[package]]
3860
4649
  name = "wasm-bindgen-macro-support"
3861
- version = "0.2.95"
4650
+ version = "0.2.100"
3862
4651
  source = "registry+https://github.com/rust-lang/crates.io-index"
3863
- checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
4652
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3864
4653
  dependencies = [
3865
4654
  "proc-macro2",
3866
4655
  "quote",
3867
- "syn 2.0.85",
4656
+ "syn 2.0.96",
3868
4657
  "wasm-bindgen-backend",
3869
4658
  "wasm-bindgen-shared",
3870
4659
  ]
3871
4660
 
3872
4661
  [[package]]
3873
4662
  name = "wasm-bindgen-shared"
3874
- version = "0.2.95"
4663
+ version = "0.2.100"
3875
4664
  source = "registry+https://github.com/rust-lang/crates.io-index"
3876
- checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
4665
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
4666
+ dependencies = [
4667
+ "unicode-ident",
4668
+ ]
3877
4669
 
3878
4670
  [[package]]
3879
4671
  name = "web-sys"
3880
- version = "0.3.72"
4672
+ version = "0.3.77"
4673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4674
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
4675
+ dependencies = [
4676
+ "js-sys",
4677
+ "wasm-bindgen",
4678
+ ]
4679
+
4680
+ [[package]]
4681
+ name = "web-time"
4682
+ version = "1.1.0"
3881
4683
  source = "registry+https://github.com/rust-lang/crates.io-index"
3882
- checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
4684
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3883
4685
  dependencies = [
3884
4686
  "js-sys",
3885
4687
  "wasm-bindgen",
@@ -3887,13 +4689,25 @@ dependencies = [
3887
4689
 
3888
4690
  [[package]]
3889
4691
  name = "webpki-roots"
3890
- version = "0.26.6"
4692
+ version = "0.26.7"
3891
4693
  source = "registry+https://github.com/rust-lang/crates.io-index"
3892
- checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958"
4694
+ checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e"
3893
4695
  dependencies = [
3894
4696
  "rustls-pki-types",
3895
4697
  ]
3896
4698
 
4699
+ [[package]]
4700
+ name = "which"
4701
+ version = "4.4.2"
4702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4703
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
4704
+ dependencies = [
4705
+ "either",
4706
+ "home",
4707
+ "once_cell",
4708
+ "rustix",
4709
+ ]
4710
+
3897
4711
  [[package]]
3898
4712
  name = "whoami"
3899
4713
  version = "1.5.2"
@@ -4133,9 +4947,9 @@ dependencies = [
4133
4947
  "base64 0.22.1",
4134
4948
  "deadpool",
4135
4949
  "futures",
4136
- "http 1.1.0",
4950
+ "http 1.2.0",
4137
4951
  "http-body-util",
4138
- "hyper",
4952
+ "hyper 1.5.2",
4139
4953
  "hyper-util",
4140
4954
  "log",
4141
4955
  "once_cell",
@@ -4146,6 +4960,18 @@ dependencies = [
4146
4960
  "url",
4147
4961
  ]
4148
4962
 
4963
+ [[package]]
4964
+ name = "write16"
4965
+ version = "1.0.0"
4966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4967
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
4968
+
4969
+ [[package]]
4970
+ name = "writeable"
4971
+ version = "0.5.5"
4972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4973
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4974
+
4149
4975
  [[package]]
4150
4976
  name = "yaml-rust"
4151
4977
  version = "0.4.5"
@@ -4155,6 +4981,30 @@ dependencies = [
4155
4981
  "linked-hash-map",
4156
4982
  ]
4157
4983
 
4984
+ [[package]]
4985
+ name = "yoke"
4986
+ version = "0.7.5"
4987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4988
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
4989
+ dependencies = [
4990
+ "serde",
4991
+ "stable_deref_trait",
4992
+ "yoke-derive",
4993
+ "zerofrom",
4994
+ ]
4995
+
4996
+ [[package]]
4997
+ name = "yoke-derive"
4998
+ version = "0.7.5"
4999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5000
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
5001
+ dependencies = [
5002
+ "proc-macro2",
5003
+ "quote",
5004
+ "syn 2.0.96",
5005
+ "synstructure",
5006
+ ]
5007
+
4158
5008
  [[package]]
4159
5009
  name = "zerocopy"
4160
5010
  version = "0.7.35"
@@ -4173,7 +5023,28 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4173
5023
  dependencies = [
4174
5024
  "proc-macro2",
4175
5025
  "quote",
4176
- "syn 2.0.85",
5026
+ "syn 2.0.96",
5027
+ ]
5028
+
5029
+ [[package]]
5030
+ name = "zerofrom"
5031
+ version = "0.1.5"
5032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5033
+ checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
5034
+ dependencies = [
5035
+ "zerofrom-derive",
5036
+ ]
5037
+
5038
+ [[package]]
5039
+ name = "zerofrom-derive"
5040
+ version = "0.1.5"
5041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5042
+ checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
5043
+ dependencies = [
5044
+ "proc-macro2",
5045
+ "quote",
5046
+ "syn 2.0.96",
5047
+ "synstructure",
4177
5048
  ]
4178
5049
 
4179
5050
  [[package]]
@@ -4182,6 +5053,28 @@ version = "1.8.1"
4182
5053
  source = "registry+https://github.com/rust-lang/crates.io-index"
4183
5054
  checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
4184
5055
 
5056
+ [[package]]
5057
+ name = "zerovec"
5058
+ version = "0.10.4"
5059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5060
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
5061
+ dependencies = [
5062
+ "yoke",
5063
+ "zerofrom",
5064
+ "zerovec-derive",
5065
+ ]
5066
+
5067
+ [[package]]
5068
+ name = "zerovec-derive"
5069
+ version = "0.10.3"
5070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5071
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
5072
+ dependencies = [
5073
+ "proc-macro2",
5074
+ "quote",
5075
+ "syn 2.0.96",
5076
+ ]
5077
+
4185
5078
  [[package]]
4186
5079
  name = "zstd"
4187
5080
  version = "0.13.2"