python-auditor 0.4.0__tar.gz → 0.5.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 (104) hide show
  1. {python_auditor-0.4.0 → python_auditor-0.5.0}/Cargo.lock +816 -594
  2. {python_auditor-0.4.0 → python_auditor-0.5.0}/Cargo.toml +6 -6
  3. {python_auditor-0.4.0 → python_auditor-0.5.0}/PKG-INFO +1 -1
  4. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/Cargo.toml +16 -11
  5. python_auditor-0.5.0/local_dependencies/auditor/benches/README.md +22 -0
  6. python_auditor-0.5.0/local_dependencies/auditor/benches/benchmark_with_http_request.rs +1106 -0
  7. python_auditor-0.5.0/local_dependencies/auditor/benches/configuration/bench.yaml +2 -0
  8. python_auditor-0.5.0/local_dependencies/auditor/benches/configuration.rs +26 -0
  9. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/client/mod.rs +17 -6
  10. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/configuration.rs +1 -1
  11. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/meta.rs +0 -2
  12. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/record.rs +2 -5
  13. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/metrics/mod.rs +3 -3
  14. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/routes/advanced_record_filters.rs +7 -7
  15. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/routes/get.rs +0 -1
  16. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/routes/health_check.rs +6 -2
  17. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/routes/record_handlers.rs +0 -1
  18. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/routes/update.rs +0 -1
  19. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/add.rs +2 -2
  20. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/advanced_queries.rs +9 -9
  21. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/client.rs +3 -3
  22. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/get.rs +2 -2
  23. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/get_one_record.rs +1 -1
  24. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/get_since.rs +4 -4
  25. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/update.rs +2 -2
  26. {python_auditor-0.4.0 → python_auditor-0.5.0}/src/client.rs +0 -1
  27. {python_auditor-0.4.0 → python_auditor-0.5.0}/.cargo/config.toml +0 -0
  28. {python_auditor-0.4.0 → python_auditor-0.5.0}/.readthedocs.yaml +0 -0
  29. {python_auditor-0.4.0 → python_auditor-0.5.0}/README.md +0 -0
  30. {python_auditor-0.4.0 → python_auditor-0.5.0}/docs/Makefile +0 -0
  31. {python_auditor-0.4.0 → python_auditor-0.5.0}/docs/api.rst +0 -0
  32. {python_auditor-0.4.0 → python_auditor-0.5.0}/docs/changelog.rst +0 -0
  33. {python_auditor-0.4.0 → python_auditor-0.5.0}/docs/conf.py +0 -0
  34. {python_auditor-0.4.0 → python_auditor-0.5.0}/docs/examples.rst +0 -0
  35. {python_auditor-0.4.0 → python_auditor-0.5.0}/docs/index.rst +0 -0
  36. {python_auditor-0.4.0 → python_auditor-0.5.0}/docs/make.bat +0 -0
  37. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.env +0 -0
  38. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-0de2b3aa2731428f5c749d7c166ab8be945eb01c6515fb3db329e45e39fd7d12.json +0 -0
  39. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-17f4686d8430a057a076f44db1d54859c3fb4f569d162d7095f8734b87ab73b7.json +0 -0
  40. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-36fad28130fa066e2182edb3019f5d7e77a635c6116aa9c8a5b358114fb8c57c.json +0 -0
  41. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-3da9ad5248c244c040b47e27cbbca081b156fd5b88bffac65be6bb7ba7aabafe.json +0 -0
  42. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-4e72ae54be447c525721306d208b926c647e3f8149bbd428a97ecbc9f8bceca5.json +0 -0
  43. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-50c6776ca37b9b56b92848573f32d72f44631c9ff702bb468dc7a7f5520a6f48.json +0 -0
  44. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-520d88dec0363b824ca4af064510c2e837819eb7877850ff8077643a5bdbe3e2.json +0 -0
  45. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-622a95c18c6d5bb7d69e5f557e4742a07db9389fb810005f9e8bc142686c7846.json +0 -0
  46. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-6ba76bcc9e877d3b6e353a4b85a1115d4821d4304b91593614ea39597ae29bc1.json +0 -0
  47. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-6c7c9b840bd8bf36dd80484f6c82787423b2304ccff83a98a57ec398c1b46ddb.json +0 -0
  48. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-80a4ffc9c5af2cf8570c4543df24cc9fc9604f98bc4716ae4f99479af245774e.json +0 -0
  49. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-b205b9e460541ad09dcd6de4d75df490a88f4b31b3ef45a9ec68047c39081eb5.json +0 -0
  50. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-b4e6b925764d8bdabd3aa358f357fc59f0e71b39e06c82e332185cc9ab0b04ed.json +0 -0
  51. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-e6c7e05a8f9aac8353000db25e8ac0bc54f7ff067ab70715b8659cb835f45af6.json +0 -0
  52. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-f9013f697e7b81594947530172248a0400cfbf7e316d0224b4692475a12a7d7f.json +0 -0
  53. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/build.rs +0 -0
  54. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/configuration/base.yaml +0 -0
  55. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/configuration/local.yaml +0 -0
  56. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/configuration/priority-plugin/base.yml +0 -0
  57. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/configuration/production.yaml +0 -0
  58. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
  59. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +0 -0
  60. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +0 -0
  61. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_single_entry.py +0 -0
  62. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/constants.rs +0 -0
  63. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/component.rs +0 -0
  64. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/mod.rs +0 -0
  65. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/score.rs +0 -0
  66. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/validamount.rs +0 -0
  67. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/validname.rs +0 -0
  68. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/validvalue.rs +0 -0
  69. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/error.rs +0 -0
  70. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/lib.rs +0 -0
  71. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/macros.rs +0 -0
  72. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/main.rs +0 -0
  73. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/metrics/database.rs +0 -0
  74. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/routes/add.rs +0 -0
  75. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/routes/mod.rs +0 -0
  76. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/startup.rs +0 -0
  77. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/src/telemetry.rs +0 -0
  78. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
  79. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/helpers.rs +0 -0
  80. {python_auditor-0.4.0 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/main.rs +0 -0
  81. {python_auditor-0.4.0 → python_auditor-0.5.0}/pyproject.toml +0 -0
  82. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_add_update.py +0 -0
  83. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_add_update_blocking.py +0 -0
  84. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_advanced_query.py +0 -0
  85. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_advanced_query_blocking.py +0 -0
  86. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_bulk_insert.py +0 -0
  87. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_bulk_insert_blocking.py +0 -0
  88. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_components.py +0 -0
  89. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_components_blocking.py +0 -0
  90. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_eq.py +0 -0
  91. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_get_since.py +0 -0
  92. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_get_since_blocking.py +0 -0
  93. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_get_single_record.py +0 -0
  94. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_get_single_record_blocking.py +0 -0
  95. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_meta.py +0 -0
  96. {python_auditor-0.4.0 → python_auditor-0.5.0}/scripts/test_meta_blocking.py +0 -0
  97. {python_auditor-0.4.0 → python_auditor-0.5.0}/src/blocking_client.rs +0 -0
  98. {python_auditor-0.4.0 → python_auditor-0.5.0}/src/builder.rs +0 -0
  99. {python_auditor-0.4.0 → python_auditor-0.5.0}/src/domain/component.rs +0 -0
  100. {python_auditor-0.4.0 → python_auditor-0.5.0}/src/domain/meta.rs +0 -0
  101. {python_auditor-0.4.0 → python_auditor-0.5.0}/src/domain/mod.rs +0 -0
  102. {python_auditor-0.4.0 → python_auditor-0.5.0}/src/domain/record.rs +0 -0
  103. {python_auditor-0.4.0 → python_auditor-0.5.0}/src/domain/score.rs +0 -0
  104. {python_auditor-0.4.0 → python_auditor-0.5.0}/src/lib.rs +0 -0
@@ -8,7 +8,7 @@ version = "0.5.2"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
9
  checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
10
10
  dependencies = [
11
- "bitflags 2.4.2",
11
+ "bitflags 2.5.0",
12
12
  "bytes",
13
13
  "futures-core",
14
14
  "futures-sink",
@@ -21,17 +21,17 @@ dependencies = [
21
21
 
22
22
  [[package]]
23
23
  name = "actix-http"
24
- version = "3.5.1"
24
+ version = "3.6.0"
25
25
  source = "registry+https://github.com/rust-lang/crates.io-index"
26
- checksum = "129d4c88e98860e1758c5de288d1632b07970a16d59bdf7b8d66053d582bb71f"
26
+ checksum = "d223b13fd481fc0d1f83bb12659ae774d9e3601814c68a0bc539731698cca743"
27
27
  dependencies = [
28
28
  "actix-codec",
29
29
  "actix-rt",
30
30
  "actix-service",
31
31
  "actix-utils",
32
- "ahash 0.8.7",
32
+ "ahash 0.8.11",
33
33
  "base64 0.21.7",
34
- "bitflags 2.4.2",
34
+ "bitflags 2.5.0",
35
35
  "brotli",
36
36
  "bytes",
37
37
  "bytestring",
@@ -39,8 +39,8 @@ dependencies = [
39
39
  "encoding_rs",
40
40
  "flate2",
41
41
  "futures-core",
42
- "h2",
43
- "http",
42
+ "h2 0.3.26",
43
+ "http 0.2.12",
44
44
  "httparse",
45
45
  "httpdate",
46
46
  "itoa",
@@ -49,7 +49,7 @@ dependencies = [
49
49
  "mime",
50
50
  "percent-encoding",
51
51
  "pin-project-lite",
52
- "rand 0.8.5",
52
+ "rand",
53
53
  "sha1",
54
54
  "smallvec",
55
55
  "tokio",
@@ -65,7 +65,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
65
65
  checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
66
66
  dependencies = [
67
67
  "quote",
68
- "syn 2.0.48",
68
+ "syn 2.0.60",
69
69
  ]
70
70
 
71
71
  [[package]]
@@ -75,7 +75,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
75
75
  checksum = "d22475596539443685426b6bdadb926ad0ecaefdfc5fb05e5e3441f15463c511"
76
76
  dependencies = [
77
77
  "bytestring",
78
- "http",
78
+ "http 0.2.12",
79
79
  "regex",
80
80
  "serde",
81
81
  "tracing",
@@ -131,9 +131,9 @@ dependencies = [
131
131
 
132
132
  [[package]]
133
133
  name = "actix-web"
134
- version = "4.4.1"
134
+ version = "4.5.1"
135
135
  source = "registry+https://github.com/rust-lang/crates.io-index"
136
- checksum = "e43428f3bf11dee6d166b00ec2df4e3aa8cc1606aaa0b7433c146852e2f4e03b"
136
+ checksum = "43a6556ddebb638c2358714d853257ed226ece6023ef9364f23f0c70737ea984"
137
137
  dependencies = [
138
138
  "actix-codec",
139
139
  "actix-http",
@@ -144,7 +144,7 @@ dependencies = [
144
144
  "actix-service",
145
145
  "actix-utils",
146
146
  "actix-web-codegen",
147
- "ahash 0.8.7",
147
+ "ahash 0.8.11",
148
148
  "bytes",
149
149
  "bytestring",
150
150
  "cfg-if",
@@ -178,14 +178,14 @@ dependencies = [
178
178
  "actix-router",
179
179
  "proc-macro2",
180
180
  "quote",
181
- "syn 2.0.48",
181
+ "syn 2.0.60",
182
182
  ]
183
183
 
184
184
  [[package]]
185
185
  name = "actix-web-opentelemetry"
186
- version = "0.16.0"
186
+ version = "0.17.0"
187
187
  source = "registry+https://github.com/rust-lang/crates.io-index"
188
- checksum = "d164a9fe425132ff4ae92ce04912f7e31529b48a6e7cdce769ab45d272de285c"
188
+ checksum = "d6e0327e7b731c61b77fb54b278477aa3ebd09752bde38d169863167636e2d48"
189
189
  dependencies = [
190
190
  "actix-http",
191
191
  "actix-web",
@@ -214,23 +214,23 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
214
214
 
215
215
  [[package]]
216
216
  name = "ahash"
217
- version = "0.7.7"
217
+ version = "0.7.8"
218
218
  source = "registry+https://github.com/rust-lang/crates.io-index"
219
- checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd"
219
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
220
220
  dependencies = [
221
- "getrandom 0.2.12",
221
+ "getrandom",
222
222
  "once_cell",
223
223
  "version_check",
224
224
  ]
225
225
 
226
226
  [[package]]
227
227
  name = "ahash"
228
- version = "0.8.7"
228
+ version = "0.8.11"
229
229
  source = "registry+https://github.com/rust-lang/crates.io-index"
230
- checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
230
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
231
231
  dependencies = [
232
232
  "cfg-if",
233
- "getrandom 0.2.12",
233
+ "getrandom",
234
234
  "once_cell",
235
235
  "version_check",
236
236
  "zerocopy",
@@ -238,9 +238,9 @@ dependencies = [
238
238
 
239
239
  [[package]]
240
240
  name = "aho-corasick"
241
- version = "1.1.2"
241
+ version = "1.1.3"
242
242
  source = "registry+https://github.com/rust-lang/crates.io-index"
243
- checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
243
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
244
244
  dependencies = [
245
245
  "memchr",
246
246
  ]
@@ -262,9 +262,9 @@ dependencies = [
262
262
 
263
263
  [[package]]
264
264
  name = "allocator-api2"
265
- version = "0.2.16"
265
+ version = "0.2.18"
266
266
  source = "registry+https://github.com/rust-lang/crates.io-index"
267
- checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
267
+ checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
268
268
 
269
269
  [[package]]
270
270
  name = "android-tzdata"
@@ -281,11 +281,23 @@ dependencies = [
281
281
  "libc",
282
282
  ]
283
283
 
284
+ [[package]]
285
+ name = "anes"
286
+ version = "0.1.6"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
289
+
290
+ [[package]]
291
+ name = "anstyle"
292
+ version = "1.0.6"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
295
+
284
296
  [[package]]
285
297
  name = "anyhow"
286
- version = "1.0.79"
298
+ version = "1.0.82"
287
299
  source = "registry+https://github.com/rust-lang/crates.io-index"
288
- checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
300
+ checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519"
289
301
 
290
302
  [[package]]
291
303
  name = "assert-json-diff"
@@ -297,26 +309,15 @@ dependencies = [
297
309
  "serde_json",
298
310
  ]
299
311
 
300
- [[package]]
301
- name = "async-channel"
302
- version = "1.9.0"
303
- source = "registry+https://github.com/rust-lang/crates.io-index"
304
- checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
305
- dependencies = [
306
- "concurrent-queue",
307
- "event-listener",
308
- "futures-core",
309
- ]
310
-
311
312
  [[package]]
312
313
  name = "async-trait"
313
- version = "0.1.77"
314
+ version = "0.1.80"
314
315
  source = "registry+https://github.com/rust-lang/crates.io-index"
315
- checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
316
+ checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca"
316
317
  dependencies = [
317
318
  "proc-macro2",
318
319
  "quote",
319
- "syn 2.0.48",
320
+ "syn 2.0.60",
320
321
  ]
321
322
 
322
323
  [[package]]
@@ -328,19 +329,9 @@ dependencies = [
328
329
  "num-traits",
329
330
  ]
330
331
 
331
- [[package]]
332
- name = "atomic-write-file"
333
- version = "0.1.2"
334
- source = "registry+https://github.com/rust-lang/crates.io-index"
335
- checksum = "edcdbedc2236483ab103a53415653d6b4442ea6141baf1ffa85df29635e88436"
336
- dependencies = [
337
- "nix",
338
- "rand 0.8.5",
339
- ]
340
-
341
332
  [[package]]
342
333
  name = "auditor"
343
- version = "0.4.0"
334
+ version = "0.5.0"
344
335
  dependencies = [
345
336
  "actix-web",
346
337
  "actix-web-opentelemetry",
@@ -348,8 +339,10 @@ dependencies = [
348
339
  "chrono",
349
340
  "claims",
350
341
  "config",
342
+ "criterion",
343
+ "criterion-macro",
351
344
  "fake",
352
- "itertools",
345
+ "itertools 0.12.1",
353
346
  "num-traits",
354
347
  "once_cell",
355
348
  "opentelemetry",
@@ -359,14 +352,15 @@ dependencies = [
359
352
  "prometheus",
360
353
  "quickcheck",
361
354
  "quickcheck_macros",
362
- "rand 0.8.5",
355
+ "rand",
356
+ "rand_distr",
363
357
  "regex",
364
358
  "reqwest",
365
359
  "secrecy",
366
360
  "serde",
367
361
  "serde-aux",
368
362
  "serde_json",
369
- "serde_qs 0.12.0",
363
+ "serde_qs",
370
364
  "serde_with",
371
365
  "sqlx",
372
366
  "thiserror",
@@ -384,7 +378,7 @@ dependencies = [
384
378
 
385
379
  [[package]]
386
380
  name = "auditor-priority-plugin"
387
- version = "0.4.0"
381
+ version = "0.5.0"
388
382
  dependencies = [
389
383
  "actix-web",
390
384
  "actix-web-opentelemetry",
@@ -411,7 +405,7 @@ dependencies = [
411
405
 
412
406
  [[package]]
413
407
  name = "auditor-slurm-collector"
414
- version = "0.4.0"
408
+ version = "0.5.0"
415
409
  dependencies = [
416
410
  "anyhow",
417
411
  "auditor",
@@ -420,7 +414,7 @@ dependencies = [
420
414
  "color-eyre",
421
415
  "config",
422
416
  "fake",
423
- "itertools",
417
+ "itertools 0.12.1",
424
418
  "once_cell",
425
419
  "regex",
426
420
  "serde",
@@ -436,7 +430,7 @@ dependencies = [
436
430
 
437
431
  [[package]]
438
432
  name = "auditor-slurm-epilog-collector"
439
- version = "0.4.0"
433
+ version = "0.5.0"
440
434
  dependencies = [
441
435
  "anyhow",
442
436
  "auditor",
@@ -453,15 +447,15 @@ dependencies = [
453
447
 
454
448
  [[package]]
455
449
  name = "autocfg"
456
- version = "1.1.0"
450
+ version = "1.2.0"
457
451
  source = "registry+https://github.com/rust-lang/crates.io-index"
458
- checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
452
+ checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
459
453
 
460
454
  [[package]]
461
455
  name = "backtrace"
462
- version = "0.3.69"
456
+ version = "0.3.71"
463
457
  source = "registry+https://github.com/rust-lang/crates.io-index"
464
- checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
458
+ checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
465
459
  dependencies = [
466
460
  "addr2line",
467
461
  "cc",
@@ -484,6 +478,12 @@ version = "0.21.7"
484
478
  source = "registry+https://github.com/rust-lang/crates.io-index"
485
479
  checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
486
480
 
481
+ [[package]]
482
+ name = "base64"
483
+ version = "0.22.0"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51"
486
+
487
487
  [[package]]
488
488
  name = "base64ct"
489
489
  version = "1.6.0"
@@ -507,9 +507,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
507
507
 
508
508
  [[package]]
509
509
  name = "bitflags"
510
- version = "2.4.2"
510
+ version = "2.5.0"
511
511
  source = "registry+https://github.com/rust-lang/crates.io-index"
512
- checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
512
+ checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
513
513
  dependencies = [
514
514
  "serde",
515
515
  ]
@@ -525,9 +525,9 @@ dependencies = [
525
525
 
526
526
  [[package]]
527
527
  name = "brotli"
528
- version = "3.4.0"
528
+ version = "3.5.0"
529
529
  source = "registry+https://github.com/rust-lang/crates.io-index"
530
- checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f"
530
+ checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391"
531
531
  dependencies = [
532
532
  "alloc-no-stdlib",
533
533
  "alloc-stdlib",
@@ -546,9 +546,9 @@ dependencies = [
546
546
 
547
547
  [[package]]
548
548
  name = "bumpalo"
549
- version = "3.14.0"
549
+ version = "3.16.0"
550
550
  source = "registry+https://github.com/rust-lang/crates.io-index"
551
- checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
551
+ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
552
552
 
553
553
  [[package]]
554
554
  name = "byteorder"
@@ -558,9 +558,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
558
558
 
559
559
  [[package]]
560
560
  name = "bytes"
561
- version = "1.5.0"
561
+ version = "1.6.0"
562
562
  source = "registry+https://github.com/rust-lang/crates.io-index"
563
- checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
563
+ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
564
564
 
565
565
  [[package]]
566
566
  name = "bytestring"
@@ -571,14 +571,21 @@ dependencies = [
571
571
  "bytes",
572
572
  ]
573
573
 
574
+ [[package]]
575
+ name = "cast"
576
+ version = "0.3.0"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
579
+
574
580
  [[package]]
575
581
  name = "cc"
576
- version = "1.0.83"
582
+ version = "1.0.95"
577
583
  source = "registry+https://github.com/rust-lang/crates.io-index"
578
- checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
584
+ checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b"
579
585
  dependencies = [
580
586
  "jobserver",
581
587
  "libc",
588
+ "once_cell",
582
589
  ]
583
590
 
584
591
  [[package]]
@@ -589,9 +596,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
589
596
 
590
597
  [[package]]
591
598
  name = "chrono"
592
- version = "0.4.33"
599
+ version = "0.4.38"
593
600
  source = "registry+https://github.com/rust-lang/crates.io-index"
594
- checksum = "9f13690e35a5e4ace198e7beea2895d29f3a9cc55015fcebe6336bd2010af9eb"
601
+ checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
595
602
  dependencies = [
596
603
  "android-tzdata",
597
604
  "iana-time-zone",
@@ -599,7 +606,34 @@ dependencies = [
599
606
  "num-traits",
600
607
  "serde",
601
608
  "wasm-bindgen",
602
- "windows-targets 0.52.0",
609
+ "windows-targets 0.52.5",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "ciborium"
614
+ version = "0.2.2"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
617
+ dependencies = [
618
+ "ciborium-io",
619
+ "ciborium-ll",
620
+ "serde",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "ciborium-io"
625
+ version = "0.2.2"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
628
+
629
+ [[package]]
630
+ name = "ciborium-ll"
631
+ version = "0.2.2"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
634
+ dependencies = [
635
+ "ciborium-io",
636
+ "half",
603
637
  ]
604
638
 
605
639
  [[package]]
@@ -611,11 +645,36 @@ dependencies = [
611
645
  "autocfg",
612
646
  ]
613
647
 
648
+ [[package]]
649
+ name = "clap"
650
+ version = "4.5.4"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
653
+ dependencies = [
654
+ "clap_builder",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "clap_builder"
659
+ version = "4.5.2"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
662
+ dependencies = [
663
+ "anstyle",
664
+ "clap_lex",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "clap_lex"
669
+ version = "0.7.0"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
672
+
614
673
  [[package]]
615
674
  name = "color-eyre"
616
- version = "0.6.2"
675
+ version = "0.6.3"
617
676
  source = "registry+https://github.com/rust-lang/crates.io-index"
618
- checksum = "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204"
677
+ checksum = "55146f5e46f237f7423d74111267d4597b59b0dad0ffaf7303bce9945d843ad5"
619
678
  dependencies = [
620
679
  "backtrace",
621
680
  "color-spantrace",
@@ -638,15 +697,6 @@ dependencies = [
638
697
  "tracing-error",
639
698
  ]
640
699
 
641
- [[package]]
642
- name = "concurrent-queue"
643
- version = "2.4.0"
644
- source = "registry+https://github.com/rust-lang/crates.io-index"
645
- checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363"
646
- dependencies = [
647
- "crossbeam-utils",
648
- ]
649
-
650
700
  [[package]]
651
701
  name = "config"
652
702
  version = "0.13.4"
@@ -689,16 +739,6 @@ dependencies = [
689
739
  "version_check",
690
740
  ]
691
741
 
692
- [[package]]
693
- name = "core-foundation"
694
- version = "0.9.4"
695
- source = "registry+https://github.com/rust-lang/crates.io-index"
696
- checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
697
- dependencies = [
698
- "core-foundation-sys",
699
- "libc",
700
- ]
701
-
702
742
  [[package]]
703
743
  name = "core-foundation-sys"
704
744
  version = "0.8.6"
@@ -716,9 +756,9 @@ dependencies = [
716
756
 
717
757
  [[package]]
718
758
  name = "crc"
719
- version = "3.0.1"
759
+ version = "3.2.1"
720
760
  source = "registry+https://github.com/rust-lang/crates.io-index"
721
- checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe"
761
+ checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
722
762
  dependencies = [
723
763
  "crc-catalog",
724
764
  ]
@@ -731,18 +771,85 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
731
771
 
732
772
  [[package]]
733
773
  name = "crc32fast"
734
- version = "1.3.2"
774
+ version = "1.4.0"
735
775
  source = "registry+https://github.com/rust-lang/crates.io-index"
736
- checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
776
+ checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
737
777
  dependencies = [
738
778
  "cfg-if",
739
779
  ]
740
780
 
781
+ [[package]]
782
+ name = "criterion"
783
+ version = "0.5.1"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
786
+ dependencies = [
787
+ "anes",
788
+ "cast",
789
+ "ciborium",
790
+ "clap",
791
+ "criterion-plot",
792
+ "futures",
793
+ "is-terminal",
794
+ "itertools 0.10.5",
795
+ "num-traits",
796
+ "once_cell",
797
+ "oorandom",
798
+ "plotters",
799
+ "rayon",
800
+ "regex",
801
+ "serde",
802
+ "serde_derive",
803
+ "serde_json",
804
+ "tinytemplate",
805
+ "tokio",
806
+ "walkdir",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "criterion-macro"
811
+ version = "0.3.4"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "8421c08c2e60050bb24ebfb7232bdd2fcf44fa74c5777b00a71daa7d332a8164"
814
+ dependencies = [
815
+ "proc-macro2",
816
+ "quote",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "criterion-plot"
821
+ version = "0.5.0"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
824
+ dependencies = [
825
+ "cast",
826
+ "itertools 0.10.5",
827
+ ]
828
+
741
829
  [[package]]
742
830
  name = "crossbeam-channel"
743
- version = "0.5.11"
831
+ version = "0.5.12"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95"
834
+ dependencies = [
835
+ "crossbeam-utils",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "crossbeam-deque"
840
+ version = "0.8.5"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
843
+ dependencies = [
844
+ "crossbeam-epoch",
845
+ "crossbeam-utils",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "crossbeam-epoch"
850
+ version = "0.9.18"
744
851
  source = "registry+https://github.com/rust-lang/crates.io-index"
745
- checksum = "176dc175b78f56c0f321911d9c8eb2b77a78a4860b9c19db83835fea1a46649b"
852
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
746
853
  dependencies = [
747
854
  "crossbeam-utils",
748
855
  ]
@@ -762,6 +869,12 @@ version = "0.8.19"
762
869
  source = "registry+https://github.com/rust-lang/crates.io-index"
763
870
  checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
764
871
 
872
+ [[package]]
873
+ name = "crunchy"
874
+ version = "0.2.2"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
877
+
765
878
  [[package]]
766
879
  name = "crypto-common"
767
880
  version = "0.1.6"
@@ -774,9 +887,9 @@ dependencies = [
774
887
 
775
888
  [[package]]
776
889
  name = "darling"
777
- version = "0.20.5"
890
+ version = "0.20.8"
778
891
  source = "registry+https://github.com/rust-lang/crates.io-index"
779
- checksum = "fc5d6b04b3fd0ba9926f945895de7d806260a2d7431ba82e7edaecb043c4c6b8"
892
+ checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
780
893
  dependencies = [
781
894
  "darling_core",
782
895
  "darling_macro",
@@ -784,39 +897,38 @@ dependencies = [
784
897
 
785
898
  [[package]]
786
899
  name = "darling_core"
787
- version = "0.20.5"
900
+ version = "0.20.8"
788
901
  source = "registry+https://github.com/rust-lang/crates.io-index"
789
- checksum = "04e48a959bcd5c761246f5d090ebc2fbf7b9cd527a492b07a67510c108f1e7e3"
902
+ checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
790
903
  dependencies = [
791
904
  "fnv",
792
905
  "ident_case",
793
906
  "proc-macro2",
794
907
  "quote",
795
908
  "strsim",
796
- "syn 2.0.48",
909
+ "syn 2.0.60",
797
910
  ]
798
911
 
799
912
  [[package]]
800
913
  name = "darling_macro"
801
- version = "0.20.5"
914
+ version = "0.20.8"
802
915
  source = "registry+https://github.com/rust-lang/crates.io-index"
803
- checksum = "1d1545d67a2149e1d93b7e5c7752dce5a7426eb5d1357ddcfd89336b94444f77"
916
+ checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
804
917
  dependencies = [
805
918
  "darling_core",
806
919
  "quote",
807
- "syn 2.0.48",
920
+ "syn 2.0.60",
808
921
  ]
809
922
 
810
923
  [[package]]
811
924
  name = "deadpool"
812
- version = "0.9.5"
925
+ version = "0.10.0"
813
926
  source = "registry+https://github.com/rust-lang/crates.io-index"
814
- checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
927
+ checksum = "fb84100978c1c7b37f09ed3ce3e5f843af02c2a2c431bae5b19230dad2c1b490"
815
928
  dependencies = [
816
929
  "async-trait",
817
930
  "deadpool-runtime",
818
931
  "num_cpus",
819
- "retain_mut",
820
932
  "tokio",
821
933
  ]
822
934
 
@@ -828,9 +940,9 @@ checksum = "63dfa964fe2a66f3fde91fc70b267fe193d822c7e603e2a675a49a7f46ad3f49"
828
940
 
829
941
  [[package]]
830
942
  name = "der"
831
- version = "0.7.8"
943
+ version = "0.7.9"
832
944
  source = "registry+https://github.com/rust-lang/crates.io-index"
833
- checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
945
+ checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0"
834
946
  dependencies = [
835
947
  "const-oid",
836
948
  "pem-rfc7468",
@@ -862,9 +974,9 @@ dependencies = [
862
974
 
863
975
  [[package]]
864
976
  name = "deunicode"
865
- version = "1.4.2"
977
+ version = "1.4.4"
866
978
  source = "registry+https://github.com/rust-lang/crates.io-index"
867
- checksum = "3ae2a35373c5c74340b79ae6780b498b2b183915ec5dacf263aac5a099bf485a"
979
+ checksum = "322ef0094744e63628e6f0eb2295517f79276a5b342a4c2ff3042566ca181d4e"
868
980
 
869
981
  [[package]]
870
982
  name = "digest"
@@ -892,18 +1004,18 @@ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
892
1004
 
893
1005
  [[package]]
894
1006
  name = "either"
895
- version = "1.9.0"
1007
+ version = "1.11.0"
896
1008
  source = "registry+https://github.com/rust-lang/crates.io-index"
897
- checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
1009
+ checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
898
1010
  dependencies = [
899
1011
  "serde",
900
1012
  ]
901
1013
 
902
1014
  [[package]]
903
1015
  name = "encoding_rs"
904
- version = "0.8.33"
1016
+ version = "0.8.34"
905
1017
  source = "registry+https://github.com/rust-lang/crates.io-index"
906
- checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
1018
+ checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
907
1019
  dependencies = [
908
1020
  "cfg-if",
909
1021
  ]
@@ -953,9 +1065,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
953
1065
 
954
1066
  [[package]]
955
1067
  name = "eyre"
956
- version = "0.6.11"
1068
+ version = "0.6.12"
957
1069
  source = "registry+https://github.com/rust-lang/crates.io-index"
958
- checksum = "b6267a1fa6f59179ea4afc8e50fd8612a3cc60bc858f786ff877a4a8cb042799"
1070
+ checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
959
1071
  dependencies = [
960
1072
  "indenter",
961
1073
  "once_cell",
@@ -969,23 +1081,14 @@ checksum = "1c25829bde82205da46e1823b2259db6273379f626fc211f126f65654a2669be"
969
1081
  dependencies = [
970
1082
  "chrono",
971
1083
  "deunicode",
972
- "rand 0.8.5",
973
- ]
974
-
975
- [[package]]
976
- name = "fastrand"
977
- version = "1.9.0"
978
- source = "registry+https://github.com/rust-lang/crates.io-index"
979
- checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
980
- dependencies = [
981
- "instant",
1084
+ "rand",
982
1085
  ]
983
1086
 
984
1087
  [[package]]
985
1088
  name = "fastrand"
986
- version = "2.0.1"
1089
+ version = "2.0.2"
987
1090
  source = "registry+https://github.com/rust-lang/crates.io-index"
988
- checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
1091
+ checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984"
989
1092
 
990
1093
  [[package]]
991
1094
  name = "finl_unicode"
@@ -1088,21 +1191,6 @@ version = "0.3.30"
1088
1191
  source = "registry+https://github.com/rust-lang/crates.io-index"
1089
1192
  checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
1090
1193
 
1091
- [[package]]
1092
- name = "futures-lite"
1093
- version = "1.13.0"
1094
- source = "registry+https://github.com/rust-lang/crates.io-index"
1095
- checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
1096
- dependencies = [
1097
- "fastrand 1.9.0",
1098
- "futures-core",
1099
- "futures-io",
1100
- "memchr",
1101
- "parking",
1102
- "pin-project-lite",
1103
- "waker-fn",
1104
- ]
1105
-
1106
1194
  [[package]]
1107
1195
  name = "futures-macro"
1108
1196
  version = "0.3.30"
@@ -1111,7 +1199,7 @@ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
1111
1199
  dependencies = [
1112
1200
  "proc-macro2",
1113
1201
  "quote",
1114
- "syn 2.0.48",
1202
+ "syn 2.0.60",
1115
1203
  ]
1116
1204
 
1117
1205
  [[package]]
@@ -1126,12 +1214,6 @@ version = "0.3.30"
1126
1214
  source = "registry+https://github.com/rust-lang/crates.io-index"
1127
1215
  checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
1128
1216
 
1129
- [[package]]
1130
- name = "futures-timer"
1131
- version = "3.0.2"
1132
- source = "registry+https://github.com/rust-lang/crates.io-index"
1133
- checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
1134
-
1135
1217
  [[package]]
1136
1218
  name = "futures-util"
1137
1219
  version = "0.3.30"
@@ -1172,24 +1254,13 @@ dependencies = [
1172
1254
 
1173
1255
  [[package]]
1174
1256
  name = "getrandom"
1175
- version = "0.1.16"
1176
- source = "registry+https://github.com/rust-lang/crates.io-index"
1177
- checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
1178
- dependencies = [
1179
- "cfg-if",
1180
- "libc",
1181
- "wasi 0.9.0+wasi-snapshot-preview1",
1182
- ]
1183
-
1184
- [[package]]
1185
- name = "getrandom"
1186
- version = "0.2.12"
1257
+ version = "0.2.14"
1187
1258
  source = "registry+https://github.com/rust-lang/crates.io-index"
1188
- checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
1259
+ checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c"
1189
1260
  dependencies = [
1190
1261
  "cfg-if",
1191
1262
  "libc",
1192
- "wasi 0.11.0+wasi-snapshot-preview1",
1263
+ "wasi",
1193
1264
  ]
1194
1265
 
1195
1266
  [[package]]
@@ -1206,30 +1277,59 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
1206
1277
 
1207
1278
  [[package]]
1208
1279
  name = "h2"
1209
- version = "0.3.24"
1280
+ version = "0.3.26"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
1283
+ dependencies = [
1284
+ "bytes",
1285
+ "fnv",
1286
+ "futures-core",
1287
+ "futures-sink",
1288
+ "futures-util",
1289
+ "http 0.2.12",
1290
+ "indexmap 2.2.6",
1291
+ "slab",
1292
+ "tokio",
1293
+ "tokio-util",
1294
+ "tracing",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "h2"
1299
+ version = "0.4.4"
1210
1300
  source = "registry+https://github.com/rust-lang/crates.io-index"
1211
- checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9"
1301
+ checksum = "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069"
1212
1302
  dependencies = [
1213
1303
  "bytes",
1214
1304
  "fnv",
1215
1305
  "futures-core",
1216
1306
  "futures-sink",
1217
1307
  "futures-util",
1218
- "http",
1219
- "indexmap 2.2.1",
1308
+ "http 1.1.0",
1309
+ "indexmap 2.2.6",
1220
1310
  "slab",
1221
1311
  "tokio",
1222
1312
  "tokio-util",
1223
1313
  "tracing",
1224
1314
  ]
1225
1315
 
1316
+ [[package]]
1317
+ name = "half"
1318
+ version = "2.4.1"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
1321
+ dependencies = [
1322
+ "cfg-if",
1323
+ "crunchy",
1324
+ ]
1325
+
1226
1326
  [[package]]
1227
1327
  name = "hashbrown"
1228
1328
  version = "0.12.3"
1229
1329
  source = "registry+https://github.com/rust-lang/crates.io-index"
1230
1330
  checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1231
1331
  dependencies = [
1232
- "ahash 0.7.7",
1332
+ "ahash 0.7.8",
1233
1333
  ]
1234
1334
 
1235
1335
  [[package]]
@@ -1238,7 +1338,7 @@ version = "0.14.3"
1238
1338
  source = "registry+https://github.com/rust-lang/crates.io-index"
1239
1339
  checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
1240
1340
  dependencies = [
1241
- "ahash 0.8.7",
1341
+ "ahash 0.8.11",
1242
1342
  "allocator-api2",
1243
1343
  ]
1244
1344
 
@@ -1262,9 +1362,9 @@ dependencies = [
1262
1362
 
1263
1363
  [[package]]
1264
1364
  name = "hermit-abi"
1265
- version = "0.3.4"
1365
+ version = "0.3.9"
1266
1366
  source = "registry+https://github.com/rust-lang/crates.io-index"
1267
- checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f"
1367
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1268
1368
 
1269
1369
  [[package]]
1270
1370
  name = "hex"
@@ -1301,9 +1401,20 @@ dependencies = [
1301
1401
 
1302
1402
  [[package]]
1303
1403
  name = "http"
1304
- version = "0.2.11"
1404
+ version = "0.2.12"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1407
+ dependencies = [
1408
+ "bytes",
1409
+ "fnv",
1410
+ "itoa",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "http"
1415
+ version = "1.1.0"
1305
1416
  source = "registry+https://github.com/rust-lang/crates.io-index"
1306
- checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
1417
+ checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
1307
1418
  dependencies = [
1308
1419
  "bytes",
1309
1420
  "fnv",
@@ -1312,34 +1423,25 @@ dependencies = [
1312
1423
 
1313
1424
  [[package]]
1314
1425
  name = "http-body"
1315
- version = "0.4.6"
1426
+ version = "1.0.0"
1316
1427
  source = "registry+https://github.com/rust-lang/crates.io-index"
1317
- checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1428
+ checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
1318
1429
  dependencies = [
1319
1430
  "bytes",
1320
- "http",
1321
- "pin-project-lite",
1431
+ "http 1.1.0",
1322
1432
  ]
1323
1433
 
1324
1434
  [[package]]
1325
- name = "http-types"
1326
- version = "2.12.0"
1435
+ name = "http-body-util"
1436
+ version = "0.1.1"
1327
1437
  source = "registry+https://github.com/rust-lang/crates.io-index"
1328
- checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
1438
+ checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d"
1329
1439
  dependencies = [
1330
- "anyhow",
1331
- "async-channel",
1332
- "base64 0.13.1",
1333
- "futures-lite",
1334
- "http",
1335
- "infer",
1440
+ "bytes",
1441
+ "futures-core",
1442
+ "http 1.1.0",
1443
+ "http-body",
1336
1444
  "pin-project-lite",
1337
- "rand 0.7.3",
1338
- "serde",
1339
- "serde_json",
1340
- "serde_qs 0.8.5",
1341
- "serde_urlencoded",
1342
- "url",
1343
1445
  ]
1344
1446
 
1345
1447
  [[package]]
@@ -1356,47 +1458,67 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1356
1458
 
1357
1459
  [[package]]
1358
1460
  name = "hyper"
1359
- version = "0.14.28"
1461
+ version = "1.3.1"
1360
1462
  source = "registry+https://github.com/rust-lang/crates.io-index"
1361
- checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
1463
+ checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d"
1362
1464
  dependencies = [
1363
1465
  "bytes",
1364
1466
  "futures-channel",
1365
- "futures-core",
1366
1467
  "futures-util",
1367
- "h2",
1368
- "http",
1468
+ "h2 0.4.4",
1469
+ "http 1.1.0",
1369
1470
  "http-body",
1370
1471
  "httparse",
1371
1472
  "httpdate",
1372
1473
  "itoa",
1373
1474
  "pin-project-lite",
1374
- "socket2",
1475
+ "smallvec",
1375
1476
  "tokio",
1376
- "tower-service",
1377
- "tracing",
1378
1477
  "want",
1379
1478
  ]
1380
1479
 
1381
1480
  [[package]]
1382
1481
  name = "hyper-rustls"
1383
- version = "0.24.2"
1482
+ version = "0.26.0"
1384
1483
  source = "registry+https://github.com/rust-lang/crates.io-index"
1385
- checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
1484
+ checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c"
1386
1485
  dependencies = [
1387
1486
  "futures-util",
1388
- "http",
1487
+ "http 1.1.0",
1389
1488
  "hyper",
1390
- "rustls",
1489
+ "hyper-util",
1490
+ "rustls 0.22.4",
1491
+ "rustls-pki-types",
1391
1492
  "tokio",
1392
1493
  "tokio-rustls",
1494
+ "tower-service",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "hyper-util"
1499
+ version = "0.1.3"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa"
1502
+ dependencies = [
1503
+ "bytes",
1504
+ "futures-channel",
1505
+ "futures-util",
1506
+ "http 1.1.0",
1507
+ "http-body",
1508
+ "hyper",
1509
+ "pin-project-lite",
1510
+ "socket2",
1511
+ "tokio",
1512
+ "tower",
1513
+ "tower-service",
1514
+ "tracing",
1393
1515
  ]
1394
1516
 
1395
1517
  [[package]]
1396
1518
  name = "iana-time-zone"
1397
- version = "0.1.59"
1519
+ version = "0.1.60"
1398
1520
  source = "registry+https://github.com/rust-lang/crates.io-index"
1399
- checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
1521
+ checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
1400
1522
  dependencies = [
1401
1523
  "android_system_properties",
1402
1524
  "core-foundation-sys",
@@ -1450,9 +1572,9 @@ dependencies = [
1450
1572
 
1451
1573
  [[package]]
1452
1574
  name = "indexmap"
1453
- version = "2.2.1"
1575
+ version = "2.2.6"
1454
1576
  source = "registry+https://github.com/rust-lang/crates.io-index"
1455
- checksum = "433de089bd45971eecf4668ee0ee8f4cec17db4f8bd8f7bc3197a6ce37aa7d9b"
1577
+ checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
1456
1578
  dependencies = [
1457
1579
  "equivalent",
1458
1580
  "hashbrown 0.14.3",
@@ -1461,30 +1583,35 @@ dependencies = [
1461
1583
 
1462
1584
  [[package]]
1463
1585
  name = "indoc"
1464
- version = "1.0.9"
1586
+ version = "2.0.5"
1465
1587
  source = "registry+https://github.com/rust-lang/crates.io-index"
1466
- checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306"
1588
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
1467
1589
 
1468
1590
  [[package]]
1469
- name = "infer"
1470
- version = "0.2.3"
1591
+ name = "ipnet"
1592
+ version = "2.9.0"
1471
1593
  source = "registry+https://github.com/rust-lang/crates.io-index"
1472
- checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
1594
+ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
1473
1595
 
1474
1596
  [[package]]
1475
- name = "instant"
1476
- version = "0.1.12"
1597
+ name = "is-terminal"
1598
+ version = "0.4.12"
1477
1599
  source = "registry+https://github.com/rust-lang/crates.io-index"
1478
- checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1600
+ checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
1479
1601
  dependencies = [
1480
- "cfg-if",
1602
+ "hermit-abi",
1603
+ "libc",
1604
+ "windows-sys 0.52.0",
1481
1605
  ]
1482
1606
 
1483
1607
  [[package]]
1484
- name = "ipnet"
1485
- version = "2.9.0"
1608
+ name = "itertools"
1609
+ version = "0.10.5"
1486
1610
  source = "registry+https://github.com/rust-lang/crates.io-index"
1487
- checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
1611
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1612
+ dependencies = [
1613
+ "either",
1614
+ ]
1488
1615
 
1489
1616
  [[package]]
1490
1617
  name = "itertools"
@@ -1497,24 +1624,24 @@ dependencies = [
1497
1624
 
1498
1625
  [[package]]
1499
1626
  name = "itoa"
1500
- version = "1.0.10"
1627
+ version = "1.0.11"
1501
1628
  source = "registry+https://github.com/rust-lang/crates.io-index"
1502
- checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
1629
+ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
1503
1630
 
1504
1631
  [[package]]
1505
1632
  name = "jobserver"
1506
- version = "0.1.27"
1633
+ version = "0.1.31"
1507
1634
  source = "registry+https://github.com/rust-lang/crates.io-index"
1508
- checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"
1635
+ checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
1509
1636
  dependencies = [
1510
1637
  "libc",
1511
1638
  ]
1512
1639
 
1513
1640
  [[package]]
1514
1641
  name = "js-sys"
1515
- version = "0.3.67"
1642
+ version = "0.3.69"
1516
1643
  source = "registry+https://github.com/rust-lang/crates.io-index"
1517
- checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1"
1644
+ checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
1518
1645
  dependencies = [
1519
1646
  "wasm-bindgen",
1520
1647
  ]
@@ -1547,9 +1674,9 @@ dependencies = [
1547
1674
 
1548
1675
  [[package]]
1549
1676
  name = "libc"
1550
- version = "0.2.152"
1677
+ version = "0.2.153"
1551
1678
  source = "registry+https://github.com/rust-lang/crates.io-index"
1552
- checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
1679
+ checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
1553
1680
 
1554
1681
  [[package]]
1555
1682
  name = "libm"
@@ -1609,9 +1736,9 @@ dependencies = [
1609
1736
 
1610
1737
  [[package]]
1611
1738
  name = "log"
1612
- version = "0.4.20"
1739
+ version = "0.4.21"
1613
1740
  source = "registry+https://github.com/rust-lang/crates.io-index"
1614
- checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
1741
+ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
1615
1742
 
1616
1743
  [[package]]
1617
1744
  name = "matchers"
@@ -1634,15 +1761,15 @@ dependencies = [
1634
1761
 
1635
1762
  [[package]]
1636
1763
  name = "memchr"
1637
- version = "2.7.1"
1764
+ version = "2.7.2"
1638
1765
  source = "registry+https://github.com/rust-lang/crates.io-index"
1639
- checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
1766
+ checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
1640
1767
 
1641
1768
  [[package]]
1642
1769
  name = "memoffset"
1643
- version = "0.9.0"
1770
+ version = "0.9.1"
1644
1771
  source = "registry+https://github.com/rust-lang/crates.io-index"
1645
- checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
1772
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1646
1773
  dependencies = [
1647
1774
  "autocfg",
1648
1775
  ]
@@ -1661,22 +1788,22 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1661
1788
 
1662
1789
  [[package]]
1663
1790
  name = "miniz_oxide"
1664
- version = "0.7.1"
1791
+ version = "0.7.2"
1665
1792
  source = "registry+https://github.com/rust-lang/crates.io-index"
1666
- checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
1793
+ checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
1667
1794
  dependencies = [
1668
1795
  "adler",
1669
1796
  ]
1670
1797
 
1671
1798
  [[package]]
1672
1799
  name = "mio"
1673
- version = "0.8.10"
1800
+ version = "0.8.11"
1674
1801
  source = "registry+https://github.com/rust-lang/crates.io-index"
1675
- checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
1802
+ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1676
1803
  dependencies = [
1677
1804
  "libc",
1678
1805
  "log",
1679
- "wasi 0.11.0+wasi-snapshot-preview1",
1806
+ "wasi",
1680
1807
  "windows-sys 0.48.0",
1681
1808
  ]
1682
1809
 
@@ -1686,17 +1813,6 @@ version = "0.0.3"
1686
1813
  source = "registry+https://github.com/rust-lang/crates.io-index"
1687
1814
  checksum = "6d02c0b00610773bb7fc61d85e13d86c7858cbdf00e1a120bfc41bc055dbaa0e"
1688
1815
 
1689
- [[package]]
1690
- name = "nix"
1691
- version = "0.27.1"
1692
- source = "registry+https://github.com/rust-lang/crates.io-index"
1693
- checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
1694
- dependencies = [
1695
- "bitflags 2.4.2",
1696
- "cfg-if",
1697
- "libc",
1698
- ]
1699
-
1700
1816
  [[package]]
1701
1817
  name = "nom"
1702
1818
  version = "7.1.3"
@@ -1729,26 +1845,31 @@ dependencies = [
1729
1845
  "num-integer",
1730
1846
  "num-iter",
1731
1847
  "num-traits",
1732
- "rand 0.8.5",
1848
+ "rand",
1733
1849
  "smallvec",
1734
1850
  "zeroize",
1735
1851
  ]
1736
1852
 
1853
+ [[package]]
1854
+ name = "num-conv"
1855
+ version = "0.1.0"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1858
+
1737
1859
  [[package]]
1738
1860
  name = "num-integer"
1739
- version = "0.1.45"
1861
+ version = "0.1.46"
1740
1862
  source = "registry+https://github.com/rust-lang/crates.io-index"
1741
- checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
1863
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1742
1864
  dependencies = [
1743
- "autocfg",
1744
1865
  "num-traits",
1745
1866
  ]
1746
1867
 
1747
1868
  [[package]]
1748
1869
  name = "num-iter"
1749
- version = "0.1.43"
1870
+ version = "0.1.44"
1750
1871
  source = "registry+https://github.com/rust-lang/crates.io-index"
1751
- checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
1872
+ checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9"
1752
1873
  dependencies = [
1753
1874
  "autocfg",
1754
1875
  "num-integer",
@@ -1757,9 +1878,9 @@ dependencies = [
1757
1878
 
1758
1879
  [[package]]
1759
1880
  name = "num-traits"
1760
- version = "0.2.17"
1881
+ version = "0.2.18"
1761
1882
  source = "registry+https://github.com/rust-lang/crates.io-index"
1762
- checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
1883
+ checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
1763
1884
  dependencies = [
1764
1885
  "autocfg",
1765
1886
  "libm",
@@ -1790,15 +1911,20 @@ version = "1.19.0"
1790
1911
  source = "registry+https://github.com/rust-lang/crates.io-index"
1791
1912
  checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
1792
1913
 
1914
+ [[package]]
1915
+ name = "oorandom"
1916
+ version = "11.1.3"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
1919
+
1793
1920
  [[package]]
1794
1921
  name = "opentelemetry"
1795
- version = "0.21.0"
1922
+ version = "0.22.0"
1796
1923
  source = "registry+https://github.com/rust-lang/crates.io-index"
1797
- checksum = "1e32339a5dc40459130b3bd269e9892439f55b33e772d2a9d402a789baaf4e8a"
1924
+ checksum = "900d57987be3f2aeb70d385fff9b27fb74c5723cc9a52d904d4f9c807a0667bf"
1798
1925
  dependencies = [
1799
1926
  "futures-core",
1800
1927
  "futures-sink",
1801
- "indexmap 2.2.1",
1802
1928
  "js-sys",
1803
1929
  "once_cell",
1804
1930
  "pin-project-lite",
@@ -1808,9 +1934,9 @@ dependencies = [
1808
1934
 
1809
1935
  [[package]]
1810
1936
  name = "opentelemetry-prometheus"
1811
- version = "0.14.1"
1937
+ version = "0.15.0"
1812
1938
  source = "registry+https://github.com/rust-lang/crates.io-index"
1813
- checksum = "6f8f082da115b0dcb250829e3ed0b8792b8f963a1ad42466e48422fbe6a079bd"
1939
+ checksum = "30bbcf6341cab7e2193e5843f0ac36c446a5b3fccb28747afaeda17996dcd02e"
1814
1940
  dependencies = [
1815
1941
  "once_cell",
1816
1942
  "opentelemetry",
@@ -1821,12 +1947,9 @@ dependencies = [
1821
1947
 
1822
1948
  [[package]]
1823
1949
  name = "opentelemetry-semantic-conventions"
1824
- version = "0.13.0"
1950
+ version = "0.14.0"
1825
1951
  source = "registry+https://github.com/rust-lang/crates.io-index"
1826
- checksum = "f5774f1ef1f982ef2a447f6ee04ec383981a3ab99c8e77a1a7b30182e65bbc84"
1827
- dependencies = [
1828
- "opentelemetry",
1829
- ]
1952
+ checksum = "f9ab5bd6c42fb9349dcf28af2ba9a0667f697f9bdcca045d39f2cec5543e2910"
1830
1953
 
1831
1954
  [[package]]
1832
1955
  name = "opentelemetry_api"
@@ -1846,9 +1969,9 @@ dependencies = [
1846
1969
 
1847
1970
  [[package]]
1848
1971
  name = "opentelemetry_sdk"
1849
- version = "0.21.2"
1972
+ version = "0.22.1"
1850
1973
  source = "registry+https://github.com/rust-lang/crates.io-index"
1851
- checksum = "2f16aec8a98a457a52664d69e0091bac3a0abd18ead9b641cb00202ba4e0efe4"
1974
+ checksum = "9e90c7113be649e31e9a0f8b5ee24ed7a16923b322c3c5ab6367469c049d6b7e"
1852
1975
  dependencies = [
1853
1976
  "async-trait",
1854
1977
  "crossbeam-channel",
@@ -1860,7 +1983,7 @@ dependencies = [
1860
1983
  "opentelemetry",
1861
1984
  "ordered-float",
1862
1985
  "percent-encoding",
1863
- "rand 0.8.5",
1986
+ "rand",
1864
1987
  "thiserror",
1865
1988
  ]
1866
1989
 
@@ -1895,12 +2018,6 @@ version = "3.5.0"
1895
2018
  source = "registry+https://github.com/rust-lang/crates.io-index"
1896
2019
  checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
1897
2020
 
1898
- [[package]]
1899
- name = "parking"
1900
- version = "2.2.0"
1901
- source = "registry+https://github.com/rust-lang/crates.io-index"
1902
- checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
1903
-
1904
2021
  [[package]]
1905
2022
  name = "parking_lot"
1906
2023
  version = "0.12.1"
@@ -1953,9 +2070,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1953
2070
 
1954
2071
  [[package]]
1955
2072
  name = "pest"
1956
- version = "2.7.6"
2073
+ version = "2.7.9"
1957
2074
  source = "registry+https://github.com/rust-lang/crates.io-index"
1958
- checksum = "1f200d8d83c44a45b21764d1916299752ca035d15ecd46faca3e9a2a2bf6ad06"
2075
+ checksum = "311fb059dee1a7b802f036316d790138c613a4e8b180c822e3925a662e9f0c95"
1959
2076
  dependencies = [
1960
2077
  "memchr",
1961
2078
  "thiserror",
@@ -1964,9 +2081,9 @@ dependencies = [
1964
2081
 
1965
2082
  [[package]]
1966
2083
  name = "pest_derive"
1967
- version = "2.7.6"
2084
+ version = "2.7.9"
1968
2085
  source = "registry+https://github.com/rust-lang/crates.io-index"
1969
- checksum = "bcd6ab1236bbdb3a49027e920e693192ebfe8913f6d60e294de57463a493cfde"
2086
+ checksum = "f73541b156d32197eecda1a4014d7f868fd2bcb3c550d5386087cfba442bf69c"
1970
2087
  dependencies = [
1971
2088
  "pest",
1972
2089
  "pest_generator",
@@ -1974,22 +2091,22 @@ dependencies = [
1974
2091
 
1975
2092
  [[package]]
1976
2093
  name = "pest_generator"
1977
- version = "2.7.6"
2094
+ version = "2.7.9"
1978
2095
  source = "registry+https://github.com/rust-lang/crates.io-index"
1979
- checksum = "2a31940305ffc96863a735bef7c7994a00b325a7138fdbc5bda0f1a0476d3275"
2096
+ checksum = "c35eeed0a3fab112f75165fdc026b3913f4183133f19b49be773ac9ea966e8bd"
1980
2097
  dependencies = [
1981
2098
  "pest",
1982
2099
  "pest_meta",
1983
2100
  "proc-macro2",
1984
2101
  "quote",
1985
- "syn 2.0.48",
2102
+ "syn 2.0.60",
1986
2103
  ]
1987
2104
 
1988
2105
  [[package]]
1989
2106
  name = "pest_meta"
1990
- version = "2.7.6"
2107
+ version = "2.7.9"
1991
2108
  source = "registry+https://github.com/rust-lang/crates.io-index"
1992
- checksum = "a7ff62f5259e53b78d1af898941cdcdccfae7385cf7d793a6e55de5d05bb4b7d"
2109
+ checksum = "2adbf29bb9776f28caece835398781ab24435585fe0d4dc1374a61db5accedca"
1993
2110
  dependencies = [
1994
2111
  "once_cell",
1995
2112
  "pest",
@@ -1998,29 +2115,29 @@ dependencies = [
1998
2115
 
1999
2116
  [[package]]
2000
2117
  name = "pin-project"
2001
- version = "1.1.4"
2118
+ version = "1.1.5"
2002
2119
  source = "registry+https://github.com/rust-lang/crates.io-index"
2003
- checksum = "0302c4a0442c456bd56f841aee5c3bfd17967563f6fadc9ceb9f9c23cf3807e0"
2120
+ checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
2004
2121
  dependencies = [
2005
2122
  "pin-project-internal",
2006
2123
  ]
2007
2124
 
2008
2125
  [[package]]
2009
2126
  name = "pin-project-internal"
2010
- version = "1.1.4"
2127
+ version = "1.1.5"
2011
2128
  source = "registry+https://github.com/rust-lang/crates.io-index"
2012
- checksum = "266c042b60c9c76b8d53061e52b2e0d1116abc57cefc8c5cd671619a56ac3690"
2129
+ checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
2013
2130
  dependencies = [
2014
2131
  "proc-macro2",
2015
2132
  "quote",
2016
- "syn 2.0.48",
2133
+ "syn 2.0.60",
2017
2134
  ]
2018
2135
 
2019
2136
  [[package]]
2020
2137
  name = "pin-project-lite"
2021
- version = "0.2.13"
2138
+ version = "0.2.14"
2022
2139
  source = "registry+https://github.com/rust-lang/crates.io-index"
2023
- checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
2140
+ checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
2024
2141
 
2025
2142
  [[package]]
2026
2143
  name = "pin-utils"
@@ -2051,9 +2168,43 @@ dependencies = [
2051
2168
 
2052
2169
  [[package]]
2053
2170
  name = "pkg-config"
2054
- version = "0.3.29"
2171
+ version = "0.3.30"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
2174
+
2175
+ [[package]]
2176
+ name = "plotters"
2177
+ version = "0.3.5"
2178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2179
+ checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45"
2180
+ dependencies = [
2181
+ "num-traits",
2182
+ "plotters-backend",
2183
+ "plotters-svg",
2184
+ "wasm-bindgen",
2185
+ "web-sys",
2186
+ ]
2187
+
2188
+ [[package]]
2189
+ name = "plotters-backend"
2190
+ version = "0.3.5"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609"
2193
+
2194
+ [[package]]
2195
+ name = "plotters-svg"
2196
+ version = "0.3.5"
2055
2197
  source = "registry+https://github.com/rust-lang/crates.io-index"
2056
- checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb"
2198
+ checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab"
2199
+ dependencies = [
2200
+ "plotters-backend",
2201
+ ]
2202
+
2203
+ [[package]]
2204
+ name = "portable-atomic"
2205
+ version = "1.6.0"
2206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2207
+ checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
2057
2208
 
2058
2209
  [[package]]
2059
2210
  name = "powerfmt"
@@ -2069,9 +2220,9 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2069
2220
 
2070
2221
  [[package]]
2071
2222
  name = "proc-macro2"
2072
- version = "1.0.78"
2223
+ version = "1.0.81"
2073
2224
  source = "registry+https://github.com/rust-lang/crates.io-index"
2074
- checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
2225
+ checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba"
2075
2226
  dependencies = [
2076
2227
  "unicode-ident",
2077
2228
  ]
@@ -2099,9 +2250,9 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
2099
2250
 
2100
2251
  [[package]]
2101
2252
  name = "pyo3"
2102
- version = "0.19.2"
2253
+ version = "0.20.3"
2103
2254
  source = "registry+https://github.com/rust-lang/crates.io-index"
2104
- checksum = "e681a6cfdc4adcc93b4d3cf993749a4552018ee0a9b65fc0ccfad74352c72a38"
2255
+ checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
2105
2256
  dependencies = [
2106
2257
  "anyhow",
2107
2258
  "cfg-if",
@@ -2110,6 +2261,7 @@ dependencies = [
2110
2261
  "libc",
2111
2262
  "memoffset",
2112
2263
  "parking_lot",
2264
+ "portable-atomic",
2113
2265
  "pyo3-build-config",
2114
2266
  "pyo3-ffi",
2115
2267
  "pyo3-macros",
@@ -2118,9 +2270,9 @@ dependencies = [
2118
2270
 
2119
2271
  [[package]]
2120
2272
  name = "pyo3-asyncio"
2121
- version = "0.19.0"
2273
+ version = "0.20.0"
2122
2274
  source = "registry+https://github.com/rust-lang/crates.io-index"
2123
- checksum = "a2cc34c1f907ca090d7add03dc523acdd91f3a4dab12286604951e2f5152edad"
2275
+ checksum = "6ea6b68e93db3622f3bb3bf363246cf948ed5375afe7abff98ccbdd50b184995"
2124
2276
  dependencies = [
2125
2277
  "futures",
2126
2278
  "once_cell",
@@ -2132,9 +2284,9 @@ dependencies = [
2132
2284
 
2133
2285
  [[package]]
2134
2286
  name = "pyo3-asyncio-macros"
2135
- version = "0.19.0"
2287
+ version = "0.20.0"
2136
2288
  source = "registry+https://github.com/rust-lang/crates.io-index"
2137
- checksum = "e4045f06429547179e4596f5c0b13c82efc8b04296016780133653ed69ce26b3"
2289
+ checksum = "56c467178e1da6252c95c29ecf898b133f742e9181dca5def15dc24e19d45a39"
2138
2290
  dependencies = [
2139
2291
  "proc-macro2",
2140
2292
  "quote",
@@ -2143,9 +2295,9 @@ dependencies = [
2143
2295
 
2144
2296
  [[package]]
2145
2297
  name = "pyo3-build-config"
2146
- version = "0.19.2"
2298
+ version = "0.20.3"
2147
2299
  source = "registry+https://github.com/rust-lang/crates.io-index"
2148
- checksum = "076c73d0bc438f7a4ef6fdd0c3bb4732149136abd952b110ac93e4edb13a6ba5"
2300
+ checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
2149
2301
  dependencies = [
2150
2302
  "once_cell",
2151
2303
  "target-lexicon",
@@ -2153,9 +2305,9 @@ dependencies = [
2153
2305
 
2154
2306
  [[package]]
2155
2307
  name = "pyo3-ffi"
2156
- version = "0.19.2"
2308
+ version = "0.20.3"
2157
2309
  source = "registry+https://github.com/rust-lang/crates.io-index"
2158
- checksum = "e53cee42e77ebe256066ba8aa77eff722b3bb91f3419177cf4cd0f304d3284d9"
2310
+ checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
2159
2311
  dependencies = [
2160
2312
  "libc",
2161
2313
  "pyo3-build-config",
@@ -2163,30 +2315,32 @@ dependencies = [
2163
2315
 
2164
2316
  [[package]]
2165
2317
  name = "pyo3-macros"
2166
- version = "0.19.2"
2318
+ version = "0.20.3"
2167
2319
  source = "registry+https://github.com/rust-lang/crates.io-index"
2168
- checksum = "dfeb4c99597e136528c6dd7d5e3de5434d1ceaf487436a3f03b2d56b6fc9efd1"
2320
+ checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
2169
2321
  dependencies = [
2170
2322
  "proc-macro2",
2171
2323
  "pyo3-macros-backend",
2172
2324
  "quote",
2173
- "syn 1.0.109",
2325
+ "syn 2.0.60",
2174
2326
  ]
2175
2327
 
2176
2328
  [[package]]
2177
2329
  name = "pyo3-macros-backend"
2178
- version = "0.19.2"
2330
+ version = "0.20.3"
2179
2331
  source = "registry+https://github.com/rust-lang/crates.io-index"
2180
- checksum = "947dc12175c254889edc0c02e399476c2f652b4b9ebd123aa655c224de259536"
2332
+ checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
2181
2333
  dependencies = [
2334
+ "heck",
2182
2335
  "proc-macro2",
2336
+ "pyo3-build-config",
2183
2337
  "quote",
2184
- "syn 1.0.109",
2338
+ "syn 2.0.60",
2185
2339
  ]
2186
2340
 
2187
2341
  [[package]]
2188
2342
  name = "python-auditor"
2189
- version = "0.4.0"
2343
+ version = "0.5.0"
2190
2344
  dependencies = [
2191
2345
  "anyhow",
2192
2346
  "auditor",
@@ -2206,7 +2360,7 @@ checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
2206
2360
  dependencies = [
2207
2361
  "env_logger",
2208
2362
  "log",
2209
- "rand 0.8.5",
2363
+ "rand",
2210
2364
  ]
2211
2365
 
2212
2366
  [[package]]
@@ -2222,26 +2376,13 @@ dependencies = [
2222
2376
 
2223
2377
  [[package]]
2224
2378
  name = "quote"
2225
- version = "1.0.35"
2379
+ version = "1.0.36"
2226
2380
  source = "registry+https://github.com/rust-lang/crates.io-index"
2227
- checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
2381
+ checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
2228
2382
  dependencies = [
2229
2383
  "proc-macro2",
2230
2384
  ]
2231
2385
 
2232
- [[package]]
2233
- name = "rand"
2234
- version = "0.7.3"
2235
- source = "registry+https://github.com/rust-lang/crates.io-index"
2236
- checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2237
- dependencies = [
2238
- "getrandom 0.1.16",
2239
- "libc",
2240
- "rand_chacha 0.2.2",
2241
- "rand_core 0.5.1",
2242
- "rand_hc",
2243
- ]
2244
-
2245
2386
  [[package]]
2246
2387
  name = "rand"
2247
2388
  version = "0.8.5"
@@ -2249,55 +2390,57 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
2390
  checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2250
2391
  dependencies = [
2251
2392
  "libc",
2252
- "rand_chacha 0.3.1",
2253
- "rand_core 0.6.4",
2393
+ "rand_chacha",
2394
+ "rand_core",
2254
2395
  ]
2255
2396
 
2256
2397
  [[package]]
2257
2398
  name = "rand_chacha"
2258
- version = "0.2.2"
2399
+ version = "0.3.1"
2259
2400
  source = "registry+https://github.com/rust-lang/crates.io-index"
2260
- checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2401
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2261
2402
  dependencies = [
2262
2403
  "ppv-lite86",
2263
- "rand_core 0.5.1",
2404
+ "rand_core",
2264
2405
  ]
2265
2406
 
2266
2407
  [[package]]
2267
- name = "rand_chacha"
2268
- version = "0.3.1"
2408
+ name = "rand_core"
2409
+ version = "0.6.4"
2269
2410
  source = "registry+https://github.com/rust-lang/crates.io-index"
2270
- checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2411
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2271
2412
  dependencies = [
2272
- "ppv-lite86",
2273
- "rand_core 0.6.4",
2413
+ "getrandom",
2274
2414
  ]
2275
2415
 
2276
2416
  [[package]]
2277
- name = "rand_core"
2278
- version = "0.5.1"
2417
+ name = "rand_distr"
2418
+ version = "0.4.3"
2279
2419
  source = "registry+https://github.com/rust-lang/crates.io-index"
2280
- checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2420
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
2281
2421
  dependencies = [
2282
- "getrandom 0.1.16",
2422
+ "num-traits",
2423
+ "rand",
2283
2424
  ]
2284
2425
 
2285
2426
  [[package]]
2286
- name = "rand_core"
2287
- version = "0.6.4"
2427
+ name = "rayon"
2428
+ version = "1.10.0"
2288
2429
  source = "registry+https://github.com/rust-lang/crates.io-index"
2289
- checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2430
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2290
2431
  dependencies = [
2291
- "getrandom 0.2.12",
2432
+ "either",
2433
+ "rayon-core",
2292
2434
  ]
2293
2435
 
2294
2436
  [[package]]
2295
- name = "rand_hc"
2296
- version = "0.2.0"
2437
+ name = "rayon-core"
2438
+ version = "1.12.1"
2297
2439
  source = "registry+https://github.com/rust-lang/crates.io-index"
2298
- checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2440
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2299
2441
  dependencies = [
2300
- "rand_core 0.5.1",
2442
+ "crossbeam-deque",
2443
+ "crossbeam-utils",
2301
2444
  ]
2302
2445
 
2303
2446
  [[package]]
@@ -2311,14 +2454,14 @@ dependencies = [
2311
2454
 
2312
2455
  [[package]]
2313
2456
  name = "regex"
2314
- version = "1.10.3"
2457
+ version = "1.10.4"
2315
2458
  source = "registry+https://github.com/rust-lang/crates.io-index"
2316
- checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
2459
+ checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
2317
2460
  dependencies = [
2318
2461
  "aho-corasick",
2319
2462
  "memchr",
2320
- "regex-automata 0.4.5",
2321
- "regex-syntax 0.8.2",
2463
+ "regex-automata 0.4.6",
2464
+ "regex-syntax 0.8.3",
2322
2465
  ]
2323
2466
 
2324
2467
  [[package]]
@@ -2332,13 +2475,13 @@ dependencies = [
2332
2475
 
2333
2476
  [[package]]
2334
2477
  name = "regex-automata"
2335
- version = "0.4.5"
2478
+ version = "0.4.6"
2336
2479
  source = "registry+https://github.com/rust-lang/crates.io-index"
2337
- checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd"
2480
+ checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
2338
2481
  dependencies = [
2339
2482
  "aho-corasick",
2340
2483
  "memchr",
2341
- "regex-syntax 0.8.2",
2484
+ "regex-syntax 0.8.3",
2342
2485
  ]
2343
2486
 
2344
2487
  [[package]]
@@ -2349,26 +2492,27 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2349
2492
 
2350
2493
  [[package]]
2351
2494
  name = "regex-syntax"
2352
- version = "0.8.2"
2495
+ version = "0.8.3"
2353
2496
  source = "registry+https://github.com/rust-lang/crates.io-index"
2354
- checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
2497
+ checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
2355
2498
 
2356
2499
  [[package]]
2357
2500
  name = "reqwest"
2358
- version = "0.11.24"
2501
+ version = "0.12.4"
2359
2502
  source = "registry+https://github.com/rust-lang/crates.io-index"
2360
- checksum = "c6920094eb85afde5e4a138be3f2de8bbdf28000f0029e72c45025a56b042251"
2503
+ checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10"
2361
2504
  dependencies = [
2362
- "base64 0.21.7",
2505
+ "base64 0.22.0",
2363
2506
  "bytes",
2364
- "encoding_rs",
2507
+ "futures-channel",
2365
2508
  "futures-core",
2366
2509
  "futures-util",
2367
- "h2",
2368
- "http",
2510
+ "http 1.1.0",
2369
2511
  "http-body",
2512
+ "http-body-util",
2370
2513
  "hyper",
2371
2514
  "hyper-rustls",
2515
+ "hyper-util",
2372
2516
  "ipnet",
2373
2517
  "js-sys",
2374
2518
  "log",
@@ -2376,13 +2520,13 @@ dependencies = [
2376
2520
  "once_cell",
2377
2521
  "percent-encoding",
2378
2522
  "pin-project-lite",
2379
- "rustls",
2380
- "rustls-pemfile",
2523
+ "rustls 0.22.4",
2524
+ "rustls-pemfile 2.1.2",
2525
+ "rustls-pki-types",
2381
2526
  "serde",
2382
2527
  "serde_json",
2383
2528
  "serde_urlencoded",
2384
2529
  "sync_wrapper",
2385
- "system-configuration",
2386
2530
  "tokio",
2387
2531
  "tokio-rustls",
2388
2532
  "tower-service",
@@ -2390,28 +2534,23 @@ dependencies = [
2390
2534
  "wasm-bindgen",
2391
2535
  "wasm-bindgen-futures",
2392
2536
  "web-sys",
2393
- "webpki-roots",
2537
+ "webpki-roots 0.26.1",
2394
2538
  "winreg",
2395
2539
  ]
2396
2540
 
2397
- [[package]]
2398
- name = "retain_mut"
2399
- version = "0.1.9"
2400
- source = "registry+https://github.com/rust-lang/crates.io-index"
2401
- checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
2402
-
2403
2541
  [[package]]
2404
2542
  name = "ring"
2405
- version = "0.17.7"
2543
+ version = "0.17.8"
2406
2544
  source = "registry+https://github.com/rust-lang/crates.io-index"
2407
- checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74"
2545
+ checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
2408
2546
  dependencies = [
2409
2547
  "cc",
2410
- "getrandom 0.2.12",
2548
+ "cfg-if",
2549
+ "getrandom",
2411
2550
  "libc",
2412
2551
  "spin 0.9.8",
2413
2552
  "untrusted",
2414
- "windows-sys 0.48.0",
2553
+ "windows-sys 0.52.0",
2415
2554
  ]
2416
2555
 
2417
2556
  [[package]]
@@ -2438,7 +2577,7 @@ dependencies = [
2438
2577
  "num-traits",
2439
2578
  "pkcs1",
2440
2579
  "pkcs8",
2441
- "rand_core 0.6.4",
2580
+ "rand_core",
2442
2581
  "signature",
2443
2582
  "spki",
2444
2583
  "subtle",
@@ -2472,11 +2611,11 @@ dependencies = [
2472
2611
 
2473
2612
  [[package]]
2474
2613
  name = "rustix"
2475
- version = "0.38.30"
2614
+ version = "0.38.34"
2476
2615
  source = "registry+https://github.com/rust-lang/crates.io-index"
2477
- checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca"
2616
+ checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
2478
2617
  dependencies = [
2479
- "bitflags 2.4.2",
2618
+ "bitflags 2.5.0",
2480
2619
  "errno",
2481
2620
  "libc",
2482
2621
  "linux-raw-sys",
@@ -2485,16 +2624,29 @@ dependencies = [
2485
2624
 
2486
2625
  [[package]]
2487
2626
  name = "rustls"
2488
- version = "0.21.10"
2627
+ version = "0.21.11"
2489
2628
  source = "registry+https://github.com/rust-lang/crates.io-index"
2490
- checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
2629
+ checksum = "7fecbfb7b1444f477b345853b1fce097a2c6fb637b2bfb87e6bc5db0f043fae4"
2491
2630
  dependencies = [
2492
- "log",
2493
2631
  "ring",
2494
- "rustls-webpki",
2632
+ "rustls-webpki 0.101.7",
2495
2633
  "sct",
2496
2634
  ]
2497
2635
 
2636
+ [[package]]
2637
+ name = "rustls"
2638
+ version = "0.22.4"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
2641
+ dependencies = [
2642
+ "log",
2643
+ "ring",
2644
+ "rustls-pki-types",
2645
+ "rustls-webpki 0.102.3",
2646
+ "subtle",
2647
+ "zeroize",
2648
+ ]
2649
+
2498
2650
  [[package]]
2499
2651
  name = "rustls-pemfile"
2500
2652
  version = "1.0.4"
@@ -2504,6 +2656,22 @@ dependencies = [
2504
2656
  "base64 0.21.7",
2505
2657
  ]
2506
2658
 
2659
+ [[package]]
2660
+ name = "rustls-pemfile"
2661
+ version = "2.1.2"
2662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2663
+ checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
2664
+ dependencies = [
2665
+ "base64 0.22.0",
2666
+ "rustls-pki-types",
2667
+ ]
2668
+
2669
+ [[package]]
2670
+ name = "rustls-pki-types"
2671
+ version = "1.4.1"
2672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2673
+ checksum = "ecd36cc4259e3e4514335c4a138c6b43171a8d61d8f5c9348f9fc7529416f247"
2674
+
2507
2675
  [[package]]
2508
2676
  name = "rustls-webpki"
2509
2677
  version = "0.101.7"
@@ -2514,11 +2682,31 @@ dependencies = [
2514
2682
  "untrusted",
2515
2683
  ]
2516
2684
 
2685
+ [[package]]
2686
+ name = "rustls-webpki"
2687
+ version = "0.102.3"
2688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2689
+ checksum = "f3bce581c0dd41bce533ce695a1437fa16a7ab5ac3ccfa99fe1a620a7885eabf"
2690
+ dependencies = [
2691
+ "ring",
2692
+ "rustls-pki-types",
2693
+ "untrusted",
2694
+ ]
2695
+
2517
2696
  [[package]]
2518
2697
  name = "ryu"
2519
- version = "1.0.16"
2698
+ version = "1.0.17"
2520
2699
  source = "registry+https://github.com/rust-lang/crates.io-index"
2521
- checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
2700
+ checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
2701
+
2702
+ [[package]]
2703
+ name = "same-file"
2704
+ version = "1.0.6"
2705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2706
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2707
+ dependencies = [
2708
+ "winapi-util",
2709
+ ]
2522
2710
 
2523
2711
  [[package]]
2524
2712
  name = "scopeguard"
@@ -2548,24 +2736,24 @@ dependencies = [
2548
2736
 
2549
2737
  [[package]]
2550
2738
  name = "semver"
2551
- version = "1.0.21"
2739
+ version = "1.0.22"
2552
2740
  source = "registry+https://github.com/rust-lang/crates.io-index"
2553
- checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0"
2741
+ checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
2554
2742
 
2555
2743
  [[package]]
2556
2744
  name = "serde"
2557
- version = "1.0.196"
2745
+ version = "1.0.198"
2558
2746
  source = "registry+https://github.com/rust-lang/crates.io-index"
2559
- checksum = "870026e60fa08c69f064aa766c10f10b1d62db9ccd4d0abb206472bee0ce3b32"
2747
+ checksum = "9846a40c979031340571da2545a4e5b7c4163bdae79b301d5f86d03979451fcc"
2560
2748
  dependencies = [
2561
2749
  "serde_derive",
2562
2750
  ]
2563
2751
 
2564
2752
  [[package]]
2565
2753
  name = "serde-aux"
2566
- version = "4.4.0"
2754
+ version = "4.5.0"
2567
2755
  source = "registry+https://github.com/rust-lang/crates.io-index"
2568
- checksum = "a86348501c129f3ad50c2f4635a01971f76974cd8a3f335988a0f1581c082765"
2756
+ checksum = "0d2e8bfba469d06512e11e3311d4d051a4a387a5b42d010404fecf3200321c95"
2569
2757
  dependencies = [
2570
2758
  "chrono",
2571
2759
  "serde",
@@ -2574,20 +2762,20 @@ dependencies = [
2574
2762
 
2575
2763
  [[package]]
2576
2764
  name = "serde_derive"
2577
- version = "1.0.196"
2765
+ version = "1.0.198"
2578
2766
  source = "registry+https://github.com/rust-lang/crates.io-index"
2579
- checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67"
2767
+ checksum = "e88edab869b01783ba905e7d0153f9fc1a6505a96e4ad3018011eedb838566d9"
2580
2768
  dependencies = [
2581
2769
  "proc-macro2",
2582
2770
  "quote",
2583
- "syn 2.0.48",
2771
+ "syn 2.0.60",
2584
2772
  ]
2585
2773
 
2586
2774
  [[package]]
2587
2775
  name = "serde_json"
2588
- version = "1.0.113"
2776
+ version = "1.0.116"
2589
2777
  source = "registry+https://github.com/rust-lang/crates.io-index"
2590
- checksum = "69801b70b1c3dac963ecb03a364ba0ceda9cf60c71cfe475e99864759c8b8a79"
2778
+ checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813"
2591
2779
  dependencies = [
2592
2780
  "itoa",
2593
2781
  "ryu",
@@ -2596,20 +2784,9 @@ dependencies = [
2596
2784
 
2597
2785
  [[package]]
2598
2786
  name = "serde_qs"
2599
- version = "0.8.5"
2600
- source = "registry+https://github.com/rust-lang/crates.io-index"
2601
- checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
2602
- dependencies = [
2603
- "percent-encoding",
2604
- "serde",
2605
- "thiserror",
2606
- ]
2607
-
2608
- [[package]]
2609
- name = "serde_qs"
2610
- version = "0.12.0"
2787
+ version = "0.13.0"
2611
2788
  source = "registry+https://github.com/rust-lang/crates.io-index"
2612
- checksum = "0431a35568651e363364210c91983c1da5eb29404d9f0928b67d4ebcfa7d330c"
2789
+ checksum = "cd34f36fe4c5ba9654417139a9b3a20d2e1de6012ee678ad14d240c22c78d8d6"
2613
2790
  dependencies = [
2614
2791
  "actix-web",
2615
2792
  "futures",
@@ -2632,16 +2809,17 @@ dependencies = [
2632
2809
 
2633
2810
  [[package]]
2634
2811
  name = "serde_with"
2635
- version = "3.6.0"
2812
+ version = "3.7.0"
2636
2813
  source = "registry+https://github.com/rust-lang/crates.io-index"
2637
- checksum = "1b0ed1662c5a68664f45b76d18deb0e234aff37207086803165c961eb695e981"
2814
+ checksum = "ee80b0e361bbf88fd2f6e242ccd19cfda072cb0faa6ae694ecee08199938569a"
2638
2815
  dependencies = [
2639
2816
  "base64 0.21.7",
2640
2817
  "chrono",
2641
2818
  "hex",
2642
2819
  "indexmap 1.9.3",
2643
- "indexmap 2.2.1",
2820
+ "indexmap 2.2.6",
2644
2821
  "serde",
2822
+ "serde_derive",
2645
2823
  "serde_json",
2646
2824
  "serde_with_macros",
2647
2825
  "time",
@@ -2649,14 +2827,14 @@ dependencies = [
2649
2827
 
2650
2828
  [[package]]
2651
2829
  name = "serde_with_macros"
2652
- version = "3.6.0"
2830
+ version = "3.7.0"
2653
2831
  source = "registry+https://github.com/rust-lang/crates.io-index"
2654
- checksum = "568577ff0ef47b879f736cd66740e022f3672788cdf002a05a4e609ea5a6fb15"
2832
+ checksum = "6561dc161a9224638a31d876ccdfefbc1df91d3f3a8342eddb35f055d48c7655"
2655
2833
  dependencies = [
2656
2834
  "darling",
2657
2835
  "proc-macro2",
2658
2836
  "quote",
2659
- "syn 2.0.48",
2837
+ "syn 2.0.60",
2660
2838
  ]
2661
2839
 
2662
2840
  [[package]]
@@ -2698,9 +2876,9 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
2698
2876
 
2699
2877
  [[package]]
2700
2878
  name = "signal-hook-registry"
2701
- version = "1.4.1"
2879
+ version = "1.4.2"
2702
2880
  source = "registry+https://github.com/rust-lang/crates.io-index"
2703
- checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2881
+ checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
2704
2882
  dependencies = [
2705
2883
  "libc",
2706
2884
  ]
@@ -2712,7 +2890,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
2890
  checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2713
2891
  dependencies = [
2714
2892
  "digest",
2715
- "rand_core 0.6.4",
2893
+ "rand_core",
2716
2894
  ]
2717
2895
 
2718
2896
  [[package]]
@@ -2726,18 +2904,18 @@ dependencies = [
2726
2904
 
2727
2905
  [[package]]
2728
2906
  name = "smallvec"
2729
- version = "1.13.1"
2907
+ version = "1.13.2"
2730
2908
  source = "registry+https://github.com/rust-lang/crates.io-index"
2731
- checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
2909
+ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2732
2910
 
2733
2911
  [[package]]
2734
2912
  name = "socket2"
2735
- version = "0.5.5"
2913
+ version = "0.5.6"
2736
2914
  source = "registry+https://github.com/rust-lang/crates.io-index"
2737
- checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
2915
+ checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871"
2738
2916
  dependencies = [
2739
2917
  "libc",
2740
- "windows-sys 0.48.0",
2918
+ "windows-sys 0.52.0",
2741
2919
  ]
2742
2920
 
2743
2921
  [[package]]
@@ -2771,16 +2949,16 @@ version = "0.2.3"
2771
2949
  source = "registry+https://github.com/rust-lang/crates.io-index"
2772
2950
  checksum = "ce81b7bd7c4493975347ef60d8c7e8b742d4694f4c49f93e0a12ea263938176c"
2773
2951
  dependencies = [
2774
- "itertools",
2952
+ "itertools 0.12.1",
2775
2953
  "nom",
2776
2954
  "unicode_categories",
2777
2955
  ]
2778
2956
 
2779
2957
  [[package]]
2780
2958
  name = "sqlx"
2781
- version = "0.7.3"
2959
+ version = "0.7.4"
2782
2960
  source = "registry+https://github.com/rust-lang/crates.io-index"
2783
- checksum = "dba03c279da73694ef99763320dea58b51095dfe87d001b1d4b5fe78ba8763cf"
2961
+ checksum = "c9a2ccff1a000a5a59cd33da541d9f2fdcd9e6e8229cc200565942bff36d0aaa"
2784
2962
  dependencies = [
2785
2963
  "sqlx-core",
2786
2964
  "sqlx-macros",
@@ -2791,18 +2969,17 @@ dependencies = [
2791
2969
 
2792
2970
  [[package]]
2793
2971
  name = "sqlx-core"
2794
- version = "0.7.3"
2972
+ version = "0.7.4"
2795
2973
  source = "registry+https://github.com/rust-lang/crates.io-index"
2796
- checksum = "d84b0a3c3739e220d94b3239fd69fb1f74bc36e16643423bd99de3b43c21bfbd"
2974
+ checksum = "24ba59a9342a3d9bab6c56c118be528b27c9b60e490080e9711a04dccac83ef6"
2797
2975
  dependencies = [
2798
- "ahash 0.8.7",
2976
+ "ahash 0.8.11",
2799
2977
  "atoi",
2800
2978
  "byteorder",
2801
2979
  "bytes",
2802
2980
  "chrono",
2803
2981
  "crc",
2804
2982
  "crossbeam-queue",
2805
- "dotenvy",
2806
2983
  "either",
2807
2984
  "event-listener",
2808
2985
  "futures-channel",
@@ -2812,14 +2989,14 @@ dependencies = [
2812
2989
  "futures-util",
2813
2990
  "hashlink",
2814
2991
  "hex",
2815
- "indexmap 2.2.1",
2992
+ "indexmap 2.2.6",
2816
2993
  "log",
2817
2994
  "memchr",
2818
2995
  "once_cell",
2819
2996
  "paste",
2820
2997
  "percent-encoding",
2821
- "rustls",
2822
- "rustls-pemfile",
2998
+ "rustls 0.21.11",
2999
+ "rustls-pemfile 1.0.4",
2823
3000
  "serde",
2824
3001
  "serde_json",
2825
3002
  "sha2",
@@ -2831,14 +3008,14 @@ dependencies = [
2831
3008
  "tracing",
2832
3009
  "url",
2833
3010
  "uuid",
2834
- "webpki-roots",
3011
+ "webpki-roots 0.25.4",
2835
3012
  ]
2836
3013
 
2837
3014
  [[package]]
2838
3015
  name = "sqlx-macros"
2839
- version = "0.7.3"
3016
+ version = "0.7.4"
2840
3017
  source = "registry+https://github.com/rust-lang/crates.io-index"
2841
- checksum = "89961c00dc4d7dffb7aee214964b065072bff69e36ddb9e2c107541f75e4f2a5"
3018
+ checksum = "4ea40e2345eb2faa9e1e5e326db8c34711317d2b5e08d0d5741619048a803127"
2842
3019
  dependencies = [
2843
3020
  "proc-macro2",
2844
3021
  "quote",
@@ -2849,11 +3026,10 @@ dependencies = [
2849
3026
 
2850
3027
  [[package]]
2851
3028
  name = "sqlx-macros-core"
2852
- version = "0.7.3"
3029
+ version = "0.7.4"
2853
3030
  source = "registry+https://github.com/rust-lang/crates.io-index"
2854
- checksum = "d0bd4519486723648186a08785143599760f7cc81c52334a55d6a83ea1e20841"
3031
+ checksum = "5833ef53aaa16d860e92123292f1f6a3d53c34ba8b1969f152ef1a7bb803f3c8"
2855
3032
  dependencies = [
2856
- "atomic-write-file",
2857
3033
  "dotenvy",
2858
3034
  "either",
2859
3035
  "heck",
@@ -2876,13 +3052,13 @@ dependencies = [
2876
3052
 
2877
3053
  [[package]]
2878
3054
  name = "sqlx-mysql"
2879
- version = "0.7.3"
3055
+ version = "0.7.4"
2880
3056
  source = "registry+https://github.com/rust-lang/crates.io-index"
2881
- checksum = "e37195395df71fd068f6e2082247891bc11e3289624bbc776a0cdfa1ca7f1ea4"
3057
+ checksum = "1ed31390216d20e538e447a7a9b959e06ed9fc51c37b514b46eb758016ecd418"
2882
3058
  dependencies = [
2883
3059
  "atoi",
2884
3060
  "base64 0.21.7",
2885
- "bitflags 2.4.2",
3061
+ "bitflags 2.5.0",
2886
3062
  "byteorder",
2887
3063
  "bytes",
2888
3064
  "chrono",
@@ -2904,7 +3080,7 @@ dependencies = [
2904
3080
  "memchr",
2905
3081
  "once_cell",
2906
3082
  "percent-encoding",
2907
- "rand 0.8.5",
3083
+ "rand",
2908
3084
  "rsa",
2909
3085
  "serde",
2910
3086
  "sha1",
@@ -2920,13 +3096,13 @@ dependencies = [
2920
3096
 
2921
3097
  [[package]]
2922
3098
  name = "sqlx-postgres"
2923
- version = "0.7.3"
3099
+ version = "0.7.4"
2924
3100
  source = "registry+https://github.com/rust-lang/crates.io-index"
2925
- checksum = "d6ac0ac3b7ccd10cc96c7ab29791a7dd236bd94021f31eec7ba3d46a74aa1c24"
3101
+ checksum = "7c824eb80b894f926f89a0b9da0c7f435d27cdd35b8c655b114e58223918577e"
2926
3102
  dependencies = [
2927
3103
  "atoi",
2928
3104
  "base64 0.21.7",
2929
- "bitflags 2.4.2",
3105
+ "bitflags 2.5.0",
2930
3106
  "byteorder",
2931
3107
  "chrono",
2932
3108
  "crc",
@@ -2945,10 +3121,9 @@ dependencies = [
2945
3121
  "md-5",
2946
3122
  "memchr",
2947
3123
  "once_cell",
2948
- "rand 0.8.5",
3124
+ "rand",
2949
3125
  "serde",
2950
3126
  "serde_json",
2951
- "sha1",
2952
3127
  "sha2",
2953
3128
  "smallvec",
2954
3129
  "sqlx-core",
@@ -2961,9 +3136,9 @@ dependencies = [
2961
3136
 
2962
3137
  [[package]]
2963
3138
  name = "sqlx-sqlite"
2964
- version = "0.7.3"
3139
+ version = "0.7.4"
2965
3140
  source = "registry+https://github.com/rust-lang/crates.io-index"
2966
- checksum = "210976b7d948c7ba9fced8ca835b11cbb2d677c59c79de41ac0d397e14547490"
3141
+ checksum = "b244ef0a8414da0bed4bb1910426e890b19e5e9bccc27ada6b797d05c55ae0aa"
2967
3142
  dependencies = [
2968
3143
  "atoi",
2969
3144
  "chrono",
@@ -3020,9 +3195,9 @@ dependencies = [
3020
3195
 
3021
3196
  [[package]]
3022
3197
  name = "syn"
3023
- version = "2.0.48"
3198
+ version = "2.0.60"
3024
3199
  source = "registry+https://github.com/rust-lang/crates.io-index"
3025
- checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
3200
+ checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3"
3026
3201
  dependencies = [
3027
3202
  "proc-macro2",
3028
3203
  "quote",
@@ -3035,71 +3210,49 @@ version = "0.1.2"
3035
3210
  source = "registry+https://github.com/rust-lang/crates.io-index"
3036
3211
  checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
3037
3212
 
3038
- [[package]]
3039
- name = "system-configuration"
3040
- version = "0.5.1"
3041
- source = "registry+https://github.com/rust-lang/crates.io-index"
3042
- checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
3043
- dependencies = [
3044
- "bitflags 1.3.2",
3045
- "core-foundation",
3046
- "system-configuration-sys",
3047
- ]
3048
-
3049
- [[package]]
3050
- name = "system-configuration-sys"
3051
- version = "0.5.0"
3052
- source = "registry+https://github.com/rust-lang/crates.io-index"
3053
- checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
3054
- dependencies = [
3055
- "core-foundation-sys",
3056
- "libc",
3057
- ]
3058
-
3059
3213
  [[package]]
3060
3214
  name = "target-lexicon"
3061
- version = "0.12.13"
3215
+ version = "0.12.14"
3062
3216
  source = "registry+https://github.com/rust-lang/crates.io-index"
3063
- checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae"
3217
+ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
3064
3218
 
3065
3219
  [[package]]
3066
3220
  name = "tempfile"
3067
- version = "3.9.0"
3221
+ version = "3.10.1"
3068
3222
  source = "registry+https://github.com/rust-lang/crates.io-index"
3069
- checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
3223
+ checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
3070
3224
  dependencies = [
3071
3225
  "cfg-if",
3072
- "fastrand 2.0.1",
3073
- "redox_syscall",
3226
+ "fastrand",
3074
3227
  "rustix",
3075
3228
  "windows-sys 0.52.0",
3076
3229
  ]
3077
3230
 
3078
3231
  [[package]]
3079
3232
  name = "thiserror"
3080
- version = "1.0.56"
3233
+ version = "1.0.59"
3081
3234
  source = "registry+https://github.com/rust-lang/crates.io-index"
3082
- checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
3235
+ checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa"
3083
3236
  dependencies = [
3084
3237
  "thiserror-impl",
3085
3238
  ]
3086
3239
 
3087
3240
  [[package]]
3088
3241
  name = "thiserror-impl"
3089
- version = "1.0.56"
3242
+ version = "1.0.59"
3090
3243
  source = "registry+https://github.com/rust-lang/crates.io-index"
3091
- checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
3244
+ checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66"
3092
3245
  dependencies = [
3093
3246
  "proc-macro2",
3094
3247
  "quote",
3095
- "syn 2.0.48",
3248
+ "syn 2.0.60",
3096
3249
  ]
3097
3250
 
3098
3251
  [[package]]
3099
3252
  name = "thread_local"
3100
- version = "1.1.7"
3253
+ version = "1.1.8"
3101
3254
  source = "registry+https://github.com/rust-lang/crates.io-index"
3102
- checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
3255
+ checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
3103
3256
  dependencies = [
3104
3257
  "cfg-if",
3105
3258
  "once_cell",
@@ -3107,12 +3260,13 @@ dependencies = [
3107
3260
 
3108
3261
  [[package]]
3109
3262
  name = "time"
3110
- version = "0.3.31"
3263
+ version = "0.3.36"
3111
3264
  source = "registry+https://github.com/rust-lang/crates.io-index"
3112
- checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e"
3265
+ checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
3113
3266
  dependencies = [
3114
3267
  "deranged",
3115
3268
  "itoa",
3269
+ "num-conv",
3116
3270
  "powerfmt",
3117
3271
  "serde",
3118
3272
  "time-core",
@@ -3127,13 +3281,24 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3127
3281
 
3128
3282
  [[package]]
3129
3283
  name = "time-macros"
3130
- version = "0.2.16"
3284
+ version = "0.2.18"
3131
3285
  source = "registry+https://github.com/rust-lang/crates.io-index"
3132
- checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f"
3286
+ checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
3133
3287
  dependencies = [
3288
+ "num-conv",
3134
3289
  "time-core",
3135
3290
  ]
3136
3291
 
3292
+ [[package]]
3293
+ name = "tinytemplate"
3294
+ version = "1.2.1"
3295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3296
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3297
+ dependencies = [
3298
+ "serde",
3299
+ "serde_json",
3300
+ ]
3301
+
3137
3302
  [[package]]
3138
3303
  name = "tinyvec"
3139
3304
  version = "1.6.0"
@@ -3151,9 +3316,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3151
3316
 
3152
3317
  [[package]]
3153
3318
  name = "tokio"
3154
- version = "1.35.1"
3319
+ version = "1.37.0"
3155
3320
  source = "registry+https://github.com/rust-lang/crates.io-index"
3156
- checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
3321
+ checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
3157
3322
  dependencies = [
3158
3323
  "backtrace",
3159
3324
  "bytes",
@@ -3176,24 +3341,25 @@ checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
3176
3341
  dependencies = [
3177
3342
  "proc-macro2",
3178
3343
  "quote",
3179
- "syn 2.0.48",
3344
+ "syn 2.0.60",
3180
3345
  ]
3181
3346
 
3182
3347
  [[package]]
3183
3348
  name = "tokio-rustls"
3184
- version = "0.24.1"
3349
+ version = "0.25.0"
3185
3350
  source = "registry+https://github.com/rust-lang/crates.io-index"
3186
- checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
3351
+ checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
3187
3352
  dependencies = [
3188
- "rustls",
3353
+ "rustls 0.22.4",
3354
+ "rustls-pki-types",
3189
3355
  "tokio",
3190
3356
  ]
3191
3357
 
3192
3358
  [[package]]
3193
3359
  name = "tokio-stream"
3194
- version = "0.1.14"
3360
+ version = "0.1.15"
3195
3361
  source = "registry+https://github.com/rust-lang/crates.io-index"
3196
- checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
3362
+ checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
3197
3363
  dependencies = [
3198
3364
  "futures-core",
3199
3365
  "pin-project-lite",
@@ -3223,6 +3389,28 @@ dependencies = [
3223
3389
  "serde",
3224
3390
  ]
3225
3391
 
3392
+ [[package]]
3393
+ name = "tower"
3394
+ version = "0.4.13"
3395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3396
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
3397
+ dependencies = [
3398
+ "futures-core",
3399
+ "futures-util",
3400
+ "pin-project",
3401
+ "pin-project-lite",
3402
+ "tokio",
3403
+ "tower-layer",
3404
+ "tower-service",
3405
+ "tracing",
3406
+ ]
3407
+
3408
+ [[package]]
3409
+ name = "tower-layer"
3410
+ version = "0.3.2"
3411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3412
+ checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
3413
+
3226
3414
  [[package]]
3227
3415
  name = "tower-service"
3228
3416
  version = "0.3.2"
@@ -3243,9 +3431,9 @@ dependencies = [
3243
3431
 
3244
3432
  [[package]]
3245
3433
  name = "tracing-actix-web"
3246
- version = "0.7.9"
3434
+ version = "0.7.10"
3247
3435
  source = "registry+https://github.com/rust-lang/crates.io-index"
3248
- checksum = "1fe0d5feac3f4ca21ba33496bcb1ccab58cca6412b1405ae80f0581541e0ca78"
3436
+ checksum = "fa069bd1503dd526ee793bb3fce408895136c95fc86d2edb2acf1c646d7f0684"
3249
3437
  dependencies = [
3250
3438
  "actix-web",
3251
3439
  "mutually_exclusive_features",
@@ -3262,7 +3450,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
3262
3450
  dependencies = [
3263
3451
  "proc-macro2",
3264
3452
  "quote",
3265
- "syn 2.0.48",
3453
+ "syn 2.0.60",
3266
3454
  ]
3267
3455
 
3268
3456
  [[package]]
@@ -3271,7 +3459,7 @@ version = "0.3.9"
3271
3459
  source = "registry+https://github.com/rust-lang/crates.io-index"
3272
3460
  checksum = "b5c266b9ac83dedf0e0385ad78514949e6d89491269e7065bee51d2bb8ec7373"
3273
3461
  dependencies = [
3274
- "ahash 0.8.7",
3462
+ "ahash 0.8.11",
3275
3463
  "gethostname",
3276
3464
  "log",
3277
3465
  "serde",
@@ -3375,18 +3563,18 @@ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
3375
3563
 
3376
3564
  [[package]]
3377
3565
  name = "unicode-normalization"
3378
- version = "0.1.22"
3566
+ version = "0.1.23"
3379
3567
  source = "registry+https://github.com/rust-lang/crates.io-index"
3380
- checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
3568
+ checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
3381
3569
  dependencies = [
3382
3570
  "tinyvec",
3383
3571
  ]
3384
3572
 
3385
3573
  [[package]]
3386
3574
  name = "unicode-segmentation"
3387
- version = "1.10.1"
3575
+ version = "1.11.0"
3388
3576
  source = "registry+https://github.com/rust-lang/crates.io-index"
3389
- checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
3577
+ checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
3390
3578
 
3391
3579
  [[package]]
3392
3580
  name = "unicode_categories"
@@ -3396,9 +3584,9 @@ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
3396
3584
 
3397
3585
  [[package]]
3398
3586
  name = "unindent"
3399
- version = "0.1.11"
3587
+ version = "0.2.3"
3400
3588
  source = "registry+https://github.com/rust-lang/crates.io-index"
3401
- checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c"
3589
+ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
3402
3590
 
3403
3591
  [[package]]
3404
3592
  name = "untrusted"
@@ -3415,7 +3603,6 @@ dependencies = [
3415
3603
  "form_urlencoded",
3416
3604
  "idna",
3417
3605
  "percent-encoding",
3418
- "serde",
3419
3606
  ]
3420
3607
 
3421
3608
  [[package]]
@@ -3426,11 +3613,11 @@ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
3426
3613
 
3427
3614
  [[package]]
3428
3615
  name = "uuid"
3429
- version = "1.7.0"
3616
+ version = "1.8.0"
3430
3617
  source = "registry+https://github.com/rust-lang/crates.io-index"
3431
- checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"
3618
+ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
3432
3619
  dependencies = [
3433
- "getrandom 0.2.12",
3620
+ "getrandom",
3434
3621
  ]
3435
3622
 
3436
3623
  [[package]]
@@ -3452,10 +3639,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3452
3639
  checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
3453
3640
 
3454
3641
  [[package]]
3455
- name = "waker-fn"
3456
- version = "1.1.1"
3642
+ name = "walkdir"
3643
+ version = "2.5.0"
3457
3644
  source = "registry+https://github.com/rust-lang/crates.io-index"
3458
- checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
3645
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3646
+ dependencies = [
3647
+ "same-file",
3648
+ "winapi-util",
3649
+ ]
3459
3650
 
3460
3651
  [[package]]
3461
3652
  name = "want"
@@ -3468,21 +3659,21 @@ dependencies = [
3468
3659
 
3469
3660
  [[package]]
3470
3661
  name = "wasi"
3471
- version = "0.9.0+wasi-snapshot-preview1"
3662
+ version = "0.11.0+wasi-snapshot-preview1"
3472
3663
  source = "registry+https://github.com/rust-lang/crates.io-index"
3473
- checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
3664
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3474
3665
 
3475
3666
  [[package]]
3476
- name = "wasi"
3477
- version = "0.11.0+wasi-snapshot-preview1"
3667
+ name = "wasite"
3668
+ version = "0.1.0"
3478
3669
  source = "registry+https://github.com/rust-lang/crates.io-index"
3479
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3670
+ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
3480
3671
 
3481
3672
  [[package]]
3482
3673
  name = "wasm-bindgen"
3483
- version = "0.2.90"
3674
+ version = "0.2.92"
3484
3675
  source = "registry+https://github.com/rust-lang/crates.io-index"
3485
- checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406"
3676
+ checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
3486
3677
  dependencies = [
3487
3678
  "cfg-if",
3488
3679
  "wasm-bindgen-macro",
@@ -3490,24 +3681,24 @@ dependencies = [
3490
3681
 
3491
3682
  [[package]]
3492
3683
  name = "wasm-bindgen-backend"
3493
- version = "0.2.90"
3684
+ version = "0.2.92"
3494
3685
  source = "registry+https://github.com/rust-lang/crates.io-index"
3495
- checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd"
3686
+ checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
3496
3687
  dependencies = [
3497
3688
  "bumpalo",
3498
3689
  "log",
3499
3690
  "once_cell",
3500
3691
  "proc-macro2",
3501
3692
  "quote",
3502
- "syn 2.0.48",
3693
+ "syn 2.0.60",
3503
3694
  "wasm-bindgen-shared",
3504
3695
  ]
3505
3696
 
3506
3697
  [[package]]
3507
3698
  name = "wasm-bindgen-futures"
3508
- version = "0.4.40"
3699
+ version = "0.4.42"
3509
3700
  source = "registry+https://github.com/rust-lang/crates.io-index"
3510
- checksum = "bde2032aeb86bdfaecc8b261eef3cba735cc426c1f3a3416d1e0791be95fc461"
3701
+ checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
3511
3702
  dependencies = [
3512
3703
  "cfg-if",
3513
3704
  "js-sys",
@@ -3517,9 +3708,9 @@ dependencies = [
3517
3708
 
3518
3709
  [[package]]
3519
3710
  name = "wasm-bindgen-macro"
3520
- version = "0.2.90"
3711
+ version = "0.2.92"
3521
3712
  source = "registry+https://github.com/rust-lang/crates.io-index"
3522
- checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999"
3713
+ checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
3523
3714
  dependencies = [
3524
3715
  "quote",
3525
3716
  "wasm-bindgen-macro-support",
@@ -3527,28 +3718,28 @@ dependencies = [
3527
3718
 
3528
3719
  [[package]]
3529
3720
  name = "wasm-bindgen-macro-support"
3530
- version = "0.2.90"
3721
+ version = "0.2.92"
3531
3722
  source = "registry+https://github.com/rust-lang/crates.io-index"
3532
- checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7"
3723
+ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
3533
3724
  dependencies = [
3534
3725
  "proc-macro2",
3535
3726
  "quote",
3536
- "syn 2.0.48",
3727
+ "syn 2.0.60",
3537
3728
  "wasm-bindgen-backend",
3538
3729
  "wasm-bindgen-shared",
3539
3730
  ]
3540
3731
 
3541
3732
  [[package]]
3542
3733
  name = "wasm-bindgen-shared"
3543
- version = "0.2.90"
3734
+ version = "0.2.92"
3544
3735
  source = "registry+https://github.com/rust-lang/crates.io-index"
3545
- checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b"
3736
+ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
3546
3737
 
3547
3738
  [[package]]
3548
3739
  name = "web-sys"
3549
- version = "0.3.67"
3740
+ version = "0.3.69"
3550
3741
  source = "registry+https://github.com/rust-lang/crates.io-index"
3551
- checksum = "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed"
3742
+ checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
3552
3743
  dependencies = [
3553
3744
  "js-sys",
3554
3745
  "wasm-bindgen",
@@ -3556,15 +3747,28 @@ dependencies = [
3556
3747
 
3557
3748
  [[package]]
3558
3749
  name = "webpki-roots"
3559
- version = "0.25.3"
3750
+ version = "0.25.4"
3560
3751
  source = "registry+https://github.com/rust-lang/crates.io-index"
3561
- checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10"
3752
+ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
3753
+
3754
+ [[package]]
3755
+ name = "webpki-roots"
3756
+ version = "0.26.1"
3757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3758
+ checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009"
3759
+ dependencies = [
3760
+ "rustls-pki-types",
3761
+ ]
3562
3762
 
3563
3763
  [[package]]
3564
3764
  name = "whoami"
3565
- version = "1.4.1"
3765
+ version = "1.5.1"
3566
3766
  source = "registry+https://github.com/rust-lang/crates.io-index"
3567
- checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50"
3767
+ checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9"
3768
+ dependencies = [
3769
+ "redox_syscall",
3770
+ "wasite",
3771
+ ]
3568
3772
 
3569
3773
  [[package]]
3570
3774
  name = "winapi"
@@ -3582,6 +3786,15 @@ version = "0.4.0"
3582
3786
  source = "registry+https://github.com/rust-lang/crates.io-index"
3583
3787
  checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3584
3788
 
3789
+ [[package]]
3790
+ name = "winapi-util"
3791
+ version = "0.1.6"
3792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3793
+ checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
3794
+ dependencies = [
3795
+ "winapi",
3796
+ ]
3797
+
3585
3798
  [[package]]
3586
3799
  name = "winapi-x86_64-pc-windows-gnu"
3587
3800
  version = "0.4.0"
@@ -3594,7 +3807,7 @@ version = "0.52.0"
3594
3807
  source = "registry+https://github.com/rust-lang/crates.io-index"
3595
3808
  checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
3596
3809
  dependencies = [
3597
- "windows-targets 0.52.0",
3810
+ "windows-targets 0.52.5",
3598
3811
  ]
3599
3812
 
3600
3813
  [[package]]
@@ -3612,7 +3825,7 @@ version = "0.52.0"
3612
3825
  source = "registry+https://github.com/rust-lang/crates.io-index"
3613
3826
  checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3614
3827
  dependencies = [
3615
- "windows-targets 0.52.0",
3828
+ "windows-targets 0.52.5",
3616
3829
  ]
3617
3830
 
3618
3831
  [[package]]
@@ -3632,17 +3845,18 @@ dependencies = [
3632
3845
 
3633
3846
  [[package]]
3634
3847
  name = "windows-targets"
3635
- version = "0.52.0"
3848
+ version = "0.52.5"
3636
3849
  source = "registry+https://github.com/rust-lang/crates.io-index"
3637
- checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
3850
+ checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
3638
3851
  dependencies = [
3639
- "windows_aarch64_gnullvm 0.52.0",
3640
- "windows_aarch64_msvc 0.52.0",
3641
- "windows_i686_gnu 0.52.0",
3642
- "windows_i686_msvc 0.52.0",
3643
- "windows_x86_64_gnu 0.52.0",
3644
- "windows_x86_64_gnullvm 0.52.0",
3645
- "windows_x86_64_msvc 0.52.0",
3852
+ "windows_aarch64_gnullvm 0.52.5",
3853
+ "windows_aarch64_msvc 0.52.5",
3854
+ "windows_i686_gnu 0.52.5",
3855
+ "windows_i686_gnullvm",
3856
+ "windows_i686_msvc 0.52.5",
3857
+ "windows_x86_64_gnu 0.52.5",
3858
+ "windows_x86_64_gnullvm 0.52.5",
3859
+ "windows_x86_64_msvc 0.52.5",
3646
3860
  ]
3647
3861
 
3648
3862
  [[package]]
@@ -3653,9 +3867,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3653
3867
 
3654
3868
  [[package]]
3655
3869
  name = "windows_aarch64_gnullvm"
3656
- version = "0.52.0"
3870
+ version = "0.52.5"
3657
3871
  source = "registry+https://github.com/rust-lang/crates.io-index"
3658
- checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
3872
+ checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
3659
3873
 
3660
3874
  [[package]]
3661
3875
  name = "windows_aarch64_msvc"
@@ -3665,9 +3879,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3665
3879
 
3666
3880
  [[package]]
3667
3881
  name = "windows_aarch64_msvc"
3668
- version = "0.52.0"
3882
+ version = "0.52.5"
3669
3883
  source = "registry+https://github.com/rust-lang/crates.io-index"
3670
- checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
3884
+ checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
3671
3885
 
3672
3886
  [[package]]
3673
3887
  name = "windows_i686_gnu"
@@ -3677,9 +3891,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3677
3891
 
3678
3892
  [[package]]
3679
3893
  name = "windows_i686_gnu"
3680
- version = "0.52.0"
3894
+ version = "0.52.5"
3681
3895
  source = "registry+https://github.com/rust-lang/crates.io-index"
3682
- checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
3896
+ checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
3897
+
3898
+ [[package]]
3899
+ name = "windows_i686_gnullvm"
3900
+ version = "0.52.5"
3901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3902
+ checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
3683
3903
 
3684
3904
  [[package]]
3685
3905
  name = "windows_i686_msvc"
@@ -3689,9 +3909,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3689
3909
 
3690
3910
  [[package]]
3691
3911
  name = "windows_i686_msvc"
3692
- version = "0.52.0"
3912
+ version = "0.52.5"
3693
3913
  source = "registry+https://github.com/rust-lang/crates.io-index"
3694
- checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
3914
+ checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
3695
3915
 
3696
3916
  [[package]]
3697
3917
  name = "windows_x86_64_gnu"
@@ -3701,9 +3921,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3701
3921
 
3702
3922
  [[package]]
3703
3923
  name = "windows_x86_64_gnu"
3704
- version = "0.52.0"
3924
+ version = "0.52.5"
3705
3925
  source = "registry+https://github.com/rust-lang/crates.io-index"
3706
- checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
3926
+ checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
3707
3927
 
3708
3928
  [[package]]
3709
3929
  name = "windows_x86_64_gnullvm"
@@ -3713,9 +3933,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3713
3933
 
3714
3934
  [[package]]
3715
3935
  name = "windows_x86_64_gnullvm"
3716
- version = "0.52.0"
3936
+ version = "0.52.5"
3717
3937
  source = "registry+https://github.com/rust-lang/crates.io-index"
3718
- checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
3938
+ checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
3719
3939
 
3720
3940
  [[package]]
3721
3941
  name = "windows_x86_64_msvc"
@@ -3725,15 +3945,15 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3725
3945
 
3726
3946
  [[package]]
3727
3947
  name = "windows_x86_64_msvc"
3728
- version = "0.52.0"
3948
+ version = "0.52.5"
3729
3949
  source = "registry+https://github.com/rust-lang/crates.io-index"
3730
- checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
3950
+ checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
3731
3951
 
3732
3952
  [[package]]
3733
3953
  name = "winreg"
3734
- version = "0.50.0"
3954
+ version = "0.52.0"
3735
3955
  source = "registry+https://github.com/rust-lang/crates.io-index"
3736
- checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
3956
+ checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
3737
3957
  dependencies = [
3738
3958
  "cfg-if",
3739
3959
  "windows-sys 0.48.0",
@@ -3741,24 +3961,26 @@ dependencies = [
3741
3961
 
3742
3962
  [[package]]
3743
3963
  name = "wiremock"
3744
- version = "0.5.22"
3964
+ version = "0.6.0"
3745
3965
  source = "registry+https://github.com/rust-lang/crates.io-index"
3746
- checksum = "13a3a53eaf34f390dd30d7b1b078287dd05df2aa2e21a589ccb80f5c7253c2e9"
3966
+ checksum = "ec874e1eef0df2dcac546057fe5e29186f09c378181cd7b635b4b7bcc98e9d81"
3747
3967
  dependencies = [
3748
3968
  "assert-json-diff",
3749
3969
  "async-trait",
3750
3970
  "base64 0.21.7",
3751
3971
  "deadpool",
3752
3972
  "futures",
3753
- "futures-timer",
3754
- "http-types",
3973
+ "http 1.1.0",
3974
+ "http-body-util",
3755
3975
  "hyper",
3976
+ "hyper-util",
3756
3977
  "log",
3757
3978
  "once_cell",
3758
3979
  "regex",
3759
3980
  "serde",
3760
3981
  "serde_json",
3761
3982
  "tokio",
3983
+ "url",
3762
3984
  ]
3763
3985
 
3764
3986
  [[package]]
@@ -3787,7 +4009,7 @@ checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
3787
4009
  dependencies = [
3788
4010
  "proc-macro2",
3789
4011
  "quote",
3790
- "syn 2.0.48",
4012
+ "syn 2.0.60",
3791
4013
  ]
3792
4014
 
3793
4015
  [[package]]
@@ -3798,27 +4020,27 @@ checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
3798
4020
 
3799
4021
  [[package]]
3800
4022
  name = "zstd"
3801
- version = "0.13.0"
4023
+ version = "0.13.1"
3802
4024
  source = "registry+https://github.com/rust-lang/crates.io-index"
3803
- checksum = "bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110"
4025
+ checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a"
3804
4026
  dependencies = [
3805
4027
  "zstd-safe",
3806
4028
  ]
3807
4029
 
3808
4030
  [[package]]
3809
4031
  name = "zstd-safe"
3810
- version = "7.0.0"
4032
+ version = "7.1.0"
3811
4033
  source = "registry+https://github.com/rust-lang/crates.io-index"
3812
- checksum = "43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e"
4034
+ checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a"
3813
4035
  dependencies = [
3814
4036
  "zstd-sys",
3815
4037
  ]
3816
4038
 
3817
4039
  [[package]]
3818
4040
  name = "zstd-sys"
3819
- version = "2.0.9+zstd.1.5.5"
4041
+ version = "2.0.10+zstd.1.5.6"
3820
4042
  source = "registry+https://github.com/rust-lang/crates.io-index"
3821
- checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
4043
+ checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa"
3822
4044
  dependencies = [
3823
4045
  "cc",
3824
4046
  "pkg-config",