python-auditor 0.3.1__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 (111) hide show
  1. {python_auditor-0.3.1 → python_auditor-0.5.0}/Cargo.lock +961 -661
  2. {python_auditor-0.3.1 → python_auditor-0.5.0}/Cargo.toml +7 -6
  3. {python_auditor-0.3.1 → python_auditor-0.5.0}/PKG-INFO +1 -1
  4. {python_auditor-0.3.1 → python_auditor-0.5.0}/docs/conf.py +1 -1
  5. python_auditor-0.5.0/docs/examples.rst +381 -0
  6. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-3da9ad5248c244c040b47e27cbbca081b156fd5b88bffac65be6bb7ba7aabafe.json +16 -0
  7. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-50c6776ca37b9b56b92848573f32d72f44631c9ff702bb468dc7a7f5520a6f48.json +18 -0
  8. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-520d88dec0363b824ca4af064510c2e837819eb7877850ff8077643a5bdbe3e2.json +26 -0
  9. python_auditor-0.5.0/local_dependencies/auditor/.sqlx/query-e6c7e05a8f9aac8353000db25e8ac0bc54f7ff067ab70715b8659cb835f45af6.json +102 -0
  10. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/Cargo.toml +18 -11
  11. python_auditor-0.5.0/local_dependencies/auditor/benches/README.md +22 -0
  12. python_auditor-0.5.0/local_dependencies/auditor/benches/benchmark_with_http_request.rs +1106 -0
  13. python_auditor-0.5.0/local_dependencies/auditor/benches/configuration/bench.yaml +2 -0
  14. python_auditor-0.5.0/local_dependencies/auditor/benches/configuration.rs +26 -0
  15. python_auditor-0.5.0/local_dependencies/auditor/src/client/mod.rs +2114 -0
  16. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/configuration.rs +1 -1
  17. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/meta.rs +1 -1
  18. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/record.rs +3 -5
  19. python_auditor-0.5.0/local_dependencies/auditor/src/lib.rs +540 -0
  20. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/metrics/mod.rs +3 -3
  21. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/routes/add.rs +132 -0
  22. python_auditor-0.5.0/local_dependencies/auditor/src/routes/advanced_record_filters.rs +372 -0
  23. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/routes/get.rs +0 -1
  24. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/routes/health_check.rs +6 -2
  25. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/routes/mod.rs +2 -2
  26. python_auditor-0.5.0/local_dependencies/auditor/src/routes/record_handlers.rs +75 -0
  27. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/routes/update.rs +0 -1
  28. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/startup.rs +8 -3
  29. python_auditor-0.5.0/local_dependencies/auditor/tests/api/add.rs +328 -0
  30. python_auditor-0.5.0/local_dependencies/auditor/tests/api/advanced_queries.rs +561 -0
  31. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/client.rs +13 -8
  32. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/get.rs +2 -2
  33. python_auditor-0.5.0/local_dependencies/auditor/tests/api/get_one_record.rs +45 -0
  34. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/get_since.rs +4 -4
  35. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/helpers.rs +35 -3
  36. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/main.rs +2 -0
  37. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/update.rs +2 -2
  38. python_auditor-0.5.0/scripts/test_advanced_query.py +223 -0
  39. python_auditor-0.5.0/scripts/test_advanced_query_blocking.py +227 -0
  40. python_auditor-0.5.0/scripts/test_bulk_insert.py +66 -0
  41. python_auditor-0.5.0/scripts/test_bulk_insert_blocking.py +68 -0
  42. python_auditor-0.5.0/scripts/test_get_single_record.py +55 -0
  43. python_auditor-0.5.0/scripts/test_get_single_record_blocking.py +56 -0
  44. {python_auditor-0.3.1 → python_auditor-0.5.0}/src/blocking_client.rs +57 -4
  45. python_auditor-0.5.0/src/client.rs +830 -0
  46. {python_auditor-0.3.1 → python_auditor-0.5.0}/src/domain/record.rs +4 -0
  47. {python_auditor-0.3.1 → python_auditor-0.5.0}/src/lib.rs +7 -0
  48. python_auditor-0.3.1/docs/examples.rst +0 -197
  49. python_auditor-0.3.1/local_dependencies/auditor/src/client/mod.rs +0 -1113
  50. python_auditor-0.3.1/local_dependencies/auditor/src/lib.rs +0 -205
  51. python_auditor-0.3.1/local_dependencies/auditor/src/routes/get_since.rs +0 -153
  52. python_auditor-0.3.1/local_dependencies/auditor/src/routes/record_handlers.rs +0 -36
  53. python_auditor-0.3.1/local_dependencies/auditor/tests/api/add.rs +0 -162
  54. python_auditor-0.3.1/src/client.rs +0 -155
  55. {python_auditor-0.3.1 → python_auditor-0.5.0}/.cargo/config.toml +0 -0
  56. {python_auditor-0.3.1 → python_auditor-0.5.0}/.readthedocs.yaml +0 -0
  57. {python_auditor-0.3.1 → python_auditor-0.5.0}/README.md +0 -0
  58. {python_auditor-0.3.1 → python_auditor-0.5.0}/docs/Makefile +0 -0
  59. {python_auditor-0.3.1 → python_auditor-0.5.0}/docs/api.rst +0 -0
  60. {python_auditor-0.3.1 → python_auditor-0.5.0}/docs/changelog.rst +0 -0
  61. {python_auditor-0.3.1 → python_auditor-0.5.0}/docs/index.rst +0 -0
  62. {python_auditor-0.3.1 → python_auditor-0.5.0}/docs/make.bat +0 -0
  63. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/.env +0 -0
  64. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-0de2b3aa2731428f5c749d7c166ab8be945eb01c6515fb3db329e45e39fd7d12.json +0 -0
  65. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-17f4686d8430a057a076f44db1d54859c3fb4f569d162d7095f8734b87ab73b7.json +0 -0
  66. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-36fad28130fa066e2182edb3019f5d7e77a635c6116aa9c8a5b358114fb8c57c.json +0 -0
  67. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-4e72ae54be447c525721306d208b926c647e3f8149bbd428a97ecbc9f8bceca5.json +0 -0
  68. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-622a95c18c6d5bb7d69e5f557e4742a07db9389fb810005f9e8bc142686c7846.json +0 -0
  69. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-6ba76bcc9e877d3b6e353a4b85a1115d4821d4304b91593614ea39597ae29bc1.json +0 -0
  70. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-6c7c9b840bd8bf36dd80484f6c82787423b2304ccff83a98a57ec398c1b46ddb.json +0 -0
  71. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-80a4ffc9c5af2cf8570c4543df24cc9fc9604f98bc4716ae4f99479af245774e.json +0 -0
  72. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-b205b9e460541ad09dcd6de4d75df490a88f4b31b3ef45a9ec68047c39081eb5.json +0 -0
  73. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-b4e6b925764d8bdabd3aa358f357fc59f0e71b39e06c82e332185cc9ab0b04ed.json +0 -0
  74. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/.sqlx/query-f9013f697e7b81594947530172248a0400cfbf7e316d0224b4692475a12a7d7f.json +0 -0
  75. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/build.rs +0 -0
  76. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/configuration/base.yaml +0 -0
  77. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/configuration/local.yaml +0 -0
  78. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/configuration/priority-plugin/base.yml +0 -0
  79. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/configuration/production.yaml +0 -0
  80. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/configuration/slurm-epilog-collector/base.yml +0 -0
  81. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_empty_db.py +0 -0
  82. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_multiple_entries.py +0 -0
  83. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/scripts/test_prometheus_exporter/test_single_entry.py +0 -0
  84. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/constants.rs +0 -0
  85. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/component.rs +0 -0
  86. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/mod.rs +0 -0
  87. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/score.rs +0 -0
  88. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/validamount.rs +0 -0
  89. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/validname.rs +0 -0
  90. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/domain/validvalue.rs +0 -0
  91. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/error.rs +0 -0
  92. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/macros.rs +0 -0
  93. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/main.rs +0 -0
  94. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/metrics/database.rs +0 -0
  95. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/src/telemetry.rs +0 -0
  96. {python_auditor-0.3.1 → python_auditor-0.5.0}/local_dependencies/auditor/tests/api/health_check.rs +0 -0
  97. {python_auditor-0.3.1 → python_auditor-0.5.0}/pyproject.toml +0 -0
  98. {python_auditor-0.3.1 → python_auditor-0.5.0}/scripts/test_add_update.py +0 -0
  99. {python_auditor-0.3.1 → python_auditor-0.5.0}/scripts/test_add_update_blocking.py +0 -0
  100. {python_auditor-0.3.1 → python_auditor-0.5.0}/scripts/test_components.py +0 -0
  101. {python_auditor-0.3.1 → python_auditor-0.5.0}/scripts/test_components_blocking.py +0 -0
  102. {python_auditor-0.3.1 → python_auditor-0.5.0}/scripts/test_eq.py +0 -0
  103. {python_auditor-0.3.1 → python_auditor-0.5.0}/scripts/test_get_since.py +0 -0
  104. {python_auditor-0.3.1 → python_auditor-0.5.0}/scripts/test_get_since_blocking.py +0 -0
  105. {python_auditor-0.3.1 → python_auditor-0.5.0}/scripts/test_meta.py +0 -0
  106. {python_auditor-0.3.1 → python_auditor-0.5.0}/scripts/test_meta_blocking.py +0 -0
  107. {python_auditor-0.3.1 → python_auditor-0.5.0}/src/builder.rs +0 -0
  108. {python_auditor-0.3.1 → python_auditor-0.5.0}/src/domain/component.rs +0 -0
  109. {python_auditor-0.3.1 → python_auditor-0.5.0}/src/domain/meta.rs +0 -0
  110. {python_auditor-0.3.1 → python_auditor-0.5.0}/src/domain/mod.rs +0 -0
  111. {python_auditor-0.3.1 → python_auditor-0.5.0}/src/domain/score.rs +0 -0
@@ -4,11 +4,11 @@ version = 3
4
4
 
5
5
  [[package]]
6
6
  name = "actix-codec"
7
- version = "0.5.1"
7
+ version = "0.5.2"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8"
9
+ checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
10
10
  dependencies = [
11
- "bitflags 1.3.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.4.0"
24
+ version = "3.6.0"
25
25
  source = "registry+https://github.com/rust-lang/crates.io-index"
26
- checksum = "a92ef85799cba03f76e4f7c10f533e66d87c9a7e7055f3391f09000ad8351bc9"
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.6",
33
- "base64 0.21.5",
34
- "bitflags 2.4.1",
32
+ "ahash 0.8.11",
33
+ "base64 0.21.7",
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,17 +65,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
65
65
  checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
66
66
  dependencies = [
67
67
  "quote",
68
- "syn 2.0.39",
68
+ "syn 2.0.60",
69
69
  ]
70
70
 
71
71
  [[package]]
72
72
  name = "actix-router"
73
- version = "0.5.1"
73
+ version = "0.5.2"
74
74
  source = "registry+https://github.com/rust-lang/crates.io-index"
75
- checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799"
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",
@@ -103,7 +103,7 @@ dependencies = [
103
103
  "futures-core",
104
104
  "futures-util",
105
105
  "mio",
106
- "socket2 0.5.5",
106
+ "socket2",
107
107
  "tokio",
108
108
  "tracing",
109
109
  ]
@@ -131,9 +131,9 @@ dependencies = [
131
131
 
132
132
  [[package]]
133
133
  name = "actix-web"
134
- version = "4.4.0"
134
+ version = "4.5.1"
135
135
  source = "registry+https://github.com/rust-lang/crates.io-index"
136
- checksum = "0e4a5b5e29603ca8c94a77c65cf874718ceb60292c5a5c3e5f4ace041af462b9"
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.6",
147
+ "ahash 0.8.11",
148
148
  "bytes",
149
149
  "bytestring",
150
150
  "cfg-if",
@@ -164,7 +164,7 @@ dependencies = [
164
164
  "serde_json",
165
165
  "serde_urlencoded",
166
166
  "smallvec",
167
- "socket2 0.5.5",
167
+ "socket2",
168
168
  "time",
169
169
  "url",
170
170
  ]
@@ -178,14 +178,14 @@ dependencies = [
178
178
  "actix-router",
179
179
  "proc-macro2",
180
180
  "quote",
181
- "syn 2.0.39",
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.11",
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.6"
228
+ version = "0.8.11"
229
229
  source = "registry+https://github.com/rust-lang/crates.io-index"
230
- checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a"
230
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
231
231
  dependencies = [
232
232
  "cfg-if",
233
- "getrandom 0.2.11",
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.75"
298
+ version = "1.0.82"
287
299
  source = "registry+https://github.com/rust-lang/crates.io-index"
288
- checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
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.74"
314
+ version = "0.1.80"
314
315
  source = "registry+https://github.com/rust-lang/crates.io-index"
315
- checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9"
316
+ checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca"
316
317
  dependencies = [
317
318
  "proc-macro2",
318
319
  "quote",
319
- "syn 2.0.39",
320
+ "syn 2.0.60",
320
321
  ]
321
322
 
322
323
  [[package]]
@@ -330,7 +331,7 @@ dependencies = [
330
331
 
331
332
  [[package]]
332
333
  name = "auditor"
333
- version = "0.3.1"
334
+ version = "0.5.0"
334
335
  dependencies = [
335
336
  "actix-web",
336
337
  "actix-web-opentelemetry",
@@ -338,8 +339,10 @@ dependencies = [
338
339
  "chrono",
339
340
  "claims",
340
341
  "config",
342
+ "criterion",
343
+ "criterion-macro",
341
344
  "fake",
342
- "itertools 0.12.0",
345
+ "itertools 0.12.1",
343
346
  "num-traits",
344
347
  "once_cell",
345
348
  "opentelemetry",
@@ -349,12 +352,15 @@ dependencies = [
349
352
  "prometheus",
350
353
  "quickcheck",
351
354
  "quickcheck_macros",
352
- "rand 0.8.5",
355
+ "rand",
356
+ "rand_distr",
353
357
  "regex",
354
358
  "reqwest",
355
359
  "secrecy",
356
360
  "serde",
357
361
  "serde-aux",
362
+ "serde_json",
363
+ "serde_qs",
358
364
  "serde_with",
359
365
  "sqlx",
360
366
  "thiserror",
@@ -372,7 +378,7 @@ dependencies = [
372
378
 
373
379
  [[package]]
374
380
  name = "auditor-priority-plugin"
375
- version = "0.3.1"
381
+ version = "0.5.0"
376
382
  dependencies = [
377
383
  "actix-web",
378
384
  "actix-web-opentelemetry",
@@ -399,7 +405,7 @@ dependencies = [
399
405
 
400
406
  [[package]]
401
407
  name = "auditor-slurm-collector"
402
- version = "0.3.1"
408
+ version = "0.5.0"
403
409
  dependencies = [
404
410
  "anyhow",
405
411
  "auditor",
@@ -408,7 +414,7 @@ dependencies = [
408
414
  "color-eyre",
409
415
  "config",
410
416
  "fake",
411
- "itertools 0.12.0",
417
+ "itertools 0.12.1",
412
418
  "once_cell",
413
419
  "regex",
414
420
  "serde",
@@ -424,7 +430,7 @@ dependencies = [
424
430
 
425
431
  [[package]]
426
432
  name = "auditor-slurm-epilog-collector"
427
- version = "0.3.1"
433
+ version = "0.5.0"
428
434
  dependencies = [
429
435
  "anyhow",
430
436
  "auditor",
@@ -441,15 +447,15 @@ dependencies = [
441
447
 
442
448
  [[package]]
443
449
  name = "autocfg"
444
- version = "1.1.0"
450
+ version = "1.2.0"
445
451
  source = "registry+https://github.com/rust-lang/crates.io-index"
446
- checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
452
+ checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
447
453
 
448
454
  [[package]]
449
455
  name = "backtrace"
450
- version = "0.3.69"
456
+ version = "0.3.71"
451
457
  source = "registry+https://github.com/rust-lang/crates.io-index"
452
- checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
458
+ checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
453
459
  dependencies = [
454
460
  "addr2line",
455
461
  "cc",
@@ -468,9 +474,15 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
468
474
 
469
475
  [[package]]
470
476
  name = "base64"
471
- version = "0.21.5"
477
+ version = "0.21.7"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
480
+
481
+ [[package]]
482
+ name = "base64"
483
+ version = "0.22.0"
472
484
  source = "registry+https://github.com/rust-lang/crates.io-index"
473
- checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
485
+ checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51"
474
486
 
475
487
  [[package]]
476
488
  name = "base64ct"
@@ -495,9 +507,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
495
507
 
496
508
  [[package]]
497
509
  name = "bitflags"
498
- version = "2.4.1"
510
+ version = "2.5.0"
499
511
  source = "registry+https://github.com/rust-lang/crates.io-index"
500
- checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
512
+ checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
501
513
  dependencies = [
502
514
  "serde",
503
515
  ]
@@ -513,9 +525,9 @@ dependencies = [
513
525
 
514
526
  [[package]]
515
527
  name = "brotli"
516
- version = "3.4.0"
528
+ version = "3.5.0"
517
529
  source = "registry+https://github.com/rust-lang/crates.io-index"
518
- checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f"
530
+ checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391"
519
531
  dependencies = [
520
532
  "alloc-no-stdlib",
521
533
  "alloc-stdlib",
@@ -534,9 +546,9 @@ dependencies = [
534
546
 
535
547
  [[package]]
536
548
  name = "bumpalo"
537
- version = "3.14.0"
549
+ version = "3.16.0"
538
550
  source = "registry+https://github.com/rust-lang/crates.io-index"
539
- checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
551
+ checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
540
552
 
541
553
  [[package]]
542
554
  name = "byteorder"
@@ -546,9 +558,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
546
558
 
547
559
  [[package]]
548
560
  name = "bytes"
549
- version = "1.5.0"
561
+ version = "1.6.0"
550
562
  source = "registry+https://github.com/rust-lang/crates.io-index"
551
- checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
563
+ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
552
564
 
553
565
  [[package]]
554
566
  name = "bytestring"
@@ -559,14 +571,21 @@ dependencies = [
559
571
  "bytes",
560
572
  ]
561
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
+
562
580
  [[package]]
563
581
  name = "cc"
564
- version = "1.0.83"
582
+ version = "1.0.95"
565
583
  source = "registry+https://github.com/rust-lang/crates.io-index"
566
- checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
584
+ checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b"
567
585
  dependencies = [
568
586
  "jobserver",
569
587
  "libc",
588
+ "once_cell",
570
589
  ]
571
590
 
572
591
  [[package]]
@@ -577,9 +596,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
577
596
 
578
597
  [[package]]
579
598
  name = "chrono"
580
- version = "0.4.31"
599
+ version = "0.4.38"
581
600
  source = "registry+https://github.com/rust-lang/crates.io-index"
582
- checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
601
+ checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
583
602
  dependencies = [
584
603
  "android-tzdata",
585
604
  "iana-time-zone",
@@ -587,7 +606,34 @@ dependencies = [
587
606
  "num-traits",
588
607
  "serde",
589
608
  "wasm-bindgen",
590
- "windows-targets",
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",
591
637
  ]
592
638
 
593
639
  [[package]]
@@ -599,11 +645,36 @@ dependencies = [
599
645
  "autocfg",
600
646
  ]
601
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
+
602
673
  [[package]]
603
674
  name = "color-eyre"
604
- version = "0.6.2"
675
+ version = "0.6.3"
605
676
  source = "registry+https://github.com/rust-lang/crates.io-index"
606
- checksum = "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204"
677
+ checksum = "55146f5e46f237f7423d74111267d4597b59b0dad0ffaf7303bce9945d843ad5"
607
678
  dependencies = [
608
679
  "backtrace",
609
680
  "color-spantrace",
@@ -626,15 +697,6 @@ dependencies = [
626
697
  "tracing-error",
627
698
  ]
628
699
 
629
- [[package]]
630
- name = "concurrent-queue"
631
- version = "2.3.0"
632
- source = "registry+https://github.com/rust-lang/crates.io-index"
633
- checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400"
634
- dependencies = [
635
- "crossbeam-utils",
636
- ]
637
-
638
700
  [[package]]
639
701
  name = "config"
640
702
  version = "0.13.4"
@@ -656,9 +718,9 @@ dependencies = [
656
718
 
657
719
  [[package]]
658
720
  name = "const-oid"
659
- version = "0.9.5"
721
+ version = "0.9.6"
660
722
  source = "registry+https://github.com/rust-lang/crates.io-index"
661
- checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f"
723
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
662
724
 
663
725
  [[package]]
664
726
  name = "convert_case"
@@ -677,36 +739,26 @@ dependencies = [
677
739
  "version_check",
678
740
  ]
679
741
 
680
- [[package]]
681
- name = "core-foundation"
682
- version = "0.9.3"
683
- source = "registry+https://github.com/rust-lang/crates.io-index"
684
- checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
685
- dependencies = [
686
- "core-foundation-sys",
687
- "libc",
688
- ]
689
-
690
742
  [[package]]
691
743
  name = "core-foundation-sys"
692
- version = "0.8.4"
744
+ version = "0.8.6"
693
745
  source = "registry+https://github.com/rust-lang/crates.io-index"
694
- checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
746
+ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
695
747
 
696
748
  [[package]]
697
749
  name = "cpufeatures"
698
- version = "0.2.11"
750
+ version = "0.2.12"
699
751
  source = "registry+https://github.com/rust-lang/crates.io-index"
700
- checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0"
752
+ checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
701
753
  dependencies = [
702
754
  "libc",
703
755
  ]
704
756
 
705
757
  [[package]]
706
758
  name = "crc"
707
- version = "3.0.1"
759
+ version = "3.2.1"
708
760
  source = "registry+https://github.com/rust-lang/crates.io-index"
709
- checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe"
761
+ checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
710
762
  dependencies = [
711
763
  "crc-catalog",
712
764
  ]
@@ -719,42 +771,110 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
719
771
 
720
772
  [[package]]
721
773
  name = "crc32fast"
722
- version = "1.3.2"
774
+ version = "1.4.0"
723
775
  source = "registry+https://github.com/rust-lang/crates.io-index"
724
- checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
776
+ checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
725
777
  dependencies = [
726
778
  "cfg-if",
727
779
  ]
728
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
+
729
829
  [[package]]
730
830
  name = "crossbeam-channel"
731
- version = "0.5.8"
831
+ version = "0.5.12"
732
832
  source = "registry+https://github.com/rust-lang/crates.io-index"
733
- checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
833
+ checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95"
734
834
  dependencies = [
735
- "cfg-if",
736
835
  "crossbeam-utils",
737
836
  ]
738
837
 
739
838
  [[package]]
740
- name = "crossbeam-queue"
741
- version = "0.3.8"
839
+ name = "crossbeam-deque"
840
+ version = "0.8.5"
742
841
  source = "registry+https://github.com/rust-lang/crates.io-index"
743
- checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
842
+ checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
744
843
  dependencies = [
745
- "cfg-if",
844
+ "crossbeam-epoch",
746
845
  "crossbeam-utils",
747
846
  ]
748
847
 
749
848
  [[package]]
750
- name = "crossbeam-utils"
751
- version = "0.8.16"
849
+ name = "crossbeam-epoch"
850
+ version = "0.9.18"
752
851
  source = "registry+https://github.com/rust-lang/crates.io-index"
753
- checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
852
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
754
853
  dependencies = [
755
- "cfg-if",
854
+ "crossbeam-utils",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "crossbeam-queue"
859
+ version = "0.3.11"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
862
+ dependencies = [
863
+ "crossbeam-utils",
756
864
  ]
757
865
 
866
+ [[package]]
867
+ name = "crossbeam-utils"
868
+ version = "0.8.19"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
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
+
758
878
  [[package]]
759
879
  name = "crypto-common"
760
880
  version = "0.1.6"
@@ -767,9 +887,9 @@ dependencies = [
767
887
 
768
888
  [[package]]
769
889
  name = "darling"
770
- version = "0.20.3"
890
+ version = "0.20.8"
771
891
  source = "registry+https://github.com/rust-lang/crates.io-index"
772
- checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e"
892
+ checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
773
893
  dependencies = [
774
894
  "darling_core",
775
895
  "darling_macro",
@@ -777,39 +897,38 @@ dependencies = [
777
897
 
778
898
  [[package]]
779
899
  name = "darling_core"
780
- version = "0.20.3"
900
+ version = "0.20.8"
781
901
  source = "registry+https://github.com/rust-lang/crates.io-index"
782
- checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621"
902
+ checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
783
903
  dependencies = [
784
904
  "fnv",
785
905
  "ident_case",
786
906
  "proc-macro2",
787
907
  "quote",
788
908
  "strsim",
789
- "syn 2.0.39",
909
+ "syn 2.0.60",
790
910
  ]
791
911
 
792
912
  [[package]]
793
913
  name = "darling_macro"
794
- version = "0.20.3"
914
+ version = "0.20.8"
795
915
  source = "registry+https://github.com/rust-lang/crates.io-index"
796
- checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5"
916
+ checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
797
917
  dependencies = [
798
918
  "darling_core",
799
919
  "quote",
800
- "syn 2.0.39",
920
+ "syn 2.0.60",
801
921
  ]
802
922
 
803
923
  [[package]]
804
924
  name = "deadpool"
805
- version = "0.9.5"
925
+ version = "0.10.0"
806
926
  source = "registry+https://github.com/rust-lang/crates.io-index"
807
- checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
927
+ checksum = "fb84100978c1c7b37f09ed3ce3e5f843af02c2a2c431bae5b19230dad2c1b490"
808
928
  dependencies = [
809
929
  "async-trait",
810
930
  "deadpool-runtime",
811
931
  "num_cpus",
812
- "retain_mut",
813
932
  "tokio",
814
933
  ]
815
934
 
@@ -821,9 +940,9 @@ checksum = "63dfa964fe2a66f3fde91fc70b267fe193d822c7e603e2a675a49a7f46ad3f49"
821
940
 
822
941
  [[package]]
823
942
  name = "der"
824
- version = "0.7.8"
943
+ version = "0.7.9"
825
944
  source = "registry+https://github.com/rust-lang/crates.io-index"
826
- checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
945
+ checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0"
827
946
  dependencies = [
828
947
  "const-oid",
829
948
  "pem-rfc7468",
@@ -832,9 +951,9 @@ dependencies = [
832
951
 
833
952
  [[package]]
834
953
  name = "deranged"
835
- version = "0.3.9"
954
+ version = "0.3.11"
836
955
  source = "registry+https://github.com/rust-lang/crates.io-index"
837
- checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3"
956
+ checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
838
957
  dependencies = [
839
958
  "powerfmt",
840
959
  "serde",
@@ -855,9 +974,9 @@ dependencies = [
855
974
 
856
975
  [[package]]
857
976
  name = "deunicode"
858
- version = "1.4.1"
977
+ version = "1.4.4"
859
978
  source = "registry+https://github.com/rust-lang/crates.io-index"
860
- checksum = "6a1abaf4d861455be59f64fd2b55606cb151fce304ede7165f410243ce96bde6"
979
+ checksum = "322ef0094744e63628e6f0eb2295517f79276a5b342a4c2ff3042566ca181d4e"
861
980
 
862
981
  [[package]]
863
982
  name = "digest"
@@ -885,18 +1004,18 @@ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
885
1004
 
886
1005
  [[package]]
887
1006
  name = "either"
888
- version = "1.9.0"
1007
+ version = "1.11.0"
889
1008
  source = "registry+https://github.com/rust-lang/crates.io-index"
890
- checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
1009
+ checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
891
1010
  dependencies = [
892
1011
  "serde",
893
1012
  ]
894
1013
 
895
1014
  [[package]]
896
1015
  name = "encoding_rs"
897
- version = "0.8.33"
1016
+ version = "0.8.34"
898
1017
  source = "registry+https://github.com/rust-lang/crates.io-index"
899
- checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
1018
+ checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
900
1019
  dependencies = [
901
1020
  "cfg-if",
902
1021
  ]
@@ -919,12 +1038,12 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
919
1038
 
920
1039
  [[package]]
921
1040
  name = "errno"
922
- version = "0.3.7"
1041
+ version = "0.3.8"
923
1042
  source = "registry+https://github.com/rust-lang/crates.io-index"
924
- checksum = "f258a7194e7f7c2a7837a8913aeab7fd8c383457034fa20ce4dd3dcb813e8eb8"
1043
+ checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
925
1044
  dependencies = [
926
1045
  "libc",
927
- "windows-sys",
1046
+ "windows-sys 0.52.0",
928
1047
  ]
929
1048
 
930
1049
  [[package]]
@@ -935,7 +1054,7 @@ checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
935
1054
  dependencies = [
936
1055
  "cfg-if",
937
1056
  "home",
938
- "windows-sys",
1057
+ "windows-sys 0.48.0",
939
1058
  ]
940
1059
 
941
1060
  [[package]]
@@ -946,9 +1065,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
946
1065
 
947
1066
  [[package]]
948
1067
  name = "eyre"
949
- version = "0.6.9"
1068
+ version = "0.6.12"
950
1069
  source = "registry+https://github.com/rust-lang/crates.io-index"
951
- checksum = "80f656be11ddf91bd709454d15d5bd896fbaf4cc3314e69349e4d1569f5b46cd"
1070
+ checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
952
1071
  dependencies = [
953
1072
  "indenter",
954
1073
  "once_cell",
@@ -956,29 +1075,20 @@ dependencies = [
956
1075
 
957
1076
  [[package]]
958
1077
  name = "fake"
959
- version = "2.9.1"
1078
+ version = "2.9.2"
960
1079
  source = "registry+https://github.com/rust-lang/crates.io-index"
961
- checksum = "26221445034074d46b276e13eb97a265ebdb8ed8da705c4dddd3dd20b66b45d2"
1080
+ checksum = "1c25829bde82205da46e1823b2259db6273379f626fc211f126f65654a2669be"
962
1081
  dependencies = [
963
1082
  "chrono",
964
1083
  "deunicode",
965
- "rand 0.8.5",
966
- ]
967
-
968
- [[package]]
969
- name = "fastrand"
970
- version = "1.9.0"
971
- source = "registry+https://github.com/rust-lang/crates.io-index"
972
- checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
973
- dependencies = [
974
- "instant",
1084
+ "rand",
975
1085
  ]
976
1086
 
977
1087
  [[package]]
978
1088
  name = "fastrand"
979
- version = "2.0.1"
1089
+ version = "2.0.2"
980
1090
  source = "registry+https://github.com/rust-lang/crates.io-index"
981
- checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
1091
+ checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984"
982
1092
 
983
1093
  [[package]]
984
1094
  name = "finl_unicode"
@@ -1024,9 +1134,9 @@ dependencies = [
1024
1134
 
1025
1135
  [[package]]
1026
1136
  name = "futures"
1027
- version = "0.3.29"
1137
+ version = "0.3.30"
1028
1138
  source = "registry+https://github.com/rust-lang/crates.io-index"
1029
- checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335"
1139
+ checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
1030
1140
  dependencies = [
1031
1141
  "futures-channel",
1032
1142
  "futures-core",
@@ -1039,9 +1149,9 @@ dependencies = [
1039
1149
 
1040
1150
  [[package]]
1041
1151
  name = "futures-channel"
1042
- version = "0.3.29"
1152
+ version = "0.3.30"
1043
1153
  source = "registry+https://github.com/rust-lang/crates.io-index"
1044
- checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb"
1154
+ checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
1045
1155
  dependencies = [
1046
1156
  "futures-core",
1047
1157
  "futures-sink",
@@ -1049,15 +1159,15 @@ dependencies = [
1049
1159
 
1050
1160
  [[package]]
1051
1161
  name = "futures-core"
1052
- version = "0.3.29"
1162
+ version = "0.3.30"
1053
1163
  source = "registry+https://github.com/rust-lang/crates.io-index"
1054
- checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c"
1164
+ checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
1055
1165
 
1056
1166
  [[package]]
1057
1167
  name = "futures-executor"
1058
- version = "0.3.29"
1168
+ version = "0.3.30"
1059
1169
  source = "registry+https://github.com/rust-lang/crates.io-index"
1060
- checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc"
1170
+ checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
1061
1171
  dependencies = [
1062
1172
  "futures-core",
1063
1173
  "futures-task",
@@ -1077,59 +1187,38 @@ dependencies = [
1077
1187
 
1078
1188
  [[package]]
1079
1189
  name = "futures-io"
1080
- version = "0.3.29"
1190
+ version = "0.3.30"
1081
1191
  source = "registry+https://github.com/rust-lang/crates.io-index"
1082
- checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa"
1083
-
1084
- [[package]]
1085
- name = "futures-lite"
1086
- version = "1.13.0"
1087
- source = "registry+https://github.com/rust-lang/crates.io-index"
1088
- checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
1089
- dependencies = [
1090
- "fastrand 1.9.0",
1091
- "futures-core",
1092
- "futures-io",
1093
- "memchr",
1094
- "parking",
1095
- "pin-project-lite",
1096
- "waker-fn",
1097
- ]
1192
+ checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
1098
1193
 
1099
1194
  [[package]]
1100
1195
  name = "futures-macro"
1101
- version = "0.3.29"
1196
+ version = "0.3.30"
1102
1197
  source = "registry+https://github.com/rust-lang/crates.io-index"
1103
- checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb"
1198
+ checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
1104
1199
  dependencies = [
1105
1200
  "proc-macro2",
1106
1201
  "quote",
1107
- "syn 2.0.39",
1202
+ "syn 2.0.60",
1108
1203
  ]
1109
1204
 
1110
1205
  [[package]]
1111
1206
  name = "futures-sink"
1112
- version = "0.3.29"
1207
+ version = "0.3.30"
1113
1208
  source = "registry+https://github.com/rust-lang/crates.io-index"
1114
- checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817"
1209
+ checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
1115
1210
 
1116
1211
  [[package]]
1117
1212
  name = "futures-task"
1118
- version = "0.3.29"
1119
- source = "registry+https://github.com/rust-lang/crates.io-index"
1120
- checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2"
1121
-
1122
- [[package]]
1123
- name = "futures-timer"
1124
- version = "3.0.2"
1213
+ version = "0.3.30"
1125
1214
  source = "registry+https://github.com/rust-lang/crates.io-index"
1126
- checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
1215
+ checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
1127
1216
 
1128
1217
  [[package]]
1129
1218
  name = "futures-util"
1130
- version = "0.3.29"
1219
+ version = "0.3.30"
1131
1220
  source = "registry+https://github.com/rust-lang/crates.io-index"
1132
- checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104"
1221
+ checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
1133
1222
  dependencies = [
1134
1223
  "futures-channel",
1135
1224
  "futures-core",
@@ -1165,24 +1254,13 @@ dependencies = [
1165
1254
 
1166
1255
  [[package]]
1167
1256
  name = "getrandom"
1168
- version = "0.1.16"
1169
- source = "registry+https://github.com/rust-lang/crates.io-index"
1170
- checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
1171
- dependencies = [
1172
- "cfg-if",
1173
- "libc",
1174
- "wasi 0.9.0+wasi-snapshot-preview1",
1175
- ]
1176
-
1177
- [[package]]
1178
- name = "getrandom"
1179
- version = "0.2.11"
1257
+ version = "0.2.14"
1180
1258
  source = "registry+https://github.com/rust-lang/crates.io-index"
1181
- checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
1259
+ checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c"
1182
1260
  dependencies = [
1183
1261
  "cfg-if",
1184
1262
  "libc",
1185
- "wasi 0.11.0+wasi-snapshot-preview1",
1263
+ "wasi",
1186
1264
  ]
1187
1265
 
1188
1266
  [[package]]
@@ -1199,39 +1277,68 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
1199
1277
 
1200
1278
  [[package]]
1201
1279
  name = "h2"
1202
- version = "0.3.22"
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"
1203
1300
  source = "registry+https://github.com/rust-lang/crates.io-index"
1204
- checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178"
1301
+ checksum = "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069"
1205
1302
  dependencies = [
1206
1303
  "bytes",
1207
1304
  "fnv",
1208
1305
  "futures-core",
1209
1306
  "futures-sink",
1210
1307
  "futures-util",
1211
- "http",
1212
- "indexmap 2.1.0",
1308
+ "http 1.1.0",
1309
+ "indexmap 2.2.6",
1213
1310
  "slab",
1214
1311
  "tokio",
1215
1312
  "tokio-util",
1216
1313
  "tracing",
1217
1314
  ]
1218
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
+
1219
1326
  [[package]]
1220
1327
  name = "hashbrown"
1221
1328
  version = "0.12.3"
1222
1329
  source = "registry+https://github.com/rust-lang/crates.io-index"
1223
1330
  checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1224
1331
  dependencies = [
1225
- "ahash 0.7.7",
1332
+ "ahash 0.7.8",
1226
1333
  ]
1227
1334
 
1228
1335
  [[package]]
1229
1336
  name = "hashbrown"
1230
- version = "0.14.2"
1337
+ version = "0.14.3"
1231
1338
  source = "registry+https://github.com/rust-lang/crates.io-index"
1232
- checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156"
1339
+ checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
1233
1340
  dependencies = [
1234
- "ahash 0.8.6",
1341
+ "ahash 0.8.11",
1235
1342
  "allocator-api2",
1236
1343
  ]
1237
1344
 
@@ -1241,7 +1348,7 @@ version = "0.8.4"
1241
1348
  source = "registry+https://github.com/rust-lang/crates.io-index"
1242
1349
  checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
1243
1350
  dependencies = [
1244
- "hashbrown 0.14.2",
1351
+ "hashbrown 0.14.3",
1245
1352
  ]
1246
1353
 
1247
1354
  [[package]]
@@ -1255,9 +1362,9 @@ dependencies = [
1255
1362
 
1256
1363
  [[package]]
1257
1364
  name = "hermit-abi"
1258
- version = "0.3.3"
1365
+ version = "0.3.9"
1259
1366
  source = "registry+https://github.com/rust-lang/crates.io-index"
1260
- checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
1367
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1261
1368
 
1262
1369
  [[package]]
1263
1370
  name = "hex"
@@ -1267,9 +1374,9 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1267
1374
 
1268
1375
  [[package]]
1269
1376
  name = "hkdf"
1270
- version = "0.12.3"
1377
+ version = "0.12.4"
1271
1378
  source = "registry+https://github.com/rust-lang/crates.io-index"
1272
- checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
1379
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1273
1380
  dependencies = [
1274
1381
  "hmac",
1275
1382
  ]
@@ -1285,18 +1392,29 @@ dependencies = [
1285
1392
 
1286
1393
  [[package]]
1287
1394
  name = "home"
1288
- version = "0.5.5"
1395
+ version = "0.5.9"
1289
1396
  source = "registry+https://github.com/rust-lang/crates.io-index"
1290
- checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
1397
+ checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
1291
1398
  dependencies = [
1292
- "windows-sys",
1399
+ "windows-sys 0.52.0",
1293
1400
  ]
1294
1401
 
1295
1402
  [[package]]
1296
1403
  name = "http"
1297
- version = "0.2.11"
1404
+ version = "0.2.12"
1298
1405
  source = "registry+https://github.com/rust-lang/crates.io-index"
1299
- checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
1406
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1407
+ dependencies = [
1408
+ "bytes",
1409
+ "fnv",
1410
+ "itoa",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "http"
1415
+ version = "1.1.0"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
1300
1418
  dependencies = [
1301
1419
  "bytes",
1302
1420
  "fnv",
@@ -1305,34 +1423,25 @@ dependencies = [
1305
1423
 
1306
1424
  [[package]]
1307
1425
  name = "http-body"
1308
- version = "0.4.5"
1426
+ version = "1.0.0"
1309
1427
  source = "registry+https://github.com/rust-lang/crates.io-index"
1310
- checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
1428
+ checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
1311
1429
  dependencies = [
1312
1430
  "bytes",
1313
- "http",
1314
- "pin-project-lite",
1431
+ "http 1.1.0",
1315
1432
  ]
1316
1433
 
1317
1434
  [[package]]
1318
- name = "http-types"
1319
- version = "2.12.0"
1435
+ name = "http-body-util"
1436
+ version = "0.1.1"
1320
1437
  source = "registry+https://github.com/rust-lang/crates.io-index"
1321
- checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
1438
+ checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d"
1322
1439
  dependencies = [
1323
- "anyhow",
1324
- "async-channel",
1325
- "base64 0.13.1",
1326
- "futures-lite",
1327
- "http",
1328
- "infer",
1440
+ "bytes",
1441
+ "futures-core",
1442
+ "http 1.1.0",
1443
+ "http-body",
1329
1444
  "pin-project-lite",
1330
- "rand 0.7.3",
1331
- "serde",
1332
- "serde_json",
1333
- "serde_qs",
1334
- "serde_urlencoded",
1335
- "url",
1336
1445
  ]
1337
1446
 
1338
1447
  [[package]]
@@ -1349,47 +1458,67 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1349
1458
 
1350
1459
  [[package]]
1351
1460
  name = "hyper"
1352
- version = "0.14.27"
1461
+ version = "1.3.1"
1353
1462
  source = "registry+https://github.com/rust-lang/crates.io-index"
1354
- checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
1463
+ checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d"
1355
1464
  dependencies = [
1356
1465
  "bytes",
1357
1466
  "futures-channel",
1358
- "futures-core",
1359
1467
  "futures-util",
1360
- "h2",
1361
- "http",
1468
+ "h2 0.4.4",
1469
+ "http 1.1.0",
1362
1470
  "http-body",
1363
1471
  "httparse",
1364
1472
  "httpdate",
1365
1473
  "itoa",
1366
1474
  "pin-project-lite",
1367
- "socket2 0.4.10",
1475
+ "smallvec",
1368
1476
  "tokio",
1369
- "tower-service",
1370
- "tracing",
1371
1477
  "want",
1372
1478
  ]
1373
1479
 
1374
1480
  [[package]]
1375
1481
  name = "hyper-rustls"
1376
- version = "0.24.2"
1482
+ version = "0.26.0"
1377
1483
  source = "registry+https://github.com/rust-lang/crates.io-index"
1378
- checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
1484
+ checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c"
1379
1485
  dependencies = [
1380
1486
  "futures-util",
1381
- "http",
1487
+ "http 1.1.0",
1382
1488
  "hyper",
1383
- "rustls",
1489
+ "hyper-util",
1490
+ "rustls 0.22.4",
1491
+ "rustls-pki-types",
1384
1492
  "tokio",
1385
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",
1386
1515
  ]
1387
1516
 
1388
1517
  [[package]]
1389
1518
  name = "iana-time-zone"
1390
- version = "0.1.58"
1519
+ version = "0.1.60"
1391
1520
  source = "registry+https://github.com/rust-lang/crates.io-index"
1392
- checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20"
1521
+ checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
1393
1522
  dependencies = [
1394
1523
  "android_system_properties",
1395
1524
  "core-foundation-sys",
@@ -1443,80 +1572,76 @@ dependencies = [
1443
1572
 
1444
1573
  [[package]]
1445
1574
  name = "indexmap"
1446
- version = "2.1.0"
1575
+ version = "2.2.6"
1447
1576
  source = "registry+https://github.com/rust-lang/crates.io-index"
1448
- checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
1577
+ checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
1449
1578
  dependencies = [
1450
1579
  "equivalent",
1451
- "hashbrown 0.14.2",
1580
+ "hashbrown 0.14.3",
1452
1581
  "serde",
1453
1582
  ]
1454
1583
 
1455
1584
  [[package]]
1456
1585
  name = "indoc"
1457
- version = "1.0.9"
1586
+ version = "2.0.5"
1458
1587
  source = "registry+https://github.com/rust-lang/crates.io-index"
1459
- checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306"
1588
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
1460
1589
 
1461
1590
  [[package]]
1462
- name = "infer"
1463
- version = "0.2.3"
1591
+ name = "ipnet"
1592
+ version = "2.9.0"
1464
1593
  source = "registry+https://github.com/rust-lang/crates.io-index"
1465
- checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
1594
+ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
1466
1595
 
1467
1596
  [[package]]
1468
- name = "instant"
1469
- version = "0.1.12"
1597
+ name = "is-terminal"
1598
+ version = "0.4.12"
1470
1599
  source = "registry+https://github.com/rust-lang/crates.io-index"
1471
- checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
1600
+ checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
1472
1601
  dependencies = [
1473
- "cfg-if",
1602
+ "hermit-abi",
1603
+ "libc",
1604
+ "windows-sys 0.52.0",
1474
1605
  ]
1475
1606
 
1476
- [[package]]
1477
- name = "ipnet"
1478
- version = "2.9.0"
1479
- source = "registry+https://github.com/rust-lang/crates.io-index"
1480
- checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
1481
-
1482
1607
  [[package]]
1483
1608
  name = "itertools"
1484
- version = "0.11.0"
1609
+ version = "0.10.5"
1485
1610
  source = "registry+https://github.com/rust-lang/crates.io-index"
1486
- checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
1611
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1487
1612
  dependencies = [
1488
1613
  "either",
1489
1614
  ]
1490
1615
 
1491
1616
  [[package]]
1492
1617
  name = "itertools"
1493
- version = "0.12.0"
1618
+ version = "0.12.1"
1494
1619
  source = "registry+https://github.com/rust-lang/crates.io-index"
1495
- checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0"
1620
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1496
1621
  dependencies = [
1497
1622
  "either",
1498
1623
  ]
1499
1624
 
1500
1625
  [[package]]
1501
1626
  name = "itoa"
1502
- version = "1.0.9"
1627
+ version = "1.0.11"
1503
1628
  source = "registry+https://github.com/rust-lang/crates.io-index"
1504
- checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
1629
+ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
1505
1630
 
1506
1631
  [[package]]
1507
1632
  name = "jobserver"
1508
- version = "0.1.27"
1633
+ version = "0.1.31"
1509
1634
  source = "registry+https://github.com/rust-lang/crates.io-index"
1510
- checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"
1635
+ checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
1511
1636
  dependencies = [
1512
1637
  "libc",
1513
1638
  ]
1514
1639
 
1515
1640
  [[package]]
1516
1641
  name = "js-sys"
1517
- version = "0.3.65"
1642
+ version = "0.3.69"
1518
1643
  source = "registry+https://github.com/rust-lang/crates.io-index"
1519
- checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8"
1644
+ checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
1520
1645
  dependencies = [
1521
1646
  "wasm-bindgen",
1522
1647
  ]
@@ -1549,9 +1674,9 @@ dependencies = [
1549
1674
 
1550
1675
  [[package]]
1551
1676
  name = "libc"
1552
- version = "0.2.150"
1677
+ version = "0.2.153"
1553
1678
  source = "registry+https://github.com/rust-lang/crates.io-index"
1554
- checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
1679
+ checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
1555
1680
 
1556
1681
  [[package]]
1557
1682
  name = "libm"
@@ -1561,9 +1686,9 @@ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
1561
1686
 
1562
1687
  [[package]]
1563
1688
  name = "libsqlite3-sys"
1564
- version = "0.26.0"
1689
+ version = "0.27.0"
1565
1690
  source = "registry+https://github.com/rust-lang/crates.io-index"
1566
- checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326"
1691
+ checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716"
1567
1692
  dependencies = [
1568
1693
  "cc",
1569
1694
  "pkg-config",
@@ -1578,9 +1703,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1578
1703
 
1579
1704
  [[package]]
1580
1705
  name = "linux-raw-sys"
1581
- version = "0.4.11"
1706
+ version = "0.4.13"
1582
1707
  source = "registry+https://github.com/rust-lang/crates.io-index"
1583
- checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829"
1708
+ checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
1584
1709
 
1585
1710
  [[package]]
1586
1711
  name = "local-channel"
@@ -1611,9 +1736,9 @@ dependencies = [
1611
1736
 
1612
1737
  [[package]]
1613
1738
  name = "log"
1614
- version = "0.4.20"
1739
+ version = "0.4.21"
1615
1740
  source = "registry+https://github.com/rust-lang/crates.io-index"
1616
- checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
1741
+ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
1617
1742
 
1618
1743
  [[package]]
1619
1744
  name = "matchers"
@@ -1636,15 +1761,15 @@ dependencies = [
1636
1761
 
1637
1762
  [[package]]
1638
1763
  name = "memchr"
1639
- version = "2.6.4"
1764
+ version = "2.7.2"
1640
1765
  source = "registry+https://github.com/rust-lang/crates.io-index"
1641
- checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
1766
+ checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
1642
1767
 
1643
1768
  [[package]]
1644
1769
  name = "memoffset"
1645
- version = "0.9.0"
1770
+ version = "0.9.1"
1646
1771
  source = "registry+https://github.com/rust-lang/crates.io-index"
1647
- checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
1772
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1648
1773
  dependencies = [
1649
1774
  "autocfg",
1650
1775
  ]
@@ -1663,23 +1788,23 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1663
1788
 
1664
1789
  [[package]]
1665
1790
  name = "miniz_oxide"
1666
- version = "0.7.1"
1791
+ version = "0.7.2"
1667
1792
  source = "registry+https://github.com/rust-lang/crates.io-index"
1668
- checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
1793
+ checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
1669
1794
  dependencies = [
1670
1795
  "adler",
1671
1796
  ]
1672
1797
 
1673
1798
  [[package]]
1674
1799
  name = "mio"
1675
- version = "0.8.9"
1800
+ version = "0.8.11"
1676
1801
  source = "registry+https://github.com/rust-lang/crates.io-index"
1677
- checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0"
1802
+ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1678
1803
  dependencies = [
1679
1804
  "libc",
1680
1805
  "log",
1681
- "wasi 0.11.0+wasi-snapshot-preview1",
1682
- "windows-sys",
1806
+ "wasi",
1807
+ "windows-sys 0.48.0",
1683
1808
  ]
1684
1809
 
1685
1810
  [[package]]
@@ -1720,26 +1845,31 @@ dependencies = [
1720
1845
  "num-integer",
1721
1846
  "num-iter",
1722
1847
  "num-traits",
1723
- "rand 0.8.5",
1848
+ "rand",
1724
1849
  "smallvec",
1725
1850
  "zeroize",
1726
1851
  ]
1727
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
+
1728
1859
  [[package]]
1729
1860
  name = "num-integer"
1730
- version = "0.1.45"
1861
+ version = "0.1.46"
1731
1862
  source = "registry+https://github.com/rust-lang/crates.io-index"
1732
- checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
1863
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1733
1864
  dependencies = [
1734
- "autocfg",
1735
1865
  "num-traits",
1736
1866
  ]
1737
1867
 
1738
1868
  [[package]]
1739
1869
  name = "num-iter"
1740
- version = "0.1.43"
1870
+ version = "0.1.44"
1741
1871
  source = "registry+https://github.com/rust-lang/crates.io-index"
1742
- checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
1872
+ checksum = "d869c01cc0c455284163fd0092f1f93835385ccab5a98a0dcc497b2f8bf055a9"
1743
1873
  dependencies = [
1744
1874
  "autocfg",
1745
1875
  "num-integer",
@@ -1748,9 +1878,9 @@ dependencies = [
1748
1878
 
1749
1879
  [[package]]
1750
1880
  name = "num-traits"
1751
- version = "0.2.17"
1881
+ version = "0.2.18"
1752
1882
  source = "registry+https://github.com/rust-lang/crates.io-index"
1753
- checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
1883
+ checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
1754
1884
  dependencies = [
1755
1885
  "autocfg",
1756
1886
  "libm",
@@ -1768,28 +1898,33 @@ dependencies = [
1768
1898
 
1769
1899
  [[package]]
1770
1900
  name = "object"
1771
- version = "0.32.1"
1901
+ version = "0.32.2"
1772
1902
  source = "registry+https://github.com/rust-lang/crates.io-index"
1773
- checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
1903
+ checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
1774
1904
  dependencies = [
1775
1905
  "memchr",
1776
1906
  ]
1777
1907
 
1778
1908
  [[package]]
1779
1909
  name = "once_cell"
1780
- version = "1.18.0"
1910
+ version = "1.19.0"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
1913
+
1914
+ [[package]]
1915
+ name = "oorandom"
1916
+ version = "11.1.3"
1781
1917
  source = "registry+https://github.com/rust-lang/crates.io-index"
1782
- checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
1918
+ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
1783
1919
 
1784
1920
  [[package]]
1785
1921
  name = "opentelemetry"
1786
- version = "0.21.0"
1922
+ version = "0.22.0"
1787
1923
  source = "registry+https://github.com/rust-lang/crates.io-index"
1788
- checksum = "1e32339a5dc40459130b3bd269e9892439f55b33e772d2a9d402a789baaf4e8a"
1924
+ checksum = "900d57987be3f2aeb70d385fff9b27fb74c5723cc9a52d904d4f9c807a0667bf"
1789
1925
  dependencies = [
1790
1926
  "futures-core",
1791
1927
  "futures-sink",
1792
- "indexmap 2.1.0",
1793
1928
  "js-sys",
1794
1929
  "once_cell",
1795
1930
  "pin-project-lite",
@@ -1799,9 +1934,9 @@ dependencies = [
1799
1934
 
1800
1935
  [[package]]
1801
1936
  name = "opentelemetry-prometheus"
1802
- version = "0.14.1"
1937
+ version = "0.15.0"
1803
1938
  source = "registry+https://github.com/rust-lang/crates.io-index"
1804
- checksum = "6f8f082da115b0dcb250829e3ed0b8792b8f963a1ad42466e48422fbe6a079bd"
1939
+ checksum = "30bbcf6341cab7e2193e5843f0ac36c446a5b3fccb28747afaeda17996dcd02e"
1805
1940
  dependencies = [
1806
1941
  "once_cell",
1807
1942
  "opentelemetry",
@@ -1812,12 +1947,9 @@ dependencies = [
1812
1947
 
1813
1948
  [[package]]
1814
1949
  name = "opentelemetry-semantic-conventions"
1815
- version = "0.13.0"
1950
+ version = "0.14.0"
1816
1951
  source = "registry+https://github.com/rust-lang/crates.io-index"
1817
- checksum = "f5774f1ef1f982ef2a447f6ee04ec383981a3ab99c8e77a1a7b30182e65bbc84"
1818
- dependencies = [
1819
- "opentelemetry",
1820
- ]
1952
+ checksum = "f9ab5bd6c42fb9349dcf28af2ba9a0667f697f9bdcca045d39f2cec5543e2910"
1821
1953
 
1822
1954
  [[package]]
1823
1955
  name = "opentelemetry_api"
@@ -1837,9 +1969,9 @@ dependencies = [
1837
1969
 
1838
1970
  [[package]]
1839
1971
  name = "opentelemetry_sdk"
1840
- version = "0.21.1"
1972
+ version = "0.22.1"
1841
1973
  source = "registry+https://github.com/rust-lang/crates.io-index"
1842
- checksum = "968ba3f2ca03e90e5187f5e4f46c791ef7f2c163ae87789c8ce5f5ca3b7b7de5"
1974
+ checksum = "9e90c7113be649e31e9a0f8b5ee24ed7a16923b322c3c5ab6367469c049d6b7e"
1843
1975
  dependencies = [
1844
1976
  "async-trait",
1845
1977
  "crossbeam-channel",
@@ -1851,15 +1983,15 @@ dependencies = [
1851
1983
  "opentelemetry",
1852
1984
  "ordered-float",
1853
1985
  "percent-encoding",
1854
- "rand 0.8.5",
1986
+ "rand",
1855
1987
  "thiserror",
1856
1988
  ]
1857
1989
 
1858
1990
  [[package]]
1859
1991
  name = "ordered-float"
1860
- version = "4.1.1"
1992
+ version = "4.2.0"
1861
1993
  source = "registry+https://github.com/rust-lang/crates.io-index"
1862
- checksum = "536900a8093134cf9ccf00a27deb3532421099e958d9dd431135d0c7543ca1e8"
1994
+ checksum = "a76df7075c7d4d01fdcb46c912dd17fba5b60c78ea480b475f2b6ab6f666584e"
1863
1995
  dependencies = [
1864
1996
  "num-traits",
1865
1997
  ]
@@ -1886,12 +2018,6 @@ version = "3.5.0"
1886
2018
  source = "registry+https://github.com/rust-lang/crates.io-index"
1887
2019
  checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
1888
2020
 
1889
- [[package]]
1890
- name = "parking"
1891
- version = "2.2.0"
1892
- source = "registry+https://github.com/rust-lang/crates.io-index"
1893
- checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
1894
-
1895
2021
  [[package]]
1896
2022
  name = "parking_lot"
1897
2023
  version = "0.12.1"
@@ -1912,7 +2038,7 @@ dependencies = [
1912
2038
  "libc",
1913
2039
  "redox_syscall",
1914
2040
  "smallvec",
1915
- "windows-targets",
2041
+ "windows-targets 0.48.5",
1916
2042
  ]
1917
2043
 
1918
2044
  [[package]]
@@ -1944,9 +2070,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1944
2070
 
1945
2071
  [[package]]
1946
2072
  name = "pest"
1947
- version = "2.7.5"
2073
+ version = "2.7.9"
1948
2074
  source = "registry+https://github.com/rust-lang/crates.io-index"
1949
- checksum = "ae9cee2a55a544be8b89dc6848072af97a20f2422603c10865be2a42b580fff5"
2075
+ checksum = "311fb059dee1a7b802f036316d790138c613a4e8b180c822e3925a662e9f0c95"
1950
2076
  dependencies = [
1951
2077
  "memchr",
1952
2078
  "thiserror",
@@ -1955,9 +2081,9 @@ dependencies = [
1955
2081
 
1956
2082
  [[package]]
1957
2083
  name = "pest_derive"
1958
- version = "2.7.5"
2084
+ version = "2.7.9"
1959
2085
  source = "registry+https://github.com/rust-lang/crates.io-index"
1960
- checksum = "81d78524685f5ef2a3b3bd1cafbc9fcabb036253d9b1463e726a91cd16e2dfc2"
2086
+ checksum = "f73541b156d32197eecda1a4014d7f868fd2bcb3c550d5386087cfba442bf69c"
1961
2087
  dependencies = [
1962
2088
  "pest",
1963
2089
  "pest_generator",
@@ -1965,22 +2091,22 @@ dependencies = [
1965
2091
 
1966
2092
  [[package]]
1967
2093
  name = "pest_generator"
1968
- version = "2.7.5"
2094
+ version = "2.7.9"
1969
2095
  source = "registry+https://github.com/rust-lang/crates.io-index"
1970
- checksum = "68bd1206e71118b5356dae5ddc61c8b11e28b09ef6a31acbd15ea48a28e0c227"
2096
+ checksum = "c35eeed0a3fab112f75165fdc026b3913f4183133f19b49be773ac9ea966e8bd"
1971
2097
  dependencies = [
1972
2098
  "pest",
1973
2099
  "pest_meta",
1974
2100
  "proc-macro2",
1975
2101
  "quote",
1976
- "syn 2.0.39",
2102
+ "syn 2.0.60",
1977
2103
  ]
1978
2104
 
1979
2105
  [[package]]
1980
2106
  name = "pest_meta"
1981
- version = "2.7.5"
2107
+ version = "2.7.9"
1982
2108
  source = "registry+https://github.com/rust-lang/crates.io-index"
1983
- checksum = "7c747191d4ad9e4a4ab9c8798f1e82a39affe7ef9648390b7e5548d18e099de6"
2109
+ checksum = "2adbf29bb9776f28caece835398781ab24435585fe0d4dc1374a61db5accedca"
1984
2110
  dependencies = [
1985
2111
  "once_cell",
1986
2112
  "pest",
@@ -1989,29 +2115,29 @@ dependencies = [
1989
2115
 
1990
2116
  [[package]]
1991
2117
  name = "pin-project"
1992
- version = "1.1.3"
2118
+ version = "1.1.5"
1993
2119
  source = "registry+https://github.com/rust-lang/crates.io-index"
1994
- checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
2120
+ checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
1995
2121
  dependencies = [
1996
2122
  "pin-project-internal",
1997
2123
  ]
1998
2124
 
1999
2125
  [[package]]
2000
2126
  name = "pin-project-internal"
2001
- version = "1.1.3"
2127
+ version = "1.1.5"
2002
2128
  source = "registry+https://github.com/rust-lang/crates.io-index"
2003
- checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
2129
+ checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
2004
2130
  dependencies = [
2005
2131
  "proc-macro2",
2006
2132
  "quote",
2007
- "syn 2.0.39",
2133
+ "syn 2.0.60",
2008
2134
  ]
2009
2135
 
2010
2136
  [[package]]
2011
2137
  name = "pin-project-lite"
2012
- version = "0.2.13"
2138
+ version = "0.2.14"
2013
2139
  source = "registry+https://github.com/rust-lang/crates.io-index"
2014
- checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
2140
+ checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
2015
2141
 
2016
2142
  [[package]]
2017
2143
  name = "pin-utils"
@@ -2042,9 +2168,43 @@ dependencies = [
2042
2168
 
2043
2169
  [[package]]
2044
2170
  name = "pkg-config"
2045
- version = "0.3.27"
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"
2197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2198
+ checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab"
2199
+ dependencies = [
2200
+ "plotters-backend",
2201
+ ]
2202
+
2203
+ [[package]]
2204
+ name = "portable-atomic"
2205
+ version = "1.6.0"
2046
2206
  source = "registry+https://github.com/rust-lang/crates.io-index"
2047
- checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2207
+ checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
2048
2208
 
2049
2209
  [[package]]
2050
2210
  name = "powerfmt"
@@ -2060,9 +2220,9 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2060
2220
 
2061
2221
  [[package]]
2062
2222
  name = "proc-macro2"
2063
- version = "1.0.69"
2223
+ version = "1.0.81"
2064
2224
  source = "registry+https://github.com/rust-lang/crates.io-index"
2065
- checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
2225
+ checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba"
2066
2226
  dependencies = [
2067
2227
  "unicode-ident",
2068
2228
  ]
@@ -2090,9 +2250,9 @@ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
2090
2250
 
2091
2251
  [[package]]
2092
2252
  name = "pyo3"
2093
- version = "0.19.2"
2253
+ version = "0.20.3"
2094
2254
  source = "registry+https://github.com/rust-lang/crates.io-index"
2095
- checksum = "e681a6cfdc4adcc93b4d3cf993749a4552018ee0a9b65fc0ccfad74352c72a38"
2255
+ checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
2096
2256
  dependencies = [
2097
2257
  "anyhow",
2098
2258
  "cfg-if",
@@ -2101,6 +2261,7 @@ dependencies = [
2101
2261
  "libc",
2102
2262
  "memoffset",
2103
2263
  "parking_lot",
2264
+ "portable-atomic",
2104
2265
  "pyo3-build-config",
2105
2266
  "pyo3-ffi",
2106
2267
  "pyo3-macros",
@@ -2109,9 +2270,9 @@ dependencies = [
2109
2270
 
2110
2271
  [[package]]
2111
2272
  name = "pyo3-asyncio"
2112
- version = "0.19.0"
2273
+ version = "0.20.0"
2113
2274
  source = "registry+https://github.com/rust-lang/crates.io-index"
2114
- checksum = "a2cc34c1f907ca090d7add03dc523acdd91f3a4dab12286604951e2f5152edad"
2275
+ checksum = "6ea6b68e93db3622f3bb3bf363246cf948ed5375afe7abff98ccbdd50b184995"
2115
2276
  dependencies = [
2116
2277
  "futures",
2117
2278
  "once_cell",
@@ -2123,9 +2284,9 @@ dependencies = [
2123
2284
 
2124
2285
  [[package]]
2125
2286
  name = "pyo3-asyncio-macros"
2126
- version = "0.19.0"
2287
+ version = "0.20.0"
2127
2288
  source = "registry+https://github.com/rust-lang/crates.io-index"
2128
- checksum = "e4045f06429547179e4596f5c0b13c82efc8b04296016780133653ed69ce26b3"
2289
+ checksum = "56c467178e1da6252c95c29ecf898b133f742e9181dca5def15dc24e19d45a39"
2129
2290
  dependencies = [
2130
2291
  "proc-macro2",
2131
2292
  "quote",
@@ -2134,9 +2295,9 @@ dependencies = [
2134
2295
 
2135
2296
  [[package]]
2136
2297
  name = "pyo3-build-config"
2137
- version = "0.19.2"
2298
+ version = "0.20.3"
2138
2299
  source = "registry+https://github.com/rust-lang/crates.io-index"
2139
- checksum = "076c73d0bc438f7a4ef6fdd0c3bb4732149136abd952b110ac93e4edb13a6ba5"
2300
+ checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
2140
2301
  dependencies = [
2141
2302
  "once_cell",
2142
2303
  "target-lexicon",
@@ -2144,9 +2305,9 @@ dependencies = [
2144
2305
 
2145
2306
  [[package]]
2146
2307
  name = "pyo3-ffi"
2147
- version = "0.19.2"
2308
+ version = "0.20.3"
2148
2309
  source = "registry+https://github.com/rust-lang/crates.io-index"
2149
- checksum = "e53cee42e77ebe256066ba8aa77eff722b3bb91f3419177cf4cd0f304d3284d9"
2310
+ checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
2150
2311
  dependencies = [
2151
2312
  "libc",
2152
2313
  "pyo3-build-config",
@@ -2154,36 +2315,39 @@ dependencies = [
2154
2315
 
2155
2316
  [[package]]
2156
2317
  name = "pyo3-macros"
2157
- version = "0.19.2"
2318
+ version = "0.20.3"
2158
2319
  source = "registry+https://github.com/rust-lang/crates.io-index"
2159
- checksum = "dfeb4c99597e136528c6dd7d5e3de5434d1ceaf487436a3f03b2d56b6fc9efd1"
2320
+ checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
2160
2321
  dependencies = [
2161
2322
  "proc-macro2",
2162
2323
  "pyo3-macros-backend",
2163
2324
  "quote",
2164
- "syn 1.0.109",
2325
+ "syn 2.0.60",
2165
2326
  ]
2166
2327
 
2167
2328
  [[package]]
2168
2329
  name = "pyo3-macros-backend"
2169
- version = "0.19.2"
2330
+ version = "0.20.3"
2170
2331
  source = "registry+https://github.com/rust-lang/crates.io-index"
2171
- checksum = "947dc12175c254889edc0c02e399476c2f652b4b9ebd123aa655c224de259536"
2332
+ checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
2172
2333
  dependencies = [
2334
+ "heck",
2173
2335
  "proc-macro2",
2336
+ "pyo3-build-config",
2174
2337
  "quote",
2175
- "syn 1.0.109",
2338
+ "syn 2.0.60",
2176
2339
  ]
2177
2340
 
2178
2341
  [[package]]
2179
2342
  name = "python-auditor"
2180
- version = "0.3.1"
2343
+ version = "0.5.0"
2181
2344
  dependencies = [
2182
2345
  "anyhow",
2183
2346
  "auditor",
2184
2347
  "chrono",
2185
2348
  "pyo3",
2186
2349
  "pyo3-asyncio",
2350
+ "serde",
2187
2351
  "serde_json",
2188
2352
  "tokio",
2189
2353
  ]
@@ -2196,7 +2360,7 @@ checksum = "588f6378e4dd99458b60ec275b4477add41ce4fa9f64dcba6f15adccb19b50d6"
2196
2360
  dependencies = [
2197
2361
  "env_logger",
2198
2362
  "log",
2199
- "rand 0.8.5",
2363
+ "rand",
2200
2364
  ]
2201
2365
 
2202
2366
  [[package]]
@@ -2212,26 +2376,13 @@ dependencies = [
2212
2376
 
2213
2377
  [[package]]
2214
2378
  name = "quote"
2215
- version = "1.0.33"
2379
+ version = "1.0.36"
2216
2380
  source = "registry+https://github.com/rust-lang/crates.io-index"
2217
- checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
2381
+ checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
2218
2382
  dependencies = [
2219
2383
  "proc-macro2",
2220
2384
  ]
2221
2385
 
2222
- [[package]]
2223
- name = "rand"
2224
- version = "0.7.3"
2225
- source = "registry+https://github.com/rust-lang/crates.io-index"
2226
- checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2227
- dependencies = [
2228
- "getrandom 0.1.16",
2229
- "libc",
2230
- "rand_chacha 0.2.2",
2231
- "rand_core 0.5.1",
2232
- "rand_hc",
2233
- ]
2234
-
2235
2386
  [[package]]
2236
2387
  name = "rand"
2237
2388
  version = "0.8.5"
@@ -2239,55 +2390,57 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
2390
  checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2240
2391
  dependencies = [
2241
2392
  "libc",
2242
- "rand_chacha 0.3.1",
2243
- "rand_core 0.6.4",
2393
+ "rand_chacha",
2394
+ "rand_core",
2244
2395
  ]
2245
2396
 
2246
2397
  [[package]]
2247
2398
  name = "rand_chacha"
2248
- version = "0.2.2"
2399
+ version = "0.3.1"
2249
2400
  source = "registry+https://github.com/rust-lang/crates.io-index"
2250
- checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2401
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2251
2402
  dependencies = [
2252
2403
  "ppv-lite86",
2253
- "rand_core 0.5.1",
2404
+ "rand_core",
2254
2405
  ]
2255
2406
 
2256
2407
  [[package]]
2257
- name = "rand_chacha"
2258
- version = "0.3.1"
2408
+ name = "rand_core"
2409
+ version = "0.6.4"
2259
2410
  source = "registry+https://github.com/rust-lang/crates.io-index"
2260
- checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2411
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2261
2412
  dependencies = [
2262
- "ppv-lite86",
2263
- "rand_core 0.6.4",
2413
+ "getrandom",
2264
2414
  ]
2265
2415
 
2266
2416
  [[package]]
2267
- name = "rand_core"
2268
- version = "0.5.1"
2417
+ name = "rand_distr"
2418
+ version = "0.4.3"
2269
2419
  source = "registry+https://github.com/rust-lang/crates.io-index"
2270
- checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2420
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
2271
2421
  dependencies = [
2272
- "getrandom 0.1.16",
2422
+ "num-traits",
2423
+ "rand",
2273
2424
  ]
2274
2425
 
2275
2426
  [[package]]
2276
- name = "rand_core"
2277
- version = "0.6.4"
2427
+ name = "rayon"
2428
+ version = "1.10.0"
2278
2429
  source = "registry+https://github.com/rust-lang/crates.io-index"
2279
- checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2430
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2280
2431
  dependencies = [
2281
- "getrandom 0.2.11",
2432
+ "either",
2433
+ "rayon-core",
2282
2434
  ]
2283
2435
 
2284
2436
  [[package]]
2285
- name = "rand_hc"
2286
- version = "0.2.0"
2437
+ name = "rayon-core"
2438
+ version = "1.12.1"
2287
2439
  source = "registry+https://github.com/rust-lang/crates.io-index"
2288
- checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2440
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2289
2441
  dependencies = [
2290
- "rand_core 0.5.1",
2442
+ "crossbeam-deque",
2443
+ "crossbeam-utils",
2291
2444
  ]
2292
2445
 
2293
2446
  [[package]]
@@ -2301,14 +2454,14 @@ dependencies = [
2301
2454
 
2302
2455
  [[package]]
2303
2456
  name = "regex"
2304
- version = "1.10.2"
2457
+ version = "1.10.4"
2305
2458
  source = "registry+https://github.com/rust-lang/crates.io-index"
2306
- checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
2459
+ checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
2307
2460
  dependencies = [
2308
2461
  "aho-corasick",
2309
2462
  "memchr",
2310
- "regex-automata 0.4.3",
2311
- "regex-syntax 0.8.2",
2463
+ "regex-automata 0.4.6",
2464
+ "regex-syntax 0.8.3",
2312
2465
  ]
2313
2466
 
2314
2467
  [[package]]
@@ -2322,13 +2475,13 @@ dependencies = [
2322
2475
 
2323
2476
  [[package]]
2324
2477
  name = "regex-automata"
2325
- version = "0.4.3"
2478
+ version = "0.4.6"
2326
2479
  source = "registry+https://github.com/rust-lang/crates.io-index"
2327
- checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
2480
+ checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
2328
2481
  dependencies = [
2329
2482
  "aho-corasick",
2330
2483
  "memchr",
2331
- "regex-syntax 0.8.2",
2484
+ "regex-syntax 0.8.3",
2332
2485
  ]
2333
2486
 
2334
2487
  [[package]]
@@ -2339,26 +2492,27 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2339
2492
 
2340
2493
  [[package]]
2341
2494
  name = "regex-syntax"
2342
- version = "0.8.2"
2495
+ version = "0.8.3"
2343
2496
  source = "registry+https://github.com/rust-lang/crates.io-index"
2344
- checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
2497
+ checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
2345
2498
 
2346
2499
  [[package]]
2347
2500
  name = "reqwest"
2348
- version = "0.11.22"
2501
+ version = "0.12.4"
2349
2502
  source = "registry+https://github.com/rust-lang/crates.io-index"
2350
- checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b"
2503
+ checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10"
2351
2504
  dependencies = [
2352
- "base64 0.21.5",
2505
+ "base64 0.22.0",
2353
2506
  "bytes",
2354
- "encoding_rs",
2507
+ "futures-channel",
2355
2508
  "futures-core",
2356
2509
  "futures-util",
2357
- "h2",
2358
- "http",
2510
+ "http 1.1.0",
2359
2511
  "http-body",
2512
+ "http-body-util",
2360
2513
  "hyper",
2361
2514
  "hyper-rustls",
2515
+ "hyper-util",
2362
2516
  "ipnet",
2363
2517
  "js-sys",
2364
2518
  "log",
@@ -2366,12 +2520,13 @@ dependencies = [
2366
2520
  "once_cell",
2367
2521
  "percent-encoding",
2368
2522
  "pin-project-lite",
2369
- "rustls",
2370
- "rustls-pemfile",
2523
+ "rustls 0.22.4",
2524
+ "rustls-pemfile 2.1.2",
2525
+ "rustls-pki-types",
2371
2526
  "serde",
2372
2527
  "serde_json",
2373
2528
  "serde_urlencoded",
2374
- "system-configuration",
2529
+ "sync_wrapper",
2375
2530
  "tokio",
2376
2531
  "tokio-rustls",
2377
2532
  "tower-service",
@@ -2379,28 +2534,23 @@ dependencies = [
2379
2534
  "wasm-bindgen",
2380
2535
  "wasm-bindgen-futures",
2381
2536
  "web-sys",
2382
- "webpki-roots 0.25.2",
2537
+ "webpki-roots 0.26.1",
2383
2538
  "winreg",
2384
2539
  ]
2385
2540
 
2386
- [[package]]
2387
- name = "retain_mut"
2388
- version = "0.1.9"
2389
- source = "registry+https://github.com/rust-lang/crates.io-index"
2390
- checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
2391
-
2392
2541
  [[package]]
2393
2542
  name = "ring"
2394
- version = "0.17.5"
2543
+ version = "0.17.8"
2395
2544
  source = "registry+https://github.com/rust-lang/crates.io-index"
2396
- checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b"
2545
+ checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
2397
2546
  dependencies = [
2398
2547
  "cc",
2399
- "getrandom 0.2.11",
2548
+ "cfg-if",
2549
+ "getrandom",
2400
2550
  "libc",
2401
2551
  "spin 0.9.8",
2402
2552
  "untrusted",
2403
- "windows-sys",
2553
+ "windows-sys 0.52.0",
2404
2554
  ]
2405
2555
 
2406
2556
  [[package]]
@@ -2416,9 +2566,9 @@ dependencies = [
2416
2566
 
2417
2567
  [[package]]
2418
2568
  name = "rsa"
2419
- version = "0.9.4"
2569
+ version = "0.9.6"
2420
2570
  source = "registry+https://github.com/rust-lang/crates.io-index"
2421
- checksum = "6a3211b01eea83d80687da9eef70e39d65144a3894866a5153a2723e425a157f"
2571
+ checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc"
2422
2572
  dependencies = [
2423
2573
  "const-oid",
2424
2574
  "digest",
@@ -2427,7 +2577,7 @@ dependencies = [
2427
2577
  "num-traits",
2428
2578
  "pkcs1",
2429
2579
  "pkcs8",
2430
- "rand_core 0.6.4",
2580
+ "rand_core",
2431
2581
  "signature",
2432
2582
  "spki",
2433
2583
  "subtle",
@@ -2461,38 +2611,67 @@ dependencies = [
2461
2611
 
2462
2612
  [[package]]
2463
2613
  name = "rustix"
2464
- version = "0.38.25"
2614
+ version = "0.38.34"
2465
2615
  source = "registry+https://github.com/rust-lang/crates.io-index"
2466
- checksum = "dc99bc2d4f1fed22595588a013687477aedf3cdcfb26558c559edb67b4d9b22e"
2616
+ checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
2467
2617
  dependencies = [
2468
- "bitflags 2.4.1",
2618
+ "bitflags 2.5.0",
2469
2619
  "errno",
2470
2620
  "libc",
2471
2621
  "linux-raw-sys",
2472
- "windows-sys",
2622
+ "windows-sys 0.52.0",
2473
2623
  ]
2474
2624
 
2475
2625
  [[package]]
2476
2626
  name = "rustls"
2477
- version = "0.21.9"
2627
+ version = "0.21.11"
2478
2628
  source = "registry+https://github.com/rust-lang/crates.io-index"
2479
- checksum = "629648aced5775d558af50b2b4c7b02983a04b312126d45eeead26e7caa498b9"
2629
+ checksum = "7fecbfb7b1444f477b345853b1fce097a2c6fb637b2bfb87e6bc5db0f043fae4"
2480
2630
  dependencies = [
2481
- "log",
2482
2631
  "ring",
2483
- "rustls-webpki",
2632
+ "rustls-webpki 0.101.7",
2484
2633
  "sct",
2485
2634
  ]
2486
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
+
2487
2650
  [[package]]
2488
2651
  name = "rustls-pemfile"
2489
2652
  version = "1.0.4"
2490
2653
  source = "registry+https://github.com/rust-lang/crates.io-index"
2491
2654
  checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
2492
2655
  dependencies = [
2493
- "base64 0.21.5",
2656
+ "base64 0.21.7",
2657
+ ]
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",
2494
2667
  ]
2495
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
+
2496
2675
  [[package]]
2497
2676
  name = "rustls-webpki"
2498
2677
  version = "0.101.7"
@@ -2503,11 +2682,31 @@ dependencies = [
2503
2682
  "untrusted",
2504
2683
  ]
2505
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
+
2506
2696
  [[package]]
2507
2697
  name = "ryu"
2508
- version = "1.0.15"
2698
+ version = "1.0.17"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
2701
+
2702
+ [[package]]
2703
+ name = "same-file"
2704
+ version = "1.0.6"
2509
2705
  source = "registry+https://github.com/rust-lang/crates.io-index"
2510
- checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
2706
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2707
+ dependencies = [
2708
+ "winapi-util",
2709
+ ]
2511
2710
 
2512
2711
  [[package]]
2513
2712
  name = "scopeguard"
@@ -2537,24 +2736,24 @@ dependencies = [
2537
2736
 
2538
2737
  [[package]]
2539
2738
  name = "semver"
2540
- version = "1.0.20"
2739
+ version = "1.0.22"
2541
2740
  source = "registry+https://github.com/rust-lang/crates.io-index"
2542
- checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090"
2741
+ checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
2543
2742
 
2544
2743
  [[package]]
2545
2744
  name = "serde"
2546
- version = "1.0.193"
2745
+ version = "1.0.198"
2547
2746
  source = "registry+https://github.com/rust-lang/crates.io-index"
2548
- checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89"
2747
+ checksum = "9846a40c979031340571da2545a4e5b7c4163bdae79b301d5f86d03979451fcc"
2549
2748
  dependencies = [
2550
2749
  "serde_derive",
2551
2750
  ]
2552
2751
 
2553
2752
  [[package]]
2554
2753
  name = "serde-aux"
2555
- version = "4.2.0"
2754
+ version = "4.5.0"
2556
2755
  source = "registry+https://github.com/rust-lang/crates.io-index"
2557
- checksum = "c3dfe1b7eb6f9dcf011bd6fad169cdeaae75eda0d61b1a99a3f015b41b0cae39"
2756
+ checksum = "0d2e8bfba469d06512e11e3311d4d051a4a387a5b42d010404fecf3200321c95"
2558
2757
  dependencies = [
2559
2758
  "chrono",
2560
2759
  "serde",
@@ -2563,20 +2762,20 @@ dependencies = [
2563
2762
 
2564
2763
  [[package]]
2565
2764
  name = "serde_derive"
2566
- version = "1.0.193"
2765
+ version = "1.0.198"
2567
2766
  source = "registry+https://github.com/rust-lang/crates.io-index"
2568
- checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3"
2767
+ checksum = "e88edab869b01783ba905e7d0153f9fc1a6505a96e4ad3018011eedb838566d9"
2569
2768
  dependencies = [
2570
2769
  "proc-macro2",
2571
2770
  "quote",
2572
- "syn 2.0.39",
2771
+ "syn 2.0.60",
2573
2772
  ]
2574
2773
 
2575
2774
  [[package]]
2576
2775
  name = "serde_json"
2577
- version = "1.0.108"
2776
+ version = "1.0.116"
2578
2777
  source = "registry+https://github.com/rust-lang/crates.io-index"
2579
- checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
2778
+ checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813"
2580
2779
  dependencies = [
2581
2780
  "itoa",
2582
2781
  "ryu",
@@ -2585,10 +2784,12 @@ dependencies = [
2585
2784
 
2586
2785
  [[package]]
2587
2786
  name = "serde_qs"
2588
- version = "0.8.5"
2787
+ version = "0.13.0"
2589
2788
  source = "registry+https://github.com/rust-lang/crates.io-index"
2590
- checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
2789
+ checksum = "cd34f36fe4c5ba9654417139a9b3a20d2e1de6012ee678ad14d240c22c78d8d6"
2591
2790
  dependencies = [
2791
+ "actix-web",
2792
+ "futures",
2592
2793
  "percent-encoding",
2593
2794
  "serde",
2594
2795
  "thiserror",
@@ -2608,16 +2809,17 @@ dependencies = [
2608
2809
 
2609
2810
  [[package]]
2610
2811
  name = "serde_with"
2611
- version = "3.4.0"
2812
+ version = "3.7.0"
2612
2813
  source = "registry+https://github.com/rust-lang/crates.io-index"
2613
- checksum = "64cd236ccc1b7a29e7e2739f27c0b2dd199804abc4290e32f59f3b68d6405c23"
2814
+ checksum = "ee80b0e361bbf88fd2f6e242ccd19cfda072cb0faa6ae694ecee08199938569a"
2614
2815
  dependencies = [
2615
- "base64 0.21.5",
2816
+ "base64 0.21.7",
2616
2817
  "chrono",
2617
2818
  "hex",
2618
2819
  "indexmap 1.9.3",
2619
- "indexmap 2.1.0",
2820
+ "indexmap 2.2.6",
2620
2821
  "serde",
2822
+ "serde_derive",
2621
2823
  "serde_json",
2622
2824
  "serde_with_macros",
2623
2825
  "time",
@@ -2625,14 +2827,14 @@ dependencies = [
2625
2827
 
2626
2828
  [[package]]
2627
2829
  name = "serde_with_macros"
2628
- version = "3.4.0"
2830
+ version = "3.7.0"
2629
2831
  source = "registry+https://github.com/rust-lang/crates.io-index"
2630
- checksum = "93634eb5f75a2323b16de4748022ac4297f9e76b6dced2be287a099f41b5e788"
2832
+ checksum = "6561dc161a9224638a31d876ccdfefbc1df91d3f3a8342eddb35f055d48c7655"
2631
2833
  dependencies = [
2632
2834
  "darling",
2633
2835
  "proc-macro2",
2634
2836
  "quote",
2635
- "syn 2.0.39",
2837
+ "syn 2.0.60",
2636
2838
  ]
2637
2839
 
2638
2840
  [[package]]
@@ -2674,9 +2876,9 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
2674
2876
 
2675
2877
  [[package]]
2676
2878
  name = "signal-hook-registry"
2677
- version = "1.4.1"
2879
+ version = "1.4.2"
2678
2880
  source = "registry+https://github.com/rust-lang/crates.io-index"
2679
- checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2881
+ checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
2680
2882
  dependencies = [
2681
2883
  "libc",
2682
2884
  ]
@@ -2688,7 +2890,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
2890
  checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2689
2891
  dependencies = [
2690
2892
  "digest",
2691
- "rand_core 0.6.4",
2893
+ "rand_core",
2692
2894
  ]
2693
2895
 
2694
2896
  [[package]]
@@ -2702,28 +2904,18 @@ dependencies = [
2702
2904
 
2703
2905
  [[package]]
2704
2906
  name = "smallvec"
2705
- version = "1.11.2"
2706
- source = "registry+https://github.com/rust-lang/crates.io-index"
2707
- checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
2708
-
2709
- [[package]]
2710
- name = "socket2"
2711
- version = "0.4.10"
2907
+ version = "1.13.2"
2712
2908
  source = "registry+https://github.com/rust-lang/crates.io-index"
2713
- checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
2714
- dependencies = [
2715
- "libc",
2716
- "winapi",
2717
- ]
2909
+ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2718
2910
 
2719
2911
  [[package]]
2720
2912
  name = "socket2"
2721
- version = "0.5.5"
2913
+ version = "0.5.6"
2722
2914
  source = "registry+https://github.com/rust-lang/crates.io-index"
2723
- checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
2915
+ checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871"
2724
2916
  dependencies = [
2725
2917
  "libc",
2726
- "windows-sys",
2918
+ "windows-sys 0.52.0",
2727
2919
  ]
2728
2920
 
2729
2921
  [[package]]
@@ -2743,9 +2935,9 @@ dependencies = [
2743
2935
 
2744
2936
  [[package]]
2745
2937
  name = "spki"
2746
- version = "0.7.2"
2938
+ version = "0.7.3"
2747
2939
  source = "registry+https://github.com/rust-lang/crates.io-index"
2748
- checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a"
2940
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2749
2941
  dependencies = [
2750
2942
  "base64ct",
2751
2943
  "der",
@@ -2753,20 +2945,20 @@ dependencies = [
2753
2945
 
2754
2946
  [[package]]
2755
2947
  name = "sqlformat"
2756
- version = "0.2.2"
2948
+ version = "0.2.3"
2757
2949
  source = "registry+https://github.com/rust-lang/crates.io-index"
2758
- checksum = "6b7b278788e7be4d0d29c0f39497a0eef3fba6bbc8e70d8bf7fde46edeaa9e85"
2950
+ checksum = "ce81b7bd7c4493975347ef60d8c7e8b742d4694f4c49f93e0a12ea263938176c"
2759
2951
  dependencies = [
2760
- "itertools 0.11.0",
2952
+ "itertools 0.12.1",
2761
2953
  "nom",
2762
2954
  "unicode_categories",
2763
2955
  ]
2764
2956
 
2765
2957
  [[package]]
2766
2958
  name = "sqlx"
2767
- version = "0.7.2"
2959
+ version = "0.7.4"
2768
2960
  source = "registry+https://github.com/rust-lang/crates.io-index"
2769
- checksum = "0e50c216e3624ec8e7ecd14c6a6a6370aad6ee5d8cfc3ab30b5162eeeef2ed33"
2961
+ checksum = "c9a2ccff1a000a5a59cd33da541d9f2fdcd9e6e8229cc200565942bff36d0aaa"
2770
2962
  dependencies = [
2771
2963
  "sqlx-core",
2772
2964
  "sqlx-macros",
@@ -2777,18 +2969,17 @@ dependencies = [
2777
2969
 
2778
2970
  [[package]]
2779
2971
  name = "sqlx-core"
2780
- version = "0.7.2"
2972
+ version = "0.7.4"
2781
2973
  source = "registry+https://github.com/rust-lang/crates.io-index"
2782
- checksum = "8d6753e460c998bbd4cd8c6f0ed9a64346fcca0723d6e75e52fdc351c5d2169d"
2974
+ checksum = "24ba59a9342a3d9bab6c56c118be528b27c9b60e490080e9711a04dccac83ef6"
2783
2975
  dependencies = [
2784
- "ahash 0.8.6",
2976
+ "ahash 0.8.11",
2785
2977
  "atoi",
2786
2978
  "byteorder",
2787
2979
  "bytes",
2788
2980
  "chrono",
2789
2981
  "crc",
2790
2982
  "crossbeam-queue",
2791
- "dotenvy",
2792
2983
  "either",
2793
2984
  "event-listener",
2794
2985
  "futures-channel",
@@ -2798,14 +2989,14 @@ dependencies = [
2798
2989
  "futures-util",
2799
2990
  "hashlink",
2800
2991
  "hex",
2801
- "indexmap 2.1.0",
2992
+ "indexmap 2.2.6",
2802
2993
  "log",
2803
2994
  "memchr",
2804
2995
  "once_cell",
2805
2996
  "paste",
2806
2997
  "percent-encoding",
2807
- "rustls",
2808
- "rustls-pemfile",
2998
+ "rustls 0.21.11",
2999
+ "rustls-pemfile 1.0.4",
2809
3000
  "serde",
2810
3001
  "serde_json",
2811
3002
  "sha2",
@@ -2817,14 +3008,14 @@ dependencies = [
2817
3008
  "tracing",
2818
3009
  "url",
2819
3010
  "uuid",
2820
- "webpki-roots 0.24.0",
3011
+ "webpki-roots 0.25.4",
2821
3012
  ]
2822
3013
 
2823
3014
  [[package]]
2824
3015
  name = "sqlx-macros"
2825
- version = "0.7.2"
3016
+ version = "0.7.4"
2826
3017
  source = "registry+https://github.com/rust-lang/crates.io-index"
2827
- checksum = "9a793bb3ba331ec8359c1853bd39eed32cdd7baaf22c35ccf5c92a7e8d1189ec"
3018
+ checksum = "4ea40e2345eb2faa9e1e5e326db8c34711317d2b5e08d0d5741619048a803127"
2828
3019
  dependencies = [
2829
3020
  "proc-macro2",
2830
3021
  "quote",
@@ -2835,9 +3026,9 @@ dependencies = [
2835
3026
 
2836
3027
  [[package]]
2837
3028
  name = "sqlx-macros-core"
2838
- version = "0.7.2"
3029
+ version = "0.7.4"
2839
3030
  source = "registry+https://github.com/rust-lang/crates.io-index"
2840
- checksum = "0a4ee1e104e00dedb6aa5ffdd1343107b0a4702e862a84320ee7cc74782d96fc"
3031
+ checksum = "5833ef53aaa16d860e92123292f1f6a3d53c34ba8b1969f152ef1a7bb803f3c8"
2841
3032
  dependencies = [
2842
3033
  "dotenvy",
2843
3034
  "either",
@@ -2861,13 +3052,13 @@ dependencies = [
2861
3052
 
2862
3053
  [[package]]
2863
3054
  name = "sqlx-mysql"
2864
- version = "0.7.2"
3055
+ version = "0.7.4"
2865
3056
  source = "registry+https://github.com/rust-lang/crates.io-index"
2866
- checksum = "864b869fdf56263f4c95c45483191ea0af340f9f3e3e7b4d57a61c7c87a970db"
3057
+ checksum = "1ed31390216d20e538e447a7a9b959e06ed9fc51c37b514b46eb758016ecd418"
2867
3058
  dependencies = [
2868
3059
  "atoi",
2869
- "base64 0.21.5",
2870
- "bitflags 2.4.1",
3060
+ "base64 0.21.7",
3061
+ "bitflags 2.5.0",
2871
3062
  "byteorder",
2872
3063
  "bytes",
2873
3064
  "chrono",
@@ -2889,7 +3080,7 @@ dependencies = [
2889
3080
  "memchr",
2890
3081
  "once_cell",
2891
3082
  "percent-encoding",
2892
- "rand 0.8.5",
3083
+ "rand",
2893
3084
  "rsa",
2894
3085
  "serde",
2895
3086
  "sha1",
@@ -2905,13 +3096,13 @@ dependencies = [
2905
3096
 
2906
3097
  [[package]]
2907
3098
  name = "sqlx-postgres"
2908
- version = "0.7.2"
3099
+ version = "0.7.4"
2909
3100
  source = "registry+https://github.com/rust-lang/crates.io-index"
2910
- checksum = "eb7ae0e6a97fb3ba33b23ac2671a5ce6e3cabe003f451abd5a56e7951d975624"
3101
+ checksum = "7c824eb80b894f926f89a0b9da0c7f435d27cdd35b8c655b114e58223918577e"
2911
3102
  dependencies = [
2912
3103
  "atoi",
2913
- "base64 0.21.5",
2914
- "bitflags 2.4.1",
3104
+ "base64 0.21.7",
3105
+ "bitflags 2.5.0",
2915
3106
  "byteorder",
2916
3107
  "chrono",
2917
3108
  "crc",
@@ -2930,10 +3121,9 @@ dependencies = [
2930
3121
  "md-5",
2931
3122
  "memchr",
2932
3123
  "once_cell",
2933
- "rand 0.8.5",
3124
+ "rand",
2934
3125
  "serde",
2935
3126
  "serde_json",
2936
- "sha1",
2937
3127
  "sha2",
2938
3128
  "smallvec",
2939
3129
  "sqlx-core",
@@ -2946,9 +3136,9 @@ dependencies = [
2946
3136
 
2947
3137
  [[package]]
2948
3138
  name = "sqlx-sqlite"
2949
- version = "0.7.2"
3139
+ version = "0.7.4"
2950
3140
  source = "registry+https://github.com/rust-lang/crates.io-index"
2951
- checksum = "d59dc83cf45d89c555a577694534fcd1b55c545a816c816ce51f20bbe56a4f3f"
3141
+ checksum = "b244ef0a8414da0bed4bb1910426e890b19e5e9bccc27ada6b797d05c55ae0aa"
2952
3142
  dependencies = [
2953
3143
  "atoi",
2954
3144
  "chrono",
@@ -2965,6 +3155,7 @@ dependencies = [
2965
3155
  "sqlx-core",
2966
3156
  "tracing",
2967
3157
  "url",
3158
+ "urlencoding",
2968
3159
  "uuid",
2969
3160
  ]
2970
3161
 
@@ -3004,9 +3195,9 @@ dependencies = [
3004
3195
 
3005
3196
  [[package]]
3006
3197
  name = "syn"
3007
- version = "2.0.39"
3198
+ version = "2.0.60"
3008
3199
  source = "registry+https://github.com/rust-lang/crates.io-index"
3009
- checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a"
3200
+ checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3"
3010
3201
  dependencies = [
3011
3202
  "proc-macro2",
3012
3203
  "quote",
@@ -3014,70 +3205,54 @@ dependencies = [
3014
3205
  ]
3015
3206
 
3016
3207
  [[package]]
3017
- name = "system-configuration"
3018
- version = "0.5.1"
3019
- source = "registry+https://github.com/rust-lang/crates.io-index"
3020
- checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
3021
- dependencies = [
3022
- "bitflags 1.3.2",
3023
- "core-foundation",
3024
- "system-configuration-sys",
3025
- ]
3026
-
3027
- [[package]]
3028
- name = "system-configuration-sys"
3029
- version = "0.5.0"
3208
+ name = "sync_wrapper"
3209
+ version = "0.1.2"
3030
3210
  source = "registry+https://github.com/rust-lang/crates.io-index"
3031
- checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
3032
- dependencies = [
3033
- "core-foundation-sys",
3034
- "libc",
3035
- ]
3211
+ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
3036
3212
 
3037
3213
  [[package]]
3038
3214
  name = "target-lexicon"
3039
- version = "0.12.12"
3215
+ version = "0.12.14"
3040
3216
  source = "registry+https://github.com/rust-lang/crates.io-index"
3041
- checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a"
3217
+ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
3042
3218
 
3043
3219
  [[package]]
3044
3220
  name = "tempfile"
3045
- version = "3.8.1"
3221
+ version = "3.10.1"
3046
3222
  source = "registry+https://github.com/rust-lang/crates.io-index"
3047
- checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5"
3223
+ checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
3048
3224
  dependencies = [
3049
3225
  "cfg-if",
3050
- "fastrand 2.0.1",
3051
- "redox_syscall",
3226
+ "fastrand",
3052
3227
  "rustix",
3053
- "windows-sys",
3228
+ "windows-sys 0.52.0",
3054
3229
  ]
3055
3230
 
3056
3231
  [[package]]
3057
3232
  name = "thiserror"
3058
- version = "1.0.50"
3233
+ version = "1.0.59"
3059
3234
  source = "registry+https://github.com/rust-lang/crates.io-index"
3060
- checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
3235
+ checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa"
3061
3236
  dependencies = [
3062
3237
  "thiserror-impl",
3063
3238
  ]
3064
3239
 
3065
3240
  [[package]]
3066
3241
  name = "thiserror-impl"
3067
- version = "1.0.50"
3242
+ version = "1.0.59"
3068
3243
  source = "registry+https://github.com/rust-lang/crates.io-index"
3069
- checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
3244
+ checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66"
3070
3245
  dependencies = [
3071
3246
  "proc-macro2",
3072
3247
  "quote",
3073
- "syn 2.0.39",
3248
+ "syn 2.0.60",
3074
3249
  ]
3075
3250
 
3076
3251
  [[package]]
3077
3252
  name = "thread_local"
3078
- version = "1.1.7"
3253
+ version = "1.1.8"
3079
3254
  source = "registry+https://github.com/rust-lang/crates.io-index"
3080
- checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
3255
+ checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
3081
3256
  dependencies = [
3082
3257
  "cfg-if",
3083
3258
  "once_cell",
@@ -3085,12 +3260,13 @@ dependencies = [
3085
3260
 
3086
3261
  [[package]]
3087
3262
  name = "time"
3088
- version = "0.3.30"
3263
+ version = "0.3.36"
3089
3264
  source = "registry+https://github.com/rust-lang/crates.io-index"
3090
- checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5"
3265
+ checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
3091
3266
  dependencies = [
3092
3267
  "deranged",
3093
3268
  "itoa",
3269
+ "num-conv",
3094
3270
  "powerfmt",
3095
3271
  "serde",
3096
3272
  "time-core",
@@ -3105,13 +3281,24 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3105
3281
 
3106
3282
  [[package]]
3107
3283
  name = "time-macros"
3108
- version = "0.2.15"
3284
+ version = "0.2.18"
3109
3285
  source = "registry+https://github.com/rust-lang/crates.io-index"
3110
- checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20"
3286
+ checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
3111
3287
  dependencies = [
3288
+ "num-conv",
3112
3289
  "time-core",
3113
3290
  ]
3114
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
+
3115
3302
  [[package]]
3116
3303
  name = "tinyvec"
3117
3304
  version = "1.6.0"
@@ -3129,9 +3316,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3129
3316
 
3130
3317
  [[package]]
3131
3318
  name = "tokio"
3132
- version = "1.34.0"
3319
+ version = "1.37.0"
3133
3320
  source = "registry+https://github.com/rust-lang/crates.io-index"
3134
- checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9"
3321
+ checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
3135
3322
  dependencies = [
3136
3323
  "backtrace",
3137
3324
  "bytes",
@@ -3141,9 +3328,9 @@ dependencies = [
3141
3328
  "parking_lot",
3142
3329
  "pin-project-lite",
3143
3330
  "signal-hook-registry",
3144
- "socket2 0.5.5",
3331
+ "socket2",
3145
3332
  "tokio-macros",
3146
- "windows-sys",
3333
+ "windows-sys 0.48.0",
3147
3334
  ]
3148
3335
 
3149
3336
  [[package]]
@@ -3154,24 +3341,25 @@ checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
3154
3341
  dependencies = [
3155
3342
  "proc-macro2",
3156
3343
  "quote",
3157
- "syn 2.0.39",
3344
+ "syn 2.0.60",
3158
3345
  ]
3159
3346
 
3160
3347
  [[package]]
3161
3348
  name = "tokio-rustls"
3162
- version = "0.24.1"
3349
+ version = "0.25.0"
3163
3350
  source = "registry+https://github.com/rust-lang/crates.io-index"
3164
- checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
3351
+ checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
3165
3352
  dependencies = [
3166
- "rustls",
3353
+ "rustls 0.22.4",
3354
+ "rustls-pki-types",
3167
3355
  "tokio",
3168
3356
  ]
3169
3357
 
3170
3358
  [[package]]
3171
3359
  name = "tokio-stream"
3172
- version = "0.1.14"
3360
+ version = "0.1.15"
3173
3361
  source = "registry+https://github.com/rust-lang/crates.io-index"
3174
- checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
3362
+ checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
3175
3363
  dependencies = [
3176
3364
  "futures-core",
3177
3365
  "pin-project-lite",
@@ -3201,6 +3389,28 @@ dependencies = [
3201
3389
  "serde",
3202
3390
  ]
3203
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
+
3204
3414
  [[package]]
3205
3415
  name = "tower-service"
3206
3416
  version = "0.3.2"
@@ -3221,9 +3431,9 @@ dependencies = [
3221
3431
 
3222
3432
  [[package]]
3223
3433
  name = "tracing-actix-web"
3224
- version = "0.7.9"
3434
+ version = "0.7.10"
3225
3435
  source = "registry+https://github.com/rust-lang/crates.io-index"
3226
- checksum = "1fe0d5feac3f4ca21ba33496bcb1ccab58cca6412b1405ae80f0581541e0ca78"
3436
+ checksum = "fa069bd1503dd526ee793bb3fce408895136c95fc86d2edb2acf1c646d7f0684"
3227
3437
  dependencies = [
3228
3438
  "actix-web",
3229
3439
  "mutually_exclusive_features",
@@ -3240,7 +3450,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
3240
3450
  dependencies = [
3241
3451
  "proc-macro2",
3242
3452
  "quote",
3243
- "syn 2.0.39",
3453
+ "syn 2.0.60",
3244
3454
  ]
3245
3455
 
3246
3456
  [[package]]
@@ -3249,7 +3459,7 @@ version = "0.3.9"
3249
3459
  source = "registry+https://github.com/rust-lang/crates.io-index"
3250
3460
  checksum = "b5c266b9ac83dedf0e0385ad78514949e6d89491269e7065bee51d2bb8ec7373"
3251
3461
  dependencies = [
3252
- "ahash 0.8.6",
3462
+ "ahash 0.8.11",
3253
3463
  "gethostname",
3254
3464
  "log",
3255
3465
  "serde",
@@ -3323,9 +3533,9 @@ dependencies = [
3323
3533
 
3324
3534
  [[package]]
3325
3535
  name = "try-lock"
3326
- version = "0.2.4"
3536
+ version = "0.2.5"
3327
3537
  source = "registry+https://github.com/rust-lang/crates.io-index"
3328
- checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
3538
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3329
3539
 
3330
3540
  [[package]]
3331
3541
  name = "typenum"
@@ -3341,9 +3551,9 @@ checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
3341
3551
 
3342
3552
  [[package]]
3343
3553
  name = "unicode-bidi"
3344
- version = "0.3.13"
3554
+ version = "0.3.15"
3345
3555
  source = "registry+https://github.com/rust-lang/crates.io-index"
3346
- checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
3556
+ checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
3347
3557
 
3348
3558
  [[package]]
3349
3559
  name = "unicode-ident"
@@ -3353,18 +3563,18 @@ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
3353
3563
 
3354
3564
  [[package]]
3355
3565
  name = "unicode-normalization"
3356
- version = "0.1.22"
3566
+ version = "0.1.23"
3357
3567
  source = "registry+https://github.com/rust-lang/crates.io-index"
3358
- checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
3568
+ checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
3359
3569
  dependencies = [
3360
3570
  "tinyvec",
3361
3571
  ]
3362
3572
 
3363
3573
  [[package]]
3364
3574
  name = "unicode-segmentation"
3365
- version = "1.10.1"
3575
+ version = "1.11.0"
3366
3576
  source = "registry+https://github.com/rust-lang/crates.io-index"
3367
- checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
3577
+ checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
3368
3578
 
3369
3579
  [[package]]
3370
3580
  name = "unicode_categories"
@@ -3374,9 +3584,9 @@ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
3374
3584
 
3375
3585
  [[package]]
3376
3586
  name = "unindent"
3377
- version = "0.1.11"
3587
+ version = "0.2.3"
3378
3588
  source = "registry+https://github.com/rust-lang/crates.io-index"
3379
- checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c"
3589
+ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
3380
3590
 
3381
3591
  [[package]]
3382
3592
  name = "untrusted"
@@ -3393,7 +3603,6 @@ dependencies = [
3393
3603
  "form_urlencoded",
3394
3604
  "idna",
3395
3605
  "percent-encoding",
3396
- "serde",
3397
3606
  ]
3398
3607
 
3399
3608
  [[package]]
@@ -3404,11 +3613,11 @@ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
3404
3613
 
3405
3614
  [[package]]
3406
3615
  name = "uuid"
3407
- version = "1.6.1"
3616
+ version = "1.8.0"
3408
3617
  source = "registry+https://github.com/rust-lang/crates.io-index"
3409
- checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
3618
+ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
3410
3619
  dependencies = [
3411
- "getrandom 0.2.11",
3620
+ "getrandom",
3412
3621
  ]
3413
3622
 
3414
3623
  [[package]]
@@ -3430,10 +3639,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3430
3639
  checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
3431
3640
 
3432
3641
  [[package]]
3433
- name = "waker-fn"
3434
- version = "1.1.1"
3642
+ name = "walkdir"
3643
+ version = "2.5.0"
3435
3644
  source = "registry+https://github.com/rust-lang/crates.io-index"
3436
- checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
3645
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3646
+ dependencies = [
3647
+ "same-file",
3648
+ "winapi-util",
3649
+ ]
3437
3650
 
3438
3651
  [[package]]
3439
3652
  name = "want"
@@ -3446,21 +3659,21 @@ dependencies = [
3446
3659
 
3447
3660
  [[package]]
3448
3661
  name = "wasi"
3449
- version = "0.9.0+wasi-snapshot-preview1"
3662
+ version = "0.11.0+wasi-snapshot-preview1"
3450
3663
  source = "registry+https://github.com/rust-lang/crates.io-index"
3451
- checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
3664
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3452
3665
 
3453
3666
  [[package]]
3454
- name = "wasi"
3455
- version = "0.11.0+wasi-snapshot-preview1"
3667
+ name = "wasite"
3668
+ version = "0.1.0"
3456
3669
  source = "registry+https://github.com/rust-lang/crates.io-index"
3457
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3670
+ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
3458
3671
 
3459
3672
  [[package]]
3460
3673
  name = "wasm-bindgen"
3461
- version = "0.2.88"
3674
+ version = "0.2.92"
3462
3675
  source = "registry+https://github.com/rust-lang/crates.io-index"
3463
- checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce"
3676
+ checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
3464
3677
  dependencies = [
3465
3678
  "cfg-if",
3466
3679
  "wasm-bindgen-macro",
@@ -3468,24 +3681,24 @@ dependencies = [
3468
3681
 
3469
3682
  [[package]]
3470
3683
  name = "wasm-bindgen-backend"
3471
- version = "0.2.88"
3684
+ version = "0.2.92"
3472
3685
  source = "registry+https://github.com/rust-lang/crates.io-index"
3473
- checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217"
3686
+ checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
3474
3687
  dependencies = [
3475
3688
  "bumpalo",
3476
3689
  "log",
3477
3690
  "once_cell",
3478
3691
  "proc-macro2",
3479
3692
  "quote",
3480
- "syn 2.0.39",
3693
+ "syn 2.0.60",
3481
3694
  "wasm-bindgen-shared",
3482
3695
  ]
3483
3696
 
3484
3697
  [[package]]
3485
3698
  name = "wasm-bindgen-futures"
3486
- version = "0.4.38"
3699
+ version = "0.4.42"
3487
3700
  source = "registry+https://github.com/rust-lang/crates.io-index"
3488
- checksum = "9afec9963e3d0994cac82455b2b3502b81a7f40f9a0d32181f7528d9f4b43e02"
3701
+ checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
3489
3702
  dependencies = [
3490
3703
  "cfg-if",
3491
3704
  "js-sys",
@@ -3495,9 +3708,9 @@ dependencies = [
3495
3708
 
3496
3709
  [[package]]
3497
3710
  name = "wasm-bindgen-macro"
3498
- version = "0.2.88"
3711
+ version = "0.2.92"
3499
3712
  source = "registry+https://github.com/rust-lang/crates.io-index"
3500
- checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2"
3713
+ checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
3501
3714
  dependencies = [
3502
3715
  "quote",
3503
3716
  "wasm-bindgen-macro-support",
@@ -3505,28 +3718,28 @@ dependencies = [
3505
3718
 
3506
3719
  [[package]]
3507
3720
  name = "wasm-bindgen-macro-support"
3508
- version = "0.2.88"
3721
+ version = "0.2.92"
3509
3722
  source = "registry+https://github.com/rust-lang/crates.io-index"
3510
- checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907"
3723
+ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
3511
3724
  dependencies = [
3512
3725
  "proc-macro2",
3513
3726
  "quote",
3514
- "syn 2.0.39",
3727
+ "syn 2.0.60",
3515
3728
  "wasm-bindgen-backend",
3516
3729
  "wasm-bindgen-shared",
3517
3730
  ]
3518
3731
 
3519
3732
  [[package]]
3520
3733
  name = "wasm-bindgen-shared"
3521
- version = "0.2.88"
3734
+ version = "0.2.92"
3522
3735
  source = "registry+https://github.com/rust-lang/crates.io-index"
3523
- checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b"
3736
+ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
3524
3737
 
3525
3738
  [[package]]
3526
3739
  name = "web-sys"
3527
- version = "0.3.65"
3740
+ version = "0.3.69"
3528
3741
  source = "registry+https://github.com/rust-lang/crates.io-index"
3529
- checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85"
3742
+ checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
3530
3743
  dependencies = [
3531
3744
  "js-sys",
3532
3745
  "wasm-bindgen",
@@ -3534,24 +3747,28 @@ dependencies = [
3534
3747
 
3535
3748
  [[package]]
3536
3749
  name = "webpki-roots"
3537
- version = "0.24.0"
3750
+ version = "0.25.4"
3538
3751
  source = "registry+https://github.com/rust-lang/crates.io-index"
3539
- checksum = "b291546d5d9d1eab74f069c77749f2cb8504a12caa20f0f2de93ddbf6f411888"
3540
- dependencies = [
3541
- "rustls-webpki",
3542
- ]
3752
+ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
3543
3753
 
3544
3754
  [[package]]
3545
3755
  name = "webpki-roots"
3546
- version = "0.25.2"
3756
+ version = "0.26.1"
3547
3757
  source = "registry+https://github.com/rust-lang/crates.io-index"
3548
- checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc"
3758
+ checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009"
3759
+ dependencies = [
3760
+ "rustls-pki-types",
3761
+ ]
3549
3762
 
3550
3763
  [[package]]
3551
3764
  name = "whoami"
3552
- version = "1.4.1"
3765
+ version = "1.5.1"
3553
3766
  source = "registry+https://github.com/rust-lang/crates.io-index"
3554
- checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50"
3767
+ checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9"
3768
+ dependencies = [
3769
+ "redox_syscall",
3770
+ "wasite",
3771
+ ]
3555
3772
 
3556
3773
  [[package]]
3557
3774
  name = "winapi"
@@ -3569,6 +3786,15 @@ version = "0.4.0"
3569
3786
  source = "registry+https://github.com/rust-lang/crates.io-index"
3570
3787
  checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3571
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
+
3572
3798
  [[package]]
3573
3799
  name = "winapi-x86_64-pc-windows-gnu"
3574
3800
  version = "0.4.0"
@@ -3577,11 +3803,11 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3577
3803
 
3578
3804
  [[package]]
3579
3805
  name = "windows-core"
3580
- version = "0.51.1"
3806
+ version = "0.52.0"
3581
3807
  source = "registry+https://github.com/rust-lang/crates.io-index"
3582
- checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64"
3808
+ checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
3583
3809
  dependencies = [
3584
- "windows-targets",
3810
+ "windows-targets 0.52.5",
3585
3811
  ]
3586
3812
 
3587
3813
  [[package]]
@@ -3590,7 +3816,16 @@ version = "0.48.0"
3590
3816
  source = "registry+https://github.com/rust-lang/crates.io-index"
3591
3817
  checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3592
3818
  dependencies = [
3593
- "windows-targets",
3819
+ "windows-targets 0.48.5",
3820
+ ]
3821
+
3822
+ [[package]]
3823
+ name = "windows-sys"
3824
+ version = "0.52.0"
3825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3826
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3827
+ dependencies = [
3828
+ "windows-targets 0.52.5",
3594
3829
  ]
3595
3830
 
3596
3831
  [[package]]
@@ -3599,13 +3834,29 @@ version = "0.48.5"
3599
3834
  source = "registry+https://github.com/rust-lang/crates.io-index"
3600
3835
  checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3601
3836
  dependencies = [
3602
- "windows_aarch64_gnullvm",
3603
- "windows_aarch64_msvc",
3604
- "windows_i686_gnu",
3605
- "windows_i686_msvc",
3606
- "windows_x86_64_gnu",
3607
- "windows_x86_64_gnullvm",
3608
- "windows_x86_64_msvc",
3837
+ "windows_aarch64_gnullvm 0.48.5",
3838
+ "windows_aarch64_msvc 0.48.5",
3839
+ "windows_i686_gnu 0.48.5",
3840
+ "windows_i686_msvc 0.48.5",
3841
+ "windows_x86_64_gnu 0.48.5",
3842
+ "windows_x86_64_gnullvm 0.48.5",
3843
+ "windows_x86_64_msvc 0.48.5",
3844
+ ]
3845
+
3846
+ [[package]]
3847
+ name = "windows-targets"
3848
+ version = "0.52.5"
3849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3850
+ checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
3851
+ dependencies = [
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",
3609
3860
  ]
3610
3861
 
3611
3862
  [[package]]
@@ -3614,72 +3865,122 @@ version = "0.48.5"
3614
3865
  source = "registry+https://github.com/rust-lang/crates.io-index"
3615
3866
  checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3616
3867
 
3868
+ [[package]]
3869
+ name = "windows_aarch64_gnullvm"
3870
+ version = "0.52.5"
3871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3872
+ checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
3873
+
3617
3874
  [[package]]
3618
3875
  name = "windows_aarch64_msvc"
3619
3876
  version = "0.48.5"
3620
3877
  source = "registry+https://github.com/rust-lang/crates.io-index"
3621
3878
  checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3622
3879
 
3880
+ [[package]]
3881
+ name = "windows_aarch64_msvc"
3882
+ version = "0.52.5"
3883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3884
+ checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
3885
+
3623
3886
  [[package]]
3624
3887
  name = "windows_i686_gnu"
3625
3888
  version = "0.48.5"
3626
3889
  source = "registry+https://github.com/rust-lang/crates.io-index"
3627
3890
  checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3628
3891
 
3892
+ [[package]]
3893
+ name = "windows_i686_gnu"
3894
+ version = "0.52.5"
3895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
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"
3903
+
3629
3904
  [[package]]
3630
3905
  name = "windows_i686_msvc"
3631
3906
  version = "0.48.5"
3632
3907
  source = "registry+https://github.com/rust-lang/crates.io-index"
3633
3908
  checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3634
3909
 
3910
+ [[package]]
3911
+ name = "windows_i686_msvc"
3912
+ version = "0.52.5"
3913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3914
+ checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
3915
+
3635
3916
  [[package]]
3636
3917
  name = "windows_x86_64_gnu"
3637
3918
  version = "0.48.5"
3638
3919
  source = "registry+https://github.com/rust-lang/crates.io-index"
3639
3920
  checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3640
3921
 
3922
+ [[package]]
3923
+ name = "windows_x86_64_gnu"
3924
+ version = "0.52.5"
3925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3926
+ checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
3927
+
3641
3928
  [[package]]
3642
3929
  name = "windows_x86_64_gnullvm"
3643
3930
  version = "0.48.5"
3644
3931
  source = "registry+https://github.com/rust-lang/crates.io-index"
3645
3932
  checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3646
3933
 
3934
+ [[package]]
3935
+ name = "windows_x86_64_gnullvm"
3936
+ version = "0.52.5"
3937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3938
+ checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
3939
+
3647
3940
  [[package]]
3648
3941
  name = "windows_x86_64_msvc"
3649
3942
  version = "0.48.5"
3650
3943
  source = "registry+https://github.com/rust-lang/crates.io-index"
3651
3944
  checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3652
3945
 
3946
+ [[package]]
3947
+ name = "windows_x86_64_msvc"
3948
+ version = "0.52.5"
3949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3950
+ checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
3951
+
3653
3952
  [[package]]
3654
3953
  name = "winreg"
3655
- version = "0.50.0"
3954
+ version = "0.52.0"
3656
3955
  source = "registry+https://github.com/rust-lang/crates.io-index"
3657
- checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
3956
+ checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
3658
3957
  dependencies = [
3659
3958
  "cfg-if",
3660
- "windows-sys",
3959
+ "windows-sys 0.48.0",
3661
3960
  ]
3662
3961
 
3663
3962
  [[package]]
3664
3963
  name = "wiremock"
3665
- version = "0.5.21"
3964
+ version = "0.6.0"
3666
3965
  source = "registry+https://github.com/rust-lang/crates.io-index"
3667
- checksum = "079aee011e8a8e625d16df9e785de30a6b77f80a6126092d76a57375f96448da"
3966
+ checksum = "ec874e1eef0df2dcac546057fe5e29186f09c378181cd7b635b4b7bcc98e9d81"
3668
3967
  dependencies = [
3669
3968
  "assert-json-diff",
3670
3969
  "async-trait",
3671
- "base64 0.21.5",
3970
+ "base64 0.21.7",
3672
3971
  "deadpool",
3673
3972
  "futures",
3674
- "futures-timer",
3675
- "http-types",
3973
+ "http 1.1.0",
3974
+ "http-body-util",
3676
3975
  "hyper",
3976
+ "hyper-util",
3677
3977
  "log",
3678
3978
  "once_cell",
3679
3979
  "regex",
3680
3980
  "serde",
3681
3981
  "serde_json",
3682
3982
  "tokio",
3983
+ "url",
3683
3984
  ]
3684
3985
 
3685
3986
  [[package]]
@@ -3693,22 +3994,22 @@ dependencies = [
3693
3994
 
3694
3995
  [[package]]
3695
3996
  name = "zerocopy"
3696
- version = "0.7.26"
3997
+ version = "0.7.32"
3697
3998
  source = "registry+https://github.com/rust-lang/crates.io-index"
3698
- checksum = "e97e415490559a91254a2979b4829267a57d2fcd741a98eee8b722fb57289aa0"
3999
+ checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
3699
4000
  dependencies = [
3700
4001
  "zerocopy-derive",
3701
4002
  ]
3702
4003
 
3703
4004
  [[package]]
3704
4005
  name = "zerocopy-derive"
3705
- version = "0.7.26"
4006
+ version = "0.7.32"
3706
4007
  source = "registry+https://github.com/rust-lang/crates.io-index"
3707
- checksum = "dd7e48ccf166952882ca8bd778a43502c64f33bf94c12ebe2a7f08e5a0f6689f"
4008
+ checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
3708
4009
  dependencies = [
3709
4010
  "proc-macro2",
3710
4011
  "quote",
3711
- "syn 2.0.39",
4012
+ "syn 2.0.60",
3712
4013
  ]
3713
4014
 
3714
4015
  [[package]]
@@ -3719,28 +4020,27 @@ checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
3719
4020
 
3720
4021
  [[package]]
3721
4022
  name = "zstd"
3722
- version = "0.12.4"
4023
+ version = "0.13.1"
3723
4024
  source = "registry+https://github.com/rust-lang/crates.io-index"
3724
- checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c"
4025
+ checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a"
3725
4026
  dependencies = [
3726
4027
  "zstd-safe",
3727
4028
  ]
3728
4029
 
3729
4030
  [[package]]
3730
4031
  name = "zstd-safe"
3731
- version = "6.0.6"
4032
+ version = "7.1.0"
3732
4033
  source = "registry+https://github.com/rust-lang/crates.io-index"
3733
- checksum = "ee98ffd0b48ee95e6c5168188e44a54550b1564d9d530ee21d5f0eaed1069581"
4034
+ checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a"
3734
4035
  dependencies = [
3735
- "libc",
3736
4036
  "zstd-sys",
3737
4037
  ]
3738
4038
 
3739
4039
  [[package]]
3740
4040
  name = "zstd-sys"
3741
- version = "2.0.9+zstd.1.5.5"
4041
+ version = "2.0.10+zstd.1.5.6"
3742
4042
  source = "registry+https://github.com/rust-lang/crates.io-index"
3743
- checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
4043
+ checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa"
3744
4044
  dependencies = [
3745
4045
  "cc",
3746
4046
  "pkg-config",