dirsql 0.1.10__tar.gz → 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {dirsql-0.1.10 → dirsql-0.2.0}/Cargo.lock +1599 -166
- dirsql-0.2.0/Cargo.toml +39 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/PKG-INFO +8 -2
- {dirsql-0.1.10/packages/python → dirsql-0.2.0}/README.md +6 -0
- {dirsql-0.1.10 → dirsql-0.2.0/packages/python}/README.md +6 -0
- dirsql-0.2.0/packages/python/python/conftest.py +36 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/Cargo.toml +20 -2
- dirsql-0.2.0/packages/rust/README.md +53 -0
- dirsql-0.2.0/packages/rust/src/bin/dirsql.rs +107 -0
- dirsql-0.2.0/packages/rust/src/cli/mod.rs +146 -0
- dirsql-0.2.0/packages/rust/src/cli/router.rs +165 -0
- dirsql-0.2.0/packages/rust/src/cli/serialize.rs +186 -0
- dirsql-0.2.0/packages/rust/src/cli/server.rs +91 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/src/lib.rs +3 -0
- dirsql-0.2.0/packages/rust/tests/cli_e2e.rs +362 -0
- dirsql-0.2.0/packages/rust/tests/cli_integration.rs +403 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/pyproject.toml +17 -2
- dirsql-0.2.0/python/dirsql/_cli/__init__.py +6 -0
- dirsql-0.2.0/python/dirsql/_cli/binary_path.py +19 -0
- dirsql-0.2.0/python/dirsql/_cli/binary_path_test.py +68 -0
- dirsql-0.2.0/python/dirsql/_cli/is_windows.py +10 -0
- dirsql-0.2.0/python/dirsql/_cli/is_windows_test.py +15 -0
- dirsql-0.2.0/python/dirsql/_cli/main.py +27 -0
- dirsql-0.2.0/python/dirsql/_cli/main_test.py +77 -0
- dirsql-0.2.0/python/dirsql/test_async.py +83 -0
- dirsql-0.1.10/Cargo.toml +0 -18
- dirsql-0.1.10/packages/rust/README.md +0 -26
- dirsql-0.1.10/packages/rust/src/bin/dirsql.rs +0 -26
- dirsql-0.1.10/python/dirsql/test_async.py +0 -78
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/python/Cargo.toml +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/python/src/lib.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/python/tests/__init__.py +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/python/tests/conftest.py +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/python/tests/integration/__init__.py +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/python/tests/integration/test_async_dirsql.py +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/python/tests/integration/test_binding.py +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/python/tests/integration/test_dirsql.py +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/python/tests/integration/test_docs_examples.py +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/python/tests/integration/test_docs_gaps.py +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/python/tests/integration/test_from_config.py +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/benches/db_bench.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/benches/differ_bench.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/benches/matcher_bench.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/benches/scanner_bench.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/src/config.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/src/db.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/src/differ.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/src/matcher.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/src/parser.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/src/scanner.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/src/watcher.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/tests/async_sdk.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/tests/docs_examples.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/tests/docs_gaps.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/tests/from_config.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/tests/readonly_query.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/packages/rust/tests/sdk.rs +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/python/dirsql/__init__.py +0 -0
- {dirsql-0.1.10 → dirsql-0.2.0}/python/dirsql/_async.py +0 -0
|
@@ -73,12 +73,97 @@ version = "1.0.102"
|
|
|
73
73
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
74
|
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
75
75
|
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "assert_cmd"
|
|
78
|
+
version = "2.2.1"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "39bae1d3fa576f7c6519514180a72559268dd7d1fe104070956cb687bc6673bd"
|
|
81
|
+
dependencies = [
|
|
82
|
+
"anstyle",
|
|
83
|
+
"bstr",
|
|
84
|
+
"libc",
|
|
85
|
+
"predicates",
|
|
86
|
+
"predicates-core",
|
|
87
|
+
"predicates-tree",
|
|
88
|
+
"wait-timeout",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "atomic-waker"
|
|
93
|
+
version = "1.1.2"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
96
|
+
|
|
76
97
|
[[package]]
|
|
77
98
|
name = "autocfg"
|
|
78
99
|
version = "1.5.0"
|
|
79
100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
101
|
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
81
102
|
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "axum"
|
|
105
|
+
version = "0.8.9"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"axum-core",
|
|
110
|
+
"bytes",
|
|
111
|
+
"form_urlencoded",
|
|
112
|
+
"futures-util",
|
|
113
|
+
"http 1.4.0",
|
|
114
|
+
"http-body 1.0.1",
|
|
115
|
+
"http-body-util",
|
|
116
|
+
"hyper 1.9.0",
|
|
117
|
+
"hyper-util",
|
|
118
|
+
"itoa",
|
|
119
|
+
"matchit",
|
|
120
|
+
"memchr",
|
|
121
|
+
"mime",
|
|
122
|
+
"percent-encoding",
|
|
123
|
+
"pin-project-lite",
|
|
124
|
+
"serde_core",
|
|
125
|
+
"serde_json",
|
|
126
|
+
"serde_path_to_error",
|
|
127
|
+
"serde_urlencoded",
|
|
128
|
+
"sync_wrapper",
|
|
129
|
+
"tokio",
|
|
130
|
+
"tower",
|
|
131
|
+
"tower-layer",
|
|
132
|
+
"tower-service",
|
|
133
|
+
"tracing",
|
|
134
|
+
]
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "axum-core"
|
|
138
|
+
version = "0.5.6"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"bytes",
|
|
143
|
+
"futures-core",
|
|
144
|
+
"http 1.4.0",
|
|
145
|
+
"http-body 1.0.1",
|
|
146
|
+
"http-body-util",
|
|
147
|
+
"mime",
|
|
148
|
+
"pin-project-lite",
|
|
149
|
+
"sync_wrapper",
|
|
150
|
+
"tower-layer",
|
|
151
|
+
"tower-service",
|
|
152
|
+
"tracing",
|
|
153
|
+
]
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "base64"
|
|
157
|
+
version = "0.21.7"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "base64"
|
|
163
|
+
version = "0.22.1"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
166
|
+
|
|
82
167
|
[[package]]
|
|
83
168
|
name = "bitflags"
|
|
84
169
|
version = "1.3.2"
|
|
@@ -87,9 +172,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
87
172
|
|
|
88
173
|
[[package]]
|
|
89
174
|
name = "bitflags"
|
|
90
|
-
version = "2.11.
|
|
175
|
+
version = "2.11.1"
|
|
91
176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
-
checksum = "
|
|
177
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
93
178
|
|
|
94
179
|
[[package]]
|
|
95
180
|
name = "bstr"
|
|
@@ -98,6 +183,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
98
183
|
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
99
184
|
dependencies = [
|
|
100
185
|
"memchr",
|
|
186
|
+
"regex-automata",
|
|
101
187
|
"serde",
|
|
102
188
|
]
|
|
103
189
|
|
|
@@ -107,6 +193,12 @@ version = "3.20.2"
|
|
|
107
193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
194
|
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
109
195
|
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "bytes"
|
|
198
|
+
version = "1.11.1"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
201
|
+
|
|
110
202
|
[[package]]
|
|
111
203
|
name = "cast"
|
|
112
204
|
version = "0.3.0"
|
|
@@ -115,9 +207,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
|
115
207
|
|
|
116
208
|
[[package]]
|
|
117
209
|
name = "cc"
|
|
118
|
-
version = "1.2.
|
|
210
|
+
version = "1.2.60"
|
|
119
211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
-
checksum = "
|
|
212
|
+
checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
|
|
121
213
|
dependencies = [
|
|
122
214
|
"find-msvc-tools",
|
|
123
215
|
"shlex",
|
|
@@ -129,6 +221,12 @@ version = "1.0.4"
|
|
|
129
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
222
|
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
131
223
|
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "cfg_aliases"
|
|
226
|
+
version = "0.2.1"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
229
|
+
|
|
132
230
|
[[package]]
|
|
133
231
|
name = "ciborium"
|
|
134
232
|
version = "0.2.2"
|
|
@@ -158,9 +256,9 @@ dependencies = [
|
|
|
158
256
|
|
|
159
257
|
[[package]]
|
|
160
258
|
name = "clap"
|
|
161
|
-
version = "4.6.
|
|
259
|
+
version = "4.6.1"
|
|
162
260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
-
checksum = "
|
|
261
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
164
262
|
dependencies = [
|
|
165
263
|
"clap_builder",
|
|
166
264
|
"clap_derive",
|
|
@@ -180,9 +278,9 @@ dependencies = [
|
|
|
180
278
|
|
|
181
279
|
[[package]]
|
|
182
280
|
name = "clap_derive"
|
|
183
|
-
version = "4.6.
|
|
281
|
+
version = "4.6.1"
|
|
184
282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
-
checksum = "
|
|
283
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
186
284
|
dependencies = [
|
|
187
285
|
"heck",
|
|
188
286
|
"proc-macro2",
|
|
@@ -211,6 +309,22 @@ dependencies = [
|
|
|
211
309
|
"unicode-segmentation",
|
|
212
310
|
]
|
|
213
311
|
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "core-foundation"
|
|
314
|
+
version = "0.9.4"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
317
|
+
dependencies = [
|
|
318
|
+
"core-foundation-sys",
|
|
319
|
+
"libc",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "core-foundation-sys"
|
|
324
|
+
version = "0.8.7"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
327
|
+
|
|
214
328
|
[[package]]
|
|
215
329
|
name = "criterion"
|
|
216
330
|
version = "0.5.1"
|
|
@@ -301,9 +415,9 @@ dependencies = [
|
|
|
301
415
|
|
|
302
416
|
[[package]]
|
|
303
417
|
name = "ctor"
|
|
304
|
-
version = "0.
|
|
418
|
+
version = "0.10.0"
|
|
305
419
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
-
checksum = "
|
|
420
|
+
checksum = "95d0d11eb38e7642efca359c3cf6eb7b2e528182d09110165de70192b0352775"
|
|
307
421
|
dependencies = [
|
|
308
422
|
"ctor-proc-macro",
|
|
309
423
|
"dtor",
|
|
@@ -311,23 +425,36 @@ dependencies = [
|
|
|
311
425
|
|
|
312
426
|
[[package]]
|
|
313
427
|
name = "ctor-proc-macro"
|
|
314
|
-
version = "0.0.
|
|
428
|
+
version = "0.0.12"
|
|
315
429
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
-
checksum = "
|
|
430
|
+
checksum = "a7ab264ea985f1bd27887d7b21ea2bb046728e05d11909ca138d700c494730db"
|
|
431
|
+
|
|
432
|
+
[[package]]
|
|
433
|
+
name = "difflib"
|
|
434
|
+
version = "0.4.0"
|
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
317
437
|
|
|
318
438
|
[[package]]
|
|
319
439
|
name = "dirsql"
|
|
320
440
|
version = "0.1.0"
|
|
321
441
|
dependencies = [
|
|
442
|
+
"assert_cmd",
|
|
443
|
+
"axum",
|
|
322
444
|
"clap",
|
|
323
445
|
"criterion",
|
|
324
446
|
"csv",
|
|
447
|
+
"eventsource-client",
|
|
448
|
+
"futures",
|
|
325
449
|
"futures-channel",
|
|
326
450
|
"futures-executor",
|
|
327
451
|
"futures-util",
|
|
328
452
|
"globset",
|
|
453
|
+
"libc",
|
|
329
454
|
"notify",
|
|
455
|
+
"predicates",
|
|
330
456
|
"regex",
|
|
457
|
+
"reqwest",
|
|
331
458
|
"rusqlite",
|
|
332
459
|
"serde",
|
|
333
460
|
"serde_json",
|
|
@@ -335,6 +462,7 @@ dependencies = [
|
|
|
335
462
|
"tempfile",
|
|
336
463
|
"thiserror",
|
|
337
464
|
"tokio",
|
|
465
|
+
"tokio-stream",
|
|
338
466
|
"toml",
|
|
339
467
|
"walkdir",
|
|
340
468
|
]
|
|
@@ -358,20 +486,31 @@ dependencies = [
|
|
|
358
486
|
"pyo3",
|
|
359
487
|
]
|
|
360
488
|
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "displaydoc"
|
|
491
|
+
version = "0.2.5"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"proc-macro2",
|
|
496
|
+
"quote",
|
|
497
|
+
"syn",
|
|
498
|
+
]
|
|
499
|
+
|
|
361
500
|
[[package]]
|
|
362
501
|
name = "dtor"
|
|
363
|
-
version = "0.
|
|
502
|
+
version = "0.7.0"
|
|
364
503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
-
checksum = "
|
|
504
|
+
checksum = "17f72721db8027a4e96dd6fb50d2a1d32259c9d3da1b63dee612ccd981e14293"
|
|
366
505
|
dependencies = [
|
|
367
506
|
"dtor-proc-macro",
|
|
368
507
|
]
|
|
369
508
|
|
|
370
509
|
[[package]]
|
|
371
510
|
name = "dtor-proc-macro"
|
|
372
|
-
version = "0.0.
|
|
511
|
+
version = "0.0.12"
|
|
373
512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
-
checksum = "
|
|
513
|
+
checksum = "8c98b077c7463d01d22dde8a24378ddf1ca7263dc687cffbed38819ea6c21131"
|
|
375
514
|
|
|
376
515
|
[[package]]
|
|
377
516
|
name = "either"
|
|
@@ -395,6 +534,22 @@ dependencies = [
|
|
|
395
534
|
"windows-sys 0.61.2",
|
|
396
535
|
]
|
|
397
536
|
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "eventsource-client"
|
|
539
|
+
version = "0.13.0"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "43ddc25e1ad2cc0106d5e2d967397b4fb2068a66677ee9b0eea4600e5cfe8fb4"
|
|
542
|
+
dependencies = [
|
|
543
|
+
"futures",
|
|
544
|
+
"hyper 0.14.32",
|
|
545
|
+
"hyper-rustls 0.24.2",
|
|
546
|
+
"hyper-timeout",
|
|
547
|
+
"log",
|
|
548
|
+
"pin-project",
|
|
549
|
+
"rand 0.8.6",
|
|
550
|
+
"tokio",
|
|
551
|
+
]
|
|
552
|
+
|
|
398
553
|
[[package]]
|
|
399
554
|
name = "fallible-iterator"
|
|
400
555
|
version = "0.3.0"
|
|
@@ -430,12 +585,36 @@ version = "0.1.9"
|
|
|
430
585
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
586
|
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
432
587
|
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "float-cmp"
|
|
590
|
+
version = "0.10.0"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"num-traits",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "fnv"
|
|
599
|
+
version = "1.0.7"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
602
|
+
|
|
433
603
|
[[package]]
|
|
434
604
|
name = "foldhash"
|
|
435
605
|
version = "0.1.5"
|
|
436
606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
607
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
438
608
|
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "form_urlencoded"
|
|
611
|
+
version = "1.2.2"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"percent-encoding",
|
|
616
|
+
]
|
|
617
|
+
|
|
439
618
|
[[package]]
|
|
440
619
|
name = "fsevent-sys"
|
|
441
620
|
version = "4.1.0"
|
|
@@ -533,6 +712,33 @@ dependencies = [
|
|
|
533
712
|
"slab",
|
|
534
713
|
]
|
|
535
714
|
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "getrandom"
|
|
717
|
+
version = "0.2.17"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
720
|
+
dependencies = [
|
|
721
|
+
"cfg-if",
|
|
722
|
+
"js-sys",
|
|
723
|
+
"libc",
|
|
724
|
+
"wasi",
|
|
725
|
+
"wasm-bindgen",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "getrandom"
|
|
730
|
+
version = "0.3.4"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
733
|
+
dependencies = [
|
|
734
|
+
"cfg-if",
|
|
735
|
+
"js-sys",
|
|
736
|
+
"libc",
|
|
737
|
+
"r-efi 5.3.0",
|
|
738
|
+
"wasip2",
|
|
739
|
+
"wasm-bindgen",
|
|
740
|
+
]
|
|
741
|
+
|
|
536
742
|
[[package]]
|
|
537
743
|
name = "getrandom"
|
|
538
744
|
version = "0.4.2"
|
|
@@ -541,7 +747,7 @@ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
|
541
747
|
dependencies = [
|
|
542
748
|
"cfg-if",
|
|
543
749
|
"libc",
|
|
544
|
-
"r-efi",
|
|
750
|
+
"r-efi 6.0.0",
|
|
545
751
|
"wasip2",
|
|
546
752
|
"wasip3",
|
|
547
753
|
]
|
|
@@ -559,6 +765,25 @@ dependencies = [
|
|
|
559
765
|
"regex-syntax",
|
|
560
766
|
]
|
|
561
767
|
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "h2"
|
|
770
|
+
version = "0.3.27"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
|
|
773
|
+
dependencies = [
|
|
774
|
+
"bytes",
|
|
775
|
+
"fnv",
|
|
776
|
+
"futures-core",
|
|
777
|
+
"futures-sink",
|
|
778
|
+
"futures-util",
|
|
779
|
+
"http 0.2.12",
|
|
780
|
+
"indexmap",
|
|
781
|
+
"slab",
|
|
782
|
+
"tokio",
|
|
783
|
+
"tokio-util",
|
|
784
|
+
"tracing",
|
|
785
|
+
]
|
|
786
|
+
|
|
562
787
|
[[package]]
|
|
563
788
|
name = "half"
|
|
564
789
|
version = "2.7.1"
|
|
@@ -581,9 +806,9 @@ dependencies = [
|
|
|
581
806
|
|
|
582
807
|
[[package]]
|
|
583
808
|
name = "hashbrown"
|
|
584
|
-
version = "0.
|
|
809
|
+
version = "0.17.0"
|
|
585
810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
-
checksum = "
|
|
811
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
587
812
|
|
|
588
813
|
[[package]]
|
|
589
814
|
name = "hashlink"
|
|
@@ -607,196 +832,520 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
607
832
|
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
608
833
|
|
|
609
834
|
[[package]]
|
|
610
|
-
name = "
|
|
611
|
-
version = "2.
|
|
612
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
-
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
614
|
-
|
|
615
|
-
[[package]]
|
|
616
|
-
name = "indexmap"
|
|
617
|
-
version = "2.13.1"
|
|
835
|
+
name = "http"
|
|
836
|
+
version = "0.2.12"
|
|
618
837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
-
checksum = "
|
|
838
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
620
839
|
dependencies = [
|
|
621
|
-
"
|
|
622
|
-
"
|
|
623
|
-
"
|
|
624
|
-
"serde_core",
|
|
840
|
+
"bytes",
|
|
841
|
+
"fnv",
|
|
842
|
+
"itoa",
|
|
625
843
|
]
|
|
626
844
|
|
|
627
845
|
[[package]]
|
|
628
|
-
name = "
|
|
629
|
-
version = "
|
|
846
|
+
name = "http"
|
|
847
|
+
version = "1.4.0"
|
|
630
848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
-
checksum = "
|
|
849
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
632
850
|
dependencies = [
|
|
633
|
-
"
|
|
634
|
-
"
|
|
635
|
-
"libc",
|
|
851
|
+
"bytes",
|
|
852
|
+
"itoa",
|
|
636
853
|
]
|
|
637
854
|
|
|
638
855
|
[[package]]
|
|
639
|
-
name = "
|
|
640
|
-
version = "0.
|
|
856
|
+
name = "http-body"
|
|
857
|
+
version = "0.4.6"
|
|
641
858
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
-
checksum = "
|
|
859
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
643
860
|
dependencies = [
|
|
644
|
-
"
|
|
861
|
+
"bytes",
|
|
862
|
+
"http 0.2.12",
|
|
863
|
+
"pin-project-lite",
|
|
645
864
|
]
|
|
646
865
|
|
|
647
866
|
[[package]]
|
|
648
|
-
name = "
|
|
649
|
-
version = "0.1
|
|
867
|
+
name = "http-body"
|
|
868
|
+
version = "1.0.1"
|
|
650
869
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
-
checksum = "
|
|
870
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
652
871
|
dependencies = [
|
|
653
|
-
"
|
|
872
|
+
"bytes",
|
|
873
|
+
"http 1.4.0",
|
|
654
874
|
]
|
|
655
875
|
|
|
656
876
|
[[package]]
|
|
657
|
-
name = "
|
|
658
|
-
version = "0.
|
|
877
|
+
name = "http-body-util"
|
|
878
|
+
version = "0.1.3"
|
|
659
879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
-
checksum = "
|
|
880
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
661
881
|
dependencies = [
|
|
662
|
-
"
|
|
663
|
-
"
|
|
664
|
-
"
|
|
882
|
+
"bytes",
|
|
883
|
+
"futures-core",
|
|
884
|
+
"http 1.4.0",
|
|
885
|
+
"http-body 1.0.1",
|
|
886
|
+
"pin-project-lite",
|
|
665
887
|
]
|
|
666
888
|
|
|
667
889
|
[[package]]
|
|
668
|
-
name = "
|
|
669
|
-
version = "1.
|
|
890
|
+
name = "httparse"
|
|
891
|
+
version = "1.10.1"
|
|
670
892
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
-
checksum = "
|
|
893
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
672
894
|
|
|
673
895
|
[[package]]
|
|
674
|
-
name = "
|
|
675
|
-
version = "0.
|
|
896
|
+
name = "httpdate"
|
|
897
|
+
version = "1.0.3"
|
|
676
898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
-
checksum = "
|
|
678
|
-
dependencies = [
|
|
679
|
-
"either",
|
|
680
|
-
]
|
|
899
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
681
900
|
|
|
682
901
|
[[package]]
|
|
683
|
-
name = "
|
|
684
|
-
version = "
|
|
902
|
+
name = "hyper"
|
|
903
|
+
version = "0.14.32"
|
|
685
904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
-
checksum = "
|
|
905
|
+
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"bytes",
|
|
908
|
+
"futures-channel",
|
|
909
|
+
"futures-core",
|
|
910
|
+
"futures-util",
|
|
911
|
+
"h2",
|
|
912
|
+
"http 0.2.12",
|
|
913
|
+
"http-body 0.4.6",
|
|
914
|
+
"httparse",
|
|
915
|
+
"httpdate",
|
|
916
|
+
"itoa",
|
|
917
|
+
"pin-project-lite",
|
|
918
|
+
"socket2 0.5.10",
|
|
919
|
+
"tokio",
|
|
920
|
+
"tower-service",
|
|
921
|
+
"tracing",
|
|
922
|
+
"want",
|
|
923
|
+
]
|
|
687
924
|
|
|
688
925
|
[[package]]
|
|
689
|
-
name = "
|
|
690
|
-
version = "
|
|
926
|
+
name = "hyper"
|
|
927
|
+
version = "1.9.0"
|
|
691
928
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
-
checksum = "
|
|
929
|
+
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
|
|
693
930
|
dependencies = [
|
|
694
|
-
"
|
|
695
|
-
"
|
|
931
|
+
"atomic-waker",
|
|
932
|
+
"bytes",
|
|
933
|
+
"futures-channel",
|
|
934
|
+
"futures-core",
|
|
935
|
+
"http 1.4.0",
|
|
936
|
+
"http-body 1.0.1",
|
|
937
|
+
"httparse",
|
|
938
|
+
"httpdate",
|
|
939
|
+
"itoa",
|
|
940
|
+
"pin-project-lite",
|
|
941
|
+
"smallvec",
|
|
942
|
+
"tokio",
|
|
943
|
+
"want",
|
|
696
944
|
]
|
|
697
945
|
|
|
698
946
|
[[package]]
|
|
699
|
-
name = "
|
|
700
|
-
version = "
|
|
947
|
+
name = "hyper-rustls"
|
|
948
|
+
version = "0.24.2"
|
|
701
949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
-
checksum = "
|
|
950
|
+
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
|
703
951
|
dependencies = [
|
|
704
|
-
"
|
|
705
|
-
"
|
|
952
|
+
"futures-util",
|
|
953
|
+
"http 0.2.12",
|
|
954
|
+
"hyper 0.14.32",
|
|
955
|
+
"log",
|
|
956
|
+
"rustls 0.21.12",
|
|
957
|
+
"rustls-native-certs",
|
|
958
|
+
"tokio",
|
|
959
|
+
"tokio-rustls 0.24.1",
|
|
706
960
|
]
|
|
707
961
|
|
|
708
962
|
[[package]]
|
|
709
|
-
name = "
|
|
710
|
-
version = "
|
|
963
|
+
name = "hyper-rustls"
|
|
964
|
+
version = "0.27.9"
|
|
711
965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
-
checksum = "
|
|
966
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
713
967
|
dependencies = [
|
|
714
|
-
"
|
|
715
|
-
"
|
|
968
|
+
"http 1.4.0",
|
|
969
|
+
"hyper 1.9.0",
|
|
970
|
+
"hyper-util",
|
|
971
|
+
"rustls 0.23.38",
|
|
972
|
+
"tokio",
|
|
973
|
+
"tokio-rustls 0.26.4",
|
|
974
|
+
"tower-service",
|
|
975
|
+
"webpki-roots",
|
|
716
976
|
]
|
|
717
977
|
|
|
718
978
|
[[package]]
|
|
719
|
-
name = "
|
|
720
|
-
version = "0.1
|
|
979
|
+
name = "hyper-timeout"
|
|
980
|
+
version = "0.4.1"
|
|
721
981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
-
checksum = "
|
|
982
|
+
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
|
|
983
|
+
dependencies = [
|
|
984
|
+
"hyper 0.14.32",
|
|
985
|
+
"pin-project-lite",
|
|
986
|
+
"tokio",
|
|
987
|
+
"tokio-io-timeout",
|
|
988
|
+
]
|
|
723
989
|
|
|
724
990
|
[[package]]
|
|
725
|
-
name = "
|
|
726
|
-
version = "0.
|
|
991
|
+
name = "hyper-util"
|
|
992
|
+
version = "0.1.20"
|
|
727
993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
-
checksum = "
|
|
994
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
995
|
+
dependencies = [
|
|
996
|
+
"base64 0.22.1",
|
|
997
|
+
"bytes",
|
|
998
|
+
"futures-channel",
|
|
999
|
+
"futures-util",
|
|
1000
|
+
"http 1.4.0",
|
|
1001
|
+
"http-body 1.0.1",
|
|
1002
|
+
"hyper 1.9.0",
|
|
1003
|
+
"ipnet",
|
|
1004
|
+
"libc",
|
|
1005
|
+
"percent-encoding",
|
|
1006
|
+
"pin-project-lite",
|
|
1007
|
+
"socket2 0.6.3",
|
|
1008
|
+
"tokio",
|
|
1009
|
+
"tower-service",
|
|
1010
|
+
"tracing",
|
|
1011
|
+
]
|
|
729
1012
|
|
|
730
1013
|
[[package]]
|
|
731
|
-
name = "
|
|
732
|
-
version = "
|
|
1014
|
+
name = "icu_collections"
|
|
1015
|
+
version = "2.2.0"
|
|
733
1016
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
734
|
-
checksum = "
|
|
1017
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
735
1018
|
dependencies = [
|
|
736
|
-
"
|
|
737
|
-
"
|
|
1019
|
+
"displaydoc",
|
|
1020
|
+
"potential_utf",
|
|
1021
|
+
"utf8_iter",
|
|
1022
|
+
"yoke",
|
|
1023
|
+
"zerofrom",
|
|
1024
|
+
"zerovec",
|
|
738
1025
|
]
|
|
739
1026
|
|
|
740
1027
|
[[package]]
|
|
741
|
-
name = "
|
|
742
|
-
version = "
|
|
1028
|
+
name = "icu_locale_core"
|
|
1029
|
+
version = "2.2.0"
|
|
743
1030
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
-
checksum = "
|
|
1031
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
745
1032
|
dependencies = [
|
|
746
|
-
"
|
|
747
|
-
"
|
|
748
|
-
"
|
|
749
|
-
"
|
|
1033
|
+
"displaydoc",
|
|
1034
|
+
"litemap",
|
|
1035
|
+
"tinystr",
|
|
1036
|
+
"writeable",
|
|
1037
|
+
"zerovec",
|
|
750
1038
|
]
|
|
751
1039
|
|
|
752
1040
|
[[package]]
|
|
753
|
-
name = "
|
|
754
|
-
version = "
|
|
1041
|
+
name = "icu_normalizer"
|
|
1042
|
+
version = "2.2.0"
|
|
755
1043
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
-
checksum = "
|
|
1044
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
757
1045
|
dependencies = [
|
|
758
|
-
"
|
|
759
|
-
"
|
|
760
|
-
"
|
|
1046
|
+
"icu_collections",
|
|
1047
|
+
"icu_normalizer_data",
|
|
1048
|
+
"icu_properties",
|
|
1049
|
+
"icu_provider",
|
|
1050
|
+
"smallvec",
|
|
1051
|
+
"zerovec",
|
|
761
1052
|
]
|
|
762
1053
|
|
|
763
1054
|
[[package]]
|
|
764
|
-
name = "
|
|
765
|
-
version = "
|
|
1055
|
+
name = "icu_normalizer_data"
|
|
1056
|
+
version = "2.2.0"
|
|
766
1057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
-
checksum = "
|
|
1058
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
768
1059
|
|
|
769
1060
|
[[package]]
|
|
770
|
-
name = "
|
|
771
|
-
version = "
|
|
1061
|
+
name = "icu_properties"
|
|
1062
|
+
version = "2.2.0"
|
|
772
1063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
-
checksum = "
|
|
1064
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1065
|
+
dependencies = [
|
|
1066
|
+
"icu_collections",
|
|
1067
|
+
"icu_locale_core",
|
|
1068
|
+
"icu_properties_data",
|
|
1069
|
+
"icu_provider",
|
|
1070
|
+
"zerotrie",
|
|
1071
|
+
"zerovec",
|
|
1072
|
+
]
|
|
774
1073
|
|
|
775
1074
|
[[package]]
|
|
776
|
-
name = "
|
|
777
|
-
version = "2.
|
|
1075
|
+
name = "icu_properties_data"
|
|
1076
|
+
version = "2.2.0"
|
|
778
1077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
-
checksum = "
|
|
1078
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
780
1079
|
|
|
781
1080
|
[[package]]
|
|
782
|
-
name = "
|
|
783
|
-
version = "
|
|
1081
|
+
name = "icu_provider"
|
|
1082
|
+
version = "2.2.0"
|
|
784
1083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
-
checksum = "
|
|
1084
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
786
1085
|
dependencies = [
|
|
787
|
-
"
|
|
788
|
-
"
|
|
789
|
-
"
|
|
790
|
-
"
|
|
1086
|
+
"displaydoc",
|
|
1087
|
+
"icu_locale_core",
|
|
1088
|
+
"writeable",
|
|
1089
|
+
"yoke",
|
|
1090
|
+
"zerofrom",
|
|
1091
|
+
"zerotrie",
|
|
1092
|
+
"zerovec",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "id-arena"
|
|
1097
|
+
version = "2.3.0"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "idna"
|
|
1103
|
+
version = "1.1.0"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"idna_adapter",
|
|
1108
|
+
"smallvec",
|
|
1109
|
+
"utf8_iter",
|
|
1110
|
+
]
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "idna_adapter"
|
|
1114
|
+
version = "1.2.1"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1117
|
+
dependencies = [
|
|
1118
|
+
"icu_normalizer",
|
|
1119
|
+
"icu_properties",
|
|
1120
|
+
]
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "indexmap"
|
|
1124
|
+
version = "2.14.0"
|
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1127
|
+
dependencies = [
|
|
1128
|
+
"equivalent",
|
|
1129
|
+
"hashbrown 0.17.0",
|
|
1130
|
+
"serde",
|
|
1131
|
+
"serde_core",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "inotify"
|
|
1136
|
+
version = "0.10.2"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"bitflags 1.3.2",
|
|
1141
|
+
"inotify-sys",
|
|
1142
|
+
"libc",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "inotify-sys"
|
|
1147
|
+
version = "0.1.5"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
|
|
1150
|
+
dependencies = [
|
|
1151
|
+
"libc",
|
|
1152
|
+
]
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "instant"
|
|
1156
|
+
version = "0.1.13"
|
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
+
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
|
1159
|
+
dependencies = [
|
|
1160
|
+
"cfg-if",
|
|
1161
|
+
]
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "ipnet"
|
|
1165
|
+
version = "2.12.0"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1168
|
+
|
|
1169
|
+
[[package]]
|
|
1170
|
+
name = "iri-string"
|
|
1171
|
+
version = "0.7.12"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
|
|
1174
|
+
dependencies = [
|
|
1175
|
+
"memchr",
|
|
1176
|
+
"serde",
|
|
1177
|
+
]
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "is-terminal"
|
|
1181
|
+
version = "0.4.17"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1184
|
+
dependencies = [
|
|
1185
|
+
"hermit-abi",
|
|
1186
|
+
"libc",
|
|
1187
|
+
"windows-sys 0.61.2",
|
|
1188
|
+
]
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "is_terminal_polyfill"
|
|
1192
|
+
version = "1.70.2"
|
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1195
|
+
|
|
1196
|
+
[[package]]
|
|
1197
|
+
name = "itertools"
|
|
1198
|
+
version = "0.10.5"
|
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1201
|
+
dependencies = [
|
|
1202
|
+
"either",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "itoa"
|
|
1207
|
+
version = "1.0.18"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1210
|
+
|
|
1211
|
+
[[package]]
|
|
1212
|
+
name = "js-sys"
|
|
1213
|
+
version = "0.3.95"
|
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
+
checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
|
|
1216
|
+
dependencies = [
|
|
1217
|
+
"cfg-if",
|
|
1218
|
+
"futures-util",
|
|
1219
|
+
"once_cell",
|
|
1220
|
+
"wasm-bindgen",
|
|
1221
|
+
]
|
|
1222
|
+
|
|
1223
|
+
[[package]]
|
|
1224
|
+
name = "kqueue"
|
|
1225
|
+
version = "1.1.1"
|
|
1226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1227
|
+
checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
|
|
1228
|
+
dependencies = [
|
|
1229
|
+
"kqueue-sys",
|
|
1230
|
+
"libc",
|
|
1231
|
+
]
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "kqueue-sys"
|
|
1235
|
+
version = "1.0.4"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
|
|
1238
|
+
dependencies = [
|
|
1239
|
+
"bitflags 1.3.2",
|
|
1240
|
+
"libc",
|
|
1241
|
+
]
|
|
1242
|
+
|
|
1243
|
+
[[package]]
|
|
1244
|
+
name = "leb128fmt"
|
|
1245
|
+
version = "0.1.0"
|
|
1246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1247
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1248
|
+
|
|
1249
|
+
[[package]]
|
|
1250
|
+
name = "libc"
|
|
1251
|
+
version = "0.2.185"
|
|
1252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1253
|
+
checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
|
|
1254
|
+
|
|
1255
|
+
[[package]]
|
|
1256
|
+
name = "libloading"
|
|
1257
|
+
version = "0.9.0"
|
|
1258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1259
|
+
checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
|
|
1260
|
+
dependencies = [
|
|
1261
|
+
"cfg-if",
|
|
1262
|
+
"windows-link",
|
|
1263
|
+
]
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "libredox"
|
|
1267
|
+
version = "0.1.16"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"bitflags 2.11.1",
|
|
1272
|
+
"libc",
|
|
1273
|
+
"plain",
|
|
1274
|
+
"redox_syscall",
|
|
1275
|
+
]
|
|
1276
|
+
|
|
1277
|
+
[[package]]
|
|
1278
|
+
name = "libsqlite3-sys"
|
|
1279
|
+
version = "0.32.0"
|
|
1280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1281
|
+
checksum = "fbb8270bb4060bd76c6e96f20c52d80620f1d82a3470885694e41e0f81ef6fe7"
|
|
1282
|
+
dependencies = [
|
|
1283
|
+
"cc",
|
|
1284
|
+
"pkg-config",
|
|
1285
|
+
"vcpkg",
|
|
1286
|
+
]
|
|
1287
|
+
|
|
1288
|
+
[[package]]
|
|
1289
|
+
name = "linux-raw-sys"
|
|
1290
|
+
version = "0.12.1"
|
|
1291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1292
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1293
|
+
|
|
1294
|
+
[[package]]
|
|
1295
|
+
name = "litemap"
|
|
1296
|
+
version = "0.8.2"
|
|
1297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "log"
|
|
1302
|
+
version = "0.4.29"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "lru-slab"
|
|
1308
|
+
version = "0.1.2"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "matchit"
|
|
1314
|
+
version = "0.8.4"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
1317
|
+
|
|
1318
|
+
[[package]]
|
|
1319
|
+
name = "memchr"
|
|
1320
|
+
version = "2.8.0"
|
|
1321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "mime"
|
|
1326
|
+
version = "0.3.17"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "mio"
|
|
1332
|
+
version = "1.2.0"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"libc",
|
|
1337
|
+
"log",
|
|
1338
|
+
"wasi",
|
|
1339
|
+
"windows-sys 0.61.2",
|
|
791
1340
|
]
|
|
792
1341
|
|
|
793
1342
|
[[package]]
|
|
794
1343
|
name = "napi"
|
|
795
|
-
version = "3.8.
|
|
1344
|
+
version = "3.8.5"
|
|
796
1345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
-
checksum = "
|
|
1346
|
+
checksum = "fa73b028610e2b26e9e40bd2c8ff8a98e6d7ed5d67d89ebf4bfd2f992616b024"
|
|
798
1347
|
dependencies = [
|
|
799
|
-
"bitflags 2.11.
|
|
1348
|
+
"bitflags 2.11.1",
|
|
800
1349
|
"ctor",
|
|
801
1350
|
"futures",
|
|
802
1351
|
"napi-build",
|
|
@@ -815,9 +1364,9 @@ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
|
815
1364
|
|
|
816
1365
|
[[package]]
|
|
817
1366
|
name = "napi-derive"
|
|
818
|
-
version = "3.5.
|
|
1367
|
+
version = "3.5.4"
|
|
819
1368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
-
checksum = "
|
|
1369
|
+
checksum = "7430702d3cc05cf55f0a2c9e41d991c3b7a53f91e6146a8f282b1bfc7f3fd133"
|
|
821
1370
|
dependencies = [
|
|
822
1371
|
"convert_case",
|
|
823
1372
|
"ctor",
|
|
@@ -829,9 +1378,9 @@ dependencies = [
|
|
|
829
1378
|
|
|
830
1379
|
[[package]]
|
|
831
1380
|
name = "napi-derive-backend"
|
|
832
|
-
version = "5.0.
|
|
1381
|
+
version = "5.0.3"
|
|
833
1382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
-
checksum = "
|
|
1383
|
+
checksum = "1ca5a083f2c9b49a0c7d33ec75c083498849c6fcc46f5497317faa39ea77f5d5"
|
|
835
1384
|
dependencies = [
|
|
836
1385
|
"convert_case",
|
|
837
1386
|
"proc-macro2",
|
|
@@ -855,13 +1404,19 @@ version = "0.2.0"
|
|
|
855
1404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
1405
|
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
857
1406
|
|
|
1407
|
+
[[package]]
|
|
1408
|
+
name = "normalize-line-endings"
|
|
1409
|
+
version = "0.3.0"
|
|
1410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
+
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
1412
|
+
|
|
858
1413
|
[[package]]
|
|
859
1414
|
name = "notify"
|
|
860
1415
|
version = "7.0.0"
|
|
861
1416
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
1417
|
checksum = "c533b4c39709f9ba5005d8002048266593c1cfaf3c5f0739d5b8ab0c6c504009"
|
|
863
1418
|
dependencies = [
|
|
864
|
-
"bitflags 2.11.
|
|
1419
|
+
"bitflags 2.11.1",
|
|
865
1420
|
"filetime",
|
|
866
1421
|
"fsevent-sys",
|
|
867
1422
|
"inotify",
|
|
@@ -910,6 +1465,38 @@ version = "11.1.5"
|
|
|
910
1465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
1466
|
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
912
1467
|
|
|
1468
|
+
[[package]]
|
|
1469
|
+
name = "openssl-probe"
|
|
1470
|
+
version = "0.1.6"
|
|
1471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "percent-encoding"
|
|
1476
|
+
version = "2.3.2"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "pin-project"
|
|
1482
|
+
version = "1.1.11"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517"
|
|
1485
|
+
dependencies = [
|
|
1486
|
+
"pin-project-internal",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "pin-project-internal"
|
|
1491
|
+
version = "1.1.11"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"proc-macro2",
|
|
1496
|
+
"quote",
|
|
1497
|
+
"syn",
|
|
1498
|
+
]
|
|
1499
|
+
|
|
913
1500
|
[[package]]
|
|
914
1501
|
name = "pin-project-lite"
|
|
915
1502
|
version = "0.2.17"
|
|
@@ -918,9 +1505,9 @@ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
|
918
1505
|
|
|
919
1506
|
[[package]]
|
|
920
1507
|
name = "pkg-config"
|
|
921
|
-
version = "0.3.
|
|
1508
|
+
version = "0.3.33"
|
|
922
1509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
-
checksum = "
|
|
1510
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
924
1511
|
|
|
925
1512
|
[[package]]
|
|
926
1513
|
name = "plain"
|
|
@@ -962,6 +1549,54 @@ version = "1.13.1"
|
|
|
962
1549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
1550
|
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
964
1551
|
|
|
1552
|
+
[[package]]
|
|
1553
|
+
name = "potential_utf"
|
|
1554
|
+
version = "0.1.5"
|
|
1555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1557
|
+
dependencies = [
|
|
1558
|
+
"zerovec",
|
|
1559
|
+
]
|
|
1560
|
+
|
|
1561
|
+
[[package]]
|
|
1562
|
+
name = "ppv-lite86"
|
|
1563
|
+
version = "0.2.21"
|
|
1564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1565
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1566
|
+
dependencies = [
|
|
1567
|
+
"zerocopy",
|
|
1568
|
+
]
|
|
1569
|
+
|
|
1570
|
+
[[package]]
|
|
1571
|
+
name = "predicates"
|
|
1572
|
+
version = "3.1.4"
|
|
1573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1574
|
+
checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
|
|
1575
|
+
dependencies = [
|
|
1576
|
+
"anstyle",
|
|
1577
|
+
"difflib",
|
|
1578
|
+
"float-cmp",
|
|
1579
|
+
"normalize-line-endings",
|
|
1580
|
+
"predicates-core",
|
|
1581
|
+
"regex",
|
|
1582
|
+
]
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "predicates-core"
|
|
1586
|
+
version = "1.0.10"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
|
|
1589
|
+
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "predicates-tree"
|
|
1592
|
+
version = "1.0.13"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
|
|
1595
|
+
dependencies = [
|
|
1596
|
+
"predicates-core",
|
|
1597
|
+
"termtree",
|
|
1598
|
+
]
|
|
1599
|
+
|
|
965
1600
|
[[package]]
|
|
966
1601
|
name = "prettyplease"
|
|
967
1602
|
version = "0.2.37"
|
|
@@ -1049,6 +1684,61 @@ dependencies = [
|
|
|
1049
1684
|
"cc",
|
|
1050
1685
|
]
|
|
1051
1686
|
|
|
1687
|
+
[[package]]
|
|
1688
|
+
name = "quinn"
|
|
1689
|
+
version = "0.11.9"
|
|
1690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
1692
|
+
dependencies = [
|
|
1693
|
+
"bytes",
|
|
1694
|
+
"cfg_aliases",
|
|
1695
|
+
"pin-project-lite",
|
|
1696
|
+
"quinn-proto",
|
|
1697
|
+
"quinn-udp",
|
|
1698
|
+
"rustc-hash",
|
|
1699
|
+
"rustls 0.23.38",
|
|
1700
|
+
"socket2 0.6.3",
|
|
1701
|
+
"thiserror",
|
|
1702
|
+
"tokio",
|
|
1703
|
+
"tracing",
|
|
1704
|
+
"web-time",
|
|
1705
|
+
]
|
|
1706
|
+
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "quinn-proto"
|
|
1709
|
+
version = "0.11.14"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
1712
|
+
dependencies = [
|
|
1713
|
+
"bytes",
|
|
1714
|
+
"getrandom 0.3.4",
|
|
1715
|
+
"lru-slab",
|
|
1716
|
+
"rand 0.9.4",
|
|
1717
|
+
"ring",
|
|
1718
|
+
"rustc-hash",
|
|
1719
|
+
"rustls 0.23.38",
|
|
1720
|
+
"rustls-pki-types",
|
|
1721
|
+
"slab",
|
|
1722
|
+
"thiserror",
|
|
1723
|
+
"tinyvec",
|
|
1724
|
+
"tracing",
|
|
1725
|
+
"web-time",
|
|
1726
|
+
]
|
|
1727
|
+
|
|
1728
|
+
[[package]]
|
|
1729
|
+
name = "quinn-udp"
|
|
1730
|
+
version = "0.5.14"
|
|
1731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1732
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
1733
|
+
dependencies = [
|
|
1734
|
+
"cfg_aliases",
|
|
1735
|
+
"libc",
|
|
1736
|
+
"once_cell",
|
|
1737
|
+
"socket2 0.6.3",
|
|
1738
|
+
"tracing",
|
|
1739
|
+
"windows-sys 0.60.2",
|
|
1740
|
+
]
|
|
1741
|
+
|
|
1052
1742
|
[[package]]
|
|
1053
1743
|
name = "quote"
|
|
1054
1744
|
version = "1.0.45"
|
|
@@ -1058,17 +1748,82 @@ dependencies = [
|
|
|
1058
1748
|
"proc-macro2",
|
|
1059
1749
|
]
|
|
1060
1750
|
|
|
1751
|
+
[[package]]
|
|
1752
|
+
name = "r-efi"
|
|
1753
|
+
version = "5.3.0"
|
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1756
|
+
|
|
1061
1757
|
[[package]]
|
|
1062
1758
|
name = "r-efi"
|
|
1063
1759
|
version = "6.0.0"
|
|
1064
1760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
1761
|
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1066
1762
|
|
|
1763
|
+
[[package]]
|
|
1764
|
+
name = "rand"
|
|
1765
|
+
version = "0.8.6"
|
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
1768
|
+
dependencies = [
|
|
1769
|
+
"libc",
|
|
1770
|
+
"rand_chacha 0.3.1",
|
|
1771
|
+
"rand_core 0.6.4",
|
|
1772
|
+
]
|
|
1773
|
+
|
|
1774
|
+
[[package]]
|
|
1775
|
+
name = "rand"
|
|
1776
|
+
version = "0.9.4"
|
|
1777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1778
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
1779
|
+
dependencies = [
|
|
1780
|
+
"rand_chacha 0.9.0",
|
|
1781
|
+
"rand_core 0.9.5",
|
|
1782
|
+
]
|
|
1783
|
+
|
|
1784
|
+
[[package]]
|
|
1785
|
+
name = "rand_chacha"
|
|
1786
|
+
version = "0.3.1"
|
|
1787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1788
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1789
|
+
dependencies = [
|
|
1790
|
+
"ppv-lite86",
|
|
1791
|
+
"rand_core 0.6.4",
|
|
1792
|
+
]
|
|
1793
|
+
|
|
1794
|
+
[[package]]
|
|
1795
|
+
name = "rand_chacha"
|
|
1796
|
+
version = "0.9.0"
|
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1799
|
+
dependencies = [
|
|
1800
|
+
"ppv-lite86",
|
|
1801
|
+
"rand_core 0.9.5",
|
|
1802
|
+
]
|
|
1803
|
+
|
|
1804
|
+
[[package]]
|
|
1805
|
+
name = "rand_core"
|
|
1806
|
+
version = "0.6.4"
|
|
1807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1809
|
+
dependencies = [
|
|
1810
|
+
"getrandom 0.2.17",
|
|
1811
|
+
]
|
|
1812
|
+
|
|
1813
|
+
[[package]]
|
|
1814
|
+
name = "rand_core"
|
|
1815
|
+
version = "0.9.5"
|
|
1816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1818
|
+
dependencies = [
|
|
1819
|
+
"getrandom 0.3.4",
|
|
1820
|
+
]
|
|
1821
|
+
|
|
1067
1822
|
[[package]]
|
|
1068
1823
|
name = "rayon"
|
|
1069
|
-
version = "1.
|
|
1824
|
+
version = "1.12.0"
|
|
1070
1825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
-
checksum = "
|
|
1826
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1072
1827
|
dependencies = [
|
|
1073
1828
|
"either",
|
|
1074
1829
|
"rayon-core",
|
|
@@ -1086,11 +1841,11 @@ dependencies = [
|
|
|
1086
1841
|
|
|
1087
1842
|
[[package]]
|
|
1088
1843
|
name = "redox_syscall"
|
|
1089
|
-
version = "0.7.
|
|
1844
|
+
version = "0.7.4"
|
|
1090
1845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
-
checksum = "
|
|
1846
|
+
checksum = "f450ad9c3b1da563fb6948a8e0fb0fb9269711c9c73d9ea1de5058c79c8d643a"
|
|
1092
1847
|
dependencies = [
|
|
1093
|
-
"bitflags 2.11.
|
|
1848
|
+
"bitflags 2.11.1",
|
|
1094
1849
|
]
|
|
1095
1850
|
|
|
1096
1851
|
[[package]]
|
|
@@ -1122,13 +1877,69 @@ version = "0.8.10"
|
|
|
1122
1877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
1878
|
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1124
1879
|
|
|
1880
|
+
[[package]]
|
|
1881
|
+
name = "reqwest"
|
|
1882
|
+
version = "0.12.28"
|
|
1883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1884
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
1885
|
+
dependencies = [
|
|
1886
|
+
"base64 0.22.1",
|
|
1887
|
+
"bytes",
|
|
1888
|
+
"futures-channel",
|
|
1889
|
+
"futures-core",
|
|
1890
|
+
"futures-util",
|
|
1891
|
+
"http 1.4.0",
|
|
1892
|
+
"http-body 1.0.1",
|
|
1893
|
+
"http-body-util",
|
|
1894
|
+
"hyper 1.9.0",
|
|
1895
|
+
"hyper-rustls 0.27.9",
|
|
1896
|
+
"hyper-util",
|
|
1897
|
+
"js-sys",
|
|
1898
|
+
"log",
|
|
1899
|
+
"percent-encoding",
|
|
1900
|
+
"pin-project-lite",
|
|
1901
|
+
"quinn",
|
|
1902
|
+
"rustls 0.23.38",
|
|
1903
|
+
"rustls-pki-types",
|
|
1904
|
+
"serde",
|
|
1905
|
+
"serde_json",
|
|
1906
|
+
"serde_urlencoded",
|
|
1907
|
+
"sync_wrapper",
|
|
1908
|
+
"tokio",
|
|
1909
|
+
"tokio-rustls 0.26.4",
|
|
1910
|
+
"tokio-util",
|
|
1911
|
+
"tower",
|
|
1912
|
+
"tower-http",
|
|
1913
|
+
"tower-service",
|
|
1914
|
+
"url",
|
|
1915
|
+
"wasm-bindgen",
|
|
1916
|
+
"wasm-bindgen-futures",
|
|
1917
|
+
"wasm-streams",
|
|
1918
|
+
"web-sys",
|
|
1919
|
+
"webpki-roots",
|
|
1920
|
+
]
|
|
1921
|
+
|
|
1922
|
+
[[package]]
|
|
1923
|
+
name = "ring"
|
|
1924
|
+
version = "0.17.14"
|
|
1925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1927
|
+
dependencies = [
|
|
1928
|
+
"cc",
|
|
1929
|
+
"cfg-if",
|
|
1930
|
+
"getrandom 0.2.17",
|
|
1931
|
+
"libc",
|
|
1932
|
+
"untrusted",
|
|
1933
|
+
"windows-sys 0.52.0",
|
|
1934
|
+
]
|
|
1935
|
+
|
|
1125
1936
|
[[package]]
|
|
1126
1937
|
name = "rusqlite"
|
|
1127
1938
|
version = "0.34.0"
|
|
1128
1939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
1940
|
checksum = "37e34486da88d8e051c7c0e23c3f15fd806ea8546260aa2fec247e97242ec143"
|
|
1130
1941
|
dependencies = [
|
|
1131
|
-
"bitflags 2.11.
|
|
1942
|
+
"bitflags 2.11.1",
|
|
1132
1943
|
"fallible-iterator",
|
|
1133
1944
|
"fallible-streaming-iterator",
|
|
1134
1945
|
"hashlink",
|
|
@@ -1148,13 +1959,91 @@ version = "1.1.4"
|
|
|
1148
1959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
1960
|
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1150
1961
|
dependencies = [
|
|
1151
|
-
"bitflags 2.11.
|
|
1962
|
+
"bitflags 2.11.1",
|
|
1152
1963
|
"errno",
|
|
1153
1964
|
"libc",
|
|
1154
1965
|
"linux-raw-sys",
|
|
1155
1966
|
"windows-sys 0.61.2",
|
|
1156
1967
|
]
|
|
1157
1968
|
|
|
1969
|
+
[[package]]
|
|
1970
|
+
name = "rustls"
|
|
1971
|
+
version = "0.21.12"
|
|
1972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1973
|
+
checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
|
|
1974
|
+
dependencies = [
|
|
1975
|
+
"log",
|
|
1976
|
+
"ring",
|
|
1977
|
+
"rustls-webpki 0.101.7",
|
|
1978
|
+
"sct",
|
|
1979
|
+
]
|
|
1980
|
+
|
|
1981
|
+
[[package]]
|
|
1982
|
+
name = "rustls"
|
|
1983
|
+
version = "0.23.38"
|
|
1984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1985
|
+
checksum = "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21"
|
|
1986
|
+
dependencies = [
|
|
1987
|
+
"once_cell",
|
|
1988
|
+
"ring",
|
|
1989
|
+
"rustls-pki-types",
|
|
1990
|
+
"rustls-webpki 0.103.12",
|
|
1991
|
+
"subtle",
|
|
1992
|
+
"zeroize",
|
|
1993
|
+
]
|
|
1994
|
+
|
|
1995
|
+
[[package]]
|
|
1996
|
+
name = "rustls-native-certs"
|
|
1997
|
+
version = "0.6.3"
|
|
1998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1999
|
+
checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
|
|
2000
|
+
dependencies = [
|
|
2001
|
+
"openssl-probe",
|
|
2002
|
+
"rustls-pemfile",
|
|
2003
|
+
"schannel",
|
|
2004
|
+
"security-framework",
|
|
2005
|
+
]
|
|
2006
|
+
|
|
2007
|
+
[[package]]
|
|
2008
|
+
name = "rustls-pemfile"
|
|
2009
|
+
version = "1.0.4"
|
|
2010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
+
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
|
2012
|
+
dependencies = [
|
|
2013
|
+
"base64 0.21.7",
|
|
2014
|
+
]
|
|
2015
|
+
|
|
2016
|
+
[[package]]
|
|
2017
|
+
name = "rustls-pki-types"
|
|
2018
|
+
version = "1.14.0"
|
|
2019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
2021
|
+
dependencies = [
|
|
2022
|
+
"web-time",
|
|
2023
|
+
"zeroize",
|
|
2024
|
+
]
|
|
2025
|
+
|
|
2026
|
+
[[package]]
|
|
2027
|
+
name = "rustls-webpki"
|
|
2028
|
+
version = "0.101.7"
|
|
2029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2030
|
+
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
|
|
2031
|
+
dependencies = [
|
|
2032
|
+
"ring",
|
|
2033
|
+
"untrusted",
|
|
2034
|
+
]
|
|
2035
|
+
|
|
2036
|
+
[[package]]
|
|
2037
|
+
name = "rustls-webpki"
|
|
2038
|
+
version = "0.103.12"
|
|
2039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
+
checksum = "8279bb85272c9f10811ae6a6c547ff594d6a7f3c6c6b02ee9726d1d0dcfcdd06"
|
|
2041
|
+
dependencies = [
|
|
2042
|
+
"ring",
|
|
2043
|
+
"rustls-pki-types",
|
|
2044
|
+
"untrusted",
|
|
2045
|
+
]
|
|
2046
|
+
|
|
1158
2047
|
[[package]]
|
|
1159
2048
|
name = "rustversion"
|
|
1160
2049
|
version = "1.0.22"
|
|
@@ -1176,6 +2065,48 @@ dependencies = [
|
|
|
1176
2065
|
"winapi-util",
|
|
1177
2066
|
]
|
|
1178
2067
|
|
|
2068
|
+
[[package]]
|
|
2069
|
+
name = "schannel"
|
|
2070
|
+
version = "0.1.29"
|
|
2071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2072
|
+
checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
|
|
2073
|
+
dependencies = [
|
|
2074
|
+
"windows-sys 0.61.2",
|
|
2075
|
+
]
|
|
2076
|
+
|
|
2077
|
+
[[package]]
|
|
2078
|
+
name = "sct"
|
|
2079
|
+
version = "0.7.1"
|
|
2080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2081
|
+
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
|
2082
|
+
dependencies = [
|
|
2083
|
+
"ring",
|
|
2084
|
+
"untrusted",
|
|
2085
|
+
]
|
|
2086
|
+
|
|
2087
|
+
[[package]]
|
|
2088
|
+
name = "security-framework"
|
|
2089
|
+
version = "2.11.1"
|
|
2090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2091
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
2092
|
+
dependencies = [
|
|
2093
|
+
"bitflags 2.11.1",
|
|
2094
|
+
"core-foundation",
|
|
2095
|
+
"core-foundation-sys",
|
|
2096
|
+
"libc",
|
|
2097
|
+
"security-framework-sys",
|
|
2098
|
+
]
|
|
2099
|
+
|
|
2100
|
+
[[package]]
|
|
2101
|
+
name = "security-framework-sys"
|
|
2102
|
+
version = "2.17.0"
|
|
2103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
+
checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
|
|
2105
|
+
dependencies = [
|
|
2106
|
+
"core-foundation-sys",
|
|
2107
|
+
"libc",
|
|
2108
|
+
]
|
|
2109
|
+
|
|
1179
2110
|
[[package]]
|
|
1180
2111
|
name = "semver"
|
|
1181
2112
|
version = "1.0.28"
|
|
@@ -1225,6 +2156,17 @@ dependencies = [
|
|
|
1225
2156
|
"zmij",
|
|
1226
2157
|
]
|
|
1227
2158
|
|
|
2159
|
+
[[package]]
|
|
2160
|
+
name = "serde_path_to_error"
|
|
2161
|
+
version = "0.1.20"
|
|
2162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2163
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
2164
|
+
dependencies = [
|
|
2165
|
+
"itoa",
|
|
2166
|
+
"serde",
|
|
2167
|
+
"serde_core",
|
|
2168
|
+
]
|
|
2169
|
+
|
|
1228
2170
|
[[package]]
|
|
1229
2171
|
name = "serde_spanned"
|
|
1230
2172
|
version = "0.6.9"
|
|
@@ -1234,6 +2176,18 @@ dependencies = [
|
|
|
1234
2176
|
"serde",
|
|
1235
2177
|
]
|
|
1236
2178
|
|
|
2179
|
+
[[package]]
|
|
2180
|
+
name = "serde_urlencoded"
|
|
2181
|
+
version = "0.7.1"
|
|
2182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2183
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2184
|
+
dependencies = [
|
|
2185
|
+
"form_urlencoded",
|
|
2186
|
+
"itoa",
|
|
2187
|
+
"ryu",
|
|
2188
|
+
"serde",
|
|
2189
|
+
]
|
|
2190
|
+
|
|
1237
2191
|
[[package]]
|
|
1238
2192
|
name = "serde_yaml"
|
|
1239
2193
|
version = "0.9.34+deprecated"
|
|
@@ -1253,6 +2207,16 @@ version = "1.3.0"
|
|
|
1253
2207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
2208
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1255
2209
|
|
|
2210
|
+
[[package]]
|
|
2211
|
+
name = "signal-hook-registry"
|
|
2212
|
+
version = "1.4.8"
|
|
2213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2214
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2215
|
+
dependencies = [
|
|
2216
|
+
"errno",
|
|
2217
|
+
"libc",
|
|
2218
|
+
]
|
|
2219
|
+
|
|
1256
2220
|
[[package]]
|
|
1257
2221
|
name = "slab"
|
|
1258
2222
|
version = "0.4.12"
|
|
@@ -1265,21 +2229,73 @@ version = "1.15.1"
|
|
|
1265
2229
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1266
2230
|
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1267
2231
|
|
|
2232
|
+
[[package]]
|
|
2233
|
+
name = "socket2"
|
|
2234
|
+
version = "0.5.10"
|
|
2235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2236
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
2237
|
+
dependencies = [
|
|
2238
|
+
"libc",
|
|
2239
|
+
"windows-sys 0.52.0",
|
|
2240
|
+
]
|
|
2241
|
+
|
|
2242
|
+
[[package]]
|
|
2243
|
+
name = "socket2"
|
|
2244
|
+
version = "0.6.3"
|
|
2245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2246
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
2247
|
+
dependencies = [
|
|
2248
|
+
"libc",
|
|
2249
|
+
"windows-sys 0.61.2",
|
|
2250
|
+
]
|
|
2251
|
+
|
|
2252
|
+
[[package]]
|
|
2253
|
+
name = "stable_deref_trait"
|
|
2254
|
+
version = "1.2.1"
|
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2257
|
+
|
|
1268
2258
|
[[package]]
|
|
1269
2259
|
name = "strsim"
|
|
1270
2260
|
version = "0.11.1"
|
|
1271
2261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1272
2262
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1273
2263
|
|
|
2264
|
+
[[package]]
|
|
2265
|
+
name = "subtle"
|
|
2266
|
+
version = "2.6.1"
|
|
2267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2268
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2269
|
+
|
|
1274
2270
|
[[package]]
|
|
1275
2271
|
name = "syn"
|
|
1276
2272
|
version = "2.0.117"
|
|
1277
2273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
-
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
2274
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
2275
|
+
dependencies = [
|
|
2276
|
+
"proc-macro2",
|
|
2277
|
+
"quote",
|
|
2278
|
+
"unicode-ident",
|
|
2279
|
+
]
|
|
2280
|
+
|
|
2281
|
+
[[package]]
|
|
2282
|
+
name = "sync_wrapper"
|
|
2283
|
+
version = "1.0.2"
|
|
2284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2285
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2286
|
+
dependencies = [
|
|
2287
|
+
"futures-core",
|
|
2288
|
+
]
|
|
2289
|
+
|
|
2290
|
+
[[package]]
|
|
2291
|
+
name = "synstructure"
|
|
2292
|
+
version = "0.13.2"
|
|
2293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2294
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1279
2295
|
dependencies = [
|
|
1280
2296
|
"proc-macro2",
|
|
1281
2297
|
"quote",
|
|
1282
|
-
"
|
|
2298
|
+
"syn",
|
|
1283
2299
|
]
|
|
1284
2300
|
|
|
1285
2301
|
[[package]]
|
|
@@ -1295,12 +2311,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1295
2311
|
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1296
2312
|
dependencies = [
|
|
1297
2313
|
"fastrand",
|
|
1298
|
-
"getrandom",
|
|
2314
|
+
"getrandom 0.4.2",
|
|
1299
2315
|
"once_cell",
|
|
1300
2316
|
"rustix",
|
|
1301
2317
|
"windows-sys 0.61.2",
|
|
1302
2318
|
]
|
|
1303
2319
|
|
|
2320
|
+
[[package]]
|
|
2321
|
+
name = "termtree"
|
|
2322
|
+
version = "0.5.1"
|
|
2323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2324
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
2325
|
+
|
|
1304
2326
|
[[package]]
|
|
1305
2327
|
name = "thiserror"
|
|
1306
2328
|
version = "2.0.18"
|
|
@@ -1321,6 +2343,16 @@ dependencies = [
|
|
|
1321
2343
|
"syn",
|
|
1322
2344
|
]
|
|
1323
2345
|
|
|
2346
|
+
[[package]]
|
|
2347
|
+
name = "tinystr"
|
|
2348
|
+
version = "0.8.3"
|
|
2349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2350
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2351
|
+
dependencies = [
|
|
2352
|
+
"displaydoc",
|
|
2353
|
+
"zerovec",
|
|
2354
|
+
]
|
|
2355
|
+
|
|
1324
2356
|
[[package]]
|
|
1325
2357
|
name = "tinytemplate"
|
|
1326
2358
|
version = "1.2.1"
|
|
@@ -1331,14 +2363,45 @@ dependencies = [
|
|
|
1331
2363
|
"serde_json",
|
|
1332
2364
|
]
|
|
1333
2365
|
|
|
2366
|
+
[[package]]
|
|
2367
|
+
name = "tinyvec"
|
|
2368
|
+
version = "1.11.0"
|
|
2369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2370
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
2371
|
+
dependencies = [
|
|
2372
|
+
"tinyvec_macros",
|
|
2373
|
+
]
|
|
2374
|
+
|
|
2375
|
+
[[package]]
|
|
2376
|
+
name = "tinyvec_macros"
|
|
2377
|
+
version = "0.1.1"
|
|
2378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2379
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2380
|
+
|
|
1334
2381
|
[[package]]
|
|
1335
2382
|
name = "tokio"
|
|
1336
|
-
version = "1.
|
|
2383
|
+
version = "1.52.1"
|
|
1337
2384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
-
checksum = "
|
|
2385
|
+
checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
|
|
1339
2386
|
dependencies = [
|
|
2387
|
+
"bytes",
|
|
2388
|
+
"libc",
|
|
2389
|
+
"mio",
|
|
1340
2390
|
"pin-project-lite",
|
|
2391
|
+
"signal-hook-registry",
|
|
2392
|
+
"socket2 0.6.3",
|
|
1341
2393
|
"tokio-macros",
|
|
2394
|
+
"windows-sys 0.61.2",
|
|
2395
|
+
]
|
|
2396
|
+
|
|
2397
|
+
[[package]]
|
|
2398
|
+
name = "tokio-io-timeout"
|
|
2399
|
+
version = "1.2.1"
|
|
2400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
|
+
checksum = "0bd86198d9ee903fedd2f9a2e72014287c0d9167e4ae43b5853007205dda1b76"
|
|
2402
|
+
dependencies = [
|
|
2403
|
+
"pin-project-lite",
|
|
2404
|
+
"tokio",
|
|
1342
2405
|
]
|
|
1343
2406
|
|
|
1344
2407
|
[[package]]
|
|
@@ -1352,6 +2415,51 @@ dependencies = [
|
|
|
1352
2415
|
"syn",
|
|
1353
2416
|
]
|
|
1354
2417
|
|
|
2418
|
+
[[package]]
|
|
2419
|
+
name = "tokio-rustls"
|
|
2420
|
+
version = "0.24.1"
|
|
2421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2422
|
+
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
|
2423
|
+
dependencies = [
|
|
2424
|
+
"rustls 0.21.12",
|
|
2425
|
+
"tokio",
|
|
2426
|
+
]
|
|
2427
|
+
|
|
2428
|
+
[[package]]
|
|
2429
|
+
name = "tokio-rustls"
|
|
2430
|
+
version = "0.26.4"
|
|
2431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
2433
|
+
dependencies = [
|
|
2434
|
+
"rustls 0.23.38",
|
|
2435
|
+
"tokio",
|
|
2436
|
+
]
|
|
2437
|
+
|
|
2438
|
+
[[package]]
|
|
2439
|
+
name = "tokio-stream"
|
|
2440
|
+
version = "0.1.18"
|
|
2441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2442
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
2443
|
+
dependencies = [
|
|
2444
|
+
"futures-core",
|
|
2445
|
+
"pin-project-lite",
|
|
2446
|
+
"tokio",
|
|
2447
|
+
"tokio-util",
|
|
2448
|
+
]
|
|
2449
|
+
|
|
2450
|
+
[[package]]
|
|
2451
|
+
name = "tokio-util"
|
|
2452
|
+
version = "0.7.18"
|
|
2453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2454
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
2455
|
+
dependencies = [
|
|
2456
|
+
"bytes",
|
|
2457
|
+
"futures-core",
|
|
2458
|
+
"futures-sink",
|
|
2459
|
+
"pin-project-lite",
|
|
2460
|
+
"tokio",
|
|
2461
|
+
]
|
|
2462
|
+
|
|
1355
2463
|
[[package]]
|
|
1356
2464
|
name = "toml"
|
|
1357
2465
|
version = "0.8.23"
|
|
@@ -1393,6 +2501,78 @@ version = "0.1.2"
|
|
|
1393
2501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
2502
|
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
1395
2503
|
|
|
2504
|
+
[[package]]
|
|
2505
|
+
name = "tower"
|
|
2506
|
+
version = "0.5.3"
|
|
2507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2508
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
2509
|
+
dependencies = [
|
|
2510
|
+
"futures-core",
|
|
2511
|
+
"futures-util",
|
|
2512
|
+
"pin-project-lite",
|
|
2513
|
+
"sync_wrapper",
|
|
2514
|
+
"tokio",
|
|
2515
|
+
"tower-layer",
|
|
2516
|
+
"tower-service",
|
|
2517
|
+
"tracing",
|
|
2518
|
+
]
|
|
2519
|
+
|
|
2520
|
+
[[package]]
|
|
2521
|
+
name = "tower-http"
|
|
2522
|
+
version = "0.6.8"
|
|
2523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2524
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
2525
|
+
dependencies = [
|
|
2526
|
+
"bitflags 2.11.1",
|
|
2527
|
+
"bytes",
|
|
2528
|
+
"futures-util",
|
|
2529
|
+
"http 1.4.0",
|
|
2530
|
+
"http-body 1.0.1",
|
|
2531
|
+
"iri-string",
|
|
2532
|
+
"pin-project-lite",
|
|
2533
|
+
"tower",
|
|
2534
|
+
"tower-layer",
|
|
2535
|
+
"tower-service",
|
|
2536
|
+
]
|
|
2537
|
+
|
|
2538
|
+
[[package]]
|
|
2539
|
+
name = "tower-layer"
|
|
2540
|
+
version = "0.3.3"
|
|
2541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2542
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
2543
|
+
|
|
2544
|
+
[[package]]
|
|
2545
|
+
name = "tower-service"
|
|
2546
|
+
version = "0.3.3"
|
|
2547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2548
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
2549
|
+
|
|
2550
|
+
[[package]]
|
|
2551
|
+
name = "tracing"
|
|
2552
|
+
version = "0.1.44"
|
|
2553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2554
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2555
|
+
dependencies = [
|
|
2556
|
+
"log",
|
|
2557
|
+
"pin-project-lite",
|
|
2558
|
+
"tracing-core",
|
|
2559
|
+
]
|
|
2560
|
+
|
|
2561
|
+
[[package]]
|
|
2562
|
+
name = "tracing-core"
|
|
2563
|
+
version = "0.1.36"
|
|
2564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2565
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2566
|
+
dependencies = [
|
|
2567
|
+
"once_cell",
|
|
2568
|
+
]
|
|
2569
|
+
|
|
2570
|
+
[[package]]
|
|
2571
|
+
name = "try-lock"
|
|
2572
|
+
version = "0.2.5"
|
|
2573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2574
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2575
|
+
|
|
1396
2576
|
[[package]]
|
|
1397
2577
|
name = "unicode-ident"
|
|
1398
2578
|
version = "1.0.24"
|
|
@@ -1417,6 +2597,30 @@ version = "0.2.11"
|
|
|
1417
2597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
2598
|
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
1419
2599
|
|
|
2600
|
+
[[package]]
|
|
2601
|
+
name = "untrusted"
|
|
2602
|
+
version = "0.9.0"
|
|
2603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2604
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2605
|
+
|
|
2606
|
+
[[package]]
|
|
2607
|
+
name = "url"
|
|
2608
|
+
version = "2.5.8"
|
|
2609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2610
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2611
|
+
dependencies = [
|
|
2612
|
+
"form_urlencoded",
|
|
2613
|
+
"idna",
|
|
2614
|
+
"percent-encoding",
|
|
2615
|
+
"serde",
|
|
2616
|
+
]
|
|
2617
|
+
|
|
2618
|
+
[[package]]
|
|
2619
|
+
name = "utf8_iter"
|
|
2620
|
+
version = "1.0.4"
|
|
2621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2622
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2623
|
+
|
|
1420
2624
|
[[package]]
|
|
1421
2625
|
name = "utf8parse"
|
|
1422
2626
|
version = "0.2.2"
|
|
@@ -1429,6 +2633,15 @@ version = "0.2.15"
|
|
|
1429
2633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
2634
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
1431
2635
|
|
|
2636
|
+
[[package]]
|
|
2637
|
+
name = "wait-timeout"
|
|
2638
|
+
version = "0.2.1"
|
|
2639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
2641
|
+
dependencies = [
|
|
2642
|
+
"libc",
|
|
2643
|
+
]
|
|
2644
|
+
|
|
1432
2645
|
[[package]]
|
|
1433
2646
|
name = "walkdir"
|
|
1434
2647
|
version = "2.5.0"
|
|
@@ -1439,6 +2652,15 @@ dependencies = [
|
|
|
1439
2652
|
"winapi-util",
|
|
1440
2653
|
]
|
|
1441
2654
|
|
|
2655
|
+
[[package]]
|
|
2656
|
+
name = "want"
|
|
2657
|
+
version = "0.3.1"
|
|
2658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2659
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2660
|
+
dependencies = [
|
|
2661
|
+
"try-lock",
|
|
2662
|
+
]
|
|
2663
|
+
|
|
1442
2664
|
[[package]]
|
|
1443
2665
|
name = "wasi"
|
|
1444
2666
|
version = "0.11.1+wasi-snapshot-preview1"
|
|
@@ -1447,11 +2669,11 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
1447
2669
|
|
|
1448
2670
|
[[package]]
|
|
1449
2671
|
name = "wasip2"
|
|
1450
|
-
version = "1.0.
|
|
2672
|
+
version = "1.0.3+wasi-0.2.9"
|
|
1451
2673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
-
checksum = "
|
|
2674
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
1453
2675
|
dependencies = [
|
|
1454
|
-
"wit-bindgen",
|
|
2676
|
+
"wit-bindgen 0.57.1",
|
|
1455
2677
|
]
|
|
1456
2678
|
|
|
1457
2679
|
[[package]]
|
|
@@ -1460,14 +2682,14 @@ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
|
1460
2682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1461
2683
|
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1462
2684
|
dependencies = [
|
|
1463
|
-
"wit-bindgen",
|
|
2685
|
+
"wit-bindgen 0.51.0",
|
|
1464
2686
|
]
|
|
1465
2687
|
|
|
1466
2688
|
[[package]]
|
|
1467
2689
|
name = "wasm-bindgen"
|
|
1468
|
-
version = "0.2.
|
|
2690
|
+
version = "0.2.118"
|
|
1469
2691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1470
|
-
checksum = "
|
|
2692
|
+
checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
|
|
1471
2693
|
dependencies = [
|
|
1472
2694
|
"cfg-if",
|
|
1473
2695
|
"once_cell",
|
|
@@ -1476,11 +2698,21 @@ dependencies = [
|
|
|
1476
2698
|
"wasm-bindgen-shared",
|
|
1477
2699
|
]
|
|
1478
2700
|
|
|
2701
|
+
[[package]]
|
|
2702
|
+
name = "wasm-bindgen-futures"
|
|
2703
|
+
version = "0.4.68"
|
|
2704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2705
|
+
checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8"
|
|
2706
|
+
dependencies = [
|
|
2707
|
+
"js-sys",
|
|
2708
|
+
"wasm-bindgen",
|
|
2709
|
+
]
|
|
2710
|
+
|
|
1479
2711
|
[[package]]
|
|
1480
2712
|
name = "wasm-bindgen-macro"
|
|
1481
|
-
version = "0.2.
|
|
2713
|
+
version = "0.2.118"
|
|
1482
2714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1483
|
-
checksum = "
|
|
2715
|
+
checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
|
|
1484
2716
|
dependencies = [
|
|
1485
2717
|
"quote",
|
|
1486
2718
|
"wasm-bindgen-macro-support",
|
|
@@ -1488,9 +2720,9 @@ dependencies = [
|
|
|
1488
2720
|
|
|
1489
2721
|
[[package]]
|
|
1490
2722
|
name = "wasm-bindgen-macro-support"
|
|
1491
|
-
version = "0.2.
|
|
2723
|
+
version = "0.2.118"
|
|
1492
2724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
-
checksum = "
|
|
2725
|
+
checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
|
|
1494
2726
|
dependencies = [
|
|
1495
2727
|
"bumpalo",
|
|
1496
2728
|
"proc-macro2",
|
|
@@ -1501,9 +2733,9 @@ dependencies = [
|
|
|
1501
2733
|
|
|
1502
2734
|
[[package]]
|
|
1503
2735
|
name = "wasm-bindgen-shared"
|
|
1504
|
-
version = "0.2.
|
|
2736
|
+
version = "0.2.118"
|
|
1505
2737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1506
|
-
checksum = "
|
|
2738
|
+
checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
|
|
1507
2739
|
dependencies = [
|
|
1508
2740
|
"unicode-ident",
|
|
1509
2741
|
]
|
|
@@ -1530,13 +2762,26 @@ dependencies = [
|
|
|
1530
2762
|
"wasmparser",
|
|
1531
2763
|
]
|
|
1532
2764
|
|
|
2765
|
+
[[package]]
|
|
2766
|
+
name = "wasm-streams"
|
|
2767
|
+
version = "0.4.2"
|
|
2768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2769
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
2770
|
+
dependencies = [
|
|
2771
|
+
"futures-util",
|
|
2772
|
+
"js-sys",
|
|
2773
|
+
"wasm-bindgen",
|
|
2774
|
+
"wasm-bindgen-futures",
|
|
2775
|
+
"web-sys",
|
|
2776
|
+
]
|
|
2777
|
+
|
|
1533
2778
|
[[package]]
|
|
1534
2779
|
name = "wasmparser"
|
|
1535
2780
|
version = "0.244.0"
|
|
1536
2781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1537
2782
|
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
1538
2783
|
dependencies = [
|
|
1539
|
-
"bitflags 2.11.
|
|
2784
|
+
"bitflags 2.11.1",
|
|
1540
2785
|
"hashbrown 0.15.5",
|
|
1541
2786
|
"indexmap",
|
|
1542
2787
|
"semver",
|
|
@@ -1544,14 +2789,33 @@ dependencies = [
|
|
|
1544
2789
|
|
|
1545
2790
|
[[package]]
|
|
1546
2791
|
name = "web-sys"
|
|
1547
|
-
version = "0.3.
|
|
2792
|
+
version = "0.3.95"
|
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
+
checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
|
|
2795
|
+
dependencies = [
|
|
2796
|
+
"js-sys",
|
|
2797
|
+
"wasm-bindgen",
|
|
2798
|
+
]
|
|
2799
|
+
|
|
2800
|
+
[[package]]
|
|
2801
|
+
name = "web-time"
|
|
2802
|
+
version = "1.1.0"
|
|
1548
2803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
-
checksum = "
|
|
2804
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
1550
2805
|
dependencies = [
|
|
1551
2806
|
"js-sys",
|
|
1552
2807
|
"wasm-bindgen",
|
|
1553
2808
|
]
|
|
1554
2809
|
|
|
2810
|
+
[[package]]
|
|
2811
|
+
name = "webpki-roots"
|
|
2812
|
+
version = "1.0.7"
|
|
2813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2814
|
+
checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
|
|
2815
|
+
dependencies = [
|
|
2816
|
+
"rustls-pki-types",
|
|
2817
|
+
]
|
|
2818
|
+
|
|
1555
2819
|
[[package]]
|
|
1556
2820
|
name = "winapi-util"
|
|
1557
2821
|
version = "0.1.11"
|
|
@@ -1573,7 +2837,16 @@ version = "0.52.0"
|
|
|
1573
2837
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1574
2838
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1575
2839
|
dependencies = [
|
|
1576
|
-
"windows-targets",
|
|
2840
|
+
"windows-targets 0.52.6",
|
|
2841
|
+
]
|
|
2842
|
+
|
|
2843
|
+
[[package]]
|
|
2844
|
+
name = "windows-sys"
|
|
2845
|
+
version = "0.60.2"
|
|
2846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2847
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2848
|
+
dependencies = [
|
|
2849
|
+
"windows-targets 0.53.5",
|
|
1577
2850
|
]
|
|
1578
2851
|
|
|
1579
2852
|
[[package]]
|
|
@@ -1591,14 +2864,31 @@ version = "0.52.6"
|
|
|
1591
2864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1592
2865
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1593
2866
|
dependencies = [
|
|
1594
|
-
"windows_aarch64_gnullvm",
|
|
1595
|
-
"windows_aarch64_msvc",
|
|
1596
|
-
"windows_i686_gnu",
|
|
1597
|
-
"windows_i686_gnullvm",
|
|
1598
|
-
"windows_i686_msvc",
|
|
1599
|
-
"windows_x86_64_gnu",
|
|
1600
|
-
"windows_x86_64_gnullvm",
|
|
1601
|
-
"windows_x86_64_msvc",
|
|
2867
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2868
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2869
|
+
"windows_i686_gnu 0.52.6",
|
|
2870
|
+
"windows_i686_gnullvm 0.52.6",
|
|
2871
|
+
"windows_i686_msvc 0.52.6",
|
|
2872
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2873
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2874
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2875
|
+
]
|
|
2876
|
+
|
|
2877
|
+
[[package]]
|
|
2878
|
+
name = "windows-targets"
|
|
2879
|
+
version = "0.53.5"
|
|
2880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2881
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
2882
|
+
dependencies = [
|
|
2883
|
+
"windows-link",
|
|
2884
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
2885
|
+
"windows_aarch64_msvc 0.53.1",
|
|
2886
|
+
"windows_i686_gnu 0.53.1",
|
|
2887
|
+
"windows_i686_gnullvm 0.53.1",
|
|
2888
|
+
"windows_i686_msvc 0.53.1",
|
|
2889
|
+
"windows_x86_64_gnu 0.53.1",
|
|
2890
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
2891
|
+
"windows_x86_64_msvc 0.53.1",
|
|
1602
2892
|
]
|
|
1603
2893
|
|
|
1604
2894
|
[[package]]
|
|
@@ -1607,48 +2897,96 @@ version = "0.52.6"
|
|
|
1607
2897
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1608
2898
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1609
2899
|
|
|
2900
|
+
[[package]]
|
|
2901
|
+
name = "windows_aarch64_gnullvm"
|
|
2902
|
+
version = "0.53.1"
|
|
2903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2904
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2905
|
+
|
|
1610
2906
|
[[package]]
|
|
1611
2907
|
name = "windows_aarch64_msvc"
|
|
1612
2908
|
version = "0.52.6"
|
|
1613
2909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
2910
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1615
2911
|
|
|
2912
|
+
[[package]]
|
|
2913
|
+
name = "windows_aarch64_msvc"
|
|
2914
|
+
version = "0.53.1"
|
|
2915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2916
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2917
|
+
|
|
1616
2918
|
[[package]]
|
|
1617
2919
|
name = "windows_i686_gnu"
|
|
1618
2920
|
version = "0.52.6"
|
|
1619
2921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1620
2922
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1621
2923
|
|
|
2924
|
+
[[package]]
|
|
2925
|
+
name = "windows_i686_gnu"
|
|
2926
|
+
version = "0.53.1"
|
|
2927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2928
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2929
|
+
|
|
1622
2930
|
[[package]]
|
|
1623
2931
|
name = "windows_i686_gnullvm"
|
|
1624
2932
|
version = "0.52.6"
|
|
1625
2933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
2934
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1627
2935
|
|
|
2936
|
+
[[package]]
|
|
2937
|
+
name = "windows_i686_gnullvm"
|
|
2938
|
+
version = "0.53.1"
|
|
2939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2940
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2941
|
+
|
|
1628
2942
|
[[package]]
|
|
1629
2943
|
name = "windows_i686_msvc"
|
|
1630
2944
|
version = "0.52.6"
|
|
1631
2945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
2946
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1633
2947
|
|
|
2948
|
+
[[package]]
|
|
2949
|
+
name = "windows_i686_msvc"
|
|
2950
|
+
version = "0.53.1"
|
|
2951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2952
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2953
|
+
|
|
1634
2954
|
[[package]]
|
|
1635
2955
|
name = "windows_x86_64_gnu"
|
|
1636
2956
|
version = "0.52.6"
|
|
1637
2957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1638
2958
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1639
2959
|
|
|
2960
|
+
[[package]]
|
|
2961
|
+
name = "windows_x86_64_gnu"
|
|
2962
|
+
version = "0.53.1"
|
|
2963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2964
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
2965
|
+
|
|
1640
2966
|
[[package]]
|
|
1641
2967
|
name = "windows_x86_64_gnullvm"
|
|
1642
2968
|
version = "0.52.6"
|
|
1643
2969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1644
2970
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1645
2971
|
|
|
2972
|
+
[[package]]
|
|
2973
|
+
name = "windows_x86_64_gnullvm"
|
|
2974
|
+
version = "0.53.1"
|
|
2975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2976
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
2977
|
+
|
|
1646
2978
|
[[package]]
|
|
1647
2979
|
name = "windows_x86_64_msvc"
|
|
1648
2980
|
version = "0.52.6"
|
|
1649
2981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1650
2982
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1651
2983
|
|
|
2984
|
+
[[package]]
|
|
2985
|
+
name = "windows_x86_64_msvc"
|
|
2986
|
+
version = "0.53.1"
|
|
2987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2988
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2989
|
+
|
|
1652
2990
|
[[package]]
|
|
1653
2991
|
name = "winnow"
|
|
1654
2992
|
version = "0.7.15"
|
|
@@ -1667,6 +3005,12 @@ dependencies = [
|
|
|
1667
3005
|
"wit-bindgen-rust-macro",
|
|
1668
3006
|
]
|
|
1669
3007
|
|
|
3008
|
+
[[package]]
|
|
3009
|
+
name = "wit-bindgen"
|
|
3010
|
+
version = "0.57.1"
|
|
3011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3012
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
3013
|
+
|
|
1670
3014
|
[[package]]
|
|
1671
3015
|
name = "wit-bindgen-core"
|
|
1672
3016
|
version = "0.51.0"
|
|
@@ -1716,7 +3060,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1716
3060
|
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1717
3061
|
dependencies = [
|
|
1718
3062
|
"anyhow",
|
|
1719
|
-
"bitflags 2.11.
|
|
3063
|
+
"bitflags 2.11.1",
|
|
1720
3064
|
"indexmap",
|
|
1721
3065
|
"log",
|
|
1722
3066
|
"serde",
|
|
@@ -1746,6 +3090,35 @@ dependencies = [
|
|
|
1746
3090
|
"wasmparser",
|
|
1747
3091
|
]
|
|
1748
3092
|
|
|
3093
|
+
[[package]]
|
|
3094
|
+
name = "writeable"
|
|
3095
|
+
version = "0.6.3"
|
|
3096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3097
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
3098
|
+
|
|
3099
|
+
[[package]]
|
|
3100
|
+
name = "yoke"
|
|
3101
|
+
version = "0.8.2"
|
|
3102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3103
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
3104
|
+
dependencies = [
|
|
3105
|
+
"stable_deref_trait",
|
|
3106
|
+
"yoke-derive",
|
|
3107
|
+
"zerofrom",
|
|
3108
|
+
]
|
|
3109
|
+
|
|
3110
|
+
[[package]]
|
|
3111
|
+
name = "yoke-derive"
|
|
3112
|
+
version = "0.8.2"
|
|
3113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3114
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
3115
|
+
dependencies = [
|
|
3116
|
+
"proc-macro2",
|
|
3117
|
+
"quote",
|
|
3118
|
+
"syn",
|
|
3119
|
+
"synstructure",
|
|
3120
|
+
]
|
|
3121
|
+
|
|
1749
3122
|
[[package]]
|
|
1750
3123
|
name = "zerocopy"
|
|
1751
3124
|
version = "0.8.48"
|
|
@@ -1766,6 +3139,66 @@ dependencies = [
|
|
|
1766
3139
|
"syn",
|
|
1767
3140
|
]
|
|
1768
3141
|
|
|
3142
|
+
[[package]]
|
|
3143
|
+
name = "zerofrom"
|
|
3144
|
+
version = "0.1.7"
|
|
3145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3146
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
3147
|
+
dependencies = [
|
|
3148
|
+
"zerofrom-derive",
|
|
3149
|
+
]
|
|
3150
|
+
|
|
3151
|
+
[[package]]
|
|
3152
|
+
name = "zerofrom-derive"
|
|
3153
|
+
version = "0.1.7"
|
|
3154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3155
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
3156
|
+
dependencies = [
|
|
3157
|
+
"proc-macro2",
|
|
3158
|
+
"quote",
|
|
3159
|
+
"syn",
|
|
3160
|
+
"synstructure",
|
|
3161
|
+
]
|
|
3162
|
+
|
|
3163
|
+
[[package]]
|
|
3164
|
+
name = "zeroize"
|
|
3165
|
+
version = "1.8.2"
|
|
3166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3167
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3168
|
+
|
|
3169
|
+
[[package]]
|
|
3170
|
+
name = "zerotrie"
|
|
3171
|
+
version = "0.2.4"
|
|
3172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3173
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
3174
|
+
dependencies = [
|
|
3175
|
+
"displaydoc",
|
|
3176
|
+
"yoke",
|
|
3177
|
+
"zerofrom",
|
|
3178
|
+
]
|
|
3179
|
+
|
|
3180
|
+
[[package]]
|
|
3181
|
+
name = "zerovec"
|
|
3182
|
+
version = "0.11.6"
|
|
3183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3184
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
3185
|
+
dependencies = [
|
|
3186
|
+
"yoke",
|
|
3187
|
+
"zerofrom",
|
|
3188
|
+
"zerovec-derive",
|
|
3189
|
+
]
|
|
3190
|
+
|
|
3191
|
+
[[package]]
|
|
3192
|
+
name = "zerovec-derive"
|
|
3193
|
+
version = "0.11.3"
|
|
3194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3195
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
3196
|
+
dependencies = [
|
|
3197
|
+
"proc-macro2",
|
|
3198
|
+
"quote",
|
|
3199
|
+
"syn",
|
|
3200
|
+
]
|
|
3201
|
+
|
|
1769
3202
|
[[package]]
|
|
1770
3203
|
name = "zmij"
|
|
1771
3204
|
version = "1.0.21"
|