itsi 0.2.26 → 0.2.27.rc1

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 (49) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +7 -3
  3. data/Rakefile +24 -3
  4. data/crates/itsi_acme/Cargo.toml +2 -1
  5. data/crates/itsi_acme/src/acceptor.rs +1 -1
  6. data/crates/itsi_acme/src/acme.rs +31 -3
  7. data/crates/itsi_acme/src/http_challenge.rs +81 -0
  8. data/crates/itsi_acme/src/https_helper.rs +3 -1
  9. data/crates/itsi_acme/src/jose.rs +6 -2
  10. data/crates/itsi_acme/src/lib.rs +2 -0
  11. data/crates/itsi_acme/src/resolver.rs +27 -4
  12. data/crates/itsi_acme/src/state.rs +183 -22
  13. data/crates/itsi_scheduler/Cargo.toml +1 -1
  14. data/crates/itsi_scheduler/src/itsi_scheduler.rs +115 -64
  15. data/crates/itsi_scheduler/src/lib.rs +2 -1
  16. data/crates/itsi_server/Cargo.toml +2 -1
  17. data/crates/itsi_server/src/lib.rs +15 -0
  18. data/crates/itsi_server/src/ruby_types/itsi_http_request.rs +9 -0
  19. data/crates/itsi_server/src/ruby_types/itsi_http_response.rs +95 -0
  20. data/crates/itsi_server/src/ruby_types/itsi_server/itsi_server_config.rs +22 -1
  21. data/crates/itsi_server/src/ruby_types/itsi_server.rs +100 -0
  22. data/crates/itsi_server/src/server/binds/listener.rs +9 -24
  23. data/crates/itsi_server/src/server/binds/tls.rs +372 -67
  24. data/crates/itsi_server/src/services/itsi_http_service.rs +46 -2
  25. data/gems/scheduler/Cargo.lock +4011 -527
  26. data/gems/scheduler/Gemfile +8 -2
  27. data/gems/scheduler/Gemfile.lock +107 -0
  28. data/gems/scheduler/Rakefile +33 -9
  29. data/gems/scheduler/lib/itsi/scheduler/version.rb +1 -1
  30. data/gems/scheduler/lib/itsi/scheduler.rb +121 -6
  31. data/gems/scheduler/test/helpers/test_helper.rb +2 -0
  32. data/gems/scheduler/test/test_address_resolve.rb +8 -2
  33. data/gems/scheduler/test/test_itsi_scheduler.rb +80 -0
  34. data/gems/scheduler/test/test_timeout_after.rb +102 -0
  35. data/gems/server/Cargo.lock +30 -1
  36. data/gems/server/Gemfile +2 -0
  37. data/gems/server/Gemfile.lock +123 -0
  38. data/gems/server/Rakefile +18 -5
  39. data/gems/server/lib/itsi/http_request.rb +10 -0
  40. data/gems/server/lib/itsi/server/rack_interface.rb +45 -2
  41. data/gems/server/lib/itsi/server/version.rb +1 -1
  42. data/gems/server/lib/itsi/server.rb +24 -0
  43. data/gems/server/test/acme/local_acme_challenges.rb +190 -0
  44. data/gems/server/test/helpers/local_acme.rb +218 -0
  45. data/gems/server/test/helpers/test_helper.rb +7 -9
  46. data/gems/server/test/middleware/endpoint.rb +9 -6
  47. data/gems/server/test/rack/test_rack_server.rb +79 -0
  48. data/lib/itsi/version.rb +1 -1
  49. metadata +12 -6
@@ -3,723 +3,883 @@
3
3
  version = 4
4
4
 
5
5
  [[package]]
6
- name = "aho-corasick"
7
- version = "1.1.3"
6
+ name = "addr2line"
7
+ version = "0.24.2"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
9
+ checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
10
  dependencies = [
11
- "memchr",
11
+ "gimli",
12
12
  ]
13
13
 
14
14
  [[package]]
15
- name = "anyhow"
16
- version = "1.0.98"
15
+ name = "adler2"
16
+ version = "2.0.0"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
18
+ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
19
19
 
20
20
  [[package]]
21
- name = "atty"
22
- version = "0.2.14"
21
+ name = "ahash"
22
+ version = "0.8.11"
23
23
  source = "registry+https://github.com/rust-lang/crates.io-index"
24
- checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
24
+ checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
25
25
  dependencies = [
26
- "hermit-abi",
27
- "libc",
28
- "winapi",
26
+ "cfg-if",
27
+ "getrandom 0.2.16",
28
+ "once_cell",
29
+ "version_check",
30
+ "zerocopy 0.7.35",
29
31
  ]
30
32
 
31
33
  [[package]]
32
- name = "autocfg"
33
- version = "1.4.0"
34
+ name = "aho-corasick"
35
+ version = "1.1.3"
34
36
  source = "registry+https://github.com/rust-lang/crates.io-index"
35
- checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
37
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
38
+ dependencies = [
39
+ "memchr",
40
+ ]
36
41
 
37
42
  [[package]]
38
- name = "base64"
39
- version = "0.22.1"
43
+ name = "alloc-no-stdlib"
44
+ version = "2.0.4"
40
45
  source = "registry+https://github.com/rust-lang/crates.io-index"
41
- checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
46
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
42
47
 
43
48
  [[package]]
44
- name = "bindgen"
45
- version = "0.72.1"
49
+ name = "alloc-stdlib"
50
+ version = "0.2.2"
46
51
  source = "registry+https://github.com/rust-lang/crates.io-index"
47
- checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
52
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
48
53
  dependencies = [
49
- "bitflags",
50
- "cexpr",
51
- "clang-sys",
52
- "itertools",
53
- "proc-macro2",
54
- "quote",
55
- "regex",
56
- "rustc-hash",
57
- "shlex",
58
- "syn 2.0.101",
54
+ "alloc-no-stdlib",
59
55
  ]
60
56
 
61
57
  [[package]]
62
- name = "bitflags"
63
- version = "2.9.0"
58
+ name = "android-tzdata"
59
+ version = "0.1.1"
64
60
  source = "registry+https://github.com/rust-lang/crates.io-index"
65
- checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
61
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
66
62
 
67
63
  [[package]]
68
- name = "bytes"
69
- version = "1.10.1"
64
+ name = "android_system_properties"
65
+ version = "0.1.5"
70
66
  source = "registry+https://github.com/rust-lang/crates.io-index"
71
- checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
67
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
68
+ dependencies = [
69
+ "libc",
70
+ ]
72
71
 
73
72
  [[package]]
74
- name = "cc"
75
- version = "1.2.20"
73
+ name = "ansi_term"
74
+ version = "0.12.1"
76
75
  source = "registry+https://github.com/rust-lang/crates.io-index"
77
- checksum = "04da6a0d40b948dfc4fa8f5bbf402b0fc1a64a28dbf7d12ffd683550f2c1b63a"
76
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
78
77
  dependencies = [
79
- "shlex",
78
+ "winapi",
80
79
  ]
81
80
 
82
81
  [[package]]
83
- name = "cexpr"
84
- version = "0.6.0"
82
+ name = "anstream"
83
+ version = "0.6.18"
85
84
  source = "registry+https://github.com/rust-lang/crates.io-index"
86
- checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
85
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
87
86
  dependencies = [
88
- "nom",
87
+ "anstyle",
88
+ "anstyle-parse",
89
+ "anstyle-query",
90
+ "anstyle-wincon",
91
+ "colorchoice",
92
+ "is_terminal_polyfill",
93
+ "utf8parse",
89
94
  ]
90
95
 
91
96
  [[package]]
92
- name = "cfg-if"
93
- version = "1.0.0"
97
+ name = "anstyle"
98
+ version = "1.0.10"
94
99
  source = "registry+https://github.com/rust-lang/crates.io-index"
95
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
100
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
96
101
 
97
102
  [[package]]
98
- name = "cfg_aliases"
99
- version = "0.2.1"
103
+ name = "anstyle-parse"
104
+ version = "0.2.6"
100
105
  source = "registry+https://github.com/rust-lang/crates.io-index"
101
- checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
106
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
107
+ dependencies = [
108
+ "utf8parse",
109
+ ]
102
110
 
103
111
  [[package]]
104
- name = "clang-sys"
105
- version = "1.8.1"
112
+ name = "anstyle-query"
113
+ version = "1.1.2"
106
114
  source = "registry+https://github.com/rust-lang/crates.io-index"
107
- checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
115
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
108
116
  dependencies = [
109
- "glob",
110
- "libc",
111
- "libloading",
117
+ "windows-sys 0.59.0",
112
118
  ]
113
119
 
114
120
  [[package]]
115
- name = "crossbeam-channel"
116
- version = "0.5.15"
121
+ name = "anstyle-wincon"
122
+ version = "3.0.7"
117
123
  source = "registry+https://github.com/rust-lang/crates.io-index"
118
- checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
124
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
119
125
  dependencies = [
120
- "crossbeam-utils",
126
+ "anstyle",
127
+ "once_cell",
128
+ "windows-sys 0.59.0",
121
129
  ]
122
130
 
123
131
  [[package]]
124
- name = "crossbeam-utils"
125
- version = "0.8.21"
132
+ name = "anyhow"
133
+ version = "1.0.98"
126
134
  source = "registry+https://github.com/rust-lang/crates.io-index"
127
- checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
135
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
128
136
 
129
137
  [[package]]
130
- name = "deranged"
131
- version = "0.4.0"
138
+ name = "arc-swap"
139
+ version = "1.7.1"
132
140
  source = "registry+https://github.com/rust-lang/crates.io-index"
133
- checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
141
+ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
142
+
143
+ [[package]]
144
+ name = "argon2"
145
+ version = "0.5.3"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
134
148
  dependencies = [
135
- "powerfmt",
149
+ "base64ct",
150
+ "blake2",
151
+ "cpufeatures",
152
+ "password-hash",
136
153
  ]
137
154
 
138
155
  [[package]]
139
- name = "derive_more"
140
- version = "2.0.1"
156
+ name = "asn1-rs"
157
+ version = "0.6.2"
141
158
  source = "registry+https://github.com/rust-lang/crates.io-index"
142
- checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
159
+ checksum = "5493c3bedbacf7fd7382c6346bbd66687d12bbaad3a89a2d2c303ee6cf20b048"
143
160
  dependencies = [
144
- "derive_more-impl",
161
+ "asn1-rs-derive",
162
+ "asn1-rs-impl",
163
+ "displaydoc",
164
+ "nom",
165
+ "num-traits",
166
+ "rusticata-macros",
167
+ "thiserror 1.0.69",
168
+ "time",
145
169
  ]
146
170
 
147
171
  [[package]]
148
- name = "derive_more-impl"
149
- version = "2.0.1"
172
+ name = "asn1-rs-derive"
173
+ version = "0.5.1"
150
174
  source = "registry+https://github.com/rust-lang/crates.io-index"
151
- checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
175
+ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490"
152
176
  dependencies = [
153
177
  "proc-macro2",
154
178
  "quote",
155
179
  "syn 2.0.101",
156
- "unicode-xid",
180
+ "synstructure",
157
181
  ]
158
182
 
159
183
  [[package]]
160
- name = "either"
161
- version = "1.15.0"
184
+ name = "asn1-rs-impl"
185
+ version = "0.2.0"
162
186
  source = "registry+https://github.com/rust-lang/crates.io-index"
163
- checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
187
+ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
188
+ dependencies = [
189
+ "proc-macro2",
190
+ "quote",
191
+ "syn 2.0.101",
192
+ ]
164
193
 
165
194
  [[package]]
166
- name = "getrandom"
167
- version = "0.2.16"
195
+ name = "async-channel"
196
+ version = "2.3.1"
168
197
  source = "registry+https://github.com/rust-lang/crates.io-index"
169
- checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
198
+ checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
170
199
  dependencies = [
171
- "cfg-if",
172
- "libc",
173
- "wasi",
200
+ "concurrent-queue",
201
+ "event-listener-strategy",
202
+ "futures-core",
203
+ "pin-project-lite",
174
204
  ]
175
205
 
176
206
  [[package]]
177
- name = "glob"
178
- version = "0.3.2"
207
+ name = "async-compression"
208
+ version = "0.4.23"
179
209
  source = "registry+https://github.com/rust-lang/crates.io-index"
180
- checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
210
+ checksum = "b37fc50485c4f3f736a4fb14199f6d5f5ba008d7f28fe710306c92780f004c07"
211
+ dependencies = [
212
+ "brotli",
213
+ "flate2",
214
+ "futures-core",
215
+ "futures-io",
216
+ "memchr",
217
+ "pin-project-lite",
218
+ "tokio",
219
+ "zstd",
220
+ "zstd-safe",
221
+ ]
181
222
 
182
223
  [[package]]
183
- name = "hermit-abi"
184
- version = "0.1.19"
224
+ name = "async-trait"
225
+ version = "0.1.88"
185
226
  source = "registry+https://github.com/rust-lang/crates.io-index"
186
- checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
227
+ checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
187
228
  dependencies = [
188
- "libc",
229
+ "proc-macro2",
230
+ "quote",
231
+ "syn 2.0.101",
189
232
  ]
190
233
 
191
234
  [[package]]
192
- name = "httparse"
193
- version = "1.10.1"
235
+ name = "atomic-waker"
236
+ version = "1.1.2"
194
237
  source = "registry+https://github.com/rust-lang/crates.io-index"
195
- checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
238
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
196
239
 
197
240
  [[package]]
198
- name = "itertools"
199
- version = "0.12.1"
241
+ name = "atty"
242
+ version = "0.2.14"
200
243
  source = "registry+https://github.com/rust-lang/crates.io-index"
201
- checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
244
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
202
245
  dependencies = [
203
- "either",
246
+ "hermit-abi 0.1.19",
247
+ "libc",
248
+ "winapi",
204
249
  ]
205
250
 
206
251
  [[package]]
207
- name = "itoa"
208
- version = "1.0.15"
252
+ name = "autocfg"
253
+ version = "1.4.0"
209
254
  source = "registry+https://github.com/rust-lang/crates.io-index"
210
- checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
211
-
212
- [[package]]
213
- name = "itsi-scheduler"
214
- version = "0.2.26"
215
- dependencies = [
216
- "bytes",
217
- "derive_more",
218
- "itsi_error",
219
- "itsi_instrument_entry",
220
- "itsi_rb_helpers",
221
- "itsi_tracing",
222
- "magnus",
223
- "mio",
224
- "nix",
225
- "parking_lot",
226
- "rb-sys",
227
- "tracing",
228
- ]
255
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
229
256
 
230
257
  [[package]]
231
- name = "itsi_error"
232
- version = "0.1.0"
258
+ name = "aws-lc-rs"
259
+ version = "1.13.0"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "19b756939cb2f8dc900aa6dcd505e6e2428e9cae7ff7b028c49e3946efa70878"
233
262
  dependencies = [
234
- "anyhow",
235
- "httparse",
236
- "magnus",
237
- "nix",
238
- "rcgen",
239
- "thiserror 2.0.12",
263
+ "aws-lc-sys",
264
+ "zeroize",
240
265
  ]
241
266
 
242
267
  [[package]]
243
- name = "itsi_instrument_entry"
244
- version = "0.1.0"
268
+ name = "aws-lc-sys"
269
+ version = "0.28.2"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "bfa9b6986f250236c27e5a204062434a773a13243d2ffc2955f37bdba4c5c6a1"
245
272
  dependencies = [
246
- "proc-macro2",
247
- "quote",
248
- "syn 1.0.109",
273
+ "bindgen 0.69.5",
274
+ "cc",
275
+ "cmake",
276
+ "dunce",
277
+ "fs_extra",
249
278
  ]
250
279
 
251
280
  [[package]]
252
- name = "itsi_rb_helpers"
253
- version = "0.1.0"
281
+ name = "axum"
282
+ version = "0.7.9"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
254
285
  dependencies = [
255
- "cfg-if",
256
- "magnus",
257
- "nix",
258
- "rb-sys",
286
+ "async-trait",
287
+ "axum-core",
288
+ "bytes",
289
+ "futures-util",
290
+ "http 1.3.1",
291
+ "http-body 1.0.1",
292
+ "http-body-util",
293
+ "hyper 1.6.0",
294
+ "hyper-util",
295
+ "itoa",
296
+ "matchit",
297
+ "memchr",
298
+ "mime",
299
+ "percent-encoding",
300
+ "pin-project-lite",
301
+ "rustversion",
259
302
  "serde",
303
+ "serde_json",
304
+ "serde_path_to_error",
305
+ "serde_urlencoded",
306
+ "sync_wrapper",
307
+ "tokio",
308
+ "tower",
309
+ "tower-layer",
310
+ "tower-service",
311
+ "tracing",
260
312
  ]
261
313
 
262
314
  [[package]]
263
- name = "itsi_tracing"
264
- version = "0.1.0"
315
+ name = "axum-core"
316
+ version = "0.4.5"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
265
319
  dependencies = [
266
- "atty",
320
+ "async-trait",
321
+ "bytes",
322
+ "futures-util",
323
+ "http 1.3.1",
324
+ "http-body 1.0.1",
325
+ "http-body-util",
326
+ "mime",
327
+ "pin-project-lite",
328
+ "rustversion",
329
+ "sync_wrapper",
330
+ "tower-layer",
331
+ "tower-service",
267
332
  "tracing",
268
- "tracing-appender",
269
- "tracing-attributes",
270
- "tracing-subscriber",
271
333
  ]
272
334
 
273
335
  [[package]]
274
- name = "lazy_static"
275
- version = "1.5.0"
336
+ name = "axum-server"
337
+ version = "0.7.2"
276
338
  source = "registry+https://github.com/rust-lang/crates.io-index"
277
- checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
339
+ checksum = "495c05f60d6df0093e8fb6e74aa5846a0ad06abaf96d76166283720bf740f8ab"
340
+ dependencies = [
341
+ "bytes",
342
+ "fs-err",
343
+ "http 1.3.1",
344
+ "http-body 1.0.1",
345
+ "hyper 1.6.0",
346
+ "hyper-util",
347
+ "tokio",
348
+ "tokio-rustls",
349
+ "tower-service",
350
+ ]
278
351
 
279
352
  [[package]]
280
- name = "libc"
281
- version = "0.2.172"
353
+ name = "backon"
354
+ version = "1.5.0"
282
355
  source = "registry+https://github.com/rust-lang/crates.io-index"
283
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
356
+ checksum = "fd0b50b1b78dbadd44ab18b3c794e496f3a139abb9fbc27d9c94c4eebbb96496"
357
+ dependencies = [
358
+ "fastrand",
359
+ ]
284
360
 
285
361
  [[package]]
286
- name = "libloading"
287
- version = "0.8.6"
362
+ name = "backtrace"
363
+ version = "0.3.74"
288
364
  source = "registry+https://github.com/rust-lang/crates.io-index"
289
- checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
365
+ checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
290
366
  dependencies = [
367
+ "addr2line",
291
368
  "cfg-if",
292
- "windows-targets",
369
+ "libc",
370
+ "miniz_oxide",
371
+ "object",
372
+ "rustc-demangle",
373
+ "windows-targets 0.52.6",
293
374
  ]
294
375
 
295
376
  [[package]]
296
- name = "lock_api"
297
- version = "0.4.12"
377
+ name = "base64"
378
+ version = "0.21.7"
298
379
  source = "registry+https://github.com/rust-lang/crates.io-index"
299
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
300
- dependencies = [
301
- "autocfg",
302
- "scopeguard",
303
- ]
380
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
304
381
 
305
382
  [[package]]
306
- name = "log"
307
- version = "0.4.27"
383
+ name = "base64"
384
+ version = "0.22.1"
308
385
  source = "registry+https://github.com/rust-lang/crates.io-index"
309
- checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
386
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
310
387
 
311
388
  [[package]]
312
- name = "magnus"
313
- version = "0.8.2"
314
- source = "git+https://github.com/matsadler/magnus.git?rev=1ed232edb2b75a2eed9b1def34ad57e55c411a5c#1ed232edb2b75a2eed9b1def34ad57e55c411a5c"
315
- dependencies = [
316
- "bytes",
317
- "magnus-macros",
318
- "rb-sys",
319
- "rb-sys-env",
320
- "seq-macro",
321
- ]
389
+ name = "base64ct"
390
+ version = "1.7.3"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "89e25b6adfb930f02d1981565a6e5d9c547ac15a96606256d3b59040e5cd4ca3"
322
393
 
323
394
  [[package]]
324
- name = "magnus-macros"
325
- version = "0.8.0"
326
- source = "git+https://github.com/matsadler/magnus.git?rev=1ed232edb2b75a2eed9b1def34ad57e55c411a5c#1ed232edb2b75a2eed9b1def34ad57e55c411a5c"
395
+ name = "bcrypt"
396
+ version = "0.17.0"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "92758ad6077e4c76a6cadbce5005f666df70d4f13b19976b1a8062eef880040f"
327
399
  dependencies = [
328
- "proc-macro2",
329
- "quote",
330
- "syn 2.0.101",
400
+ "base64 0.22.1",
401
+ "blowfish",
402
+ "getrandom 0.3.2",
403
+ "subtle",
404
+ "zeroize",
331
405
  ]
332
406
 
333
407
  [[package]]
334
- name = "matchers"
335
- version = "0.1.0"
408
+ name = "bindgen"
409
+ version = "0.69.5"
336
410
  source = "registry+https://github.com/rust-lang/crates.io-index"
337
- checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
411
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
338
412
  dependencies = [
339
- "regex-automata 0.1.10",
413
+ "bitflags 2.9.0",
414
+ "cexpr",
415
+ "clang-sys",
416
+ "itertools",
417
+ "lazy_static",
418
+ "lazycell",
419
+ "log",
420
+ "prettyplease",
421
+ "proc-macro2",
422
+ "quote",
423
+ "regex",
424
+ "rustc-hash 1.1.0",
425
+ "shlex",
426
+ "syn 2.0.101",
427
+ "which",
340
428
  ]
341
429
 
342
430
  [[package]]
343
- name = "memchr"
344
- version = "2.7.4"
431
+ name = "bindgen"
432
+ version = "0.72.1"
345
433
  source = "registry+https://github.com/rust-lang/crates.io-index"
346
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
434
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
435
+ dependencies = [
436
+ "bitflags 2.9.0",
437
+ "cexpr",
438
+ "clang-sys",
439
+ "itertools",
440
+ "proc-macro2",
441
+ "quote",
442
+ "regex",
443
+ "rustc-hash 2.1.1",
444
+ "shlex",
445
+ "syn 2.0.101",
446
+ ]
347
447
 
348
448
  [[package]]
349
- name = "minimal-lexical"
350
- version = "0.2.1"
449
+ name = "bitflags"
450
+ version = "1.3.2"
351
451
  source = "registry+https://github.com/rust-lang/crates.io-index"
352
- checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
452
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
353
453
 
354
454
  [[package]]
355
- name = "mio"
356
- version = "1.0.3"
455
+ name = "bitflags"
456
+ version = "2.9.0"
357
457
  source = "registry+https://github.com/rust-lang/crates.io-index"
358
- checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
458
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
459
+
460
+ [[package]]
461
+ name = "blake2"
462
+ version = "0.10.6"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
359
465
  dependencies = [
360
- "libc",
361
- "log",
362
- "wasi",
363
- "windows-sys",
466
+ "digest",
364
467
  ]
365
468
 
366
469
  [[package]]
367
- name = "nix"
368
- version = "0.29.0"
470
+ name = "block-buffer"
471
+ version = "0.10.4"
369
472
  source = "registry+https://github.com/rust-lang/crates.io-index"
370
- checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
473
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
371
474
  dependencies = [
372
- "bitflags",
373
- "cfg-if",
374
- "cfg_aliases",
375
- "libc",
475
+ "generic-array",
376
476
  ]
377
477
 
378
478
  [[package]]
379
- name = "nom"
380
- version = "7.1.3"
479
+ name = "blowfish"
480
+ version = "0.9.1"
381
481
  source = "registry+https://github.com/rust-lang/crates.io-index"
382
- checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
482
+ checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
383
483
  dependencies = [
384
- "memchr",
385
- "minimal-lexical",
484
+ "byteorder",
485
+ "cipher",
386
486
  ]
387
487
 
388
488
  [[package]]
389
- name = "nu-ansi-term"
390
- version = "0.46.0"
489
+ name = "brotli"
490
+ version = "8.0.0"
391
491
  source = "registry+https://github.com/rust-lang/crates.io-index"
392
- checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
492
+ checksum = "cf19e729cdbd51af9a397fb9ef8ac8378007b797f8273cfbfdf45dcaa316167b"
393
493
  dependencies = [
394
- "overload",
395
- "winapi",
494
+ "alloc-no-stdlib",
495
+ "alloc-stdlib",
496
+ "brotli-decompressor",
396
497
  ]
397
498
 
398
499
  [[package]]
399
- name = "num-conv"
400
- version = "0.1.0"
500
+ name = "brotli-decompressor"
501
+ version = "5.0.0"
401
502
  source = "registry+https://github.com/rust-lang/crates.io-index"
402
- checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
503
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
504
+ dependencies = [
505
+ "alloc-no-stdlib",
506
+ "alloc-stdlib",
507
+ ]
403
508
 
404
509
  [[package]]
405
- name = "once_cell"
406
- version = "1.21.3"
510
+ name = "bstr"
511
+ version = "1.12.0"
407
512
  source = "registry+https://github.com/rust-lang/crates.io-index"
408
- checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
513
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
514
+ dependencies = [
515
+ "memchr",
516
+ "serde",
517
+ ]
409
518
 
410
519
  [[package]]
411
- name = "overload"
412
- version = "0.1.1"
520
+ name = "bumpalo"
521
+ version = "3.17.0"
413
522
  source = "registry+https://github.com/rust-lang/crates.io-index"
414
- checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
523
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
415
524
 
416
525
  [[package]]
417
- name = "parking_lot"
418
- version = "0.12.3"
526
+ name = "byteorder"
527
+ version = "1.5.0"
419
528
  source = "registry+https://github.com/rust-lang/crates.io-index"
420
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
529
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
530
+
531
+ [[package]]
532
+ name = "bytes"
533
+ version = "1.10.1"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
536
+
537
+ [[package]]
538
+ name = "cc"
539
+ version = "1.2.20"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "04da6a0d40b948dfc4fa8f5bbf402b0fc1a64a28dbf7d12ffd683550f2c1b63a"
421
542
  dependencies = [
422
- "lock_api",
423
- "parking_lot_core",
543
+ "jobserver",
544
+ "libc",
545
+ "shlex",
424
546
  ]
425
547
 
426
548
  [[package]]
427
- name = "parking_lot_core"
428
- version = "0.9.10"
549
+ name = "cexpr"
550
+ version = "0.6.0"
429
551
  source = "registry+https://github.com/rust-lang/crates.io-index"
430
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
552
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
431
553
  dependencies = [
432
- "cfg-if",
433
- "libc",
434
- "redox_syscall",
435
- "smallvec",
436
- "windows-targets",
554
+ "nom",
437
555
  ]
438
556
 
439
557
  [[package]]
440
- name = "pem"
441
- version = "3.0.5"
558
+ name = "cfg-if"
559
+ version = "1.0.0"
442
560
  source = "registry+https://github.com/rust-lang/crates.io-index"
443
- checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
561
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
562
+
563
+ [[package]]
564
+ name = "cfg_aliases"
565
+ version = "0.2.1"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
568
+
569
+ [[package]]
570
+ name = "chrono"
571
+ version = "0.4.41"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
444
574
  dependencies = [
445
- "base64",
446
- "serde",
575
+ "android-tzdata",
576
+ "iana-time-zone",
577
+ "js-sys",
578
+ "num-traits",
579
+ "wasm-bindgen",
580
+ "windows-link",
447
581
  ]
448
582
 
449
583
  [[package]]
450
- name = "pin-project-lite"
451
- version = "0.2.16"
584
+ name = "cipher"
585
+ version = "0.4.4"
452
586
  source = "registry+https://github.com/rust-lang/crates.io-index"
453
- checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
587
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
588
+ dependencies = [
589
+ "crypto-common",
590
+ "inout",
591
+ ]
454
592
 
455
593
  [[package]]
456
- name = "powerfmt"
457
- version = "0.2.0"
594
+ name = "clang-sys"
595
+ version = "1.8.1"
458
596
  source = "registry+https://github.com/rust-lang/crates.io-index"
459
- checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
597
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
598
+ dependencies = [
599
+ "glob",
600
+ "libc",
601
+ "libloading",
602
+ ]
460
603
 
461
604
  [[package]]
462
- name = "proc-macro2"
463
- version = "1.0.95"
605
+ name = "clap"
606
+ version = "2.34.0"
464
607
  source = "registry+https://github.com/rust-lang/crates.io-index"
465
- checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
608
+ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
466
609
  dependencies = [
467
- "unicode-ident",
610
+ "ansi_term",
611
+ "atty",
612
+ "bitflags 1.3.2",
613
+ "strsim 0.8.0",
614
+ "textwrap",
615
+ "unicode-width",
616
+ "vec_map",
468
617
  ]
469
618
 
470
619
  [[package]]
471
- name = "quote"
472
- version = "1.0.40"
620
+ name = "clap"
621
+ version = "4.5.37"
473
622
  source = "registry+https://github.com/rust-lang/crates.io-index"
474
- checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
623
+ checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
475
624
  dependencies = [
476
- "proc-macro2",
625
+ "clap_builder",
626
+ "clap_derive",
477
627
  ]
478
628
 
479
629
  [[package]]
480
- name = "rb-sys"
481
- version = "0.9.124"
630
+ name = "clap_builder"
631
+ version = "4.5.37"
482
632
  source = "registry+https://github.com/rust-lang/crates.io-index"
483
- checksum = "c85c4188462601e2aa1469def389c17228566f82ea72f137ed096f21591bc489"
633
+ checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
484
634
  dependencies = [
485
- "rb-sys-build",
635
+ "anstream",
636
+ "anstyle",
637
+ "clap_lex",
638
+ "strsim 0.11.1",
486
639
  ]
487
640
 
488
641
  [[package]]
489
- name = "rb-sys-build"
490
- version = "0.9.126"
642
+ name = "clap_derive"
643
+ version = "4.5.32"
491
644
  source = "registry+https://github.com/rust-lang/crates.io-index"
492
- checksum = "855fc1ad8943d12c89ef12f9147f1cc531f5bf19fb744112fdd317bb6ee7b5c5"
645
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
493
646
  dependencies = [
494
- "bindgen",
495
- "lazy_static",
647
+ "heck 0.5.0",
496
648
  "proc-macro2",
497
649
  "quote",
498
- "regex",
499
- "shell-words",
500
650
  "syn 2.0.101",
501
651
  ]
502
652
 
503
653
  [[package]]
504
- name = "rb-sys-env"
505
- version = "0.2.3"
654
+ name = "clap_lex"
655
+ version = "0.7.4"
506
656
  source = "registry+https://github.com/rust-lang/crates.io-index"
507
- checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
657
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
508
658
 
509
659
  [[package]]
510
- name = "rcgen"
511
- version = "0.13.2"
660
+ name = "cmake"
661
+ version = "0.1.54"
512
662
  source = "registry+https://github.com/rust-lang/crates.io-index"
513
- checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2"
663
+ checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0"
514
664
  dependencies = [
515
- "pem",
516
- "ring",
517
- "rustls-pki-types",
518
- "time",
519
- "yasna",
665
+ "cc",
520
666
  ]
521
667
 
522
668
  [[package]]
523
- name = "redox_syscall"
524
- version = "0.5.11"
669
+ name = "colorchoice"
670
+ version = "1.0.3"
525
671
  source = "registry+https://github.com/rust-lang/crates.io-index"
526
- checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
672
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
673
+
674
+ [[package]]
675
+ name = "colored"
676
+ version = "2.2.0"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
527
679
  dependencies = [
528
- "bitflags",
680
+ "lazy_static",
681
+ "windows-sys 0.48.0",
529
682
  ]
530
683
 
531
684
  [[package]]
532
- name = "regex"
533
- version = "1.11.1"
685
+ name = "combine"
686
+ version = "4.6.7"
534
687
  source = "registry+https://github.com/rust-lang/crates.io-index"
535
- checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
688
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
536
689
  dependencies = [
537
- "aho-corasick",
690
+ "bytes",
691
+ "futures-core",
538
692
  "memchr",
539
- "regex-automata 0.4.9",
540
- "regex-syntax 0.8.5",
693
+ "pin-project-lite",
694
+ "tokio",
695
+ "tokio-util",
541
696
  ]
542
697
 
543
698
  [[package]]
544
- name = "regex-automata"
545
- version = "0.1.10"
699
+ name = "concurrent-queue"
700
+ version = "2.5.0"
546
701
  source = "registry+https://github.com/rust-lang/crates.io-index"
547
- checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
702
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
548
703
  dependencies = [
549
- "regex-syntax 0.6.29",
704
+ "crossbeam-utils",
550
705
  ]
551
706
 
552
707
  [[package]]
553
- name = "regex-automata"
554
- version = "0.4.9"
708
+ name = "core-foundation"
709
+ version = "0.10.0"
555
710
  source = "registry+https://github.com/rust-lang/crates.io-index"
556
- checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
711
+ checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
557
712
  dependencies = [
558
- "aho-corasick",
559
- "memchr",
560
- "regex-syntax 0.8.5",
713
+ "core-foundation-sys",
714
+ "libc",
561
715
  ]
562
716
 
563
717
  [[package]]
564
- name = "regex-syntax"
565
- version = "0.6.29"
718
+ name = "core-foundation-sys"
719
+ version = "0.8.7"
566
720
  source = "registry+https://github.com/rust-lang/crates.io-index"
567
- checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
721
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
568
722
 
569
723
  [[package]]
570
- name = "regex-syntax"
571
- version = "0.8.5"
724
+ name = "core_affinity"
725
+ version = "0.8.3"
572
726
  source = "registry+https://github.com/rust-lang/crates.io-index"
573
- checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
727
+ checksum = "a034b3a7b624016c6e13f5df875747cc25f884156aad2abd12b6c46797971342"
728
+ dependencies = [
729
+ "libc",
730
+ "num_cpus",
731
+ "winapi",
732
+ ]
574
733
 
575
734
  [[package]]
576
- name = "ring"
577
- version = "0.17.14"
735
+ name = "cpufeatures"
736
+ version = "0.2.17"
578
737
  source = "registry+https://github.com/rust-lang/crates.io-index"
579
- checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
738
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
580
739
  dependencies = [
581
- "cc",
582
- "cfg-if",
583
- "getrandom",
584
740
  "libc",
585
- "untrusted",
586
- "windows-sys",
587
741
  ]
588
742
 
589
743
  [[package]]
590
- name = "rustc-hash"
591
- version = "2.1.1"
744
+ name = "crc32fast"
745
+ version = "1.4.2"
592
746
  source = "registry+https://github.com/rust-lang/crates.io-index"
593
- checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
747
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
748
+ dependencies = [
749
+ "cfg-if",
750
+ ]
594
751
 
595
752
  [[package]]
596
- name = "rustls-pki-types"
597
- version = "1.11.0"
753
+ name = "crossbeam-channel"
754
+ version = "0.5.15"
598
755
  source = "registry+https://github.com/rust-lang/crates.io-index"
599
- checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
756
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
757
+ dependencies = [
758
+ "crossbeam-utils",
759
+ ]
600
760
 
601
761
  [[package]]
602
- name = "ryu"
603
- version = "1.0.20"
762
+ name = "crossbeam-deque"
763
+ version = "0.8.6"
604
764
  source = "registry+https://github.com/rust-lang/crates.io-index"
605
- checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
765
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
766
+ dependencies = [
767
+ "crossbeam-epoch",
768
+ "crossbeam-utils",
769
+ ]
606
770
 
607
771
  [[package]]
608
- name = "scopeguard"
609
- version = "1.2.0"
772
+ name = "crossbeam-epoch"
773
+ version = "0.9.18"
610
774
  source = "registry+https://github.com/rust-lang/crates.io-index"
611
- checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
775
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
776
+ dependencies = [
777
+ "crossbeam-utils",
778
+ ]
612
779
 
613
780
  [[package]]
614
- name = "seq-macro"
615
- version = "0.3.6"
781
+ name = "crossbeam-utils"
782
+ version = "0.8.21"
616
783
  source = "registry+https://github.com/rust-lang/crates.io-index"
617
- checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
784
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
618
785
 
619
786
  [[package]]
620
- name = "serde"
621
- version = "1.0.219"
787
+ name = "crypto-common"
788
+ version = "0.1.6"
622
789
  source = "registry+https://github.com/rust-lang/crates.io-index"
623
- checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
790
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
624
791
  dependencies = [
625
- "serde_derive",
792
+ "generic-array",
793
+ "typenum",
626
794
  ]
627
795
 
628
796
  [[package]]
629
- name = "serde_derive"
630
- version = "1.0.219"
797
+ name = "data-encoding"
798
+ version = "2.9.0"
631
799
  source = "registry+https://github.com/rust-lang/crates.io-index"
632
- checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
800
+ checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
801
+
802
+ [[package]]
803
+ name = "der-parser"
804
+ version = "9.0.0"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553"
633
807
  dependencies = [
634
- "proc-macro2",
635
- "quote",
636
- "syn 2.0.101",
808
+ "asn1-rs",
809
+ "displaydoc",
810
+ "nom",
811
+ "num-bigint",
812
+ "num-traits",
813
+ "rusticata-macros",
637
814
  ]
638
815
 
639
816
  [[package]]
640
- name = "serde_json"
641
- version = "1.0.140"
817
+ name = "deranged"
818
+ version = "0.4.0"
642
819
  source = "registry+https://github.com/rust-lang/crates.io-index"
643
- checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
820
+ checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
644
821
  dependencies = [
645
- "itoa",
646
- "memchr",
647
- "ryu",
648
- "serde",
822
+ "powerfmt",
649
823
  ]
650
824
 
651
825
  [[package]]
652
- name = "sharded-slab"
653
- version = "0.1.7"
826
+ name = "derive_more"
827
+ version = "2.0.1"
654
828
  source = "registry+https://github.com/rust-lang/crates.io-index"
655
- checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
829
+ checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
656
830
  dependencies = [
657
- "lazy_static",
831
+ "derive_more-impl",
658
832
  ]
659
833
 
660
834
  [[package]]
661
- name = "shell-words"
662
- version = "1.1.0"
663
- source = "registry+https://github.com/rust-lang/crates.io-index"
664
- checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
665
-
666
- [[package]]
667
- name = "shlex"
668
- version = "1.3.0"
669
- source = "registry+https://github.com/rust-lang/crates.io-index"
670
- checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
671
-
672
- [[package]]
673
- name = "smallvec"
674
- version = "1.15.0"
675
- source = "registry+https://github.com/rust-lang/crates.io-index"
676
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
677
-
678
- [[package]]
679
- name = "syn"
680
- version = "1.0.109"
835
+ name = "derive_more-impl"
836
+ version = "2.0.1"
681
837
  source = "registry+https://github.com/rust-lang/crates.io-index"
682
- checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
838
+ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
683
839
  dependencies = [
684
840
  "proc-macro2",
685
841
  "quote",
686
- "unicode-ident",
842
+ "syn 2.0.101",
843
+ "unicode-xid",
687
844
  ]
688
845
 
689
846
  [[package]]
690
- name = "syn"
691
- version = "2.0.101"
847
+ name = "digest"
848
+ version = "0.10.7"
692
849
  source = "registry+https://github.com/rust-lang/crates.io-index"
693
- checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
850
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
694
851
  dependencies = [
695
- "proc-macro2",
696
- "quote",
697
- "unicode-ident",
852
+ "block-buffer",
853
+ "crypto-common",
854
+ "subtle",
698
855
  ]
699
856
 
700
857
  [[package]]
701
- name = "thiserror"
702
- version = "1.0.69"
858
+ name = "dirs"
859
+ version = "6.0.0"
703
860
  source = "registry+https://github.com/rust-lang/crates.io-index"
704
- checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
861
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
705
862
  dependencies = [
706
- "thiserror-impl 1.0.69",
863
+ "dirs-sys",
707
864
  ]
708
865
 
709
866
  [[package]]
710
- name = "thiserror"
711
- version = "2.0.12"
867
+ name = "dirs-sys"
868
+ version = "0.5.0"
712
869
  source = "registry+https://github.com/rust-lang/crates.io-index"
713
- checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
870
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
714
871
  dependencies = [
715
- "thiserror-impl 2.0.12",
872
+ "libc",
873
+ "option-ext",
874
+ "redox_users",
875
+ "windows-sys 0.59.0",
716
876
  ]
717
877
 
718
878
  [[package]]
719
- name = "thiserror-impl"
720
- version = "1.0.69"
879
+ name = "displaydoc"
880
+ version = "0.2.5"
721
881
  source = "registry+https://github.com/rust-lang/crates.io-index"
722
- checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
882
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
723
883
  dependencies = [
724
884
  "proc-macro2",
725
885
  "quote",
@@ -727,268 +887,3451 @@ dependencies = [
727
887
  ]
728
888
 
729
889
  [[package]]
730
- name = "thiserror-impl"
731
- version = "2.0.12"
890
+ name = "dunce"
891
+ version = "1.0.5"
732
892
  source = "registry+https://github.com/rust-lang/crates.io-index"
733
- checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
734
- dependencies = [
735
- "proc-macro2",
736
- "quote",
737
- "syn 2.0.101",
738
- ]
893
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
739
894
 
740
895
  [[package]]
741
- name = "thread_local"
742
- version = "1.1.8"
896
+ name = "either"
897
+ version = "1.15.0"
743
898
  source = "registry+https://github.com/rust-lang/crates.io-index"
744
- checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
899
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
900
+
901
+ [[package]]
902
+ name = "encoding_rs"
903
+ version = "0.8.35"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
745
906
  dependencies = [
746
907
  "cfg-if",
747
- "once_cell",
748
908
  ]
749
909
 
750
910
  [[package]]
751
- name = "time"
752
- version = "0.3.41"
911
+ name = "equivalent"
912
+ version = "1.0.2"
753
913
  source = "registry+https://github.com/rust-lang/crates.io-index"
754
- checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
755
- dependencies = [
756
- "deranged",
757
- "itoa",
758
- "num-conv",
759
- "powerfmt",
760
- "serde",
761
- "time-core",
762
- "time-macros",
763
- ]
914
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
764
915
 
765
916
  [[package]]
766
- name = "time-core"
767
- version = "0.1.4"
917
+ name = "errno"
918
+ version = "0.3.11"
768
919
  source = "registry+https://github.com/rust-lang/crates.io-index"
769
- checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
920
+ checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
921
+ dependencies = [
922
+ "libc",
923
+ "windows-sys 0.59.0",
924
+ ]
770
925
 
771
926
  [[package]]
772
- name = "time-macros"
773
- version = "0.2.22"
927
+ name = "event-listener"
928
+ version = "5.4.0"
774
929
  source = "registry+https://github.com/rust-lang/crates.io-index"
775
- checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
930
+ checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
776
931
  dependencies = [
777
- "num-conv",
778
- "time-core",
932
+ "concurrent-queue",
933
+ "parking",
934
+ "pin-project-lite",
779
935
  ]
780
936
 
781
937
  [[package]]
782
- name = "tracing"
783
- version = "0.1.41"
938
+ name = "event-listener-strategy"
939
+ version = "0.5.4"
784
940
  source = "registry+https://github.com/rust-lang/crates.io-index"
785
- checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
941
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
786
942
  dependencies = [
943
+ "event-listener",
787
944
  "pin-project-lite",
788
- "tracing-attributes",
789
- "tracing-core",
790
945
  ]
791
946
 
792
947
  [[package]]
793
- name = "tracing-appender"
794
- version = "0.2.3"
948
+ name = "fastrand"
949
+ version = "2.3.0"
795
950
  source = "registry+https://github.com/rust-lang/crates.io-index"
796
- checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf"
951
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
952
+
953
+ [[package]]
954
+ name = "filetime"
955
+ version = "0.2.25"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
797
958
  dependencies = [
798
- "crossbeam-channel",
799
- "thiserror 1.0.69",
800
- "time",
801
- "tracing-subscriber",
959
+ "cfg-if",
960
+ "libc",
961
+ "libredox",
962
+ "windows-sys 0.59.0",
802
963
  ]
803
964
 
804
965
  [[package]]
805
- name = "tracing-attributes"
806
- version = "0.1.28"
966
+ name = "flate2"
967
+ version = "1.1.1"
807
968
  source = "registry+https://github.com/rust-lang/crates.io-index"
808
- checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
969
+ checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece"
809
970
  dependencies = [
810
- "proc-macro2",
811
- "quote",
812
- "syn 2.0.101",
971
+ "crc32fast",
972
+ "miniz_oxide",
813
973
  ]
814
974
 
815
975
  [[package]]
816
- name = "tracing-core"
817
- version = "0.1.33"
976
+ name = "fnv"
977
+ version = "1.0.7"
818
978
  source = "registry+https://github.com/rust-lang/crates.io-index"
819
- checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
979
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
980
+
981
+ [[package]]
982
+ name = "form_urlencoded"
983
+ version = "1.2.1"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
820
986
  dependencies = [
821
- "once_cell",
822
- "valuable",
987
+ "percent-encoding",
823
988
  ]
824
989
 
825
990
  [[package]]
826
- name = "tracing-log"
827
- version = "0.2.0"
991
+ name = "fs-err"
992
+ version = "3.1.0"
828
993
  source = "registry+https://github.com/rust-lang/crates.io-index"
829
- checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
994
+ checksum = "1f89bda4c2a21204059a977ed3bfe746677dfd137b83c339e702b0ac91d482aa"
830
995
  dependencies = [
831
- "log",
832
- "once_cell",
833
- "tracing-core",
996
+ "autocfg",
997
+ "tokio",
834
998
  ]
835
999
 
836
1000
  [[package]]
837
- name = "tracing-serde"
838
- version = "0.2.0"
1001
+ name = "fs2"
1002
+ version = "0.4.3"
839
1003
  source = "registry+https://github.com/rust-lang/crates.io-index"
840
- checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
1004
+ checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
841
1005
  dependencies = [
842
- "serde",
843
- "tracing-core",
1006
+ "libc",
1007
+ "winapi",
844
1008
  ]
845
1009
 
846
1010
  [[package]]
847
- name = "tracing-subscriber"
848
- version = "0.3.19"
1011
+ name = "fs_extra"
1012
+ version = "1.3.0"
849
1013
  source = "registry+https://github.com/rust-lang/crates.io-index"
850
- checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
1014
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
1015
+
1016
+ [[package]]
1017
+ name = "fsevent-sys"
1018
+ version = "4.1.0"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
851
1021
  dependencies = [
852
- "matchers",
853
- "nu-ansi-term",
854
- "once_cell",
855
- "regex",
856
- "serde",
857
- "serde_json",
858
- "sharded-slab",
859
- "smallvec",
860
- "thread_local",
861
- "tracing",
862
- "tracing-core",
863
- "tracing-log",
864
- "tracing-serde",
1022
+ "libc",
865
1023
  ]
866
1024
 
867
1025
  [[package]]
868
- name = "unicode-ident"
869
- version = "1.0.18"
1026
+ name = "futures"
1027
+ version = "0.3.31"
870
1028
  source = "registry+https://github.com/rust-lang/crates.io-index"
871
- checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1029
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
1030
+ dependencies = [
1031
+ "futures-channel",
1032
+ "futures-core",
1033
+ "futures-executor",
1034
+ "futures-io",
1035
+ "futures-sink",
1036
+ "futures-task",
1037
+ "futures-util",
1038
+ ]
872
1039
 
873
1040
  [[package]]
874
- name = "unicode-xid"
875
- version = "0.2.6"
1041
+ name = "futures-channel"
1042
+ version = "0.3.31"
876
1043
  source = "registry+https://github.com/rust-lang/crates.io-index"
877
- checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1044
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
1045
+ dependencies = [
1046
+ "futures-core",
1047
+ "futures-sink",
1048
+ ]
878
1049
 
879
1050
  [[package]]
880
- name = "untrusted"
881
- version = "0.9.0"
1051
+ name = "futures-core"
1052
+ version = "0.3.31"
882
1053
  source = "registry+https://github.com/rust-lang/crates.io-index"
883
- checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1054
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
884
1055
 
885
1056
  [[package]]
886
- name = "valuable"
887
- version = "0.1.1"
1057
+ name = "futures-executor"
1058
+ version = "0.3.31"
888
1059
  source = "registry+https://github.com/rust-lang/crates.io-index"
889
- checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1060
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
1061
+ dependencies = [
1062
+ "futures-core",
1063
+ "futures-task",
1064
+ "futures-util",
1065
+ ]
890
1066
 
891
1067
  [[package]]
892
- name = "wasi"
893
- version = "0.11.0+wasi-snapshot-preview1"
1068
+ name = "futures-io"
1069
+ version = "0.3.31"
894
1070
  source = "registry+https://github.com/rust-lang/crates.io-index"
895
- checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1071
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
896
1072
 
897
1073
  [[package]]
898
- name = "winapi"
899
- version = "0.3.9"
1074
+ name = "futures-macro"
1075
+ version = "0.3.31"
900
1076
  source = "registry+https://github.com/rust-lang/crates.io-index"
901
- checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1077
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
902
1078
  dependencies = [
903
- "winapi-i686-pc-windows-gnu",
904
- "winapi-x86_64-pc-windows-gnu",
1079
+ "proc-macro2",
1080
+ "quote",
1081
+ "syn 2.0.101",
905
1082
  ]
906
1083
 
907
1084
  [[package]]
908
- name = "winapi-i686-pc-windows-gnu"
909
- version = "0.4.0"
1085
+ name = "futures-sink"
1086
+ version = "0.3.31"
910
1087
  source = "registry+https://github.com/rust-lang/crates.io-index"
911
- checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1088
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
912
1089
 
913
1090
  [[package]]
914
- name = "winapi-x86_64-pc-windows-gnu"
915
- version = "0.4.0"
1091
+ name = "futures-task"
1092
+ version = "0.3.31"
916
1093
  source = "registry+https://github.com/rust-lang/crates.io-index"
917
- checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1094
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
918
1095
 
919
1096
  [[package]]
920
- name = "windows-sys"
921
- version = "0.52.0"
1097
+ name = "futures-util"
1098
+ version = "0.3.31"
922
1099
  source = "registry+https://github.com/rust-lang/crates.io-index"
923
- checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1100
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
924
1101
  dependencies = [
925
- "windows-targets",
1102
+ "futures-channel",
1103
+ "futures-core",
1104
+ "futures-io",
1105
+ "futures-macro",
1106
+ "futures-sink",
1107
+ "futures-task",
1108
+ "memchr",
1109
+ "pin-project-lite",
1110
+ "pin-utils",
1111
+ "slab",
926
1112
  ]
927
1113
 
928
1114
  [[package]]
929
- name = "windows-targets"
930
- version = "0.52.6"
1115
+ name = "generic-array"
1116
+ version = "0.14.7"
931
1117
  source = "registry+https://github.com/rust-lang/crates.io-index"
932
- checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1118
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
933
1119
  dependencies = [
934
- "windows_aarch64_gnullvm",
935
- "windows_aarch64_msvc",
936
- "windows_i686_gnu",
937
- "windows_i686_gnullvm",
938
- "windows_i686_msvc",
939
- "windows_x86_64_gnu",
940
- "windows_x86_64_gnullvm",
941
- "windows_x86_64_msvc",
1120
+ "typenum",
1121
+ "version_check",
942
1122
  ]
943
1123
 
944
1124
  [[package]]
945
- name = "windows_aarch64_gnullvm"
946
- version = "0.52.6"
1125
+ name = "getrandom"
1126
+ version = "0.2.16"
947
1127
  source = "registry+https://github.com/rust-lang/crates.io-index"
948
- checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1128
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1129
+ dependencies = [
1130
+ "cfg-if",
1131
+ "js-sys",
1132
+ "libc",
1133
+ "wasi 0.11.0+wasi-snapshot-preview1",
1134
+ "wasm-bindgen",
1135
+ ]
949
1136
 
950
1137
  [[package]]
951
- name = "windows_aarch64_msvc"
952
- version = "0.52.6"
1138
+ name = "getrandom"
1139
+ version = "0.3.2"
953
1140
  source = "registry+https://github.com/rust-lang/crates.io-index"
954
- checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1141
+ checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
1142
+ dependencies = [
1143
+ "cfg-if",
1144
+ "js-sys",
1145
+ "libc",
1146
+ "r-efi",
1147
+ "wasi 0.14.2+wasi-0.2.4",
1148
+ "wasm-bindgen",
1149
+ ]
955
1150
 
956
1151
  [[package]]
957
- name = "windows_i686_gnu"
958
- version = "0.52.6"
1152
+ name = "gimli"
1153
+ version = "0.31.1"
959
1154
  source = "registry+https://github.com/rust-lang/crates.io-index"
960
- checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1155
+ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
961
1156
 
962
1157
  [[package]]
963
- name = "windows_i686_gnullvm"
964
- version = "0.52.6"
1158
+ name = "glob"
1159
+ version = "0.3.2"
965
1160
  source = "registry+https://github.com/rust-lang/crates.io-index"
966
- checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1161
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
967
1162
 
968
1163
  [[package]]
969
- name = "windows_i686_msvc"
970
- version = "0.52.6"
1164
+ name = "globset"
1165
+ version = "0.4.16"
971
1166
  source = "registry+https://github.com/rust-lang/crates.io-index"
972
- checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1167
+ checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5"
1168
+ dependencies = [
1169
+ "aho-corasick",
1170
+ "bstr",
1171
+ "log",
1172
+ "regex-automata 0.4.9",
1173
+ "regex-syntax 0.8.5",
1174
+ ]
973
1175
 
974
1176
  [[package]]
975
- name = "windows_x86_64_gnu"
1177
+ name = "h2"
1178
+ version = "0.3.26"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
1181
+ dependencies = [
1182
+ "bytes",
1183
+ "fnv",
1184
+ "futures-core",
1185
+ "futures-sink",
1186
+ "futures-util",
1187
+ "http 0.2.12",
1188
+ "indexmap",
1189
+ "slab",
1190
+ "tokio",
1191
+ "tokio-util",
1192
+ "tracing",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "h2"
1197
+ version = "0.4.9"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
1200
+ dependencies = [
1201
+ "atomic-waker",
1202
+ "bytes",
1203
+ "fnv",
1204
+ "futures-core",
1205
+ "futures-sink",
1206
+ "http 1.3.1",
1207
+ "indexmap",
1208
+ "slab",
1209
+ "tokio",
1210
+ "tokio-util",
1211
+ "tracing",
1212
+ ]
1213
+
1214
+ [[package]]
1215
+ name = "hashbrown"
1216
+ version = "0.15.3"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
1219
+
1220
+ [[package]]
1221
+ name = "headers"
1222
+ version = "0.3.9"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270"
1225
+ dependencies = [
1226
+ "base64 0.21.7",
1227
+ "bytes",
1228
+ "headers-core",
1229
+ "http 0.2.12",
1230
+ "httpdate",
1231
+ "mime",
1232
+ "sha1",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "headers-core"
1237
+ version = "0.2.0"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
1240
+ dependencies = [
1241
+ "http 0.2.12",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "heck"
1246
+ version = "0.3.3"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
1249
+ dependencies = [
1250
+ "unicode-segmentation",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "heck"
1255
+ version = "0.5.0"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1258
+
1259
+ [[package]]
1260
+ name = "hermit-abi"
1261
+ version = "0.1.19"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
1264
+ dependencies = [
1265
+ "libc",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "hermit-abi"
1270
+ version = "0.3.9"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
1273
+
1274
+ [[package]]
1275
+ name = "home"
1276
+ version = "0.5.11"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
1279
+ dependencies = [
1280
+ "windows-sys 0.59.0",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "http"
1285
+ version = "0.2.12"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1288
+ dependencies = [
1289
+ "bytes",
1290
+ "fnv",
1291
+ "itoa",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "http"
1296
+ version = "1.3.1"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1299
+ dependencies = [
1300
+ "bytes",
1301
+ "fnv",
1302
+ "itoa",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "http-body"
1307
+ version = "0.4.6"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1310
+ dependencies = [
1311
+ "bytes",
1312
+ "http 0.2.12",
1313
+ "pin-project-lite",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "http-body"
1318
+ version = "1.0.1"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1321
+ dependencies = [
1322
+ "bytes",
1323
+ "http 1.3.1",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "http-body-util"
1328
+ version = "0.1.3"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1331
+ dependencies = [
1332
+ "bytes",
1333
+ "futures-core",
1334
+ "http 1.3.1",
1335
+ "http-body 1.0.1",
1336
+ "pin-project-lite",
1337
+ ]
1338
+
1339
+ [[package]]
1340
+ name = "httparse"
1341
+ version = "1.10.1"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1344
+
1345
+ [[package]]
1346
+ name = "httpdate"
1347
+ version = "1.0.3"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1350
+
1351
+ [[package]]
1352
+ name = "hyper"
1353
+ version = "0.14.32"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
1356
+ dependencies = [
1357
+ "bytes",
1358
+ "futures-channel",
1359
+ "futures-core",
1360
+ "futures-util",
1361
+ "h2 0.3.26",
1362
+ "http 0.2.12",
1363
+ "http-body 0.4.6",
1364
+ "httparse",
1365
+ "httpdate",
1366
+ "itoa",
1367
+ "pin-project-lite",
1368
+ "socket2",
1369
+ "tokio",
1370
+ "tower-service",
1371
+ "tracing",
1372
+ "want",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "hyper"
1377
+ version = "1.6.0"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
1380
+ dependencies = [
1381
+ "bytes",
1382
+ "futures-channel",
1383
+ "futures-util",
1384
+ "h2 0.4.9",
1385
+ "http 1.3.1",
1386
+ "http-body 1.0.1",
1387
+ "httparse",
1388
+ "httpdate",
1389
+ "itoa",
1390
+ "pin-project-lite",
1391
+ "smallvec",
1392
+ "tokio",
1393
+ "want",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "hyper-rustls"
1398
+ version = "0.27.5"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
1401
+ dependencies = [
1402
+ "futures-util",
1403
+ "http 1.3.1",
1404
+ "hyper 1.6.0",
1405
+ "hyper-util",
1406
+ "rustls",
1407
+ "rustls-pki-types",
1408
+ "tokio",
1409
+ "tokio-rustls",
1410
+ "tower-service",
1411
+ "webpki-roots",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "hyper-util"
1416
+ version = "0.1.11"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
1419
+ dependencies = [
1420
+ "bytes",
1421
+ "futures-channel",
1422
+ "futures-util",
1423
+ "http 1.3.1",
1424
+ "http-body 1.0.1",
1425
+ "hyper 1.6.0",
1426
+ "libc",
1427
+ "pin-project-lite",
1428
+ "socket2",
1429
+ "tokio",
1430
+ "tower-service",
1431
+ "tracing",
1432
+ ]
1433
+
1434
+ [[package]]
1435
+ name = "iana-time-zone"
1436
+ version = "0.1.63"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
1439
+ dependencies = [
1440
+ "android_system_properties",
1441
+ "core-foundation-sys",
1442
+ "iana-time-zone-haiku",
1443
+ "js-sys",
1444
+ "log",
1445
+ "wasm-bindgen",
1446
+ "windows-core 0.61.0",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "iana-time-zone-haiku"
1451
+ version = "0.1.2"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1454
+ dependencies = [
1455
+ "cc",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "icu_collections"
1460
+ version = "1.5.0"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1463
+ dependencies = [
1464
+ "displaydoc",
1465
+ "yoke",
1466
+ "zerofrom",
1467
+ "zerovec",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "icu_locid"
1472
+ version = "1.5.0"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1475
+ dependencies = [
1476
+ "displaydoc",
1477
+ "litemap",
1478
+ "tinystr",
1479
+ "writeable",
1480
+ "zerovec",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "icu_locid_transform"
1485
+ version = "1.5.0"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1488
+ dependencies = [
1489
+ "displaydoc",
1490
+ "icu_locid",
1491
+ "icu_locid_transform_data",
1492
+ "icu_provider",
1493
+ "tinystr",
1494
+ "zerovec",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "icu_locid_transform_data"
1499
+ version = "1.5.1"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
1502
+
1503
+ [[package]]
1504
+ name = "icu_normalizer"
1505
+ version = "1.5.0"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1508
+ dependencies = [
1509
+ "displaydoc",
1510
+ "icu_collections",
1511
+ "icu_normalizer_data",
1512
+ "icu_properties",
1513
+ "icu_provider",
1514
+ "smallvec",
1515
+ "utf16_iter",
1516
+ "utf8_iter",
1517
+ "write16",
1518
+ "zerovec",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "icu_normalizer_data"
1523
+ version = "1.5.1"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
1526
+
1527
+ [[package]]
1528
+ name = "icu_properties"
1529
+ version = "1.5.1"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1532
+ dependencies = [
1533
+ "displaydoc",
1534
+ "icu_collections",
1535
+ "icu_locid_transform",
1536
+ "icu_properties_data",
1537
+ "icu_provider",
1538
+ "tinystr",
1539
+ "zerovec",
1540
+ ]
1541
+
1542
+ [[package]]
1543
+ name = "icu_properties_data"
1544
+ version = "1.5.1"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
1547
+
1548
+ [[package]]
1549
+ name = "icu_provider"
1550
+ version = "1.5.0"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1553
+ dependencies = [
1554
+ "displaydoc",
1555
+ "icu_locid",
1556
+ "icu_provider_macros",
1557
+ "stable_deref_trait",
1558
+ "tinystr",
1559
+ "writeable",
1560
+ "yoke",
1561
+ "zerofrom",
1562
+ "zerovec",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "icu_provider_macros"
1567
+ version = "1.5.0"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1570
+ dependencies = [
1571
+ "proc-macro2",
1572
+ "quote",
1573
+ "syn 2.0.101",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "idna"
1578
+ version = "1.0.3"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1581
+ dependencies = [
1582
+ "idna_adapter",
1583
+ "smallvec",
1584
+ "utf8_iter",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "idna_adapter"
1589
+ version = "1.2.0"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1592
+ dependencies = [
1593
+ "icu_normalizer",
1594
+ "icu_properties",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "indexmap"
1599
+ version = "2.9.0"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
1602
+ dependencies = [
1603
+ "equivalent",
1604
+ "hashbrown",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "inotify"
1609
+ version = "0.11.0"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
1612
+ dependencies = [
1613
+ "bitflags 2.9.0",
1614
+ "inotify-sys",
1615
+ "libc",
1616
+ ]
1617
+
1618
+ [[package]]
1619
+ name = "inotify-sys"
1620
+ version = "0.1.5"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1623
+ dependencies = [
1624
+ "libc",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "inout"
1629
+ version = "0.1.4"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1632
+ dependencies = [
1633
+ "generic-array",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "ipnet"
1638
+ version = "2.11.0"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1641
+
1642
+ [[package]]
1643
+ name = "is_terminal_polyfill"
1644
+ version = "1.70.1"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1647
+
1648
+ [[package]]
1649
+ name = "itertools"
1650
+ version = "0.12.1"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1653
+ dependencies = [
1654
+ "either",
1655
+ ]
1656
+
1657
+ [[package]]
1658
+ name = "itoa"
1659
+ version = "1.0.15"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1662
+
1663
+ [[package]]
1664
+ name = "itsi-scheduler"
1665
+ version = "0.2.27"
1666
+ dependencies = [
1667
+ "bytes",
1668
+ "derive_more",
1669
+ "itsi_error",
1670
+ "itsi_instrument_entry",
1671
+ "itsi_rb_helpers",
1672
+ "itsi_tracing",
1673
+ "magnus",
1674
+ "mio",
1675
+ "nix",
1676
+ "parking_lot",
1677
+ "rb-sys",
1678
+ "tracing",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "itsi-server"
1683
+ version = "0.2.27"
1684
+ dependencies = [
1685
+ "argon2",
1686
+ "async-channel",
1687
+ "async-compression",
1688
+ "async-trait",
1689
+ "base64 0.22.1",
1690
+ "bcrypt",
1691
+ "bytes",
1692
+ "chrono",
1693
+ "core_affinity",
1694
+ "derive_more",
1695
+ "dirs",
1696
+ "either",
1697
+ "fs2",
1698
+ "futures",
1699
+ "futures-util",
1700
+ "globset",
1701
+ "http 1.3.1",
1702
+ "http-body-util",
1703
+ "httparse",
1704
+ "httpdate",
1705
+ "hyper 1.6.0",
1706
+ "hyper-util",
1707
+ "itsi_acme",
1708
+ "itsi_error",
1709
+ "itsi_rb_helpers",
1710
+ "itsi_tracing",
1711
+ "jsonwebtoken",
1712
+ "magnus",
1713
+ "md5",
1714
+ "memchr",
1715
+ "nix",
1716
+ "notify",
1717
+ "num_cpus",
1718
+ "parking_lot",
1719
+ "percent-encoding",
1720
+ "phf",
1721
+ "pin-project",
1722
+ "quick_cache",
1723
+ "rand 0.9.1",
1724
+ "rcgen",
1725
+ "redis",
1726
+ "regex",
1727
+ "reqwest",
1728
+ "rustls",
1729
+ "rustls-pemfile",
1730
+ "serde",
1731
+ "serde_json",
1732
+ "serde_magnus",
1733
+ "sha-crypt",
1734
+ "sha2",
1735
+ "smallvec",
1736
+ "socket2",
1737
+ "sysinfo",
1738
+ "tempfile",
1739
+ "tokio",
1740
+ "tokio-rustls",
1741
+ "tokio-stream",
1742
+ "tokio-util",
1743
+ "tracing",
1744
+ "url",
1745
+ "webpki-roots",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "itsi_acme"
1750
+ version = "0.1.0"
1751
+ dependencies = [
1752
+ "async-trait",
1753
+ "axum",
1754
+ "axum-server",
1755
+ "base64 0.22.1",
1756
+ "chrono",
1757
+ "clap 4.5.37",
1758
+ "futures",
1759
+ "log",
1760
+ "num-bigint",
1761
+ "parking_lot",
1762
+ "pem",
1763
+ "proc-macro2",
1764
+ "rcgen",
1765
+ "reqwest",
1766
+ "ring",
1767
+ "rustls",
1768
+ "serde",
1769
+ "serde_json",
1770
+ "simple_logger",
1771
+ "structopt",
1772
+ "thiserror 2.0.12",
1773
+ "time",
1774
+ "tokio",
1775
+ "tokio-rustls",
1776
+ "tokio-stream",
1777
+ "tokio-util",
1778
+ "warp",
1779
+ "webpki-roots",
1780
+ "x509-parser",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "itsi_error"
1785
+ version = "0.1.0"
1786
+ dependencies = [
1787
+ "anyhow",
1788
+ "httparse",
1789
+ "magnus",
1790
+ "nix",
1791
+ "rcgen",
1792
+ "thiserror 2.0.12",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "itsi_instrument_entry"
1797
+ version = "0.1.0"
1798
+ dependencies = [
1799
+ "proc-macro2",
1800
+ "quote",
1801
+ "syn 1.0.109",
1802
+ ]
1803
+
1804
+ [[package]]
1805
+ name = "itsi_rb_helpers"
1806
+ version = "0.1.0"
1807
+ dependencies = [
1808
+ "cfg-if",
1809
+ "magnus",
1810
+ "nix",
1811
+ "rb-sys",
1812
+ "serde",
1813
+ ]
1814
+
1815
+ [[package]]
1816
+ name = "itsi_tracing"
1817
+ version = "0.1.0"
1818
+ dependencies = [
1819
+ "atty",
1820
+ "tracing",
1821
+ "tracing-appender",
1822
+ "tracing-attributes",
1823
+ "tracing-subscriber",
1824
+ ]
1825
+
1826
+ [[package]]
1827
+ name = "jobserver"
1828
+ version = "0.1.33"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1831
+ dependencies = [
1832
+ "getrandom 0.3.2",
1833
+ "libc",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "js-sys"
1838
+ version = "0.3.77"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1841
+ dependencies = [
1842
+ "once_cell",
1843
+ "wasm-bindgen",
1844
+ ]
1845
+
1846
+ [[package]]
1847
+ name = "jsonwebtoken"
1848
+ version = "9.3.1"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
1851
+ dependencies = [
1852
+ "base64 0.22.1",
1853
+ "js-sys",
1854
+ "pem",
1855
+ "ring",
1856
+ "serde",
1857
+ "serde_json",
1858
+ "simple_asn1",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "kqueue"
1863
+ version = "1.0.8"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
1866
+ dependencies = [
1867
+ "kqueue-sys",
1868
+ "libc",
1869
+ ]
1870
+
1871
+ [[package]]
1872
+ name = "kqueue-sys"
1873
+ version = "1.0.4"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
1876
+ dependencies = [
1877
+ "bitflags 1.3.2",
1878
+ "libc",
1879
+ ]
1880
+
1881
+ [[package]]
1882
+ name = "lazy_static"
1883
+ version = "1.5.0"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1886
+
1887
+ [[package]]
1888
+ name = "lazycell"
1889
+ version = "1.3.0"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1892
+
1893
+ [[package]]
1894
+ name = "libc"
1895
+ version = "0.2.172"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1898
+
1899
+ [[package]]
1900
+ name = "libloading"
1901
+ version = "0.8.6"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1904
+ dependencies = [
1905
+ "cfg-if",
1906
+ "windows-targets 0.52.6",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "libredox"
1911
+ version = "0.1.3"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
1914
+ dependencies = [
1915
+ "bitflags 2.9.0",
1916
+ "libc",
1917
+ "redox_syscall",
1918
+ ]
1919
+
1920
+ [[package]]
1921
+ name = "linux-raw-sys"
1922
+ version = "0.4.15"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1925
+
1926
+ [[package]]
1927
+ name = "linux-raw-sys"
1928
+ version = "0.9.4"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1931
+
1932
+ [[package]]
1933
+ name = "litemap"
1934
+ version = "0.7.5"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
1937
+
1938
+ [[package]]
1939
+ name = "lock_api"
1940
+ version = "0.4.12"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1943
+ dependencies = [
1944
+ "autocfg",
1945
+ "scopeguard",
1946
+ ]
1947
+
1948
+ [[package]]
1949
+ name = "log"
1950
+ version = "0.4.27"
1951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1952
+ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1953
+
1954
+ [[package]]
1955
+ name = "magnus"
1956
+ version = "0.8.2"
1957
+ source = "git+https://github.com/matsadler/magnus.git?rev=1ed232edb2b75a2eed9b1def34ad57e55c411a5c#1ed232edb2b75a2eed9b1def34ad57e55c411a5c"
1958
+ dependencies = [
1959
+ "bytes",
1960
+ "magnus-macros",
1961
+ "rb-sys",
1962
+ "rb-sys-env",
1963
+ "seq-macro",
1964
+ ]
1965
+
1966
+ [[package]]
1967
+ name = "magnus-macros"
1968
+ version = "0.8.0"
1969
+ source = "git+https://github.com/matsadler/magnus.git?rev=1ed232edb2b75a2eed9b1def34ad57e55c411a5c#1ed232edb2b75a2eed9b1def34ad57e55c411a5c"
1970
+ dependencies = [
1971
+ "proc-macro2",
1972
+ "quote",
1973
+ "syn 2.0.101",
1974
+ ]
1975
+
1976
+ [[package]]
1977
+ name = "matchers"
1978
+ version = "0.1.0"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1981
+ dependencies = [
1982
+ "regex-automata 0.1.10",
1983
+ ]
1984
+
1985
+ [[package]]
1986
+ name = "matchit"
1987
+ version = "0.7.3"
1988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1989
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1990
+
1991
+ [[package]]
1992
+ name = "md5"
1993
+ version = "0.7.0"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
1996
+
1997
+ [[package]]
1998
+ name = "memchr"
1999
+ version = "2.7.4"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2002
+
2003
+ [[package]]
2004
+ name = "memoffset"
2005
+ version = "0.9.1"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2008
+ dependencies = [
2009
+ "autocfg",
2010
+ ]
2011
+
2012
+ [[package]]
2013
+ name = "mime"
2014
+ version = "0.3.17"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2017
+
2018
+ [[package]]
2019
+ name = "mime_guess"
2020
+ version = "2.0.5"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2023
+ dependencies = [
2024
+ "mime",
2025
+ "unicase",
2026
+ ]
2027
+
2028
+ [[package]]
2029
+ name = "minimal-lexical"
2030
+ version = "0.2.1"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2033
+
2034
+ [[package]]
2035
+ name = "miniz_oxide"
2036
+ version = "0.8.8"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
2039
+ dependencies = [
2040
+ "adler2",
2041
+ ]
2042
+
2043
+ [[package]]
2044
+ name = "mio"
2045
+ version = "1.0.3"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
2048
+ dependencies = [
2049
+ "libc",
2050
+ "log",
2051
+ "wasi 0.11.0+wasi-snapshot-preview1",
2052
+ "windows-sys 0.52.0",
2053
+ ]
2054
+
2055
+ [[package]]
2056
+ name = "multer"
2057
+ version = "2.1.0"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "01acbdc23469fd8fe07ab135923371d5f5a422fbf9c522158677c8eb15bc51c2"
2060
+ dependencies = [
2061
+ "bytes",
2062
+ "encoding_rs",
2063
+ "futures-util",
2064
+ "http 0.2.12",
2065
+ "httparse",
2066
+ "log",
2067
+ "memchr",
2068
+ "mime",
2069
+ "spin",
2070
+ "version_check",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "nix"
2075
+ version = "0.29.0"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
2078
+ dependencies = [
2079
+ "bitflags 2.9.0",
2080
+ "cfg-if",
2081
+ "cfg_aliases",
2082
+ "libc",
2083
+ "memoffset",
2084
+ ]
2085
+
2086
+ [[package]]
2087
+ name = "nom"
2088
+ version = "7.1.3"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2091
+ dependencies = [
2092
+ "memchr",
2093
+ "minimal-lexical",
2094
+ ]
2095
+
2096
+ [[package]]
2097
+ name = "notify"
2098
+ version = "8.0.0"
2099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2100
+ checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943"
2101
+ dependencies = [
2102
+ "bitflags 2.9.0",
2103
+ "filetime",
2104
+ "fsevent-sys",
2105
+ "inotify",
2106
+ "kqueue",
2107
+ "libc",
2108
+ "log",
2109
+ "mio",
2110
+ "notify-types",
2111
+ "walkdir",
2112
+ "windows-sys 0.59.0",
2113
+ ]
2114
+
2115
+ [[package]]
2116
+ name = "notify-types"
2117
+ version = "2.0.0"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
2120
+
2121
+ [[package]]
2122
+ name = "ntapi"
2123
+ version = "0.4.1"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
2126
+ dependencies = [
2127
+ "winapi",
2128
+ ]
2129
+
2130
+ [[package]]
2131
+ name = "nu-ansi-term"
2132
+ version = "0.46.0"
2133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+ checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
2135
+ dependencies = [
2136
+ "overload",
2137
+ "winapi",
2138
+ ]
2139
+
2140
+ [[package]]
2141
+ name = "num-bigint"
2142
+ version = "0.4.6"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2145
+ dependencies = [
2146
+ "num-integer",
2147
+ "num-traits",
2148
+ ]
2149
+
2150
+ [[package]]
2151
+ name = "num-conv"
2152
+ version = "0.1.0"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2155
+
2156
+ [[package]]
2157
+ name = "num-integer"
2158
+ version = "0.1.46"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2161
+ dependencies = [
2162
+ "num-traits",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "num-traits"
2167
+ version = "0.2.19"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2170
+ dependencies = [
2171
+ "autocfg",
2172
+ ]
2173
+
2174
+ [[package]]
2175
+ name = "num_cpus"
2176
+ version = "1.16.0"
2177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2178
+ checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2179
+ dependencies = [
2180
+ "hermit-abi 0.3.9",
2181
+ "libc",
2182
+ ]
2183
+
2184
+ [[package]]
2185
+ name = "num_threads"
2186
+ version = "0.1.7"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
2189
+ dependencies = [
2190
+ "libc",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "object"
2195
+ version = "0.36.7"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
2198
+ dependencies = [
2199
+ "memchr",
2200
+ ]
2201
+
2202
+ [[package]]
2203
+ name = "oid-registry"
2204
+ version = "0.7.1"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "a8d8034d9489cdaf79228eb9f6a3b8d7bb32ba00d6645ebd48eef4077ceb5bd9"
2207
+ dependencies = [
2208
+ "asn1-rs",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "once_cell"
2213
+ version = "1.21.3"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2216
+
2217
+ [[package]]
2218
+ name = "openssl-probe"
2219
+ version = "0.1.6"
2220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2221
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
2222
+
2223
+ [[package]]
2224
+ name = "option-ext"
2225
+ version = "0.2.0"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2228
+
2229
+ [[package]]
2230
+ name = "overload"
2231
+ version = "0.1.1"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2234
+
2235
+ [[package]]
2236
+ name = "parking"
2237
+ version = "2.2.1"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2240
+
2241
+ [[package]]
2242
+ name = "parking_lot"
2243
+ version = "0.12.3"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2246
+ dependencies = [
2247
+ "lock_api",
2248
+ "parking_lot_core",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "parking_lot_core"
2253
+ version = "0.9.10"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2256
+ dependencies = [
2257
+ "cfg-if",
2258
+ "libc",
2259
+ "redox_syscall",
2260
+ "smallvec",
2261
+ "windows-targets 0.52.6",
2262
+ ]
2263
+
2264
+ [[package]]
2265
+ name = "password-hash"
2266
+ version = "0.5.0"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
2269
+ dependencies = [
2270
+ "base64ct",
2271
+ "rand_core 0.6.4",
2272
+ "subtle",
2273
+ ]
2274
+
2275
+ [[package]]
2276
+ name = "pem"
2277
+ version = "3.0.5"
2278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2279
+ checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3"
2280
+ dependencies = [
2281
+ "base64 0.22.1",
2282
+ "serde",
2283
+ ]
2284
+
2285
+ [[package]]
2286
+ name = "percent-encoding"
2287
+ version = "2.3.1"
2288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2289
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2290
+
2291
+ [[package]]
2292
+ name = "phf"
2293
+ version = "0.11.3"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2296
+ dependencies = [
2297
+ "phf_macros",
2298
+ "phf_shared",
2299
+ ]
2300
+
2301
+ [[package]]
2302
+ name = "phf_generator"
2303
+ version = "0.11.3"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2306
+ dependencies = [
2307
+ "phf_shared",
2308
+ "rand 0.8.5",
2309
+ ]
2310
+
2311
+ [[package]]
2312
+ name = "phf_macros"
2313
+ version = "0.11.3"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
2316
+ dependencies = [
2317
+ "phf_generator",
2318
+ "phf_shared",
2319
+ "proc-macro2",
2320
+ "quote",
2321
+ "syn 2.0.101",
2322
+ ]
2323
+
2324
+ [[package]]
2325
+ name = "phf_shared"
2326
+ version = "0.11.3"
2327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2328
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
2329
+ dependencies = [
2330
+ "siphasher",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "pin-project"
2335
+ version = "1.1.10"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
2338
+ dependencies = [
2339
+ "pin-project-internal",
2340
+ ]
2341
+
2342
+ [[package]]
2343
+ name = "pin-project-internal"
2344
+ version = "1.1.10"
2345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2346
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
2347
+ dependencies = [
2348
+ "proc-macro2",
2349
+ "quote",
2350
+ "syn 2.0.101",
2351
+ ]
2352
+
2353
+ [[package]]
2354
+ name = "pin-project-lite"
2355
+ version = "0.2.16"
2356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2357
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2358
+
2359
+ [[package]]
2360
+ name = "pin-utils"
2361
+ version = "0.1.0"
2362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2363
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2364
+
2365
+ [[package]]
2366
+ name = "pkg-config"
2367
+ version = "0.3.32"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2370
+
2371
+ [[package]]
2372
+ name = "powerfmt"
2373
+ version = "0.2.0"
2374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2375
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2376
+
2377
+ [[package]]
2378
+ name = "ppv-lite86"
2379
+ version = "0.2.21"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2382
+ dependencies = [
2383
+ "zerocopy 0.8.25",
2384
+ ]
2385
+
2386
+ [[package]]
2387
+ name = "prettyplease"
2388
+ version = "0.2.32"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "664ec5419c51e34154eec046ebcba56312d5a2fc3b09a06da188e1ad21afadf6"
2391
+ dependencies = [
2392
+ "proc-macro2",
2393
+ "syn 2.0.101",
2394
+ ]
2395
+
2396
+ [[package]]
2397
+ name = "proc-macro-error"
2398
+ version = "1.0.4"
2399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2400
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2401
+ dependencies = [
2402
+ "proc-macro-error-attr",
2403
+ "proc-macro2",
2404
+ "quote",
2405
+ "syn 1.0.109",
2406
+ "version_check",
2407
+ ]
2408
+
2409
+ [[package]]
2410
+ name = "proc-macro-error-attr"
2411
+ version = "1.0.4"
2412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2413
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2414
+ dependencies = [
2415
+ "proc-macro2",
2416
+ "quote",
2417
+ "version_check",
2418
+ ]
2419
+
2420
+ [[package]]
2421
+ name = "proc-macro2"
2422
+ version = "1.0.95"
2423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2424
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2425
+ dependencies = [
2426
+ "unicode-ident",
2427
+ ]
2428
+
2429
+ [[package]]
2430
+ name = "quick_cache"
2431
+ version = "0.6.13"
2432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2433
+ checksum = "287e56aac5a2b4fb25a6fb050961d157635924c8696305a5c937a76f29841a0f"
2434
+ dependencies = [
2435
+ "ahash",
2436
+ "equivalent",
2437
+ "hashbrown",
2438
+ "parking_lot",
2439
+ ]
2440
+
2441
+ [[package]]
2442
+ name = "quinn"
2443
+ version = "0.11.7"
2444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2445
+ checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012"
2446
+ dependencies = [
2447
+ "bytes",
2448
+ "cfg_aliases",
2449
+ "pin-project-lite",
2450
+ "quinn-proto",
2451
+ "quinn-udp",
2452
+ "rustc-hash 2.1.1",
2453
+ "rustls",
2454
+ "socket2",
2455
+ "thiserror 2.0.12",
2456
+ "tokio",
2457
+ "tracing",
2458
+ "web-time",
2459
+ ]
2460
+
2461
+ [[package]]
2462
+ name = "quinn-proto"
2463
+ version = "0.11.11"
2464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2465
+ checksum = "bcbafbbdbb0f638fe3f35f3c56739f77a8a1d070cb25603226c83339b391472b"
2466
+ dependencies = [
2467
+ "bytes",
2468
+ "getrandom 0.3.2",
2469
+ "rand 0.9.1",
2470
+ "ring",
2471
+ "rustc-hash 2.1.1",
2472
+ "rustls",
2473
+ "rustls-pki-types",
2474
+ "slab",
2475
+ "thiserror 2.0.12",
2476
+ "tinyvec",
2477
+ "tracing",
2478
+ "web-time",
2479
+ ]
2480
+
2481
+ [[package]]
2482
+ name = "quinn-udp"
2483
+ version = "0.5.12"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
2486
+ dependencies = [
2487
+ "cfg_aliases",
2488
+ "libc",
2489
+ "once_cell",
2490
+ "socket2",
2491
+ "tracing",
2492
+ "windows-sys 0.59.0",
2493
+ ]
2494
+
2495
+ [[package]]
2496
+ name = "quote"
2497
+ version = "1.0.40"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2500
+ dependencies = [
2501
+ "proc-macro2",
2502
+ ]
2503
+
2504
+ [[package]]
2505
+ name = "r-efi"
2506
+ version = "5.2.0"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2509
+
2510
+ [[package]]
2511
+ name = "r2d2"
2512
+ version = "0.8.10"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93"
2515
+ dependencies = [
2516
+ "log",
2517
+ "parking_lot",
2518
+ "scheduled-thread-pool",
2519
+ ]
2520
+
2521
+ [[package]]
2522
+ name = "rand"
2523
+ version = "0.8.5"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2526
+ dependencies = [
2527
+ "libc",
2528
+ "rand_chacha 0.3.1",
2529
+ "rand_core 0.6.4",
2530
+ ]
2531
+
2532
+ [[package]]
2533
+ name = "rand"
2534
+ version = "0.9.1"
2535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2536
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
2537
+ dependencies = [
2538
+ "rand_chacha 0.9.0",
2539
+ "rand_core 0.9.3",
2540
+ ]
2541
+
2542
+ [[package]]
2543
+ name = "rand_chacha"
2544
+ version = "0.3.1"
2545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2546
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2547
+ dependencies = [
2548
+ "ppv-lite86",
2549
+ "rand_core 0.6.4",
2550
+ ]
2551
+
2552
+ [[package]]
2553
+ name = "rand_chacha"
2554
+ version = "0.9.0"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2557
+ dependencies = [
2558
+ "ppv-lite86",
2559
+ "rand_core 0.9.3",
2560
+ ]
2561
+
2562
+ [[package]]
2563
+ name = "rand_core"
2564
+ version = "0.6.4"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2567
+ dependencies = [
2568
+ "getrandom 0.2.16",
2569
+ ]
2570
+
2571
+ [[package]]
2572
+ name = "rand_core"
2573
+ version = "0.9.3"
2574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2575
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2576
+ dependencies = [
2577
+ "getrandom 0.3.2",
2578
+ ]
2579
+
2580
+ [[package]]
2581
+ name = "rayon"
2582
+ version = "1.10.0"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2585
+ dependencies = [
2586
+ "either",
2587
+ "rayon-core",
2588
+ ]
2589
+
2590
+ [[package]]
2591
+ name = "rayon-core"
2592
+ version = "1.12.1"
2593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2594
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2595
+ dependencies = [
2596
+ "crossbeam-deque",
2597
+ "crossbeam-utils",
2598
+ ]
2599
+
2600
+ [[package]]
2601
+ name = "rb-sys"
2602
+ version = "0.9.124"
2603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2604
+ checksum = "c85c4188462601e2aa1469def389c17228566f82ea72f137ed096f21591bc489"
2605
+ dependencies = [
2606
+ "rb-sys-build",
2607
+ ]
2608
+
2609
+ [[package]]
2610
+ name = "rb-sys-build"
2611
+ version = "0.9.126"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "855fc1ad8943d12c89ef12f9147f1cc531f5bf19fb744112fdd317bb6ee7b5c5"
2614
+ dependencies = [
2615
+ "bindgen 0.72.1",
2616
+ "lazy_static",
2617
+ "proc-macro2",
2618
+ "quote",
2619
+ "regex",
2620
+ "shell-words",
2621
+ "syn 2.0.101",
2622
+ ]
2623
+
2624
+ [[package]]
2625
+ name = "rb-sys-env"
2626
+ version = "0.2.3"
2627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2628
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
2629
+
2630
+ [[package]]
2631
+ name = "rcgen"
2632
+ version = "0.13.2"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2"
2635
+ dependencies = [
2636
+ "pem",
2637
+ "ring",
2638
+ "rustls-pki-types",
2639
+ "time",
2640
+ "x509-parser",
2641
+ "yasna",
2642
+ ]
2643
+
2644
+ [[package]]
2645
+ name = "redis"
2646
+ version = "0.29.5"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "1bc42f3a12fd4408ce64d8efef67048a924e543bd35c6591c0447fda9054695f"
2649
+ dependencies = [
2650
+ "arc-swap",
2651
+ "backon",
2652
+ "bytes",
2653
+ "combine",
2654
+ "futures-channel",
2655
+ "futures-util",
2656
+ "itoa",
2657
+ "num-bigint",
2658
+ "percent-encoding",
2659
+ "pin-project-lite",
2660
+ "r2d2",
2661
+ "rustls",
2662
+ "rustls-native-certs",
2663
+ "ryu",
2664
+ "sha1_smol",
2665
+ "socket2",
2666
+ "tokio",
2667
+ "tokio-rustls",
2668
+ "tokio-util",
2669
+ "url",
2670
+ ]
2671
+
2672
+ [[package]]
2673
+ name = "redox_syscall"
2674
+ version = "0.5.11"
2675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2676
+ checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3"
2677
+ dependencies = [
2678
+ "bitflags 2.9.0",
2679
+ ]
2680
+
2681
+ [[package]]
2682
+ name = "redox_users"
2683
+ version = "0.5.0"
2684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2685
+ checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
2686
+ dependencies = [
2687
+ "getrandom 0.2.16",
2688
+ "libredox",
2689
+ "thiserror 2.0.12",
2690
+ ]
2691
+
2692
+ [[package]]
2693
+ name = "regex"
2694
+ version = "1.11.1"
2695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2696
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2697
+ dependencies = [
2698
+ "aho-corasick",
2699
+ "memchr",
2700
+ "regex-automata 0.4.9",
2701
+ "regex-syntax 0.8.5",
2702
+ ]
2703
+
2704
+ [[package]]
2705
+ name = "regex-automata"
2706
+ version = "0.1.10"
2707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2708
+ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2709
+ dependencies = [
2710
+ "regex-syntax 0.6.29",
2711
+ ]
2712
+
2713
+ [[package]]
2714
+ name = "regex-automata"
2715
+ version = "0.4.9"
2716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2717
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2718
+ dependencies = [
2719
+ "aho-corasick",
2720
+ "memchr",
2721
+ "regex-syntax 0.8.5",
2722
+ ]
2723
+
2724
+ [[package]]
2725
+ name = "regex-syntax"
2726
+ version = "0.6.29"
2727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2728
+ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2729
+
2730
+ [[package]]
2731
+ name = "regex-syntax"
2732
+ version = "0.8.5"
2733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2734
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2735
+
2736
+ [[package]]
2737
+ name = "reqwest"
2738
+ version = "0.12.15"
2739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2740
+ checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
2741
+ dependencies = [
2742
+ "base64 0.22.1",
2743
+ "bytes",
2744
+ "futures-core",
2745
+ "futures-util",
2746
+ "http 1.3.1",
2747
+ "http-body 1.0.1",
2748
+ "http-body-util",
2749
+ "hyper 1.6.0",
2750
+ "hyper-rustls",
2751
+ "hyper-util",
2752
+ "ipnet",
2753
+ "js-sys",
2754
+ "log",
2755
+ "mime",
2756
+ "once_cell",
2757
+ "percent-encoding",
2758
+ "pin-project-lite",
2759
+ "quinn",
2760
+ "rustls",
2761
+ "rustls-pemfile",
2762
+ "rustls-pki-types",
2763
+ "serde",
2764
+ "serde_json",
2765
+ "serde_urlencoded",
2766
+ "sync_wrapper",
2767
+ "tokio",
2768
+ "tokio-rustls",
2769
+ "tokio-util",
2770
+ "tower",
2771
+ "tower-service",
2772
+ "url",
2773
+ "wasm-bindgen",
2774
+ "wasm-bindgen-futures",
2775
+ "wasm-streams",
2776
+ "web-sys",
2777
+ "webpki-roots",
2778
+ "windows-registry",
2779
+ ]
2780
+
2781
+ [[package]]
2782
+ name = "ring"
2783
+ version = "0.17.14"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2786
+ dependencies = [
2787
+ "cc",
2788
+ "cfg-if",
2789
+ "getrandom 0.2.16",
2790
+ "libc",
2791
+ "untrusted",
2792
+ "windows-sys 0.52.0",
2793
+ ]
2794
+
2795
+ [[package]]
2796
+ name = "rustc-demangle"
2797
+ version = "0.1.24"
2798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2799
+ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2800
+
2801
+ [[package]]
2802
+ name = "rustc-hash"
2803
+ version = "1.1.0"
2804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2805
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2806
+
2807
+ [[package]]
2808
+ name = "rustc-hash"
2809
+ version = "2.1.1"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2812
+
2813
+ [[package]]
2814
+ name = "rusticata-macros"
2815
+ version = "4.1.0"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
2818
+ dependencies = [
2819
+ "nom",
2820
+ ]
2821
+
2822
+ [[package]]
2823
+ name = "rustix"
2824
+ version = "0.38.44"
2825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2826
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2827
+ dependencies = [
2828
+ "bitflags 2.9.0",
2829
+ "errno",
2830
+ "libc",
2831
+ "linux-raw-sys 0.4.15",
2832
+ "windows-sys 0.59.0",
2833
+ ]
2834
+
2835
+ [[package]]
2836
+ name = "rustix"
2837
+ version = "1.0.7"
2838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2839
+ checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
2840
+ dependencies = [
2841
+ "bitflags 2.9.0",
2842
+ "errno",
2843
+ "libc",
2844
+ "linux-raw-sys 0.9.4",
2845
+ "windows-sys 0.59.0",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "rustls"
2850
+ version = "0.23.26"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0"
2853
+ dependencies = [
2854
+ "aws-lc-rs",
2855
+ "log",
2856
+ "once_cell",
2857
+ "ring",
2858
+ "rustls-pki-types",
2859
+ "rustls-webpki",
2860
+ "subtle",
2861
+ "zeroize",
2862
+ ]
2863
+
2864
+ [[package]]
2865
+ name = "rustls-native-certs"
2866
+ version = "0.8.1"
2867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2868
+ checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3"
2869
+ dependencies = [
2870
+ "openssl-probe",
2871
+ "rustls-pki-types",
2872
+ "schannel",
2873
+ "security-framework",
2874
+ ]
2875
+
2876
+ [[package]]
2877
+ name = "rustls-pemfile"
2878
+ version = "2.2.0"
2879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2880
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2881
+ dependencies = [
2882
+ "rustls-pki-types",
2883
+ ]
2884
+
2885
+ [[package]]
2886
+ name = "rustls-pki-types"
2887
+ version = "1.11.0"
2888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2889
+ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
2890
+ dependencies = [
2891
+ "web-time",
2892
+ ]
2893
+
2894
+ [[package]]
2895
+ name = "rustls-webpki"
2896
+ version = "0.103.1"
2897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2898
+ checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
2899
+ dependencies = [
2900
+ "aws-lc-rs",
2901
+ "ring",
2902
+ "rustls-pki-types",
2903
+ "untrusted",
2904
+ ]
2905
+
2906
+ [[package]]
2907
+ name = "rustversion"
2908
+ version = "1.0.20"
2909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2910
+ checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
2911
+
2912
+ [[package]]
2913
+ name = "ryu"
2914
+ version = "1.0.20"
2915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2916
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2917
+
2918
+ [[package]]
2919
+ name = "same-file"
2920
+ version = "1.0.6"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2923
+ dependencies = [
2924
+ "winapi-util",
2925
+ ]
2926
+
2927
+ [[package]]
2928
+ name = "schannel"
2929
+ version = "0.1.27"
2930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2931
+ checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
2932
+ dependencies = [
2933
+ "windows-sys 0.59.0",
2934
+ ]
2935
+
2936
+ [[package]]
2937
+ name = "scheduled-thread-pool"
2938
+ version = "0.2.7"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
2941
+ dependencies = [
2942
+ "parking_lot",
2943
+ ]
2944
+
2945
+ [[package]]
2946
+ name = "scoped-tls"
2947
+ version = "1.0.1"
2948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2949
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2950
+
2951
+ [[package]]
2952
+ name = "scopeguard"
2953
+ version = "1.2.0"
2954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2955
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2956
+
2957
+ [[package]]
2958
+ name = "security-framework"
2959
+ version = "3.2.0"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316"
2962
+ dependencies = [
2963
+ "bitflags 2.9.0",
2964
+ "core-foundation",
2965
+ "core-foundation-sys",
2966
+ "libc",
2967
+ "security-framework-sys",
2968
+ ]
2969
+
2970
+ [[package]]
2971
+ name = "security-framework-sys"
2972
+ version = "2.14.0"
2973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2974
+ checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
2975
+ dependencies = [
2976
+ "core-foundation-sys",
2977
+ "libc",
2978
+ ]
2979
+
2980
+ [[package]]
2981
+ name = "seq-macro"
2982
+ version = "0.3.6"
2983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2984
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2985
+
2986
+ [[package]]
2987
+ name = "serde"
2988
+ version = "1.0.219"
2989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2990
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2991
+ dependencies = [
2992
+ "serde_derive",
2993
+ ]
2994
+
2995
+ [[package]]
2996
+ name = "serde_derive"
2997
+ version = "1.0.219"
2998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2999
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
3000
+ dependencies = [
3001
+ "proc-macro2",
3002
+ "quote",
3003
+ "syn 2.0.101",
3004
+ ]
3005
+
3006
+ [[package]]
3007
+ name = "serde_json"
3008
+ version = "1.0.140"
3009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3010
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
3011
+ dependencies = [
3012
+ "itoa",
3013
+ "memchr",
3014
+ "ryu",
3015
+ "serde",
3016
+ ]
3017
+
3018
+ [[package]]
3019
+ name = "serde_magnus"
3020
+ version = "0.11.0"
3021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3022
+ checksum = "8ff64c88ddd26acdcad5a501f18bcc339927b77b69f4a03bfaf2a6fc5ba2ac4b"
3023
+ dependencies = [
3024
+ "magnus",
3025
+ "serde",
3026
+ "tap",
3027
+ ]
3028
+
3029
+ [[package]]
3030
+ name = "serde_path_to_error"
3031
+ version = "0.1.17"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a"
3034
+ dependencies = [
3035
+ "itoa",
3036
+ "serde",
3037
+ ]
3038
+
3039
+ [[package]]
3040
+ name = "serde_urlencoded"
3041
+ version = "0.7.1"
3042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3043
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3044
+ dependencies = [
3045
+ "form_urlencoded",
3046
+ "itoa",
3047
+ "ryu",
3048
+ "serde",
3049
+ ]
3050
+
3051
+ [[package]]
3052
+ name = "sha-crypt"
3053
+ version = "0.5.0"
3054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3055
+ checksum = "88e79009728d8311d42d754f2f319a975f9e38f156fd5e422d2451486c78b286"
3056
+ dependencies = [
3057
+ "base64ct",
3058
+ "rand 0.8.5",
3059
+ "sha2",
3060
+ "subtle",
3061
+ ]
3062
+
3063
+ [[package]]
3064
+ name = "sha1"
3065
+ version = "0.10.6"
3066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3067
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3068
+ dependencies = [
3069
+ "cfg-if",
3070
+ "cpufeatures",
3071
+ "digest",
3072
+ ]
3073
+
3074
+ [[package]]
3075
+ name = "sha1_smol"
3076
+ version = "1.0.1"
3077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3078
+ checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
3079
+
3080
+ [[package]]
3081
+ name = "sha2"
3082
+ version = "0.10.9"
3083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3084
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3085
+ dependencies = [
3086
+ "cfg-if",
3087
+ "cpufeatures",
3088
+ "digest",
3089
+ ]
3090
+
3091
+ [[package]]
3092
+ name = "sharded-slab"
3093
+ version = "0.1.7"
3094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3095
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3096
+ dependencies = [
3097
+ "lazy_static",
3098
+ ]
3099
+
3100
+ [[package]]
3101
+ name = "shell-words"
3102
+ version = "1.1.0"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
3105
+
3106
+ [[package]]
3107
+ name = "shlex"
3108
+ version = "1.3.0"
3109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3110
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3111
+
3112
+ [[package]]
3113
+ name = "signal-hook-registry"
3114
+ version = "1.4.5"
3115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3116
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
3117
+ dependencies = [
3118
+ "libc",
3119
+ ]
3120
+
3121
+ [[package]]
3122
+ name = "simple_asn1"
3123
+ version = "0.6.3"
3124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3125
+ checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
3126
+ dependencies = [
3127
+ "num-bigint",
3128
+ "num-traits",
3129
+ "thiserror 2.0.12",
3130
+ "time",
3131
+ ]
3132
+
3133
+ [[package]]
3134
+ name = "simple_logger"
3135
+ version = "5.0.0"
3136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3137
+ checksum = "e8c5dfa5e08767553704aa0ffd9d9794d527103c736aba9854773851fd7497eb"
3138
+ dependencies = [
3139
+ "colored",
3140
+ "log",
3141
+ "time",
3142
+ "windows-sys 0.48.0",
3143
+ ]
3144
+
3145
+ [[package]]
3146
+ name = "siphasher"
3147
+ version = "1.0.1"
3148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3149
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
3150
+
3151
+ [[package]]
3152
+ name = "slab"
3153
+ version = "0.4.9"
3154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3155
+ checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
3156
+ dependencies = [
3157
+ "autocfg",
3158
+ ]
3159
+
3160
+ [[package]]
3161
+ name = "smallvec"
3162
+ version = "1.15.0"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
3165
+
3166
+ [[package]]
3167
+ name = "socket2"
3168
+ version = "0.5.9"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
3171
+ dependencies = [
3172
+ "libc",
3173
+ "windows-sys 0.52.0",
3174
+ ]
3175
+
3176
+ [[package]]
3177
+ name = "spin"
3178
+ version = "0.9.8"
3179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3180
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3181
+
3182
+ [[package]]
3183
+ name = "stable_deref_trait"
3184
+ version = "1.2.0"
3185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3186
+ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
3187
+
3188
+ [[package]]
3189
+ name = "strsim"
3190
+ version = "0.8.0"
3191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3192
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
3193
+
3194
+ [[package]]
3195
+ name = "strsim"
3196
+ version = "0.11.1"
3197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3198
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3199
+
3200
+ [[package]]
3201
+ name = "structopt"
3202
+ version = "0.3.26"
3203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3204
+ checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
3205
+ dependencies = [
3206
+ "clap 2.34.0",
3207
+ "lazy_static",
3208
+ "structopt-derive",
3209
+ ]
3210
+
3211
+ [[package]]
3212
+ name = "structopt-derive"
3213
+ version = "0.4.18"
3214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3215
+ checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
3216
+ dependencies = [
3217
+ "heck 0.3.3",
3218
+ "proc-macro-error",
3219
+ "proc-macro2",
3220
+ "quote",
3221
+ "syn 1.0.109",
3222
+ ]
3223
+
3224
+ [[package]]
3225
+ name = "subtle"
3226
+ version = "2.6.1"
3227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3228
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3229
+
3230
+ [[package]]
3231
+ name = "syn"
3232
+ version = "1.0.109"
3233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3234
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3235
+ dependencies = [
3236
+ "proc-macro2",
3237
+ "quote",
3238
+ "unicode-ident",
3239
+ ]
3240
+
3241
+ [[package]]
3242
+ name = "syn"
3243
+ version = "2.0.101"
3244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3245
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
3246
+ dependencies = [
3247
+ "proc-macro2",
3248
+ "quote",
3249
+ "unicode-ident",
3250
+ ]
3251
+
3252
+ [[package]]
3253
+ name = "sync_wrapper"
3254
+ version = "1.0.2"
3255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3256
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3257
+ dependencies = [
3258
+ "futures-core",
3259
+ ]
3260
+
3261
+ [[package]]
3262
+ name = "synstructure"
3263
+ version = "0.13.2"
3264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3265
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3266
+ dependencies = [
3267
+ "proc-macro2",
3268
+ "quote",
3269
+ "syn 2.0.101",
3270
+ ]
3271
+
3272
+ [[package]]
3273
+ name = "sysinfo"
3274
+ version = "0.33.1"
3275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3276
+ checksum = "4fc858248ea01b66f19d8e8a6d55f41deaf91e9d495246fd01368d99935c6c01"
3277
+ dependencies = [
3278
+ "core-foundation-sys",
3279
+ "libc",
3280
+ "memchr",
3281
+ "ntapi",
3282
+ "rayon",
3283
+ "windows",
3284
+ ]
3285
+
3286
+ [[package]]
3287
+ name = "tap"
3288
+ version = "1.0.1"
3289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3290
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
3291
+
3292
+ [[package]]
3293
+ name = "tempfile"
3294
+ version = "3.19.1"
3295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3296
+ checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
3297
+ dependencies = [
3298
+ "fastrand",
3299
+ "getrandom 0.3.2",
3300
+ "once_cell",
3301
+ "rustix 1.0.7",
3302
+ "windows-sys 0.59.0",
3303
+ ]
3304
+
3305
+ [[package]]
3306
+ name = "textwrap"
3307
+ version = "0.11.0"
3308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3309
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
3310
+ dependencies = [
3311
+ "unicode-width",
3312
+ ]
3313
+
3314
+ [[package]]
3315
+ name = "thiserror"
3316
+ version = "1.0.69"
3317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3318
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3319
+ dependencies = [
3320
+ "thiserror-impl 1.0.69",
3321
+ ]
3322
+
3323
+ [[package]]
3324
+ name = "thiserror"
3325
+ version = "2.0.12"
3326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3327
+ checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
3328
+ dependencies = [
3329
+ "thiserror-impl 2.0.12",
3330
+ ]
3331
+
3332
+ [[package]]
3333
+ name = "thiserror-impl"
3334
+ version = "1.0.69"
3335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3336
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3337
+ dependencies = [
3338
+ "proc-macro2",
3339
+ "quote",
3340
+ "syn 2.0.101",
3341
+ ]
3342
+
3343
+ [[package]]
3344
+ name = "thiserror-impl"
3345
+ version = "2.0.12"
3346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3347
+ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
3348
+ dependencies = [
3349
+ "proc-macro2",
3350
+ "quote",
3351
+ "syn 2.0.101",
3352
+ ]
3353
+
3354
+ [[package]]
3355
+ name = "thread_local"
3356
+ version = "1.1.8"
3357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3358
+ checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
3359
+ dependencies = [
3360
+ "cfg-if",
3361
+ "once_cell",
3362
+ ]
3363
+
3364
+ [[package]]
3365
+ name = "time"
3366
+ version = "0.3.41"
3367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3368
+ checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
3369
+ dependencies = [
3370
+ "deranged",
3371
+ "itoa",
3372
+ "libc",
3373
+ "num-conv",
3374
+ "num_threads",
3375
+ "powerfmt",
3376
+ "serde",
3377
+ "time-core",
3378
+ "time-macros",
3379
+ ]
3380
+
3381
+ [[package]]
3382
+ name = "time-core"
3383
+ version = "0.1.4"
3384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3385
+ checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
3386
+
3387
+ [[package]]
3388
+ name = "time-macros"
3389
+ version = "0.2.22"
3390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3391
+ checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
3392
+ dependencies = [
3393
+ "num-conv",
3394
+ "time-core",
3395
+ ]
3396
+
3397
+ [[package]]
3398
+ name = "tinystr"
3399
+ version = "0.7.6"
3400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3401
+ checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
3402
+ dependencies = [
3403
+ "displaydoc",
3404
+ "zerovec",
3405
+ ]
3406
+
3407
+ [[package]]
3408
+ name = "tinyvec"
3409
+ version = "1.9.0"
3410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3411
+ checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
3412
+ dependencies = [
3413
+ "tinyvec_macros",
3414
+ ]
3415
+
3416
+ [[package]]
3417
+ name = "tinyvec_macros"
3418
+ version = "0.1.1"
3419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3420
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3421
+
3422
+ [[package]]
3423
+ name = "tokio"
3424
+ version = "1.44.2"
3425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3426
+ checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48"
3427
+ dependencies = [
3428
+ "backtrace",
3429
+ "bytes",
3430
+ "libc",
3431
+ "mio",
3432
+ "parking_lot",
3433
+ "pin-project-lite",
3434
+ "signal-hook-registry",
3435
+ "socket2",
3436
+ "tokio-macros",
3437
+ "windows-sys 0.52.0",
3438
+ ]
3439
+
3440
+ [[package]]
3441
+ name = "tokio-macros"
3442
+ version = "2.5.0"
3443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3444
+ checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
3445
+ dependencies = [
3446
+ "proc-macro2",
3447
+ "quote",
3448
+ "syn 2.0.101",
3449
+ ]
3450
+
3451
+ [[package]]
3452
+ name = "tokio-rustls"
3453
+ version = "0.26.2"
3454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3455
+ checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
3456
+ dependencies = [
3457
+ "rustls",
3458
+ "tokio",
3459
+ ]
3460
+
3461
+ [[package]]
3462
+ name = "tokio-stream"
3463
+ version = "0.1.17"
3464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3465
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
3466
+ dependencies = [
3467
+ "futures-core",
3468
+ "pin-project-lite",
3469
+ "tokio",
3470
+ ]
3471
+
3472
+ [[package]]
3473
+ name = "tokio-tungstenite"
3474
+ version = "0.21.0"
3475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3476
+ checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38"
3477
+ dependencies = [
3478
+ "futures-util",
3479
+ "log",
3480
+ "tokio",
3481
+ "tungstenite",
3482
+ ]
3483
+
3484
+ [[package]]
3485
+ name = "tokio-util"
3486
+ version = "0.7.15"
3487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3488
+ checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
3489
+ dependencies = [
3490
+ "bytes",
3491
+ "futures-core",
3492
+ "futures-io",
3493
+ "futures-sink",
3494
+ "pin-project-lite",
3495
+ "tokio",
3496
+ ]
3497
+
3498
+ [[package]]
3499
+ name = "tower"
3500
+ version = "0.5.2"
3501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3502
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3503
+ dependencies = [
3504
+ "futures-core",
3505
+ "futures-util",
3506
+ "pin-project-lite",
3507
+ "sync_wrapper",
3508
+ "tokio",
3509
+ "tower-layer",
3510
+ "tower-service",
3511
+ "tracing",
3512
+ ]
3513
+
3514
+ [[package]]
3515
+ name = "tower-layer"
3516
+ version = "0.3.3"
3517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3518
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3519
+
3520
+ [[package]]
3521
+ name = "tower-service"
3522
+ version = "0.3.3"
3523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3524
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3525
+
3526
+ [[package]]
3527
+ name = "tracing"
3528
+ version = "0.1.41"
3529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3530
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3531
+ dependencies = [
3532
+ "log",
3533
+ "pin-project-lite",
3534
+ "tracing-attributes",
3535
+ "tracing-core",
3536
+ ]
3537
+
3538
+ [[package]]
3539
+ name = "tracing-appender"
3540
+ version = "0.2.3"
3541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3542
+ checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf"
3543
+ dependencies = [
3544
+ "crossbeam-channel",
3545
+ "thiserror 1.0.69",
3546
+ "time",
3547
+ "tracing-subscriber",
3548
+ ]
3549
+
3550
+ [[package]]
3551
+ name = "tracing-attributes"
3552
+ version = "0.1.28"
3553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3554
+ checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
3555
+ dependencies = [
3556
+ "proc-macro2",
3557
+ "quote",
3558
+ "syn 2.0.101",
3559
+ ]
3560
+
3561
+ [[package]]
3562
+ name = "tracing-core"
3563
+ version = "0.1.33"
3564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3565
+ checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
3566
+ dependencies = [
3567
+ "once_cell",
3568
+ "valuable",
3569
+ ]
3570
+
3571
+ [[package]]
3572
+ name = "tracing-log"
3573
+ version = "0.2.0"
3574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3575
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3576
+ dependencies = [
3577
+ "log",
3578
+ "once_cell",
3579
+ "tracing-core",
3580
+ ]
3581
+
3582
+ [[package]]
3583
+ name = "tracing-serde"
3584
+ version = "0.2.0"
3585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3586
+ checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
3587
+ dependencies = [
3588
+ "serde",
3589
+ "tracing-core",
3590
+ ]
3591
+
3592
+ [[package]]
3593
+ name = "tracing-subscriber"
3594
+ version = "0.3.19"
3595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3596
+ checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
3597
+ dependencies = [
3598
+ "matchers",
3599
+ "nu-ansi-term",
3600
+ "once_cell",
3601
+ "regex",
3602
+ "serde",
3603
+ "serde_json",
3604
+ "sharded-slab",
3605
+ "smallvec",
3606
+ "thread_local",
3607
+ "tracing",
3608
+ "tracing-core",
3609
+ "tracing-log",
3610
+ "tracing-serde",
3611
+ ]
3612
+
3613
+ [[package]]
3614
+ name = "try-lock"
3615
+ version = "0.2.5"
3616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3617
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3618
+
3619
+ [[package]]
3620
+ name = "tungstenite"
3621
+ version = "0.21.0"
3622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3623
+ checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1"
3624
+ dependencies = [
3625
+ "byteorder",
3626
+ "bytes",
3627
+ "data-encoding",
3628
+ "http 1.3.1",
3629
+ "httparse",
3630
+ "log",
3631
+ "rand 0.8.5",
3632
+ "sha1",
3633
+ "thiserror 1.0.69",
3634
+ "url",
3635
+ "utf-8",
3636
+ ]
3637
+
3638
+ [[package]]
3639
+ name = "typenum"
3640
+ version = "1.18.0"
3641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3642
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
3643
+
3644
+ [[package]]
3645
+ name = "unicase"
3646
+ version = "2.8.1"
3647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3648
+ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
3649
+
3650
+ [[package]]
3651
+ name = "unicode-ident"
3652
+ version = "1.0.18"
3653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3654
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
3655
+
3656
+ [[package]]
3657
+ name = "unicode-segmentation"
3658
+ version = "1.12.0"
3659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3660
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3661
+
3662
+ [[package]]
3663
+ name = "unicode-width"
3664
+ version = "0.1.14"
3665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3666
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
3667
+
3668
+ [[package]]
3669
+ name = "unicode-xid"
3670
+ version = "0.2.6"
3671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3672
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3673
+
3674
+ [[package]]
3675
+ name = "untrusted"
3676
+ version = "0.9.0"
3677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3678
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3679
+
3680
+ [[package]]
3681
+ name = "url"
3682
+ version = "2.5.4"
3683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3684
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3685
+ dependencies = [
3686
+ "form_urlencoded",
3687
+ "idna",
3688
+ "percent-encoding",
3689
+ ]
3690
+
3691
+ [[package]]
3692
+ name = "utf-8"
3693
+ version = "0.7.6"
3694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3695
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3696
+
3697
+ [[package]]
3698
+ name = "utf16_iter"
3699
+ version = "1.0.5"
3700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3701
+ checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
3702
+
3703
+ [[package]]
3704
+ name = "utf8_iter"
3705
+ version = "1.0.4"
3706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3707
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3708
+
3709
+ [[package]]
3710
+ name = "utf8parse"
3711
+ version = "0.2.2"
3712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3713
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3714
+
3715
+ [[package]]
3716
+ name = "valuable"
3717
+ version = "0.1.1"
3718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3719
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3720
+
3721
+ [[package]]
3722
+ name = "vec_map"
3723
+ version = "0.8.2"
3724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3725
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
3726
+
3727
+ [[package]]
3728
+ name = "version_check"
3729
+ version = "0.9.5"
3730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3731
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3732
+
3733
+ [[package]]
3734
+ name = "walkdir"
3735
+ version = "2.5.0"
3736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3737
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3738
+ dependencies = [
3739
+ "same-file",
3740
+ "winapi-util",
3741
+ ]
3742
+
3743
+ [[package]]
3744
+ name = "want"
3745
+ version = "0.3.1"
3746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3747
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3748
+ dependencies = [
3749
+ "try-lock",
3750
+ ]
3751
+
3752
+ [[package]]
3753
+ name = "warp"
3754
+ version = "0.3.7"
3755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3756
+ checksum = "4378d202ff965b011c64817db11d5829506d3404edeadb61f190d111da3f231c"
3757
+ dependencies = [
3758
+ "bytes",
3759
+ "futures-channel",
3760
+ "futures-util",
3761
+ "headers",
3762
+ "http 0.2.12",
3763
+ "hyper 0.14.32",
3764
+ "log",
3765
+ "mime",
3766
+ "mime_guess",
3767
+ "multer",
3768
+ "percent-encoding",
3769
+ "pin-project",
3770
+ "scoped-tls",
3771
+ "serde",
3772
+ "serde_json",
3773
+ "serde_urlencoded",
3774
+ "tokio",
3775
+ "tokio-tungstenite",
3776
+ "tokio-util",
3777
+ "tower-service",
3778
+ "tracing",
3779
+ ]
3780
+
3781
+ [[package]]
3782
+ name = "wasi"
3783
+ version = "0.11.0+wasi-snapshot-preview1"
3784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3785
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
3786
+
3787
+ [[package]]
3788
+ name = "wasi"
3789
+ version = "0.14.2+wasi-0.2.4"
3790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3791
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3792
+ dependencies = [
3793
+ "wit-bindgen-rt",
3794
+ ]
3795
+
3796
+ [[package]]
3797
+ name = "wasm-bindgen"
3798
+ version = "0.2.100"
3799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3800
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3801
+ dependencies = [
3802
+ "cfg-if",
3803
+ "once_cell",
3804
+ "rustversion",
3805
+ "wasm-bindgen-macro",
3806
+ ]
3807
+
3808
+ [[package]]
3809
+ name = "wasm-bindgen-backend"
3810
+ version = "0.2.100"
3811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3812
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3813
+ dependencies = [
3814
+ "bumpalo",
3815
+ "log",
3816
+ "proc-macro2",
3817
+ "quote",
3818
+ "syn 2.0.101",
3819
+ "wasm-bindgen-shared",
3820
+ ]
3821
+
3822
+ [[package]]
3823
+ name = "wasm-bindgen-futures"
3824
+ version = "0.4.50"
3825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3826
+ checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
3827
+ dependencies = [
3828
+ "cfg-if",
3829
+ "js-sys",
3830
+ "once_cell",
3831
+ "wasm-bindgen",
3832
+ "web-sys",
3833
+ ]
3834
+
3835
+ [[package]]
3836
+ name = "wasm-bindgen-macro"
3837
+ version = "0.2.100"
3838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3839
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3840
+ dependencies = [
3841
+ "quote",
3842
+ "wasm-bindgen-macro-support",
3843
+ ]
3844
+
3845
+ [[package]]
3846
+ name = "wasm-bindgen-macro-support"
3847
+ version = "0.2.100"
3848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3849
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3850
+ dependencies = [
3851
+ "proc-macro2",
3852
+ "quote",
3853
+ "syn 2.0.101",
3854
+ "wasm-bindgen-backend",
3855
+ "wasm-bindgen-shared",
3856
+ ]
3857
+
3858
+ [[package]]
3859
+ name = "wasm-bindgen-shared"
3860
+ version = "0.2.100"
3861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3862
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3863
+ dependencies = [
3864
+ "unicode-ident",
3865
+ ]
3866
+
3867
+ [[package]]
3868
+ name = "wasm-streams"
3869
+ version = "0.4.2"
3870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3871
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3872
+ dependencies = [
3873
+ "futures-util",
3874
+ "js-sys",
3875
+ "wasm-bindgen",
3876
+ "wasm-bindgen-futures",
3877
+ "web-sys",
3878
+ ]
3879
+
3880
+ [[package]]
3881
+ name = "web-sys"
3882
+ version = "0.3.77"
3883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3884
+ checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
3885
+ dependencies = [
3886
+ "js-sys",
3887
+ "wasm-bindgen",
3888
+ ]
3889
+
3890
+ [[package]]
3891
+ name = "web-time"
3892
+ version = "1.1.0"
3893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3894
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3895
+ dependencies = [
3896
+ "js-sys",
3897
+ "wasm-bindgen",
3898
+ ]
3899
+
3900
+ [[package]]
3901
+ name = "webpki-roots"
3902
+ version = "0.26.10"
3903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3904
+ checksum = "37493cadf42a2a939ed404698ded7fb378bf301b5011f973361779a3a74f8c93"
3905
+ dependencies = [
3906
+ "rustls-pki-types",
3907
+ ]
3908
+
3909
+ [[package]]
3910
+ name = "which"
3911
+ version = "4.4.2"
3912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3913
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
3914
+ dependencies = [
3915
+ "either",
3916
+ "home",
3917
+ "once_cell",
3918
+ "rustix 0.38.44",
3919
+ ]
3920
+
3921
+ [[package]]
3922
+ name = "winapi"
3923
+ version = "0.3.9"
3924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3925
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3926
+ dependencies = [
3927
+ "winapi-i686-pc-windows-gnu",
3928
+ "winapi-x86_64-pc-windows-gnu",
3929
+ ]
3930
+
3931
+ [[package]]
3932
+ name = "winapi-i686-pc-windows-gnu"
3933
+ version = "0.4.0"
3934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3935
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3936
+
3937
+ [[package]]
3938
+ name = "winapi-util"
3939
+ version = "0.1.9"
3940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3941
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
3942
+ dependencies = [
3943
+ "windows-sys 0.48.0",
3944
+ ]
3945
+
3946
+ [[package]]
3947
+ name = "winapi-x86_64-pc-windows-gnu"
3948
+ version = "0.4.0"
3949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3950
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3951
+
3952
+ [[package]]
3953
+ name = "windows"
3954
+ version = "0.57.0"
3955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3956
+ checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
3957
+ dependencies = [
3958
+ "windows-core 0.57.0",
3959
+ "windows-targets 0.52.6",
3960
+ ]
3961
+
3962
+ [[package]]
3963
+ name = "windows-core"
3964
+ version = "0.57.0"
3965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3966
+ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
3967
+ dependencies = [
3968
+ "windows-implement 0.57.0",
3969
+ "windows-interface 0.57.0",
3970
+ "windows-result 0.1.2",
3971
+ "windows-targets 0.52.6",
3972
+ ]
3973
+
3974
+ [[package]]
3975
+ name = "windows-core"
3976
+ version = "0.61.0"
3977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3978
+ checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
3979
+ dependencies = [
3980
+ "windows-implement 0.60.0",
3981
+ "windows-interface 0.59.1",
3982
+ "windows-link",
3983
+ "windows-result 0.3.2",
3984
+ "windows-strings 0.4.0",
3985
+ ]
3986
+
3987
+ [[package]]
3988
+ name = "windows-implement"
3989
+ version = "0.57.0"
3990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3991
+ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
3992
+ dependencies = [
3993
+ "proc-macro2",
3994
+ "quote",
3995
+ "syn 2.0.101",
3996
+ ]
3997
+
3998
+ [[package]]
3999
+ name = "windows-implement"
4000
+ version = "0.60.0"
4001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4002
+ checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
4003
+ dependencies = [
4004
+ "proc-macro2",
4005
+ "quote",
4006
+ "syn 2.0.101",
4007
+ ]
4008
+
4009
+ [[package]]
4010
+ name = "windows-interface"
4011
+ version = "0.57.0"
4012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4013
+ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
4014
+ dependencies = [
4015
+ "proc-macro2",
4016
+ "quote",
4017
+ "syn 2.0.101",
4018
+ ]
4019
+
4020
+ [[package]]
4021
+ name = "windows-interface"
4022
+ version = "0.59.1"
4023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4024
+ checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
4025
+ dependencies = [
4026
+ "proc-macro2",
4027
+ "quote",
4028
+ "syn 2.0.101",
4029
+ ]
4030
+
4031
+ [[package]]
4032
+ name = "windows-link"
4033
+ version = "0.1.1"
4034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4035
+ checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
4036
+
4037
+ [[package]]
4038
+ name = "windows-registry"
4039
+ version = "0.4.0"
4040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4041
+ checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
4042
+ dependencies = [
4043
+ "windows-result 0.3.2",
4044
+ "windows-strings 0.3.1",
4045
+ "windows-targets 0.53.0",
4046
+ ]
4047
+
4048
+ [[package]]
4049
+ name = "windows-result"
4050
+ version = "0.1.2"
4051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4052
+ checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
4053
+ dependencies = [
4054
+ "windows-targets 0.52.6",
4055
+ ]
4056
+
4057
+ [[package]]
4058
+ name = "windows-result"
4059
+ version = "0.3.2"
4060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4061
+ checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
4062
+ dependencies = [
4063
+ "windows-link",
4064
+ ]
4065
+
4066
+ [[package]]
4067
+ name = "windows-strings"
4068
+ version = "0.3.1"
4069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4070
+ checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
4071
+ dependencies = [
4072
+ "windows-link",
4073
+ ]
4074
+
4075
+ [[package]]
4076
+ name = "windows-strings"
4077
+ version = "0.4.0"
4078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4079
+ checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
4080
+ dependencies = [
4081
+ "windows-link",
4082
+ ]
4083
+
4084
+ [[package]]
4085
+ name = "windows-sys"
4086
+ version = "0.48.0"
4087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4088
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4089
+ dependencies = [
4090
+ "windows-targets 0.48.5",
4091
+ ]
4092
+
4093
+ [[package]]
4094
+ name = "windows-sys"
4095
+ version = "0.52.0"
4096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4097
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4098
+ dependencies = [
4099
+ "windows-targets 0.52.6",
4100
+ ]
4101
+
4102
+ [[package]]
4103
+ name = "windows-sys"
4104
+ version = "0.59.0"
4105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4106
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4107
+ dependencies = [
4108
+ "windows-targets 0.52.6",
4109
+ ]
4110
+
4111
+ [[package]]
4112
+ name = "windows-targets"
4113
+ version = "0.48.5"
4114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4115
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4116
+ dependencies = [
4117
+ "windows_aarch64_gnullvm 0.48.5",
4118
+ "windows_aarch64_msvc 0.48.5",
4119
+ "windows_i686_gnu 0.48.5",
4120
+ "windows_i686_msvc 0.48.5",
4121
+ "windows_x86_64_gnu 0.48.5",
4122
+ "windows_x86_64_gnullvm 0.48.5",
4123
+ "windows_x86_64_msvc 0.48.5",
4124
+ ]
4125
+
4126
+ [[package]]
4127
+ name = "windows-targets"
4128
+ version = "0.52.6"
4129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4130
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4131
+ dependencies = [
4132
+ "windows_aarch64_gnullvm 0.52.6",
4133
+ "windows_aarch64_msvc 0.52.6",
4134
+ "windows_i686_gnu 0.52.6",
4135
+ "windows_i686_gnullvm 0.52.6",
4136
+ "windows_i686_msvc 0.52.6",
4137
+ "windows_x86_64_gnu 0.52.6",
4138
+ "windows_x86_64_gnullvm 0.52.6",
4139
+ "windows_x86_64_msvc 0.52.6",
4140
+ ]
4141
+
4142
+ [[package]]
4143
+ name = "windows-targets"
4144
+ version = "0.53.0"
4145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4146
+ checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
4147
+ dependencies = [
4148
+ "windows_aarch64_gnullvm 0.53.0",
4149
+ "windows_aarch64_msvc 0.53.0",
4150
+ "windows_i686_gnu 0.53.0",
4151
+ "windows_i686_gnullvm 0.53.0",
4152
+ "windows_i686_msvc 0.53.0",
4153
+ "windows_x86_64_gnu 0.53.0",
4154
+ "windows_x86_64_gnullvm 0.53.0",
4155
+ "windows_x86_64_msvc 0.53.0",
4156
+ ]
4157
+
4158
+ [[package]]
4159
+ name = "windows_aarch64_gnullvm"
4160
+ version = "0.48.5"
4161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4162
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4163
+
4164
+ [[package]]
4165
+ name = "windows_aarch64_gnullvm"
4166
+ version = "0.52.6"
4167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4168
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4169
+
4170
+ [[package]]
4171
+ name = "windows_aarch64_gnullvm"
4172
+ version = "0.53.0"
4173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4174
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
4175
+
4176
+ [[package]]
4177
+ name = "windows_aarch64_msvc"
4178
+ version = "0.48.5"
4179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4180
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4181
+
4182
+ [[package]]
4183
+ name = "windows_aarch64_msvc"
4184
+ version = "0.52.6"
4185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4186
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4187
+
4188
+ [[package]]
4189
+ name = "windows_aarch64_msvc"
4190
+ version = "0.53.0"
4191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4192
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
4193
+
4194
+ [[package]]
4195
+ name = "windows_i686_gnu"
4196
+ version = "0.48.5"
4197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4198
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4199
+
4200
+ [[package]]
4201
+ name = "windows_i686_gnu"
4202
+ version = "0.52.6"
4203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4204
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4205
+
4206
+ [[package]]
4207
+ name = "windows_i686_gnu"
4208
+ version = "0.53.0"
4209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4210
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
4211
+
4212
+ [[package]]
4213
+ name = "windows_i686_gnullvm"
4214
+ version = "0.52.6"
4215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4216
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4217
+
4218
+ [[package]]
4219
+ name = "windows_i686_gnullvm"
4220
+ version = "0.53.0"
4221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4222
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
4223
+
4224
+ [[package]]
4225
+ name = "windows_i686_msvc"
4226
+ version = "0.48.5"
4227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4228
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4229
+
4230
+ [[package]]
4231
+ name = "windows_i686_msvc"
4232
+ version = "0.52.6"
4233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4234
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4235
+
4236
+ [[package]]
4237
+ name = "windows_i686_msvc"
4238
+ version = "0.53.0"
4239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4240
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
4241
+
4242
+ [[package]]
4243
+ name = "windows_x86_64_gnu"
4244
+ version = "0.48.5"
4245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4246
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4247
+
4248
+ [[package]]
4249
+ name = "windows_x86_64_gnu"
976
4250
  version = "0.52.6"
977
4251
  source = "registry+https://github.com/rust-lang/crates.io-index"
978
4252
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
979
4253
 
4254
+ [[package]]
4255
+ name = "windows_x86_64_gnu"
4256
+ version = "0.53.0"
4257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4258
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
4259
+
4260
+ [[package]]
4261
+ name = "windows_x86_64_gnullvm"
4262
+ version = "0.48.5"
4263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4264
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4265
+
980
4266
  [[package]]
981
4267
  name = "windows_x86_64_gnullvm"
982
4268
  version = "0.52.6"
983
4269
  source = "registry+https://github.com/rust-lang/crates.io-index"
984
4270
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
985
4271
 
4272
+ [[package]]
4273
+ name = "windows_x86_64_gnullvm"
4274
+ version = "0.53.0"
4275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4276
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
4277
+
4278
+ [[package]]
4279
+ name = "windows_x86_64_msvc"
4280
+ version = "0.48.5"
4281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4282
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4283
+
986
4284
  [[package]]
987
4285
  name = "windows_x86_64_msvc"
988
4286
  version = "0.52.6"
989
4287
  source = "registry+https://github.com/rust-lang/crates.io-index"
990
4288
  checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
991
4289
 
4290
+ [[package]]
4291
+ name = "windows_x86_64_msvc"
4292
+ version = "0.53.0"
4293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4294
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
4295
+
4296
+ [[package]]
4297
+ name = "wit-bindgen-rt"
4298
+ version = "0.39.0"
4299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4300
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
4301
+ dependencies = [
4302
+ "bitflags 2.9.0",
4303
+ ]
4304
+
4305
+ [[package]]
4306
+ name = "write16"
4307
+ version = "1.0.0"
4308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4309
+ checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
4310
+
4311
+ [[package]]
4312
+ name = "writeable"
4313
+ version = "0.5.5"
4314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4315
+ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
4316
+
4317
+ [[package]]
4318
+ name = "x509-parser"
4319
+ version = "0.16.0"
4320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4321
+ checksum = "fcbc162f30700d6f3f82a24bf7cc62ffe7caea42c0b2cba8bf7f3ae50cf51f69"
4322
+ dependencies = [
4323
+ "asn1-rs",
4324
+ "data-encoding",
4325
+ "der-parser",
4326
+ "lazy_static",
4327
+ "nom",
4328
+ "oid-registry",
4329
+ "ring",
4330
+ "rusticata-macros",
4331
+ "thiserror 1.0.69",
4332
+ "time",
4333
+ ]
4334
+
992
4335
  [[package]]
993
4336
  name = "yasna"
994
4337
  version = "0.5.2"
@@ -997,3 +4340,144 @@ checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
997
4340
  dependencies = [
998
4341
  "time",
999
4342
  ]
4343
+
4344
+ [[package]]
4345
+ name = "yoke"
4346
+ version = "0.7.5"
4347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4348
+ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
4349
+ dependencies = [
4350
+ "serde",
4351
+ "stable_deref_trait",
4352
+ "yoke-derive",
4353
+ "zerofrom",
4354
+ ]
4355
+
4356
+ [[package]]
4357
+ name = "yoke-derive"
4358
+ version = "0.7.5"
4359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4360
+ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
4361
+ dependencies = [
4362
+ "proc-macro2",
4363
+ "quote",
4364
+ "syn 2.0.101",
4365
+ "synstructure",
4366
+ ]
4367
+
4368
+ [[package]]
4369
+ name = "zerocopy"
4370
+ version = "0.7.35"
4371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4372
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
4373
+ dependencies = [
4374
+ "zerocopy-derive 0.7.35",
4375
+ ]
4376
+
4377
+ [[package]]
4378
+ name = "zerocopy"
4379
+ version = "0.8.25"
4380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4381
+ checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
4382
+ dependencies = [
4383
+ "zerocopy-derive 0.8.25",
4384
+ ]
4385
+
4386
+ [[package]]
4387
+ name = "zerocopy-derive"
4388
+ version = "0.7.35"
4389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4390
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4391
+ dependencies = [
4392
+ "proc-macro2",
4393
+ "quote",
4394
+ "syn 2.0.101",
4395
+ ]
4396
+
4397
+ [[package]]
4398
+ name = "zerocopy-derive"
4399
+ version = "0.8.25"
4400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4401
+ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
4402
+ dependencies = [
4403
+ "proc-macro2",
4404
+ "quote",
4405
+ "syn 2.0.101",
4406
+ ]
4407
+
4408
+ [[package]]
4409
+ name = "zerofrom"
4410
+ version = "0.1.6"
4411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4412
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4413
+ dependencies = [
4414
+ "zerofrom-derive",
4415
+ ]
4416
+
4417
+ [[package]]
4418
+ name = "zerofrom-derive"
4419
+ version = "0.1.6"
4420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4421
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4422
+ dependencies = [
4423
+ "proc-macro2",
4424
+ "quote",
4425
+ "syn 2.0.101",
4426
+ "synstructure",
4427
+ ]
4428
+
4429
+ [[package]]
4430
+ name = "zeroize"
4431
+ version = "1.8.1"
4432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4433
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
4434
+
4435
+ [[package]]
4436
+ name = "zerovec"
4437
+ version = "0.10.4"
4438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4439
+ checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
4440
+ dependencies = [
4441
+ "yoke",
4442
+ "zerofrom",
4443
+ "zerovec-derive",
4444
+ ]
4445
+
4446
+ [[package]]
4447
+ name = "zerovec-derive"
4448
+ version = "0.10.3"
4449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4450
+ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
4451
+ dependencies = [
4452
+ "proc-macro2",
4453
+ "quote",
4454
+ "syn 2.0.101",
4455
+ ]
4456
+
4457
+ [[package]]
4458
+ name = "zstd"
4459
+ version = "0.13.3"
4460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4461
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4462
+ dependencies = [
4463
+ "zstd-safe",
4464
+ ]
4465
+
4466
+ [[package]]
4467
+ name = "zstd-safe"
4468
+ version = "7.2.4"
4469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4470
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4471
+ dependencies = [
4472
+ "zstd-sys",
4473
+ ]
4474
+
4475
+ [[package]]
4476
+ name = "zstd-sys"
4477
+ version = "2.0.15+zstd.1.5.7"
4478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4479
+ checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
4480
+ dependencies = [
4481
+ "cc",
4482
+ "pkg-config",
4483
+ ]