snapdir 1.11.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. snapdir-1.11.0/Cargo.lock +4893 -0
  2. snapdir-1.11.0/Cargo.toml +50 -0
  3. snapdir-1.11.0/PKG-INFO +120 -0
  4. snapdir-1.11.0/README.md +107 -0
  5. snapdir-1.11.0/bindings/python/.gitignore +7 -0
  6. snapdir-1.11.0/bindings/python/Cargo.toml +25 -0
  7. snapdir-1.11.0/bindings/python/README.md +107 -0
  8. snapdir-1.11.0/bindings/python/snapdir/__init__.py +103 -0
  9. snapdir-1.11.0/bindings/python/snapdir/__init__.pyi +112 -0
  10. snapdir-1.11.0/bindings/python/snapdir/py.typed +0 -0
  11. snapdir-1.11.0/bindings/python/snapdir/snapdir.pyi +252 -0
  12. snapdir-1.11.0/bindings/python/src/lib.rs +810 -0
  13. snapdir-1.11.0/bindings/python/tests/python_api.py +450 -0
  14. snapdir-1.11.0/bindings/python/tests/python_manifest_options.py +242 -0
  15. snapdir-1.11.0/bindings/python/uv.lock +441 -0
  16. snapdir-1.11.0/crates/snapdir-api/Cargo.toml +29 -0
  17. snapdir-1.11.0/crates/snapdir-api/README.md +27 -0
  18. snapdir-1.11.0/crates/snapdir-api/src/lib.rs +1909 -0
  19. snapdir-1.11.0/crates/snapdir-api/tests/api_checkout_restore_perms.rs +109 -0
  20. snapdir-1.11.0/crates/snapdir-api/tests/m0_api_surface.rs +1121 -0
  21. snapdir-1.11.0/crates/snapdir-api/tests/m0_async_facade.rs +956 -0
  22. snapdir-1.11.0/crates/snapdir-api/tests/m0_cache_dir_extend.rs +426 -0
  23. snapdir-1.11.0/crates/snapdir-api/tests/m0_diff_on_conflict.rs +352 -0
  24. snapdir-1.11.0/crates/snapdir-api/tests/m0_error_enum.rs +568 -0
  25. snapdir-1.11.0/crates/snapdir-api/tests/m0_golden_parity.rs +1176 -0
  26. snapdir-1.11.0/crates/snapdir-api/tests/m0_newtypes.rs +1006 -0
  27. snapdir-1.11.0/crates/snapdir-api/tests/m0_options.rs +663 -0
  28. snapdir-1.11.0/crates/snapdir-api/tests/snapdir_api_multistore.rs +535 -0
  29. snapdir-1.11.0/crates/snapdir-catalog/Cargo.toml +24 -0
  30. snapdir-1.11.0/crates/snapdir-catalog/README.md +17 -0
  31. snapdir-1.11.0/crates/snapdir-catalog/src/lib.rs +1346 -0
  32. snapdir-1.11.0/crates/snapdir-core/Cargo.toml +26 -0
  33. snapdir-1.11.0/crates/snapdir-core/README.md +19 -0
  34. snapdir-1.11.0/crates/snapdir-core/src/cache.rs +583 -0
  35. snapdir-1.11.0/crates/snapdir-core/src/copy_guard.rs +94 -0
  36. snapdir-1.11.0/crates/snapdir-core/src/excludes.rs +292 -0
  37. snapdir-1.11.0/crates/snapdir-core/src/hash_file.rs +224 -0
  38. snapdir-1.11.0/crates/snapdir-core/src/lib.rs +53 -0
  39. snapdir-1.11.0/crates/snapdir-core/src/manifest.rs +490 -0
  40. snapdir-1.11.0/crates/snapdir-core/src/merkle.rs +517 -0
  41. snapdir-1.11.0/crates/snapdir-core/src/mirror.rs +117 -0
  42. snapdir-1.11.0/crates/snapdir-core/src/progress.rs +324 -0
  43. snapdir-1.11.0/crates/snapdir-core/src/recover.rs +159 -0
  44. snapdir-1.11.0/crates/snapdir-core/src/resources.rs +276 -0
  45. snapdir-1.11.0/crates/snapdir-core/src/sigbus.rs +304 -0
  46. snapdir-1.11.0/crates/snapdir-core/src/store.rs +361 -0
  47. snapdir-1.11.0/crates/snapdir-core/src/walk.rs +1538 -0
  48. snapdir-1.11.0/crates/snapdir-core/tests/compat_golden.rs +345 -0
  49. snapdir-1.11.0/crates/snapdir-core/tests/concurrent_mutation.rs +1319 -0
  50. snapdir-1.11.0/crates/snapdir-core/tests/fast_walk.rs +872 -0
  51. snapdir-1.11.0/crates/snapdir-core/tests/golden_b3sum.rs +168 -0
  52. snapdir-1.11.0/crates/snapdir-core/tests/mirror_prune_set.rs +880 -0
  53. snapdir-1.11.0/crates/snapdir-core/tests/proptest_roundtrip.rs +173 -0
  54. snapdir-1.11.0/crates/snapdir-stores/Cargo.toml +153 -0
  55. snapdir-1.11.0/crates/snapdir-stores/README.md +19 -0
  56. snapdir-1.11.0/crates/snapdir-stores/src/adaptive.rs +1464 -0
  57. snapdir-1.11.0/crates/snapdir-stores/src/b2_store.rs +415 -0
  58. snapdir-1.11.0/crates/snapdir-stores/src/fetch.rs +600 -0
  59. snapdir-1.11.0/crates/snapdir-stores/src/file_store.rs +2434 -0
  60. snapdir-1.11.0/crates/snapdir-stores/src/fsync.rs +267 -0
  61. snapdir-1.11.0/crates/snapdir-stores/src/gcs_store.rs +1049 -0
  62. snapdir-1.11.0/crates/snapdir-stores/src/lib.rs +104 -0
  63. snapdir-1.11.0/crates/snapdir-stores/src/limits.rs +197 -0
  64. snapdir-1.11.0/crates/snapdir-stores/src/pack.rs +2537 -0
  65. snapdir-1.11.0/crates/snapdir-stores/src/push.rs +720 -0
  66. snapdir-1.11.0/crates/snapdir-stores/src/retry.rs +829 -0
  67. snapdir-1.11.0/crates/snapdir-stores/src/router.rs +254 -0
  68. snapdir-1.11.0/crates/snapdir-stores/src/s3_store.rs +1010 -0
  69. snapdir-1.11.0/crates/snapdir-stores/src/shim.rs +385 -0
  70. snapdir-1.11.0/crates/snapdir-stores/src/split.rs +191 -0
  71. snapdir-1.11.0/crates/snapdir-stores/src/stream.rs +239 -0
  72. snapdir-1.11.0/crates/snapdir-stores/src/sync.rs +991 -0
  73. snapdir-1.11.0/crates/snapdir-stores/src/transfer.rs +921 -0
  74. snapdir-1.11.0/crates/snapdir-stores/src/util.rs +45 -0
  75. snapdir-1.11.0/crates/snapdir-stores/tests/adaptive_wire.rs +473 -0
  76. snapdir-1.11.0/crates/snapdir-stores/tests/apfs_clone.rs +1074 -0
  77. snapdir-1.11.0/crates/snapdir-stores/tests/backoff_wire.rs +302 -0
  78. snapdir-1.11.0/crates/snapdir-stores/tests/clone_skip.rs +1425 -0
  79. snapdir-1.11.0/crates/snapdir-stores/tests/clone_skip_race.rs +1229 -0
  80. snapdir-1.11.0/crates/snapdir-stores/tests/manifest_list.rs +866 -0
  81. snapdir-1.11.0/crates/snapdir-stores/tests/mirror_atomic_swap.rs +1338 -0
  82. snapdir-1.11.0/crates/snapdir-stores/tests/mirror_feasibility.rs +333 -0
  83. snapdir-1.11.0/crates/snapdir-stores/tests/mirror_materialize_modes.rs +1339 -0
  84. snapdir-1.11.0/crates/snapdir-stores/tests/mirror_sync.rs +1114 -0
  85. snapdir-1.11.0/crates/snapdir-stores/tests/reflink.rs +1032 -0
  86. snapdir-1.11.0/crates/snapdir-stores/tests/shim_external_store.rs +210 -0
  87. snapdir-1.11.0/crates/snapdir-stores/tests/snapdir-mock-store +127 -0
  88. snapdir-1.11.0/crates/snapdir-stores/tests/split.rs +1025 -0
  89. snapdir-1.11.0/pyproject.toml +41 -0
  90. snapdir-1.11.0/python/snapdir/__init__.py +103 -0
  91. snapdir-1.11.0/python/snapdir/__init__.pyi +112 -0
  92. snapdir-1.11.0/python/snapdir/py.typed +0 -0
  93. snapdir-1.11.0/python/snapdir/snapdir.pyi +252 -0
@@ -0,0 +1,4893 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "alloca"
16
+ version = "0.4.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
19
+ dependencies = [
20
+ "cc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "allocator-api2"
25
+ version = "0.2.21"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
28
+
29
+ [[package]]
30
+ name = "android_system_properties"
31
+ version = "0.1.5"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
34
+ dependencies = [
35
+ "libc",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "anes"
40
+ version = "0.1.6"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
43
+
44
+ [[package]]
45
+ name = "anstream"
46
+ version = "1.0.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
49
+ dependencies = [
50
+ "anstyle",
51
+ "anstyle-parse",
52
+ "anstyle-query",
53
+ "anstyle-wincon",
54
+ "colorchoice",
55
+ "is_terminal_polyfill",
56
+ "utf8parse",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle"
61
+ version = "1.0.14"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
64
+
65
+ [[package]]
66
+ name = "anstyle-parse"
67
+ version = "1.0.0"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
70
+ dependencies = [
71
+ "utf8parse",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "anstyle-query"
76
+ version = "1.1.5"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
79
+ dependencies = [
80
+ "windows-sys 0.61.2",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "anstyle-wincon"
85
+ version = "3.0.11"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
88
+ dependencies = [
89
+ "anstyle",
90
+ "once_cell_polyfill",
91
+ "windows-sys 0.61.2",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "anyhow"
96
+ version = "1.0.102"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
99
+
100
+ [[package]]
101
+ name = "arc-swap"
102
+ version = "1.9.1"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
105
+ dependencies = [
106
+ "rustversion",
107
+ ]
108
+
109
+ [[package]]
110
+ name = "arrayref"
111
+ version = "0.3.9"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
114
+
115
+ [[package]]
116
+ name = "arrayvec"
117
+ version = "0.7.7"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "f02882884d3e1bc524fb12c79f107f6ad0e1cfd498c536ffb494301740995dfe"
120
+
121
+ [[package]]
122
+ name = "assert_cmd"
123
+ version = "2.2.2"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
126
+ dependencies = [
127
+ "anstyle",
128
+ "bstr",
129
+ "libc",
130
+ "predicates",
131
+ "predicates-core",
132
+ "predicates-tree",
133
+ "wait-timeout",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "assert_fs"
138
+ version = "1.1.4"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "6ecf5c70ca07b7f80220bce936f0556a960ca6fb00fc2bd4125b5e581b218137"
141
+ dependencies = [
142
+ "anstyle",
143
+ "globwalk",
144
+ "predicates",
145
+ "predicates-core",
146
+ "predicates-tree",
147
+ "tempfile",
148
+ ]
149
+
150
+ [[package]]
151
+ name = "async-trait"
152
+ version = "0.1.89"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
155
+ dependencies = [
156
+ "proc-macro2",
157
+ "quote",
158
+ "syn",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "atomic-waker"
163
+ version = "1.1.2"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
166
+
167
+ [[package]]
168
+ name = "autocfg"
169
+ version = "1.5.1"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
172
+
173
+ [[package]]
174
+ name = "automod"
175
+ version = "1.0.17"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "a273e731a7fb8c2268fd2932c9e9a3469f4fd171d85d070d2687190229653bd3"
178
+ dependencies = [
179
+ "proc-macro2",
180
+ "quote",
181
+ "syn",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "aws-config"
186
+ version = "1.8.18"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "e33f815b73a3899c03b380d543532e5865f230dce9678d108dc10732a8682275"
189
+ dependencies = [
190
+ "aws-credential-types",
191
+ "aws-runtime",
192
+ "aws-sdk-sso",
193
+ "aws-sdk-ssooidc",
194
+ "aws-sdk-sts",
195
+ "aws-smithy-async",
196
+ "aws-smithy-http",
197
+ "aws-smithy-json",
198
+ "aws-smithy-runtime",
199
+ "aws-smithy-runtime-api",
200
+ "aws-smithy-schema",
201
+ "aws-smithy-types",
202
+ "aws-types",
203
+ "bytes",
204
+ "fastrand",
205
+ "hex",
206
+ "http 1.4.2",
207
+ "sha1 0.10.6",
208
+ "time",
209
+ "tokio",
210
+ "tracing",
211
+ "url",
212
+ "zeroize",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "aws-credential-types"
217
+ version = "1.2.14"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "8f20799b373a1be121fe3005fba0c2090af9411573878f224df44b42727fcaf7"
220
+ dependencies = [
221
+ "aws-smithy-async",
222
+ "aws-smithy-runtime-api",
223
+ "aws-smithy-types",
224
+ "zeroize",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "aws-runtime"
229
+ version = "1.7.5"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "6c9b9de216a988dd54b754a82a7660cfe14cee4f6782ae4524470972fa0ccb39"
232
+ dependencies = [
233
+ "aws-credential-types",
234
+ "aws-sigv4",
235
+ "aws-smithy-async",
236
+ "aws-smithy-eventstream",
237
+ "aws-smithy-http",
238
+ "aws-smithy-runtime",
239
+ "aws-smithy-runtime-api",
240
+ "aws-smithy-types",
241
+ "aws-types",
242
+ "bytes",
243
+ "bytes-utils",
244
+ "fastrand",
245
+ "http 0.2.12",
246
+ "http 1.4.2",
247
+ "http-body 0.4.6",
248
+ "http-body 1.0.1",
249
+ "percent-encoding",
250
+ "pin-project-lite",
251
+ "tracing",
252
+ "uuid",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "aws-sdk-s3"
257
+ version = "1.137.0"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "c2dd7213994e2ff9382ff100403b78c30d1b74cdfcd8fa9d0d1dc3a94a5c4874"
260
+ dependencies = [
261
+ "arc-swap",
262
+ "aws-credential-types",
263
+ "aws-runtime",
264
+ "aws-sigv4",
265
+ "aws-smithy-async",
266
+ "aws-smithy-checksums",
267
+ "aws-smithy-eventstream",
268
+ "aws-smithy-http",
269
+ "aws-smithy-json",
270
+ "aws-smithy-observability",
271
+ "aws-smithy-runtime",
272
+ "aws-smithy-runtime-api",
273
+ "aws-smithy-types",
274
+ "aws-smithy-xml",
275
+ "aws-types",
276
+ "bytes",
277
+ "fastrand",
278
+ "hex",
279
+ "hmac 0.13.0",
280
+ "http 0.2.12",
281
+ "http 1.4.2",
282
+ "http-body 1.0.1",
283
+ "lru",
284
+ "percent-encoding",
285
+ "regex-lite",
286
+ "sha2 0.11.0",
287
+ "tracing",
288
+ "url",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "aws-sdk-sso"
293
+ version = "1.102.0"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "8c82b3ac19f1431854f7ace3a7531674633e286bfdde21976893bfee36fd493b"
296
+ dependencies = [
297
+ "arc-swap",
298
+ "aws-credential-types",
299
+ "aws-runtime",
300
+ "aws-smithy-async",
301
+ "aws-smithy-http",
302
+ "aws-smithy-json",
303
+ "aws-smithy-observability",
304
+ "aws-smithy-runtime",
305
+ "aws-smithy-runtime-api",
306
+ "aws-smithy-types",
307
+ "aws-types",
308
+ "bytes",
309
+ "fastrand",
310
+ "http 0.2.12",
311
+ "http 1.4.2",
312
+ "regex-lite",
313
+ "tracing",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "aws-sdk-ssooidc"
318
+ version = "1.104.0"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "321000d2b4c5519ee573f73167f612efd7329322d9b26969ad1979f0427f1913"
321
+ dependencies = [
322
+ "arc-swap",
323
+ "aws-credential-types",
324
+ "aws-runtime",
325
+ "aws-smithy-async",
326
+ "aws-smithy-http",
327
+ "aws-smithy-json",
328
+ "aws-smithy-observability",
329
+ "aws-smithy-runtime",
330
+ "aws-smithy-runtime-api",
331
+ "aws-smithy-types",
332
+ "aws-types",
333
+ "bytes",
334
+ "fastrand",
335
+ "http 0.2.12",
336
+ "http 1.4.2",
337
+ "regex-lite",
338
+ "tracing",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "aws-sdk-sts"
343
+ version = "1.107.0"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "3d0d328ba962af23ecfa3c9f23b98d3d35e325fa218d7f13d17a6bf522f8a560"
346
+ dependencies = [
347
+ "arc-swap",
348
+ "aws-credential-types",
349
+ "aws-runtime",
350
+ "aws-smithy-async",
351
+ "aws-smithy-http",
352
+ "aws-smithy-json",
353
+ "aws-smithy-observability",
354
+ "aws-smithy-query",
355
+ "aws-smithy-runtime",
356
+ "aws-smithy-runtime-api",
357
+ "aws-smithy-types",
358
+ "aws-smithy-xml",
359
+ "aws-types",
360
+ "fastrand",
361
+ "http 0.2.12",
362
+ "http 1.4.2",
363
+ "regex-lite",
364
+ "tracing",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "aws-sigv4"
369
+ version = "1.4.5"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "bae38512beae0ffee7010fc24e7a8a123c53efdfef42a61e80fda4882418dc71"
372
+ dependencies = [
373
+ "aws-credential-types",
374
+ "aws-smithy-eventstream",
375
+ "aws-smithy-http",
376
+ "aws-smithy-runtime-api",
377
+ "aws-smithy-types",
378
+ "bytes",
379
+ "crypto-bigint",
380
+ "form_urlencoded",
381
+ "hex",
382
+ "hmac 0.13.0",
383
+ "http 0.2.12",
384
+ "http 1.4.2",
385
+ "p256",
386
+ "percent-encoding",
387
+ "sha2 0.11.0",
388
+ "subtle",
389
+ "time",
390
+ "tracing",
391
+ "zeroize",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "aws-smithy-async"
396
+ version = "1.2.14"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "2ffcaf626bdda484571968400c326a244598634dc75fd451325a54ad1a59acfc"
399
+ dependencies = [
400
+ "futures-util",
401
+ "pin-project-lite",
402
+ "tokio",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "aws-smithy-checksums"
407
+ version = "0.64.8"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "e9e8e65f4f81fcccdeb6c3eca2af17ac21d421a1786a26a394aecf421d616d3a"
410
+ dependencies = [
411
+ "aws-smithy-http",
412
+ "aws-smithy-types",
413
+ "bytes",
414
+ "crc-fast",
415
+ "hex",
416
+ "http 1.4.2",
417
+ "http-body 1.0.1",
418
+ "http-body-util",
419
+ "md-5",
420
+ "pin-project-lite",
421
+ "sha1 0.11.0",
422
+ "sha2 0.11.0",
423
+ "tracing",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "aws-smithy-eventstream"
428
+ version = "0.60.21"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "78d8391e65fcea47c586a22e1a41f173b38615b112b2c6b7a44e80cec3e6b706"
431
+ dependencies = [
432
+ "aws-smithy-types",
433
+ "bytes",
434
+ "crc32fast",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "aws-smithy-http"
439
+ version = "0.63.6"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "ba1ab2dc1c2c3749ead27180d333c42f11be8b0e934058fb4b2258ee8dbe5231"
442
+ dependencies = [
443
+ "aws-smithy-eventstream",
444
+ "aws-smithy-runtime-api",
445
+ "aws-smithy-types",
446
+ "bytes",
447
+ "bytes-utils",
448
+ "futures-core",
449
+ "futures-util",
450
+ "http 1.4.2",
451
+ "http-body 1.0.1",
452
+ "http-body-util",
453
+ "percent-encoding",
454
+ "pin-project-lite",
455
+ "pin-utils",
456
+ "tracing",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "aws-smithy-http-client"
461
+ version = "1.1.13"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "5c3ef8931ad1c98aa6a55b4256f847f3116090819844e0dd41ea682cac5dd2d3"
464
+ dependencies = [
465
+ "aws-smithy-async",
466
+ "aws-smithy-runtime-api",
467
+ "aws-smithy-types",
468
+ "h2",
469
+ "http 1.4.2",
470
+ "hyper",
471
+ "hyper-rustls",
472
+ "hyper-util",
473
+ "pin-project-lite",
474
+ "rustls",
475
+ "rustls-native-certs",
476
+ "rustls-pki-types",
477
+ "tokio",
478
+ "tokio-rustls",
479
+ "tower",
480
+ "tracing",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "aws-smithy-json"
485
+ version = "0.62.7"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "701a947f4797e52a911e114a898667c746c39feea467bbd1abd7b3721f702ffa"
488
+ dependencies = [
489
+ "aws-smithy-runtime-api",
490
+ "aws-smithy-schema",
491
+ "aws-smithy-types",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "aws-smithy-observability"
496
+ version = "0.2.6"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "a06c2315d173edbf1920da8ba3a7189695827002e4c0fc961973ab1c54abca9c"
499
+ dependencies = [
500
+ "aws-smithy-runtime-api",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "aws-smithy-query"
505
+ version = "0.60.15"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "1a56d79744fb3edb5d722ef79d86081e121d3b9422cb209eb03aea6aa4f21ebd"
508
+ dependencies = [
509
+ "aws-smithy-types",
510
+ "urlencoding",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "aws-smithy-runtime"
515
+ version = "1.11.3"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "b8e6f5caf6fea86f8c2206541ab5857cfcda9013426cdbe8fa0098b9e2d32182"
518
+ dependencies = [
519
+ "aws-smithy-async",
520
+ "aws-smithy-http",
521
+ "aws-smithy-observability",
522
+ "aws-smithy-runtime-api",
523
+ "aws-smithy-schema",
524
+ "aws-smithy-types",
525
+ "bytes",
526
+ "fastrand",
527
+ "http 0.2.12",
528
+ "http 1.4.2",
529
+ "http-body 0.4.6",
530
+ "http-body 1.0.1",
531
+ "http-body-util",
532
+ "pin-project-lite",
533
+ "pin-utils",
534
+ "tokio",
535
+ "tracing",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "aws-smithy-runtime-api"
540
+ version = "1.12.3"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "9db177daa6ba8afb9ee1aefcf548c907abcf52065e394ee11a92780057fe0e8c"
543
+ dependencies = [
544
+ "aws-smithy-async",
545
+ "aws-smithy-runtime-api-macros",
546
+ "aws-smithy-types",
547
+ "bytes",
548
+ "http 0.2.12",
549
+ "http 1.4.2",
550
+ "pin-project-lite",
551
+ "tokio",
552
+ "tracing",
553
+ "zeroize",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "aws-smithy-runtime-api-macros"
558
+ version = "1.0.0"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "8d7396fd9500589e62e460e987ecb671bad374934e55ec3b5f498cc7a8a8a7b7"
561
+ dependencies = [
562
+ "proc-macro2",
563
+ "quote",
564
+ "syn",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "aws-smithy-schema"
569
+ version = "0.1.0"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "7442cb268338f0eb8278140a107c046756aa01093d8ef5e99628d34ae09c94f5"
572
+ dependencies = [
573
+ "aws-smithy-runtime-api",
574
+ "aws-smithy-types",
575
+ "http 1.4.2",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "aws-smithy-types"
580
+ version = "1.5.0"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "32b42fcf341259d85ca10fac9a2f6448a8ec691c6955a18e45bc3b71a85fab85"
583
+ dependencies = [
584
+ "base64-simd",
585
+ "bytes",
586
+ "bytes-utils",
587
+ "futures-core",
588
+ "http 0.2.12",
589
+ "http 1.4.2",
590
+ "http-body 0.4.6",
591
+ "http-body 1.0.1",
592
+ "http-body-util",
593
+ "itoa",
594
+ "num-integer",
595
+ "pin-project-lite",
596
+ "pin-utils",
597
+ "ryu",
598
+ "serde",
599
+ "time",
600
+ "tokio",
601
+ "tokio-util",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "aws-smithy-xml"
606
+ version = "0.60.15"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "0ce02add1aa3677d022f8adf81dcbe3046a95f17a1b1e8979c145cd21d3d22b3"
609
+ dependencies = [
610
+ "xmlparser",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "aws-types"
615
+ version = "1.3.16"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "d16bf10b03a3c01e6b3b7d47cd964e873ffe9e7d4e80fad16bd4c077cb068531"
618
+ dependencies = [
619
+ "aws-credential-types",
620
+ "aws-smithy-async",
621
+ "aws-smithy-runtime-api",
622
+ "aws-smithy-schema",
623
+ "aws-smithy-types",
624
+ "rustc_version",
625
+ "tracing",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "base16ct"
630
+ version = "0.2.0"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
633
+
634
+ [[package]]
635
+ name = "base64"
636
+ version = "0.22.1"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
639
+
640
+ [[package]]
641
+ name = "base64-simd"
642
+ version = "0.8.0"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
645
+ dependencies = [
646
+ "outref",
647
+ "vsimd",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "base64ct"
652
+ version = "1.8.3"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
655
+
656
+ [[package]]
657
+ name = "bincode"
658
+ version = "1.3.3"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
661
+ dependencies = [
662
+ "serde",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "bit-set"
667
+ version = "0.8.0"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
670
+ dependencies = [
671
+ "bit-vec",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "bit-vec"
676
+ version = "0.8.0"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
679
+
680
+ [[package]]
681
+ name = "bitflags"
682
+ version = "2.13.0"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
685
+
686
+ [[package]]
687
+ name = "blake3"
688
+ version = "1.8.5"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce"
691
+ dependencies = [
692
+ "arrayref",
693
+ "arrayvec",
694
+ "cc",
695
+ "cfg-if",
696
+ "constant_time_eq",
697
+ "cpufeatures 0.3.0",
698
+ "memmap2",
699
+ "rayon-core",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "block-buffer"
704
+ version = "0.10.4"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
707
+ dependencies = [
708
+ "generic-array",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "block-buffer"
713
+ version = "0.12.1"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
716
+ dependencies = [
717
+ "hybrid-array",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "bs58"
722
+ version = "0.5.1"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
725
+ dependencies = [
726
+ "tinyvec",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "bstr"
731
+ version = "1.12.1"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
734
+ dependencies = [
735
+ "memchr",
736
+ "regex-automata",
737
+ "serde",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "bumpalo"
742
+ version = "3.20.3"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
745
+
746
+ [[package]]
747
+ name = "bytes"
748
+ version = "1.12.0"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
751
+ dependencies = [
752
+ "serde",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "bytes-utils"
757
+ version = "0.1.4"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35"
760
+ dependencies = [
761
+ "bytes",
762
+ "either",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "cast"
767
+ version = "0.3.0"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
770
+
771
+ [[package]]
772
+ name = "cbindgen"
773
+ version = "0.28.0"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
776
+ dependencies = [
777
+ "clap",
778
+ "heck 0.4.1",
779
+ "indexmap 2.14.0",
780
+ "log",
781
+ "proc-macro2",
782
+ "quote",
783
+ "serde",
784
+ "serde_json",
785
+ "syn",
786
+ "tempfile",
787
+ "toml",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "cc"
792
+ version = "1.2.65"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
795
+ dependencies = [
796
+ "find-msvc-tools",
797
+ "jobserver",
798
+ "libc",
799
+ "shlex 2.0.1",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "cfg-if"
804
+ version = "1.0.4"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
807
+
808
+ [[package]]
809
+ name = "chacha20"
810
+ version = "0.10.0"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
813
+ dependencies = [
814
+ "cfg-if",
815
+ "cpufeatures 0.3.0",
816
+ "rand_core 0.10.1",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "chrono"
821
+ version = "0.4.45"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
824
+ dependencies = [
825
+ "iana-time-zone",
826
+ "num-traits",
827
+ "serde",
828
+ "windows-link",
829
+ ]
830
+
831
+ [[package]]
832
+ name = "ciborium"
833
+ version = "0.2.2"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
836
+ dependencies = [
837
+ "ciborium-io",
838
+ "ciborium-ll",
839
+ "serde",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "ciborium-io"
844
+ version = "0.2.2"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
847
+
848
+ [[package]]
849
+ name = "ciborium-ll"
850
+ version = "0.2.2"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
853
+ dependencies = [
854
+ "ciborium-io",
855
+ "half",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "clap"
860
+ version = "4.6.1"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
863
+ dependencies = [
864
+ "clap_builder",
865
+ "clap_derive",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "clap_builder"
870
+ version = "4.6.0"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
873
+ dependencies = [
874
+ "anstream",
875
+ "anstyle",
876
+ "clap_lex",
877
+ "strsim",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "clap_complete"
882
+ version = "4.6.5"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "e0a7a9bfdb35811f9e59832f0f05975114d2251b415fb534108e6f34060fd772"
885
+ dependencies = [
886
+ "clap",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "clap_derive"
891
+ version = "4.6.1"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
894
+ dependencies = [
895
+ "heck 0.5.0",
896
+ "proc-macro2",
897
+ "quote",
898
+ "syn",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "clap_lex"
903
+ version = "1.1.0"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
906
+
907
+ [[package]]
908
+ name = "clap_mangen"
909
+ version = "0.3.0"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "d82842b45bf9f6a3be090dd860095ac30728042c08e0d6261ca7259b5d850f07"
912
+ dependencies = [
913
+ "clap",
914
+ "roff",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "cmov"
919
+ version = "0.5.4"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
922
+
923
+ [[package]]
924
+ name = "colorchoice"
925
+ version = "1.0.5"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
928
+
929
+ [[package]]
930
+ name = "combine"
931
+ version = "4.6.7"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
934
+ dependencies = [
935
+ "bytes",
936
+ "memchr",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "const-oid"
941
+ version = "0.9.6"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
944
+
945
+ [[package]]
946
+ name = "const-oid"
947
+ version = "0.10.2"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
950
+
951
+ [[package]]
952
+ name = "constant_time_eq"
953
+ version = "0.4.2"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
956
+
957
+ [[package]]
958
+ name = "content_inspector"
959
+ version = "0.2.4"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "b7bda66e858c683005a53a9a60c69a4aca7eeaa45d124526e389f7aec8e62f38"
962
+ dependencies = [
963
+ "memchr",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "convert_case"
968
+ version = "0.11.0"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
971
+ dependencies = [
972
+ "unicode-segmentation",
973
+ ]
974
+
975
+ [[package]]
976
+ name = "core-foundation"
977
+ version = "0.10.1"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
980
+ dependencies = [
981
+ "core-foundation-sys",
982
+ "libc",
983
+ ]
984
+
985
+ [[package]]
986
+ name = "core-foundation-sys"
987
+ version = "0.8.7"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
990
+
991
+ [[package]]
992
+ name = "cpufeatures"
993
+ version = "0.2.17"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
996
+ dependencies = [
997
+ "libc",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "cpufeatures"
1002
+ version = "0.3.0"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
1005
+ dependencies = [
1006
+ "libc",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "crc-fast"
1011
+ version = "1.10.0"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "e75b2483e97a5a7da73ac68a05b629f9c53cff58d8ed1c77866079e18b00dba5"
1014
+ dependencies = [
1015
+ "digest 0.10.7",
1016
+ "spin",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "crc32c"
1021
+ version = "0.6.8"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47"
1024
+ dependencies = [
1025
+ "rustc_version",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "crc32fast"
1030
+ version = "1.5.0"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
1033
+ dependencies = [
1034
+ "cfg-if",
1035
+ ]
1036
+
1037
+ [[package]]
1038
+ name = "criterion"
1039
+ version = "0.8.2"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
1042
+ dependencies = [
1043
+ "alloca",
1044
+ "anes",
1045
+ "cast",
1046
+ "ciborium",
1047
+ "clap",
1048
+ "criterion-plot",
1049
+ "itertools 0.13.0",
1050
+ "num-traits",
1051
+ "oorandom",
1052
+ "page_size",
1053
+ "regex",
1054
+ "serde",
1055
+ "serde_json",
1056
+ "tinytemplate",
1057
+ "walkdir",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "criterion-plot"
1062
+ version = "0.8.2"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
1065
+ dependencies = [
1066
+ "cast",
1067
+ "itertools 0.13.0",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "crossbeam-deque"
1072
+ version = "0.8.6"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
1075
+ dependencies = [
1076
+ "crossbeam-epoch",
1077
+ "crossbeam-utils",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "crossbeam-epoch"
1082
+ version = "0.9.18"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
1085
+ dependencies = [
1086
+ "crossbeam-utils",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "crossbeam-utils"
1091
+ version = "0.8.21"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
1094
+
1095
+ [[package]]
1096
+ name = "crunchy"
1097
+ version = "0.2.4"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
1100
+
1101
+ [[package]]
1102
+ name = "crypto-bigint"
1103
+ version = "0.5.5"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
1106
+ dependencies = [
1107
+ "generic-array",
1108
+ "rand_core 0.6.4",
1109
+ "subtle",
1110
+ "zeroize",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "crypto-common"
1115
+ version = "0.1.7"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
1118
+ dependencies = [
1119
+ "generic-array",
1120
+ "typenum",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "crypto-common"
1125
+ version = "0.2.2"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
1128
+ dependencies = [
1129
+ "hybrid-array",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "ctor"
1134
+ version = "1.0.7"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "01334b89b69ff726750c5ce5073fc8bd860e99aa9a8fc5ca11b04730e3aee97a"
1137
+
1138
+ [[package]]
1139
+ name = "ctutils"
1140
+ version = "0.4.2"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
1143
+ dependencies = [
1144
+ "cmov",
1145
+ ]
1146
+
1147
+ [[package]]
1148
+ name = "darling"
1149
+ version = "0.23.0"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
1152
+ dependencies = [
1153
+ "darling_core",
1154
+ "darling_macro",
1155
+ ]
1156
+
1157
+ [[package]]
1158
+ name = "darling_core"
1159
+ version = "0.23.0"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
1162
+ dependencies = [
1163
+ "ident_case",
1164
+ "proc-macro2",
1165
+ "quote",
1166
+ "strsim",
1167
+ "syn",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "darling_macro"
1172
+ version = "0.23.0"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
1175
+ dependencies = [
1176
+ "darling_core",
1177
+ "quote",
1178
+ "syn",
1179
+ ]
1180
+
1181
+ [[package]]
1182
+ name = "der"
1183
+ version = "0.7.10"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
1186
+ dependencies = [
1187
+ "const-oid 0.9.6",
1188
+ "pem-rfc7468",
1189
+ "zeroize",
1190
+ ]
1191
+
1192
+ [[package]]
1193
+ name = "deranged"
1194
+ version = "0.5.8"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
1197
+ dependencies = [
1198
+ "serde_core",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "derive_more"
1203
+ version = "2.1.1"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
1206
+ dependencies = [
1207
+ "derive_more-impl",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "derive_more-impl"
1212
+ version = "2.1.1"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
1215
+ dependencies = [
1216
+ "proc-macro2",
1217
+ "quote",
1218
+ "rustc_version",
1219
+ "syn",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "difflib"
1224
+ version = "0.4.0"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
1227
+
1228
+ [[package]]
1229
+ name = "digest"
1230
+ version = "0.10.7"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
1233
+ dependencies = [
1234
+ "block-buffer 0.10.4",
1235
+ "const-oid 0.9.6",
1236
+ "crypto-common 0.1.7",
1237
+ "subtle",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "digest"
1242
+ version = "0.11.3"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
1245
+ dependencies = [
1246
+ "block-buffer 0.12.1",
1247
+ "const-oid 0.10.2",
1248
+ "crypto-common 0.2.2",
1249
+ "ctutils",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "displaydoc"
1254
+ version = "0.2.6"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
1257
+ dependencies = [
1258
+ "proc-macro2",
1259
+ "quote",
1260
+ "syn",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "dunce"
1265
+ version = "1.0.5"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
1268
+
1269
+ [[package]]
1270
+ name = "dyn-clone"
1271
+ version = "1.0.20"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
1274
+
1275
+ [[package]]
1276
+ name = "ecdsa"
1277
+ version = "0.16.9"
1278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1279
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
1280
+ dependencies = [
1281
+ "der",
1282
+ "digest 0.10.7",
1283
+ "elliptic-curve",
1284
+ "rfc6979",
1285
+ "signature",
1286
+ "spki",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "either"
1291
+ version = "1.16.0"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
1294
+
1295
+ [[package]]
1296
+ name = "elliptic-curve"
1297
+ version = "0.13.8"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
1300
+ dependencies = [
1301
+ "base16ct",
1302
+ "crypto-bigint",
1303
+ "digest 0.10.7",
1304
+ "ff",
1305
+ "generic-array",
1306
+ "group",
1307
+ "pem-rfc7468",
1308
+ "pkcs8",
1309
+ "rand_core 0.6.4",
1310
+ "sec1",
1311
+ "subtle",
1312
+ "zeroize",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "equivalent"
1317
+ version = "1.0.2"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1320
+
1321
+ [[package]]
1322
+ name = "errno"
1323
+ version = "0.3.14"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1326
+ dependencies = [
1327
+ "libc",
1328
+ "windows-sys 0.61.2",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "fastrand"
1333
+ version = "2.4.1"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
1336
+
1337
+ [[package]]
1338
+ name = "ff"
1339
+ version = "0.13.1"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
1342
+ dependencies = [
1343
+ "rand_core 0.6.4",
1344
+ "subtle",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "filetime"
1349
+ version = "0.2.29"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
1352
+ dependencies = [
1353
+ "cfg-if",
1354
+ "libc",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "find-msvc-tools"
1359
+ version = "0.1.9"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1362
+
1363
+ [[package]]
1364
+ name = "float-cmp"
1365
+ version = "0.10.0"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
1368
+ dependencies = [
1369
+ "num-traits",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "fnv"
1374
+ version = "1.0.7"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1377
+
1378
+ [[package]]
1379
+ name = "foldhash"
1380
+ version = "0.2.0"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1383
+
1384
+ [[package]]
1385
+ name = "form_urlencoded"
1386
+ version = "1.2.2"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1389
+ dependencies = [
1390
+ "percent-encoding",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "futures"
1395
+ version = "0.3.32"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1398
+ dependencies = [
1399
+ "futures-channel",
1400
+ "futures-core",
1401
+ "futures-executor",
1402
+ "futures-io",
1403
+ "futures-sink",
1404
+ "futures-task",
1405
+ "futures-util",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "futures-channel"
1410
+ version = "0.3.32"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1413
+ dependencies = [
1414
+ "futures-core",
1415
+ "futures-sink",
1416
+ ]
1417
+
1418
+ [[package]]
1419
+ name = "futures-core"
1420
+ version = "0.3.32"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1423
+
1424
+ [[package]]
1425
+ name = "futures-executor"
1426
+ version = "0.3.32"
1427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1428
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1429
+ dependencies = [
1430
+ "futures-core",
1431
+ "futures-task",
1432
+ "futures-util",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "futures-io"
1437
+ version = "0.3.32"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1440
+
1441
+ [[package]]
1442
+ name = "futures-macro"
1443
+ version = "0.3.32"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1446
+ dependencies = [
1447
+ "proc-macro2",
1448
+ "quote",
1449
+ "syn",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "futures-sink"
1454
+ version = "0.3.32"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1457
+
1458
+ [[package]]
1459
+ name = "futures-task"
1460
+ version = "0.3.32"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1463
+
1464
+ [[package]]
1465
+ name = "futures-util"
1466
+ version = "0.3.32"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1469
+ dependencies = [
1470
+ "futures-channel",
1471
+ "futures-core",
1472
+ "futures-io",
1473
+ "futures-macro",
1474
+ "futures-sink",
1475
+ "futures-task",
1476
+ "memchr",
1477
+ "pin-project-lite",
1478
+ "slab",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "generic-array"
1483
+ version = "0.14.7"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1486
+ dependencies = [
1487
+ "typenum",
1488
+ "version_check",
1489
+ "zeroize",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "getrandom"
1494
+ version = "0.2.17"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1497
+ dependencies = [
1498
+ "cfg-if",
1499
+ "libc",
1500
+ "wasi",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "getrandom"
1505
+ version = "0.3.4"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1508
+ dependencies = [
1509
+ "cfg-if",
1510
+ "libc",
1511
+ "r-efi 5.3.0",
1512
+ "wasip2",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "getrandom"
1517
+ version = "0.4.3"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
1520
+ dependencies = [
1521
+ "cfg-if",
1522
+ "libc",
1523
+ "r-efi 6.0.0",
1524
+ "rand_core 0.10.1",
1525
+ ]
1526
+
1527
+ [[package]]
1528
+ name = "glob"
1529
+ version = "0.3.3"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1532
+
1533
+ [[package]]
1534
+ name = "globset"
1535
+ version = "0.4.18"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
1538
+ dependencies = [
1539
+ "aho-corasick",
1540
+ "bstr",
1541
+ "log",
1542
+ "regex-automata",
1543
+ "regex-syntax",
1544
+ ]
1545
+
1546
+ [[package]]
1547
+ name = "globwalk"
1548
+ version = "0.9.1"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
1551
+ dependencies = [
1552
+ "bitflags",
1553
+ "ignore",
1554
+ "walkdir",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "google-cloud-auth"
1559
+ version = "1.13.0"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "a300d4011cb53573eafe2419630d303ced54aab6c194a6d9e4156de375800372"
1562
+ dependencies = [
1563
+ "async-trait",
1564
+ "base64",
1565
+ "bytes",
1566
+ "chrono",
1567
+ "google-cloud-gax",
1568
+ "hex",
1569
+ "hmac 0.13.0",
1570
+ "http 1.4.2",
1571
+ "reqwest",
1572
+ "rustc_version",
1573
+ "rustls",
1574
+ "rustls-pki-types",
1575
+ "serde",
1576
+ "serde_json",
1577
+ "sha2 0.11.0",
1578
+ "thiserror",
1579
+ "time",
1580
+ "tokio",
1581
+ "url",
1582
+ ]
1583
+
1584
+ [[package]]
1585
+ name = "google-cloud-gax"
1586
+ version = "1.11.0"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "4f60f45dd97ff91cedfcb6b2b9f860d3d84739386c3557027687c52cc0e698fd"
1589
+ dependencies = [
1590
+ "bytes",
1591
+ "futures",
1592
+ "google-cloud-rpc",
1593
+ "google-cloud-wkt",
1594
+ "http 1.4.2",
1595
+ "pin-project",
1596
+ "rand 0.10.1",
1597
+ "serde",
1598
+ "serde_json",
1599
+ "thiserror",
1600
+ "tokio",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "google-cloud-gax-internal"
1605
+ version = "0.7.14"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "78e0d5b25e5714321efc3ea48a1457bcd943ba85fe7a0e80e97d989f3c9aea17"
1608
+ dependencies = [
1609
+ "bytes",
1610
+ "futures",
1611
+ "google-cloud-auth",
1612
+ "google-cloud-gax",
1613
+ "google-cloud-rpc",
1614
+ "google-cloud-wkt",
1615
+ "h2",
1616
+ "http 1.4.2",
1617
+ "http-body 1.0.1",
1618
+ "http-body-util",
1619
+ "hyper",
1620
+ "lazy_static",
1621
+ "opentelemetry",
1622
+ "opentelemetry-semantic-conventions",
1623
+ "opentelemetry_sdk",
1624
+ "percent-encoding",
1625
+ "pin-project",
1626
+ "prost",
1627
+ "prost-types",
1628
+ "reqwest",
1629
+ "rustc_version",
1630
+ "serde",
1631
+ "serde_json",
1632
+ "thiserror",
1633
+ "tokio",
1634
+ "tokio-stream",
1635
+ "tonic",
1636
+ "tonic-prost",
1637
+ "tower",
1638
+ "tracing",
1639
+ "tracing-opentelemetry",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "google-cloud-iam-v1"
1644
+ version = "1.10.0"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "70a245c548c002e22d1644e88d9b7d6c32183b335e63510a1bb8580045c3282d"
1647
+ dependencies = [
1648
+ "async-trait",
1649
+ "bytes",
1650
+ "google-cloud-gax",
1651
+ "google-cloud-gax-internal",
1652
+ "google-cloud-type",
1653
+ "google-cloud-wkt",
1654
+ "serde",
1655
+ "serde_json",
1656
+ "serde_with",
1657
+ "tracing",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "google-cloud-longrunning"
1662
+ version = "1.11.0"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "6de120149ea50fd0cccc2d3dfb863bc23e398ead386fa59c5d8f8f6004ced01c"
1665
+ dependencies = [
1666
+ "async-trait",
1667
+ "bytes",
1668
+ "google-cloud-gax",
1669
+ "google-cloud-gax-internal",
1670
+ "google-cloud-rpc",
1671
+ "google-cloud-wkt",
1672
+ "serde",
1673
+ "serde_json",
1674
+ "serde_with",
1675
+ "tracing",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "google-cloud-lro"
1680
+ version = "1.8.0"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "f40d4311479512e408b67777cf497dac6e41fbe8c96730416ed9d47855584b29"
1683
+ dependencies = [
1684
+ "google-cloud-gax",
1685
+ "google-cloud-longrunning",
1686
+ "google-cloud-rpc",
1687
+ "google-cloud-wkt",
1688
+ "serde",
1689
+ "tokio",
1690
+ "tracing",
1691
+ ]
1692
+
1693
+ [[package]]
1694
+ name = "google-cloud-rpc"
1695
+ version = "1.5.0"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "10b177796075b7bfc02bf2e405db665ee850a924fa44cedfc5282b473c5ab203"
1698
+ dependencies = [
1699
+ "bytes",
1700
+ "google-cloud-wkt",
1701
+ "serde",
1702
+ "serde_json",
1703
+ "serde_with",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "google-cloud-storage"
1708
+ version = "1.15.0"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "f796d8a7a5b1457ecd5ebb0451bf0502e15127cf42195591ffea90092fa82551"
1711
+ dependencies = [
1712
+ "async-trait",
1713
+ "base64",
1714
+ "bytes",
1715
+ "chrono",
1716
+ "crc32c",
1717
+ "futures",
1718
+ "google-cloud-auth",
1719
+ "google-cloud-gax",
1720
+ "google-cloud-gax-internal",
1721
+ "google-cloud-iam-v1",
1722
+ "google-cloud-longrunning",
1723
+ "google-cloud-lro",
1724
+ "google-cloud-rpc",
1725
+ "google-cloud-type",
1726
+ "google-cloud-wkt",
1727
+ "hex",
1728
+ "http 1.4.2",
1729
+ "http-body 1.0.1",
1730
+ "md5",
1731
+ "percent-encoding",
1732
+ "prost",
1733
+ "prost-types",
1734
+ "serde",
1735
+ "serde_json",
1736
+ "serde_with",
1737
+ "sha2 0.11.0",
1738
+ "thiserror",
1739
+ "tokio",
1740
+ "tokio-stream",
1741
+ "tracing",
1742
+ "url",
1743
+ "uuid",
1744
+ ]
1745
+
1746
+ [[package]]
1747
+ name = "google-cloud-type"
1748
+ version = "1.5.0"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "d3658f2192252ba301a9d0a26e298bd56b55f0edb32de499a2f41ff244c09cf8"
1751
+ dependencies = [
1752
+ "bytes",
1753
+ "google-cloud-wkt",
1754
+ "serde",
1755
+ "serde_json",
1756
+ "serde_with",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "google-cloud-wkt"
1761
+ version = "1.5.0"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "88e0186e2221bf82c5296500251b4650b111172c324984159a0de9f6bcaa18a5"
1764
+ dependencies = [
1765
+ "base64",
1766
+ "bytes",
1767
+ "serde",
1768
+ "serde_json",
1769
+ "serde_with",
1770
+ "thiserror",
1771
+ "time",
1772
+ "url",
1773
+ ]
1774
+
1775
+ [[package]]
1776
+ name = "group"
1777
+ version = "0.13.0"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
1780
+ dependencies = [
1781
+ "ff",
1782
+ "rand_core 0.6.4",
1783
+ "subtle",
1784
+ ]
1785
+
1786
+ [[package]]
1787
+ name = "h2"
1788
+ version = "0.4.15"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
1791
+ dependencies = [
1792
+ "atomic-waker",
1793
+ "bytes",
1794
+ "fnv",
1795
+ "futures-core",
1796
+ "futures-sink",
1797
+ "http 1.4.2",
1798
+ "indexmap 2.14.0",
1799
+ "slab",
1800
+ "tokio",
1801
+ "tokio-util",
1802
+ "tracing",
1803
+ ]
1804
+
1805
+ [[package]]
1806
+ name = "half"
1807
+ version = "2.7.1"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1810
+ dependencies = [
1811
+ "cfg-if",
1812
+ "crunchy",
1813
+ "zerocopy",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "hashbrown"
1818
+ version = "0.12.3"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1821
+
1822
+ [[package]]
1823
+ name = "hashbrown"
1824
+ version = "0.16.1"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1827
+ dependencies = [
1828
+ "allocator-api2",
1829
+ "equivalent",
1830
+ "foldhash",
1831
+ ]
1832
+
1833
+ [[package]]
1834
+ name = "hashbrown"
1835
+ version = "0.17.1"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1838
+
1839
+ [[package]]
1840
+ name = "heck"
1841
+ version = "0.4.1"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1844
+
1845
+ [[package]]
1846
+ name = "heck"
1847
+ version = "0.5.0"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1850
+
1851
+ [[package]]
1852
+ name = "hex"
1853
+ version = "0.4.3"
1854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1855
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1856
+
1857
+ [[package]]
1858
+ name = "hmac"
1859
+ version = "0.12.1"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1862
+ dependencies = [
1863
+ "digest 0.10.7",
1864
+ ]
1865
+
1866
+ [[package]]
1867
+ name = "hmac"
1868
+ version = "0.13.0"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
1871
+ dependencies = [
1872
+ "digest 0.11.3",
1873
+ ]
1874
+
1875
+ [[package]]
1876
+ name = "http"
1877
+ version = "0.2.12"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1880
+ dependencies = [
1881
+ "bytes",
1882
+ "fnv",
1883
+ "itoa",
1884
+ ]
1885
+
1886
+ [[package]]
1887
+ name = "http"
1888
+ version = "1.4.2"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
1891
+ dependencies = [
1892
+ "bytes",
1893
+ "itoa",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "http-body"
1898
+ version = "0.4.6"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1901
+ dependencies = [
1902
+ "bytes",
1903
+ "http 0.2.12",
1904
+ "pin-project-lite",
1905
+ ]
1906
+
1907
+ [[package]]
1908
+ name = "http-body"
1909
+ version = "1.0.1"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1912
+ dependencies = [
1913
+ "bytes",
1914
+ "http 1.4.2",
1915
+ ]
1916
+
1917
+ [[package]]
1918
+ name = "http-body-util"
1919
+ version = "0.1.3"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1922
+ dependencies = [
1923
+ "bytes",
1924
+ "futures-core",
1925
+ "http 1.4.2",
1926
+ "http-body 1.0.1",
1927
+ "pin-project-lite",
1928
+ ]
1929
+
1930
+ [[package]]
1931
+ name = "httparse"
1932
+ version = "1.10.1"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1935
+
1936
+ [[package]]
1937
+ name = "humantime"
1938
+ version = "2.3.0"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
1941
+
1942
+ [[package]]
1943
+ name = "humantime-serde"
1944
+ version = "1.1.1"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
1947
+ dependencies = [
1948
+ "humantime",
1949
+ "serde",
1950
+ ]
1951
+
1952
+ [[package]]
1953
+ name = "hybrid-array"
1954
+ version = "0.4.12"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
1957
+ dependencies = [
1958
+ "typenum",
1959
+ ]
1960
+
1961
+ [[package]]
1962
+ name = "hyper"
1963
+ version = "1.10.1"
1964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1965
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
1966
+ dependencies = [
1967
+ "atomic-waker",
1968
+ "bytes",
1969
+ "futures-channel",
1970
+ "futures-core",
1971
+ "h2",
1972
+ "http 1.4.2",
1973
+ "http-body 1.0.1",
1974
+ "httparse",
1975
+ "itoa",
1976
+ "pin-project-lite",
1977
+ "smallvec",
1978
+ "tokio",
1979
+ "want",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "hyper-rustls"
1984
+ version = "0.27.9"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1987
+ dependencies = [
1988
+ "http 1.4.2",
1989
+ "hyper",
1990
+ "hyper-util",
1991
+ "rustls",
1992
+ "rustls-native-certs",
1993
+ "tokio",
1994
+ "tokio-rustls",
1995
+ "tower-service",
1996
+ ]
1997
+
1998
+ [[package]]
1999
+ name = "hyper-timeout"
2000
+ version = "0.5.2"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
2003
+ dependencies = [
2004
+ "hyper",
2005
+ "hyper-util",
2006
+ "pin-project-lite",
2007
+ "tokio",
2008
+ "tower-service",
2009
+ ]
2010
+
2011
+ [[package]]
2012
+ name = "hyper-util"
2013
+ version = "0.1.20"
2014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
2016
+ dependencies = [
2017
+ "base64",
2018
+ "bytes",
2019
+ "futures-channel",
2020
+ "futures-util",
2021
+ "http 1.4.2",
2022
+ "http-body 1.0.1",
2023
+ "hyper",
2024
+ "ipnet",
2025
+ "libc",
2026
+ "percent-encoding",
2027
+ "pin-project-lite",
2028
+ "socket2",
2029
+ "tokio",
2030
+ "tower-service",
2031
+ "tracing",
2032
+ ]
2033
+
2034
+ [[package]]
2035
+ name = "iai-callgrind"
2036
+ version = "0.16.1"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "0b1e4910d3a9137442723dfb772c32dc10674c4181ca078d2fd227cd5dce9db0"
2039
+ dependencies = [
2040
+ "bincode",
2041
+ "derive_more",
2042
+ "iai-callgrind-macros",
2043
+ "iai-callgrind-runner",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "iai-callgrind-macros"
2048
+ version = "0.6.1"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "4d03775318d3f9f01b39ac6612b01464006dc397a654a89dd57df2fd34fb68c3"
2051
+ dependencies = [
2052
+ "derive_more",
2053
+ "proc-macro-error2",
2054
+ "proc-macro2",
2055
+ "quote",
2056
+ "serde",
2057
+ "serde_json",
2058
+ "syn",
2059
+ ]
2060
+
2061
+ [[package]]
2062
+ name = "iai-callgrind-runner"
2063
+ version = "0.16.1"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "b74c9743c00c3bca4aaffc69c87cae56837796cd362438daf354a3f785788c68"
2066
+ dependencies = [
2067
+ "serde",
2068
+ ]
2069
+
2070
+ [[package]]
2071
+ name = "iana-time-zone"
2072
+ version = "0.1.65"
2073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2074
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
2075
+ dependencies = [
2076
+ "android_system_properties",
2077
+ "core-foundation-sys",
2078
+ "iana-time-zone-haiku",
2079
+ "js-sys",
2080
+ "log",
2081
+ "wasm-bindgen",
2082
+ "windows-core",
2083
+ ]
2084
+
2085
+ [[package]]
2086
+ name = "iana-time-zone-haiku"
2087
+ version = "0.1.2"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2090
+ dependencies = [
2091
+ "cc",
2092
+ ]
2093
+
2094
+ [[package]]
2095
+ name = "icu_collections"
2096
+ version = "2.2.0"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
2099
+ dependencies = [
2100
+ "displaydoc",
2101
+ "potential_utf",
2102
+ "utf8_iter",
2103
+ "yoke",
2104
+ "zerofrom",
2105
+ "zerovec",
2106
+ ]
2107
+
2108
+ [[package]]
2109
+ name = "icu_locale_core"
2110
+ version = "2.2.0"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
2113
+ dependencies = [
2114
+ "displaydoc",
2115
+ "litemap",
2116
+ "tinystr",
2117
+ "writeable",
2118
+ "zerovec",
2119
+ ]
2120
+
2121
+ [[package]]
2122
+ name = "icu_normalizer"
2123
+ version = "2.2.0"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
2126
+ dependencies = [
2127
+ "icu_collections",
2128
+ "icu_normalizer_data",
2129
+ "icu_properties",
2130
+ "icu_provider",
2131
+ "smallvec",
2132
+ "zerovec",
2133
+ ]
2134
+
2135
+ [[package]]
2136
+ name = "icu_normalizer_data"
2137
+ version = "2.2.0"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
2140
+
2141
+ [[package]]
2142
+ name = "icu_properties"
2143
+ version = "2.2.0"
2144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2145
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
2146
+ dependencies = [
2147
+ "icu_collections",
2148
+ "icu_locale_core",
2149
+ "icu_properties_data",
2150
+ "icu_provider",
2151
+ "zerotrie",
2152
+ "zerovec",
2153
+ ]
2154
+
2155
+ [[package]]
2156
+ name = "icu_properties_data"
2157
+ version = "2.2.0"
2158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2159
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
2160
+
2161
+ [[package]]
2162
+ name = "icu_provider"
2163
+ version = "2.2.0"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
2166
+ dependencies = [
2167
+ "displaydoc",
2168
+ "icu_locale_core",
2169
+ "writeable",
2170
+ "yoke",
2171
+ "zerofrom",
2172
+ "zerotrie",
2173
+ "zerovec",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "ident_case"
2178
+ version = "1.0.1"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2181
+
2182
+ [[package]]
2183
+ name = "idna"
2184
+ version = "1.1.0"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
2187
+ dependencies = [
2188
+ "idna_adapter",
2189
+ "smallvec",
2190
+ "utf8_iter",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "idna_adapter"
2195
+ version = "1.2.2"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
2198
+ dependencies = [
2199
+ "icu_normalizer",
2200
+ "icu_properties",
2201
+ ]
2202
+
2203
+ [[package]]
2204
+ name = "ignore"
2205
+ version = "0.4.26"
2206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2207
+ checksum = "b915661dd01db3f05050265b2477bcc6527b3792388e2749b41623cc592be67d"
2208
+ dependencies = [
2209
+ "crossbeam-deque",
2210
+ "globset",
2211
+ "log",
2212
+ "memchr",
2213
+ "regex-automata",
2214
+ "same-file",
2215
+ "walkdir",
2216
+ "winapi-util",
2217
+ ]
2218
+
2219
+ [[package]]
2220
+ name = "indexmap"
2221
+ version = "1.9.3"
2222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2223
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2224
+ dependencies = [
2225
+ "autocfg",
2226
+ "hashbrown 0.12.3",
2227
+ "serde",
2228
+ ]
2229
+
2230
+ [[package]]
2231
+ name = "indexmap"
2232
+ version = "2.14.0"
2233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2234
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
2235
+ dependencies = [
2236
+ "equivalent",
2237
+ "hashbrown 0.17.1",
2238
+ "serde",
2239
+ "serde_core",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "indoc"
2244
+ version = "2.0.7"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
2247
+ dependencies = [
2248
+ "rustversion",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "ipnet"
2253
+ version = "2.12.0"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
2256
+
2257
+ [[package]]
2258
+ name = "is_terminal_polyfill"
2259
+ version = "1.70.2"
2260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2261
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
2262
+
2263
+ [[package]]
2264
+ name = "itertools"
2265
+ version = "0.13.0"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
2268
+ dependencies = [
2269
+ "either",
2270
+ ]
2271
+
2272
+ [[package]]
2273
+ name = "itertools"
2274
+ version = "0.14.0"
2275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2276
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
2277
+ dependencies = [
2278
+ "either",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "itoa"
2283
+ version = "1.0.18"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
2286
+
2287
+ [[package]]
2288
+ name = "jni"
2289
+ version = "0.22.4"
2290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2291
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
2292
+ dependencies = [
2293
+ "cfg-if",
2294
+ "combine",
2295
+ "jni-macros",
2296
+ "jni-sys",
2297
+ "log",
2298
+ "simd_cesu8",
2299
+ "thiserror",
2300
+ "walkdir",
2301
+ "windows-link",
2302
+ ]
2303
+
2304
+ [[package]]
2305
+ name = "jni-macros"
2306
+ version = "0.22.4"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
2309
+ dependencies = [
2310
+ "proc-macro2",
2311
+ "quote",
2312
+ "rustc_version",
2313
+ "simd_cesu8",
2314
+ "syn",
2315
+ ]
2316
+
2317
+ [[package]]
2318
+ name = "jni-sys"
2319
+ version = "0.4.1"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
2322
+ dependencies = [
2323
+ "jni-sys-macros",
2324
+ ]
2325
+
2326
+ [[package]]
2327
+ name = "jni-sys-macros"
2328
+ version = "0.4.1"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
2331
+ dependencies = [
2332
+ "quote",
2333
+ "syn",
2334
+ ]
2335
+
2336
+ [[package]]
2337
+ name = "jobserver"
2338
+ version = "0.1.34"
2339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2340
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
2341
+ dependencies = [
2342
+ "getrandom 0.3.4",
2343
+ "libc",
2344
+ ]
2345
+
2346
+ [[package]]
2347
+ name = "js-sys"
2348
+ version = "0.3.102"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
2351
+ dependencies = [
2352
+ "cfg-if",
2353
+ "futures-util",
2354
+ "wasm-bindgen",
2355
+ ]
2356
+
2357
+ [[package]]
2358
+ name = "lazy_static"
2359
+ version = "1.5.0"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2362
+
2363
+ [[package]]
2364
+ name = "libc"
2365
+ version = "0.2.186"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
2368
+
2369
+ [[package]]
2370
+ name = "libloading"
2371
+ version = "0.9.0"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
2374
+ dependencies = [
2375
+ "cfg-if",
2376
+ "windows-link",
2377
+ ]
2378
+
2379
+ [[package]]
2380
+ name = "linux-raw-sys"
2381
+ version = "0.12.1"
2382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2383
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
2384
+
2385
+ [[package]]
2386
+ name = "litemap"
2387
+ version = "0.8.2"
2388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2389
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
2390
+
2391
+ [[package]]
2392
+ name = "log"
2393
+ version = "0.4.33"
2394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2395
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
2396
+
2397
+ [[package]]
2398
+ name = "lru"
2399
+ version = "0.16.4"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "7f66e8d5d03f609abc3a39e6f08e4164ebf1447a732906d39eb9b99b7919ef39"
2402
+ dependencies = [
2403
+ "hashbrown 0.16.1",
2404
+ ]
2405
+
2406
+ [[package]]
2407
+ name = "md-5"
2408
+ version = "0.11.0"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
2411
+ dependencies = [
2412
+ "cfg-if",
2413
+ "digest 0.11.3",
2414
+ ]
2415
+
2416
+ [[package]]
2417
+ name = "md5"
2418
+ version = "0.8.0"
2419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2420
+ checksum = "ae960838283323069879657ca3de837e9f7bbb4c7bf6ea7f1b290d5e9476d2e0"
2421
+
2422
+ [[package]]
2423
+ name = "memchr"
2424
+ version = "2.8.2"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
2427
+
2428
+ [[package]]
2429
+ name = "memmap2"
2430
+ version = "0.9.11"
2431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2432
+ checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
2433
+ dependencies = [
2434
+ "libc",
2435
+ ]
2436
+
2437
+ [[package]]
2438
+ name = "memoffset"
2439
+ version = "0.9.1"
2440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2441
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2442
+ dependencies = [
2443
+ "autocfg",
2444
+ ]
2445
+
2446
+ [[package]]
2447
+ name = "mime"
2448
+ version = "0.3.17"
2449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2450
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2451
+
2452
+ [[package]]
2453
+ name = "mime_guess"
2454
+ version = "2.0.5"
2455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2456
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2457
+ dependencies = [
2458
+ "mime",
2459
+ "unicase",
2460
+ ]
2461
+
2462
+ [[package]]
2463
+ name = "mio"
2464
+ version = "1.2.1"
2465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2466
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
2467
+ dependencies = [
2468
+ "libc",
2469
+ "wasi",
2470
+ "windows-sys 0.61.2",
2471
+ ]
2472
+
2473
+ [[package]]
2474
+ name = "napi"
2475
+ version = "3.9.4"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "b41bda2ac390efb5e8d22025d925ccc3f3807d8c1bea6d19b36127247c4b8f83"
2478
+ dependencies = [
2479
+ "bitflags",
2480
+ "ctor",
2481
+ "futures",
2482
+ "napi-build",
2483
+ "napi-sys",
2484
+ "nohash-hasher",
2485
+ "rustc-hash",
2486
+ "tokio",
2487
+ ]
2488
+
2489
+ [[package]]
2490
+ name = "napi-build"
2491
+ version = "2.3.2"
2492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2493
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
2494
+
2495
+ [[package]]
2496
+ name = "napi-derive"
2497
+ version = "3.5.7"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "61d66f70256ad5aef58659966064471d0ad90e2897bc36a5a5e0389c85aabc1e"
2500
+ dependencies = [
2501
+ "convert_case",
2502
+ "ctor",
2503
+ "napi-derive-backend",
2504
+ "proc-macro2",
2505
+ "quote",
2506
+ "syn",
2507
+ ]
2508
+
2509
+ [[package]]
2510
+ name = "napi-derive-backend"
2511
+ version = "5.0.5"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "81b4b08f15eed7a2a20c3f4c6314013fc3ac890a3afa9892b594485299ebdb2d"
2514
+ dependencies = [
2515
+ "convert_case",
2516
+ "proc-macro2",
2517
+ "quote",
2518
+ "semver",
2519
+ "syn",
2520
+ ]
2521
+
2522
+ [[package]]
2523
+ name = "napi-sys"
2524
+ version = "3.2.2"
2525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2526
+ checksum = "1f5bcdf71abd3a50d00b49c1c2c75251cb3c913777d6139cd37dabc093a5e400"
2527
+ dependencies = [
2528
+ "libloading",
2529
+ ]
2530
+
2531
+ [[package]]
2532
+ name = "nohash-hasher"
2533
+ version = "0.2.0"
2534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
2536
+
2537
+ [[package]]
2538
+ name = "normalize-line-endings"
2539
+ version = "0.3.0"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
2542
+
2543
+ [[package]]
2544
+ name = "num-conv"
2545
+ version = "0.2.2"
2546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2547
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
2548
+
2549
+ [[package]]
2550
+ name = "num-integer"
2551
+ version = "0.1.46"
2552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2553
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2554
+ dependencies = [
2555
+ "num-traits",
2556
+ ]
2557
+
2558
+ [[package]]
2559
+ name = "num-traits"
2560
+ version = "0.2.19"
2561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2562
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2563
+ dependencies = [
2564
+ "autocfg",
2565
+ ]
2566
+
2567
+ [[package]]
2568
+ name = "once_cell"
2569
+ version = "1.21.4"
2570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2571
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2572
+
2573
+ [[package]]
2574
+ name = "once_cell_polyfill"
2575
+ version = "1.70.2"
2576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2577
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2578
+
2579
+ [[package]]
2580
+ name = "oorandom"
2581
+ version = "11.1.5"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
2584
+
2585
+ [[package]]
2586
+ name = "openssl-probe"
2587
+ version = "0.2.1"
2588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2589
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
2590
+
2591
+ [[package]]
2592
+ name = "opentelemetry"
2593
+ version = "0.32.0"
2594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2595
+ checksum = "b0142c63252a9e054e68a4c61a5778f7b14f576274d593f8ce883d191a099682"
2596
+ dependencies = [
2597
+ "futures-core",
2598
+ "futures-sink",
2599
+ "js-sys",
2600
+ "pin-project-lite",
2601
+ "thiserror",
2602
+ "tracing",
2603
+ ]
2604
+
2605
+ [[package]]
2606
+ name = "opentelemetry-semantic-conventions"
2607
+ version = "0.32.0"
2608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2609
+ checksum = "6ca2f98a0437b427b4b08f19f1caa3c44db885a202bc12cfea13d6c702243d68"
2610
+
2611
+ [[package]]
2612
+ name = "opentelemetry_sdk"
2613
+ version = "0.32.1"
2614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2615
+ checksum = "9b59f80e1ac4d5ff7a2db8fb6c80badb7f0f3f858211fba08dd9aaec750894f9"
2616
+ dependencies = [
2617
+ "futures-channel",
2618
+ "futures-executor",
2619
+ "futures-util",
2620
+ "opentelemetry",
2621
+ "percent-encoding",
2622
+ "portable-atomic",
2623
+ "rand 0.9.4",
2624
+ "thiserror",
2625
+ ]
2626
+
2627
+ [[package]]
2628
+ name = "os_pipe"
2629
+ version = "1.2.3"
2630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2631
+ checksum = "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967"
2632
+ dependencies = [
2633
+ "libc",
2634
+ "windows-sys 0.61.2",
2635
+ ]
2636
+
2637
+ [[package]]
2638
+ name = "outref"
2639
+ version = "0.5.2"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
2642
+
2643
+ [[package]]
2644
+ name = "p256"
2645
+ version = "0.13.2"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
2648
+ dependencies = [
2649
+ "ecdsa",
2650
+ "elliptic-curve",
2651
+ "primeorder",
2652
+ "sha2 0.10.9",
2653
+ ]
2654
+
2655
+ [[package]]
2656
+ name = "page_size"
2657
+ version = "0.6.0"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
2660
+ dependencies = [
2661
+ "libc",
2662
+ "winapi",
2663
+ ]
2664
+
2665
+ [[package]]
2666
+ name = "pem-rfc7468"
2667
+ version = "0.7.0"
2668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2669
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
2670
+ dependencies = [
2671
+ "base64ct",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "percent-encoding"
2676
+ version = "2.3.2"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2679
+
2680
+ [[package]]
2681
+ name = "pin-project"
2682
+ version = "1.1.13"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
2685
+ dependencies = [
2686
+ "pin-project-internal",
2687
+ ]
2688
+
2689
+ [[package]]
2690
+ name = "pin-project-internal"
2691
+ version = "1.1.13"
2692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2693
+ checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
2694
+ dependencies = [
2695
+ "proc-macro2",
2696
+ "quote",
2697
+ "syn",
2698
+ ]
2699
+
2700
+ [[package]]
2701
+ name = "pin-project-lite"
2702
+ version = "0.2.17"
2703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2704
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2705
+
2706
+ [[package]]
2707
+ name = "pin-utils"
2708
+ version = "0.1.0"
2709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2710
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2711
+
2712
+ [[package]]
2713
+ name = "pkcs8"
2714
+ version = "0.10.2"
2715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2716
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2717
+ dependencies = [
2718
+ "der",
2719
+ "spki",
2720
+ ]
2721
+
2722
+ [[package]]
2723
+ name = "pkg-config"
2724
+ version = "0.3.33"
2725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2726
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
2727
+
2728
+ [[package]]
2729
+ name = "portable-atomic"
2730
+ version = "1.13.1"
2731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2732
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2733
+
2734
+ [[package]]
2735
+ name = "potential_utf"
2736
+ version = "0.1.5"
2737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2738
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2739
+ dependencies = [
2740
+ "zerovec",
2741
+ ]
2742
+
2743
+ [[package]]
2744
+ name = "powerfmt"
2745
+ version = "0.2.0"
2746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2747
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2748
+
2749
+ [[package]]
2750
+ name = "ppv-lite86"
2751
+ version = "0.2.21"
2752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2753
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2754
+ dependencies = [
2755
+ "zerocopy",
2756
+ ]
2757
+
2758
+ [[package]]
2759
+ name = "predicates"
2760
+ version = "3.1.4"
2761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2762
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
2763
+ dependencies = [
2764
+ "anstyle",
2765
+ "difflib",
2766
+ "float-cmp",
2767
+ "normalize-line-endings",
2768
+ "predicates-core",
2769
+ "regex",
2770
+ ]
2771
+
2772
+ [[package]]
2773
+ name = "predicates-core"
2774
+ version = "1.0.10"
2775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2776
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
2777
+
2778
+ [[package]]
2779
+ name = "predicates-tree"
2780
+ version = "1.0.13"
2781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2782
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
2783
+ dependencies = [
2784
+ "predicates-core",
2785
+ "termtree",
2786
+ ]
2787
+
2788
+ [[package]]
2789
+ name = "primeorder"
2790
+ version = "0.13.6"
2791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2792
+ checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
2793
+ dependencies = [
2794
+ "elliptic-curve",
2795
+ ]
2796
+
2797
+ [[package]]
2798
+ name = "proc-macro-error-attr2"
2799
+ version = "2.0.0"
2800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2801
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
2802
+ dependencies = [
2803
+ "proc-macro2",
2804
+ "quote",
2805
+ ]
2806
+
2807
+ [[package]]
2808
+ name = "proc-macro-error2"
2809
+ version = "2.0.1"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
2812
+ dependencies = [
2813
+ "proc-macro-error-attr2",
2814
+ "proc-macro2",
2815
+ "quote",
2816
+ "syn",
2817
+ ]
2818
+
2819
+ [[package]]
2820
+ name = "proc-macro2"
2821
+ version = "1.0.106"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2824
+ dependencies = [
2825
+ "unicode-ident",
2826
+ ]
2827
+
2828
+ [[package]]
2829
+ name = "proptest"
2830
+ version = "1.11.0"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
2833
+ dependencies = [
2834
+ "bit-set",
2835
+ "bit-vec",
2836
+ "bitflags",
2837
+ "num-traits",
2838
+ "rand 0.9.4",
2839
+ "rand_chacha",
2840
+ "rand_xorshift",
2841
+ "regex-syntax",
2842
+ "rusty-fork",
2843
+ "tempfile",
2844
+ "unarray",
2845
+ ]
2846
+
2847
+ [[package]]
2848
+ name = "prost"
2849
+ version = "0.14.4"
2850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2851
+ checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1"
2852
+ dependencies = [
2853
+ "bytes",
2854
+ "prost-derive",
2855
+ ]
2856
+
2857
+ [[package]]
2858
+ name = "prost-derive"
2859
+ version = "0.14.4"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
2862
+ dependencies = [
2863
+ "anyhow",
2864
+ "itertools 0.14.0",
2865
+ "proc-macro2",
2866
+ "quote",
2867
+ "syn",
2868
+ ]
2869
+
2870
+ [[package]]
2871
+ name = "prost-types"
2872
+ version = "0.14.4"
2873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2874
+ checksum = "f94967dc7688f3054c7fac87473ffae4cc4c3904800e2d9f5b857246d8963b0a"
2875
+ dependencies = [
2876
+ "prost",
2877
+ ]
2878
+
2879
+ [[package]]
2880
+ name = "pyo3"
2881
+ version = "0.23.5"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
2884
+ dependencies = [
2885
+ "cfg-if",
2886
+ "indoc",
2887
+ "libc",
2888
+ "memoffset",
2889
+ "once_cell",
2890
+ "portable-atomic",
2891
+ "pyo3-build-config",
2892
+ "pyo3-ffi",
2893
+ "pyo3-macros",
2894
+ "unindent",
2895
+ ]
2896
+
2897
+ [[package]]
2898
+ name = "pyo3-async-runtimes"
2899
+ version = "0.23.0"
2900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2901
+ checksum = "977dc837525cfd22919ba6a831413854beb7c99a256c03bf8624ad707e45810e"
2902
+ dependencies = [
2903
+ "futures",
2904
+ "once_cell",
2905
+ "pin-project-lite",
2906
+ "pyo3",
2907
+ "tokio",
2908
+ ]
2909
+
2910
+ [[package]]
2911
+ name = "pyo3-build-config"
2912
+ version = "0.23.5"
2913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2914
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
2915
+ dependencies = [
2916
+ "once_cell",
2917
+ "target-lexicon",
2918
+ ]
2919
+
2920
+ [[package]]
2921
+ name = "pyo3-ffi"
2922
+ version = "0.23.5"
2923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2924
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
2925
+ dependencies = [
2926
+ "libc",
2927
+ "pyo3-build-config",
2928
+ ]
2929
+
2930
+ [[package]]
2931
+ name = "pyo3-macros"
2932
+ version = "0.23.5"
2933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2934
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
2935
+ dependencies = [
2936
+ "proc-macro2",
2937
+ "pyo3-macros-backend",
2938
+ "quote",
2939
+ "syn",
2940
+ ]
2941
+
2942
+ [[package]]
2943
+ name = "pyo3-macros-backend"
2944
+ version = "0.23.5"
2945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2946
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
2947
+ dependencies = [
2948
+ "heck 0.5.0",
2949
+ "proc-macro2",
2950
+ "pyo3-build-config",
2951
+ "quote",
2952
+ "syn",
2953
+ ]
2954
+
2955
+ [[package]]
2956
+ name = "quick-error"
2957
+ version = "1.2.3"
2958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2959
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2960
+
2961
+ [[package]]
2962
+ name = "quote"
2963
+ version = "1.0.46"
2964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2965
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
2966
+ dependencies = [
2967
+ "proc-macro2",
2968
+ ]
2969
+
2970
+ [[package]]
2971
+ name = "r-efi"
2972
+ version = "5.3.0"
2973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2974
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2975
+
2976
+ [[package]]
2977
+ name = "r-efi"
2978
+ version = "6.0.0"
2979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2980
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2981
+
2982
+ [[package]]
2983
+ name = "rand"
2984
+ version = "0.9.4"
2985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2986
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2987
+ dependencies = [
2988
+ "rand_chacha",
2989
+ "rand_core 0.9.5",
2990
+ ]
2991
+
2992
+ [[package]]
2993
+ name = "rand"
2994
+ version = "0.10.1"
2995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2996
+ checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
2997
+ dependencies = [
2998
+ "chacha20",
2999
+ "getrandom 0.4.3",
3000
+ "rand_core 0.10.1",
3001
+ ]
3002
+
3003
+ [[package]]
3004
+ name = "rand_chacha"
3005
+ version = "0.9.0"
3006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3007
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
3008
+ dependencies = [
3009
+ "ppv-lite86",
3010
+ "rand_core 0.9.5",
3011
+ ]
3012
+
3013
+ [[package]]
3014
+ name = "rand_core"
3015
+ version = "0.6.4"
3016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3017
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
3018
+ dependencies = [
3019
+ "getrandom 0.2.17",
3020
+ ]
3021
+
3022
+ [[package]]
3023
+ name = "rand_core"
3024
+ version = "0.9.5"
3025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3026
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
3027
+ dependencies = [
3028
+ "getrandom 0.3.4",
3029
+ ]
3030
+
3031
+ [[package]]
3032
+ name = "rand_core"
3033
+ version = "0.10.1"
3034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3035
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
3036
+
3037
+ [[package]]
3038
+ name = "rand_xorshift"
3039
+ version = "0.4.0"
3040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3041
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
3042
+ dependencies = [
3043
+ "rand_core 0.9.5",
3044
+ ]
3045
+
3046
+ [[package]]
3047
+ name = "rayon"
3048
+ version = "1.12.0"
3049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3050
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
3051
+ dependencies = [
3052
+ "either",
3053
+ "rayon-core",
3054
+ ]
3055
+
3056
+ [[package]]
3057
+ name = "rayon-core"
3058
+ version = "1.13.0"
3059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3060
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
3061
+ dependencies = [
3062
+ "crossbeam-deque",
3063
+ "crossbeam-utils",
3064
+ ]
3065
+
3066
+ [[package]]
3067
+ name = "redb"
3068
+ version = "4.1.0"
3069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3070
+ checksum = "8e925444704b5f17d32bf42f5b6e2df050bceebc3dcd6e71cc73dafe8092e839"
3071
+ dependencies = [
3072
+ "libc",
3073
+ ]
3074
+
3075
+ [[package]]
3076
+ name = "ref-cast"
3077
+ version = "1.0.25"
3078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3079
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
3080
+ dependencies = [
3081
+ "ref-cast-impl",
3082
+ ]
3083
+
3084
+ [[package]]
3085
+ name = "ref-cast-impl"
3086
+ version = "1.0.25"
3087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3088
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
3089
+ dependencies = [
3090
+ "proc-macro2",
3091
+ "quote",
3092
+ "syn",
3093
+ ]
3094
+
3095
+ [[package]]
3096
+ name = "regex"
3097
+ version = "1.12.4"
3098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3099
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
3100
+ dependencies = [
3101
+ "aho-corasick",
3102
+ "memchr",
3103
+ "regex-automata",
3104
+ "regex-syntax",
3105
+ ]
3106
+
3107
+ [[package]]
3108
+ name = "regex-automata"
3109
+ version = "0.4.14"
3110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3111
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
3112
+ dependencies = [
3113
+ "aho-corasick",
3114
+ "memchr",
3115
+ "regex-syntax",
3116
+ ]
3117
+
3118
+ [[package]]
3119
+ name = "regex-lite"
3120
+ version = "0.1.9"
3121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3122
+ checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
3123
+
3124
+ [[package]]
3125
+ name = "regex-syntax"
3126
+ version = "0.8.11"
3127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3128
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
3129
+
3130
+ [[package]]
3131
+ name = "reqwest"
3132
+ version = "0.13.4"
3133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3134
+ checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
3135
+ dependencies = [
3136
+ "base64",
3137
+ "bytes",
3138
+ "futures-core",
3139
+ "futures-util",
3140
+ "http 1.4.2",
3141
+ "http-body 1.0.1",
3142
+ "http-body-util",
3143
+ "hyper",
3144
+ "hyper-rustls",
3145
+ "hyper-util",
3146
+ "js-sys",
3147
+ "log",
3148
+ "mime_guess",
3149
+ "percent-encoding",
3150
+ "pin-project-lite",
3151
+ "rustls",
3152
+ "rustls-pki-types",
3153
+ "rustls-platform-verifier",
3154
+ "serde",
3155
+ "serde_json",
3156
+ "serde_urlencoded",
3157
+ "sync_wrapper",
3158
+ "tokio",
3159
+ "tokio-rustls",
3160
+ "tokio-util",
3161
+ "tower",
3162
+ "tower-http",
3163
+ "tower-service",
3164
+ "url",
3165
+ "wasm-bindgen",
3166
+ "wasm-bindgen-futures",
3167
+ "wasm-streams",
3168
+ "web-sys",
3169
+ ]
3170
+
3171
+ [[package]]
3172
+ name = "rfc6979"
3173
+ version = "0.4.0"
3174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3175
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
3176
+ dependencies = [
3177
+ "hmac 0.12.1",
3178
+ "subtle",
3179
+ ]
3180
+
3181
+ [[package]]
3182
+ name = "ring"
3183
+ version = "0.17.14"
3184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3185
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3186
+ dependencies = [
3187
+ "cc",
3188
+ "cfg-if",
3189
+ "getrandom 0.2.17",
3190
+ "libc",
3191
+ "untrusted",
3192
+ "windows-sys 0.52.0",
3193
+ ]
3194
+
3195
+ [[package]]
3196
+ name = "roff"
3197
+ version = "1.1.1"
3198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3199
+ checksum = "323c417e1d9665a65b263ec744ba09030cfb277e9daa0b018a4ab62e57bc8189"
3200
+
3201
+ [[package]]
3202
+ name = "rustc-hash"
3203
+ version = "2.1.2"
3204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3205
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
3206
+
3207
+ [[package]]
3208
+ name = "rustc_version"
3209
+ version = "0.4.1"
3210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3211
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3212
+ dependencies = [
3213
+ "semver",
3214
+ ]
3215
+
3216
+ [[package]]
3217
+ name = "rustix"
3218
+ version = "1.1.4"
3219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3220
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
3221
+ dependencies = [
3222
+ "bitflags",
3223
+ "errno",
3224
+ "libc",
3225
+ "linux-raw-sys",
3226
+ "windows-sys 0.61.2",
3227
+ ]
3228
+
3229
+ [[package]]
3230
+ name = "rustls"
3231
+ version = "0.23.41"
3232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3233
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
3234
+ dependencies = [
3235
+ "log",
3236
+ "once_cell",
3237
+ "ring",
3238
+ "rustls-pki-types",
3239
+ "rustls-webpki",
3240
+ "subtle",
3241
+ "zeroize",
3242
+ ]
3243
+
3244
+ [[package]]
3245
+ name = "rustls-native-certs"
3246
+ version = "0.8.4"
3247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3248
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
3249
+ dependencies = [
3250
+ "openssl-probe",
3251
+ "rustls-pki-types",
3252
+ "schannel",
3253
+ "security-framework",
3254
+ ]
3255
+
3256
+ [[package]]
3257
+ name = "rustls-pki-types"
3258
+ version = "1.14.1"
3259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3260
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
3261
+ dependencies = [
3262
+ "zeroize",
3263
+ ]
3264
+
3265
+ [[package]]
3266
+ name = "rustls-platform-verifier"
3267
+ version = "0.7.0"
3268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3269
+ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
3270
+ dependencies = [
3271
+ "core-foundation",
3272
+ "core-foundation-sys",
3273
+ "jni",
3274
+ "log",
3275
+ "once_cell",
3276
+ "rustls",
3277
+ "rustls-native-certs",
3278
+ "rustls-platform-verifier-android",
3279
+ "rustls-webpki",
3280
+ "security-framework",
3281
+ "security-framework-sys",
3282
+ "webpki-root-certs",
3283
+ "windows-sys 0.61.2",
3284
+ ]
3285
+
3286
+ [[package]]
3287
+ name = "rustls-platform-verifier-android"
3288
+ version = "0.1.1"
3289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3290
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
3291
+
3292
+ [[package]]
3293
+ name = "rustls-webpki"
3294
+ version = "0.103.13"
3295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3296
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
3297
+ dependencies = [
3298
+ "ring",
3299
+ "rustls-pki-types",
3300
+ "untrusted",
3301
+ ]
3302
+
3303
+ [[package]]
3304
+ name = "rustversion"
3305
+ version = "1.0.22"
3306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3307
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3308
+
3309
+ [[package]]
3310
+ name = "rusty-fork"
3311
+ version = "0.3.1"
3312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3313
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
3314
+ dependencies = [
3315
+ "fnv",
3316
+ "quick-error",
3317
+ "tempfile",
3318
+ "wait-timeout",
3319
+ ]
3320
+
3321
+ [[package]]
3322
+ name = "ryu"
3323
+ version = "1.0.23"
3324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3325
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
3326
+
3327
+ [[package]]
3328
+ name = "same-file"
3329
+ version = "1.0.6"
3330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3331
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3332
+ dependencies = [
3333
+ "winapi-util",
3334
+ ]
3335
+
3336
+ [[package]]
3337
+ name = "schannel"
3338
+ version = "0.1.29"
3339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3340
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
3341
+ dependencies = [
3342
+ "windows-sys 0.61.2",
3343
+ ]
3344
+
3345
+ [[package]]
3346
+ name = "schemars"
3347
+ version = "0.9.0"
3348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3349
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
3350
+ dependencies = [
3351
+ "dyn-clone",
3352
+ "ref-cast",
3353
+ "serde",
3354
+ "serde_json",
3355
+ ]
3356
+
3357
+ [[package]]
3358
+ name = "schemars"
3359
+ version = "1.2.1"
3360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3361
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
3362
+ dependencies = [
3363
+ "dyn-clone",
3364
+ "ref-cast",
3365
+ "serde",
3366
+ "serde_json",
3367
+ ]
3368
+
3369
+ [[package]]
3370
+ name = "sec1"
3371
+ version = "0.7.3"
3372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3373
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
3374
+ dependencies = [
3375
+ "base16ct",
3376
+ "der",
3377
+ "generic-array",
3378
+ "pkcs8",
3379
+ "subtle",
3380
+ "zeroize",
3381
+ ]
3382
+
3383
+ [[package]]
3384
+ name = "security-framework"
3385
+ version = "3.7.0"
3386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3387
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
3388
+ dependencies = [
3389
+ "bitflags",
3390
+ "core-foundation",
3391
+ "core-foundation-sys",
3392
+ "libc",
3393
+ "security-framework-sys",
3394
+ ]
3395
+
3396
+ [[package]]
3397
+ name = "security-framework-sys"
3398
+ version = "2.17.0"
3399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3400
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
3401
+ dependencies = [
3402
+ "core-foundation-sys",
3403
+ "libc",
3404
+ ]
3405
+
3406
+ [[package]]
3407
+ name = "semver"
3408
+ version = "1.0.28"
3409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3410
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
3411
+
3412
+ [[package]]
3413
+ name = "serde"
3414
+ version = "1.0.228"
3415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3416
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3417
+ dependencies = [
3418
+ "serde_core",
3419
+ "serde_derive",
3420
+ ]
3421
+
3422
+ [[package]]
3423
+ name = "serde_core"
3424
+ version = "1.0.228"
3425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3426
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3427
+ dependencies = [
3428
+ "serde_derive",
3429
+ ]
3430
+
3431
+ [[package]]
3432
+ name = "serde_derive"
3433
+ version = "1.0.228"
3434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3435
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3436
+ dependencies = [
3437
+ "proc-macro2",
3438
+ "quote",
3439
+ "syn",
3440
+ ]
3441
+
3442
+ [[package]]
3443
+ name = "serde_json"
3444
+ version = "1.0.150"
3445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3446
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
3447
+ dependencies = [
3448
+ "itoa",
3449
+ "memchr",
3450
+ "serde",
3451
+ "serde_core",
3452
+ "zmij",
3453
+ ]
3454
+
3455
+ [[package]]
3456
+ name = "serde_spanned"
3457
+ version = "0.6.9"
3458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3459
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
3460
+ dependencies = [
3461
+ "serde",
3462
+ ]
3463
+
3464
+ [[package]]
3465
+ name = "serde_spanned"
3466
+ version = "1.1.1"
3467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3468
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
3469
+ dependencies = [
3470
+ "serde_core",
3471
+ ]
3472
+
3473
+ [[package]]
3474
+ name = "serde_urlencoded"
3475
+ version = "0.7.1"
3476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3477
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3478
+ dependencies = [
3479
+ "form_urlencoded",
3480
+ "itoa",
3481
+ "ryu",
3482
+ "serde",
3483
+ ]
3484
+
3485
+ [[package]]
3486
+ name = "serde_with"
3487
+ version = "3.21.0"
3488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3489
+ checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
3490
+ dependencies = [
3491
+ "base64",
3492
+ "bs58",
3493
+ "chrono",
3494
+ "hex",
3495
+ "indexmap 1.9.3",
3496
+ "indexmap 2.14.0",
3497
+ "schemars 0.9.0",
3498
+ "schemars 1.2.1",
3499
+ "serde_core",
3500
+ "serde_json",
3501
+ "serde_with_macros",
3502
+ "time",
3503
+ ]
3504
+
3505
+ [[package]]
3506
+ name = "serde_with_macros"
3507
+ version = "3.21.0"
3508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3509
+ checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
3510
+ dependencies = [
3511
+ "darling",
3512
+ "proc-macro2",
3513
+ "quote",
3514
+ "syn",
3515
+ ]
3516
+
3517
+ [[package]]
3518
+ name = "sha1"
3519
+ version = "0.10.6"
3520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3521
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3522
+ dependencies = [
3523
+ "cfg-if",
3524
+ "cpufeatures 0.2.17",
3525
+ "digest 0.10.7",
3526
+ ]
3527
+
3528
+ [[package]]
3529
+ name = "sha1"
3530
+ version = "0.11.0"
3531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3532
+ checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
3533
+ dependencies = [
3534
+ "cfg-if",
3535
+ "cpufeatures 0.3.0",
3536
+ "digest 0.11.3",
3537
+ ]
3538
+
3539
+ [[package]]
3540
+ name = "sha2"
3541
+ version = "0.10.9"
3542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3543
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3544
+ dependencies = [
3545
+ "cfg-if",
3546
+ "cpufeatures 0.2.17",
3547
+ "digest 0.10.7",
3548
+ ]
3549
+
3550
+ [[package]]
3551
+ name = "sha2"
3552
+ version = "0.11.0"
3553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3554
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
3555
+ dependencies = [
3556
+ "cfg-if",
3557
+ "cpufeatures 0.3.0",
3558
+ "digest 0.11.3",
3559
+ ]
3560
+
3561
+ [[package]]
3562
+ name = "sharded-slab"
3563
+ version = "0.1.7"
3564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3565
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3566
+ dependencies = [
3567
+ "lazy_static",
3568
+ ]
3569
+
3570
+ [[package]]
3571
+ name = "shlex"
3572
+ version = "1.3.0"
3573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3574
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3575
+
3576
+ [[package]]
3577
+ name = "shlex"
3578
+ version = "2.0.1"
3579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3580
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
3581
+
3582
+ [[package]]
3583
+ name = "signal-hook-registry"
3584
+ version = "1.4.8"
3585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3586
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
3587
+ dependencies = [
3588
+ "errno",
3589
+ "libc",
3590
+ ]
3591
+
3592
+ [[package]]
3593
+ name = "signature"
3594
+ version = "2.2.0"
3595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3596
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
3597
+ dependencies = [
3598
+ "digest 0.10.7",
3599
+ "rand_core 0.6.4",
3600
+ ]
3601
+
3602
+ [[package]]
3603
+ name = "simd_cesu8"
3604
+ version = "1.1.1"
3605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3606
+ checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
3607
+ dependencies = [
3608
+ "rustc_version",
3609
+ "simdutf8",
3610
+ ]
3611
+
3612
+ [[package]]
3613
+ name = "simdutf8"
3614
+ version = "0.1.5"
3615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3616
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
3617
+
3618
+ [[package]]
3619
+ name = "similar"
3620
+ version = "3.1.1"
3621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3622
+ checksum = "e6505efef05804732ed8a3f2d4f279429eb485bd69d5b0cc6b19cc02005cda16"
3623
+ dependencies = [
3624
+ "bstr",
3625
+ ]
3626
+
3627
+ [[package]]
3628
+ name = "slab"
3629
+ version = "0.4.12"
3630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3631
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3632
+
3633
+ [[package]]
3634
+ name = "smallvec"
3635
+ version = "1.15.2"
3636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3637
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
3638
+
3639
+ [[package]]
3640
+ name = "snapbox"
3641
+ version = "1.2.2"
3642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3643
+ checksum = "8de56eb4784a2c5c1efede55a0f06fbf481bc12b42b355b9525c15db1e3581a8"
3644
+ dependencies = [
3645
+ "anstream",
3646
+ "anstyle",
3647
+ "content_inspector",
3648
+ "dunce",
3649
+ "filetime",
3650
+ "libc",
3651
+ "normalize-line-endings",
3652
+ "os_pipe",
3653
+ "similar",
3654
+ "snapbox-macros",
3655
+ "tempfile",
3656
+ "wait-timeout",
3657
+ "walkdir",
3658
+ "windows-sys 0.61.2",
3659
+ ]
3660
+
3661
+ [[package]]
3662
+ name = "snapbox-macros"
3663
+ version = "1.1.0"
3664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3665
+ checksum = "ed4a172e483585ebbc7c7f7d1705ca7e3f94f606ed78caa14805673189fd5455"
3666
+ dependencies = [
3667
+ "anstream",
3668
+ ]
3669
+
3670
+ [[package]]
3671
+ name = "snapdir"
3672
+ version = "1.11.0"
3673
+ dependencies = [
3674
+ "snapdir-cli",
3675
+ ]
3676
+
3677
+ [[package]]
3678
+ name = "snapdir-api"
3679
+ version = "1.11.0"
3680
+ dependencies = [
3681
+ "assert_cmd",
3682
+ "snapdir-catalog",
3683
+ "snapdir-core",
3684
+ "snapdir-stores",
3685
+ "tempfile",
3686
+ "thiserror",
3687
+ "tokio",
3688
+ ]
3689
+
3690
+ [[package]]
3691
+ name = "snapdir-benches"
3692
+ version = "1.11.0"
3693
+ dependencies = [
3694
+ "criterion",
3695
+ "iai-callgrind",
3696
+ "snapdir-core",
3697
+ "snapdir-stores",
3698
+ "tempfile",
3699
+ ]
3700
+
3701
+ [[package]]
3702
+ name = "snapdir-catalog"
3703
+ version = "1.11.0"
3704
+ dependencies = [
3705
+ "redb",
3706
+ "serde",
3707
+ "serde_json",
3708
+ "thiserror",
3709
+ ]
3710
+
3711
+ [[package]]
3712
+ name = "snapdir-cli"
3713
+ version = "1.11.0"
3714
+ dependencies = [
3715
+ "anyhow",
3716
+ "assert_cmd",
3717
+ "assert_fs",
3718
+ "clap",
3719
+ "clap_complete",
3720
+ "clap_mangen",
3721
+ "libc",
3722
+ "predicates",
3723
+ "snapdir-catalog",
3724
+ "snapdir-core",
3725
+ "snapdir-stores",
3726
+ "trycmd",
3727
+ ]
3728
+
3729
+ [[package]]
3730
+ name = "snapdir-core"
3731
+ version = "1.11.0"
3732
+ dependencies = [
3733
+ "blake3",
3734
+ "libc",
3735
+ "md-5",
3736
+ "proptest",
3737
+ "rayon",
3738
+ "regex",
3739
+ "sha2 0.11.0",
3740
+ "thiserror",
3741
+ ]
3742
+
3743
+ [[package]]
3744
+ name = "snapdir-ffi"
3745
+ version = "1.11.0"
3746
+ dependencies = [
3747
+ "cbindgen",
3748
+ "libc",
3749
+ "serde_json",
3750
+ "snapdir-api",
3751
+ "tokio",
3752
+ ]
3753
+
3754
+ [[package]]
3755
+ name = "snapdir-node"
3756
+ version = "1.11.0"
3757
+ dependencies = [
3758
+ "napi",
3759
+ "napi-build",
3760
+ "napi-derive",
3761
+ "snapdir-api",
3762
+ "tokio",
3763
+ ]
3764
+
3765
+ [[package]]
3766
+ name = "snapdir-python"
3767
+ version = "0.1.0"
3768
+ dependencies = [
3769
+ "pyo3",
3770
+ "pyo3-async-runtimes",
3771
+ "snapdir-api",
3772
+ "tokio",
3773
+ ]
3774
+
3775
+ [[package]]
3776
+ name = "snapdir-ssh-store"
3777
+ version = "1.11.0"
3778
+ dependencies = [
3779
+ "snapdir-core",
3780
+ "snapdir-stores",
3781
+ ]
3782
+
3783
+ [[package]]
3784
+ name = "snapdir-stores"
3785
+ version = "1.11.0"
3786
+ dependencies = [
3787
+ "aws-config",
3788
+ "aws-sdk-s3",
3789
+ "aws-smithy-http-client",
3790
+ "aws-smithy-runtime-api",
3791
+ "blake3",
3792
+ "bytes",
3793
+ "futures",
3794
+ "google-cloud-gax",
3795
+ "google-cloud-storage",
3796
+ "http 1.4.2",
3797
+ "libc",
3798
+ "rayon",
3799
+ "rustls",
3800
+ "snapdir-core",
3801
+ "thiserror",
3802
+ "tokio",
3803
+ "zstd",
3804
+ ]
3805
+
3806
+ [[package]]
3807
+ name = "socket2"
3808
+ version = "0.6.4"
3809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3810
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
3811
+ dependencies = [
3812
+ "libc",
3813
+ "windows-sys 0.61.2",
3814
+ ]
3815
+
3816
+ [[package]]
3817
+ name = "spin"
3818
+ version = "0.10.0"
3819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3820
+ checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
3821
+
3822
+ [[package]]
3823
+ name = "spki"
3824
+ version = "0.7.3"
3825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3826
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
3827
+ dependencies = [
3828
+ "base64ct",
3829
+ "der",
3830
+ ]
3831
+
3832
+ [[package]]
3833
+ name = "stable_deref_trait"
3834
+ version = "1.2.1"
3835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3836
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3837
+
3838
+ [[package]]
3839
+ name = "strsim"
3840
+ version = "0.11.1"
3841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3842
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3843
+
3844
+ [[package]]
3845
+ name = "subtle"
3846
+ version = "2.6.1"
3847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3848
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3849
+
3850
+ [[package]]
3851
+ name = "syn"
3852
+ version = "2.0.118"
3853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3854
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
3855
+ dependencies = [
3856
+ "proc-macro2",
3857
+ "quote",
3858
+ "unicode-ident",
3859
+ ]
3860
+
3861
+ [[package]]
3862
+ name = "sync_wrapper"
3863
+ version = "1.0.2"
3864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3865
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3866
+ dependencies = [
3867
+ "futures-core",
3868
+ ]
3869
+
3870
+ [[package]]
3871
+ name = "synstructure"
3872
+ version = "0.13.2"
3873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3874
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3875
+ dependencies = [
3876
+ "proc-macro2",
3877
+ "quote",
3878
+ "syn",
3879
+ ]
3880
+
3881
+ [[package]]
3882
+ name = "target-lexicon"
3883
+ version = "0.12.16"
3884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3885
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3886
+
3887
+ [[package]]
3888
+ name = "tempfile"
3889
+ version = "3.27.0"
3890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3891
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3892
+ dependencies = [
3893
+ "fastrand",
3894
+ "getrandom 0.4.3",
3895
+ "once_cell",
3896
+ "rustix",
3897
+ "windows-sys 0.61.2",
3898
+ ]
3899
+
3900
+ [[package]]
3901
+ name = "termtree"
3902
+ version = "0.5.1"
3903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3904
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
3905
+
3906
+ [[package]]
3907
+ name = "thiserror"
3908
+ version = "2.0.18"
3909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3910
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3911
+ dependencies = [
3912
+ "thiserror-impl",
3913
+ ]
3914
+
3915
+ [[package]]
3916
+ name = "thiserror-impl"
3917
+ version = "2.0.18"
3918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3919
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3920
+ dependencies = [
3921
+ "proc-macro2",
3922
+ "quote",
3923
+ "syn",
3924
+ ]
3925
+
3926
+ [[package]]
3927
+ name = "thread_local"
3928
+ version = "1.1.9"
3929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3930
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3931
+ dependencies = [
3932
+ "cfg-if",
3933
+ ]
3934
+
3935
+ [[package]]
3936
+ name = "time"
3937
+ version = "0.3.51"
3938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3939
+ checksum = "85c17d80feb7334b40c484e45ed1a5273dfd8bfda537c3be2e74a06a6686f327"
3940
+ dependencies = [
3941
+ "deranged",
3942
+ "num-conv",
3943
+ "powerfmt",
3944
+ "serde_core",
3945
+ "time-core",
3946
+ "time-macros",
3947
+ ]
3948
+
3949
+ [[package]]
3950
+ name = "time-core"
3951
+ version = "0.1.9"
3952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3953
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
3954
+
3955
+ [[package]]
3956
+ name = "time-macros"
3957
+ version = "0.2.30"
3958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3959
+ checksum = "dcef1a61bdb119096e153208ec5cbec23944ce8bca13be5c7f60c634f7403935"
3960
+ dependencies = [
3961
+ "num-conv",
3962
+ "time-core",
3963
+ ]
3964
+
3965
+ [[package]]
3966
+ name = "tinystr"
3967
+ version = "0.8.3"
3968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3969
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3970
+ dependencies = [
3971
+ "displaydoc",
3972
+ "zerovec",
3973
+ ]
3974
+
3975
+ [[package]]
3976
+ name = "tinytemplate"
3977
+ version = "1.2.1"
3978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3979
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3980
+ dependencies = [
3981
+ "serde",
3982
+ "serde_json",
3983
+ ]
3984
+
3985
+ [[package]]
3986
+ name = "tinyvec"
3987
+ version = "1.11.0"
3988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3989
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
3990
+ dependencies = [
3991
+ "tinyvec_macros",
3992
+ ]
3993
+
3994
+ [[package]]
3995
+ name = "tinyvec_macros"
3996
+ version = "0.1.1"
3997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3998
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3999
+
4000
+ [[package]]
4001
+ name = "tokio"
4002
+ version = "1.52.3"
4003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4004
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
4005
+ dependencies = [
4006
+ "bytes",
4007
+ "libc",
4008
+ "mio",
4009
+ "pin-project-lite",
4010
+ "signal-hook-registry",
4011
+ "socket2",
4012
+ "tokio-macros",
4013
+ "windows-sys 0.61.2",
4014
+ ]
4015
+
4016
+ [[package]]
4017
+ name = "tokio-macros"
4018
+ version = "2.7.0"
4019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4020
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
4021
+ dependencies = [
4022
+ "proc-macro2",
4023
+ "quote",
4024
+ "syn",
4025
+ ]
4026
+
4027
+ [[package]]
4028
+ name = "tokio-rustls"
4029
+ version = "0.26.4"
4030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4031
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
4032
+ dependencies = [
4033
+ "rustls",
4034
+ "tokio",
4035
+ ]
4036
+
4037
+ [[package]]
4038
+ name = "tokio-stream"
4039
+ version = "0.1.18"
4040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4041
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
4042
+ dependencies = [
4043
+ "futures-core",
4044
+ "pin-project-lite",
4045
+ "tokio",
4046
+ ]
4047
+
4048
+ [[package]]
4049
+ name = "tokio-util"
4050
+ version = "0.7.18"
4051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4052
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
4053
+ dependencies = [
4054
+ "bytes",
4055
+ "futures-core",
4056
+ "futures-sink",
4057
+ "pin-project-lite",
4058
+ "tokio",
4059
+ ]
4060
+
4061
+ [[package]]
4062
+ name = "toml"
4063
+ version = "0.8.23"
4064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4065
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
4066
+ dependencies = [
4067
+ "serde",
4068
+ "serde_spanned 0.6.9",
4069
+ "toml_datetime 0.6.11",
4070
+ "toml_edit 0.22.27",
4071
+ ]
4072
+
4073
+ [[package]]
4074
+ name = "toml_datetime"
4075
+ version = "0.6.11"
4076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4077
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
4078
+ dependencies = [
4079
+ "serde",
4080
+ ]
4081
+
4082
+ [[package]]
4083
+ name = "toml_datetime"
4084
+ version = "1.1.1+spec-1.1.0"
4085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4086
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
4087
+ dependencies = [
4088
+ "serde_core",
4089
+ ]
4090
+
4091
+ [[package]]
4092
+ name = "toml_edit"
4093
+ version = "0.22.27"
4094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4095
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
4096
+ dependencies = [
4097
+ "indexmap 2.14.0",
4098
+ "serde",
4099
+ "serde_spanned 0.6.9",
4100
+ "toml_datetime 0.6.11",
4101
+ "toml_write",
4102
+ "winnow 0.7.15",
4103
+ ]
4104
+
4105
+ [[package]]
4106
+ name = "toml_edit"
4107
+ version = "0.25.12+spec-1.1.0"
4108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4109
+ checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7"
4110
+ dependencies = [
4111
+ "indexmap 2.14.0",
4112
+ "serde_core",
4113
+ "serde_spanned 1.1.1",
4114
+ "toml_datetime 1.1.1+spec-1.1.0",
4115
+ "toml_parser",
4116
+ "toml_writer",
4117
+ "winnow 1.0.3",
4118
+ ]
4119
+
4120
+ [[package]]
4121
+ name = "toml_parser"
4122
+ version = "1.1.2+spec-1.1.0"
4123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4124
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
4125
+ dependencies = [
4126
+ "winnow 1.0.3",
4127
+ ]
4128
+
4129
+ [[package]]
4130
+ name = "toml_write"
4131
+ version = "0.1.2"
4132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4133
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
4134
+
4135
+ [[package]]
4136
+ name = "toml_writer"
4137
+ version = "1.1.1+spec-1.1.0"
4138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4139
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
4140
+
4141
+ [[package]]
4142
+ name = "tonic"
4143
+ version = "0.14.6"
4144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4145
+ checksum = "ac2a5518c70fa84342385732db33fb3f44bc4cc748936eb5833d2df34d6445ef"
4146
+ dependencies = [
4147
+ "base64",
4148
+ "bytes",
4149
+ "http 1.4.2",
4150
+ "http-body 1.0.1",
4151
+ "http-body-util",
4152
+ "hyper",
4153
+ "hyper-timeout",
4154
+ "hyper-util",
4155
+ "percent-encoding",
4156
+ "pin-project",
4157
+ "rustls-native-certs",
4158
+ "sync_wrapper",
4159
+ "tokio",
4160
+ "tokio-rustls",
4161
+ "tokio-stream",
4162
+ "tower",
4163
+ "tower-layer",
4164
+ "tower-service",
4165
+ "tracing",
4166
+ ]
4167
+
4168
+ [[package]]
4169
+ name = "tonic-prost"
4170
+ version = "0.14.6"
4171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4172
+ checksum = "50849f68853be452acf590cde0b146665b8d507b3b8af17261df47e02c209ea0"
4173
+ dependencies = [
4174
+ "bytes",
4175
+ "prost",
4176
+ "tonic",
4177
+ ]
4178
+
4179
+ [[package]]
4180
+ name = "tower"
4181
+ version = "0.5.3"
4182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4183
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
4184
+ dependencies = [
4185
+ "futures-core",
4186
+ "futures-util",
4187
+ "indexmap 2.14.0",
4188
+ "pin-project-lite",
4189
+ "slab",
4190
+ "sync_wrapper",
4191
+ "tokio",
4192
+ "tokio-util",
4193
+ "tower-layer",
4194
+ "tower-service",
4195
+ "tracing",
4196
+ ]
4197
+
4198
+ [[package]]
4199
+ name = "tower-http"
4200
+ version = "0.6.11"
4201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4202
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
4203
+ dependencies = [
4204
+ "bitflags",
4205
+ "bytes",
4206
+ "futures-util",
4207
+ "http 1.4.2",
4208
+ "http-body 1.0.1",
4209
+ "pin-project-lite",
4210
+ "tower",
4211
+ "tower-layer",
4212
+ "tower-service",
4213
+ "url",
4214
+ ]
4215
+
4216
+ [[package]]
4217
+ name = "tower-layer"
4218
+ version = "0.3.3"
4219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4220
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
4221
+
4222
+ [[package]]
4223
+ name = "tower-service"
4224
+ version = "0.3.3"
4225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4226
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
4227
+
4228
+ [[package]]
4229
+ name = "tracing"
4230
+ version = "0.1.44"
4231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4232
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
4233
+ dependencies = [
4234
+ "pin-project-lite",
4235
+ "tracing-attributes",
4236
+ "tracing-core",
4237
+ ]
4238
+
4239
+ [[package]]
4240
+ name = "tracing-attributes"
4241
+ version = "0.1.31"
4242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4243
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
4244
+ dependencies = [
4245
+ "proc-macro2",
4246
+ "quote",
4247
+ "syn",
4248
+ ]
4249
+
4250
+ [[package]]
4251
+ name = "tracing-core"
4252
+ version = "0.1.36"
4253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4254
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
4255
+ dependencies = [
4256
+ "once_cell",
4257
+ "valuable",
4258
+ ]
4259
+
4260
+ [[package]]
4261
+ name = "tracing-opentelemetry"
4262
+ version = "0.33.0"
4263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4264
+ checksum = "adbc64cba7137545b8044cb1fe9814f7aacf3c6b5f9b45be8bb5db538befdb26"
4265
+ dependencies = [
4266
+ "js-sys",
4267
+ "opentelemetry",
4268
+ "tracing",
4269
+ "tracing-core",
4270
+ "tracing-subscriber",
4271
+ "web-time",
4272
+ ]
4273
+
4274
+ [[package]]
4275
+ name = "tracing-subscriber"
4276
+ version = "0.3.23"
4277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4278
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
4279
+ dependencies = [
4280
+ "sharded-slab",
4281
+ "thread_local",
4282
+ "tracing-core",
4283
+ ]
4284
+
4285
+ [[package]]
4286
+ name = "try-lock"
4287
+ version = "0.2.5"
4288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4289
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4290
+
4291
+ [[package]]
4292
+ name = "trycmd"
4293
+ version = "1.2.0"
4294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4295
+ checksum = "218889993f76bda9b2ef57c12c3cab0eef4fd54ec7b36d1704849867f69e7bb4"
4296
+ dependencies = [
4297
+ "anstream",
4298
+ "automod",
4299
+ "glob",
4300
+ "humantime",
4301
+ "humantime-serde",
4302
+ "rayon",
4303
+ "serde",
4304
+ "shlex 1.3.0",
4305
+ "snapbox",
4306
+ "toml_edit 0.25.12+spec-1.1.0",
4307
+ ]
4308
+
4309
+ [[package]]
4310
+ name = "typenum"
4311
+ version = "1.20.1"
4312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4313
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
4314
+
4315
+ [[package]]
4316
+ name = "unarray"
4317
+ version = "0.1.4"
4318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4319
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
4320
+
4321
+ [[package]]
4322
+ name = "unicase"
4323
+ version = "2.9.0"
4324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4325
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
4326
+
4327
+ [[package]]
4328
+ name = "unicode-ident"
4329
+ version = "1.0.24"
4330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4331
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
4332
+
4333
+ [[package]]
4334
+ name = "unicode-segmentation"
4335
+ version = "1.13.3"
4336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4337
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
4338
+
4339
+ [[package]]
4340
+ name = "unindent"
4341
+ version = "0.2.4"
4342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4343
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
4344
+
4345
+ [[package]]
4346
+ name = "untrusted"
4347
+ version = "0.9.0"
4348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4349
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4350
+
4351
+ [[package]]
4352
+ name = "url"
4353
+ version = "2.5.8"
4354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4355
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
4356
+ dependencies = [
4357
+ "form_urlencoded",
4358
+ "idna",
4359
+ "percent-encoding",
4360
+ "serde",
4361
+ ]
4362
+
4363
+ [[package]]
4364
+ name = "urlencoding"
4365
+ version = "2.1.3"
4366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4367
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
4368
+
4369
+ [[package]]
4370
+ name = "utf8_iter"
4371
+ version = "1.0.4"
4372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4373
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4374
+
4375
+ [[package]]
4376
+ name = "utf8parse"
4377
+ version = "0.2.2"
4378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4379
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
4380
+
4381
+ [[package]]
4382
+ name = "uuid"
4383
+ version = "1.23.3"
4384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4385
+ checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
4386
+ dependencies = [
4387
+ "getrandom 0.4.3",
4388
+ "js-sys",
4389
+ "wasm-bindgen",
4390
+ ]
4391
+
4392
+ [[package]]
4393
+ name = "valuable"
4394
+ version = "0.1.1"
4395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4396
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
4397
+
4398
+ [[package]]
4399
+ name = "version_check"
4400
+ version = "0.9.5"
4401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4402
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4403
+
4404
+ [[package]]
4405
+ name = "vsimd"
4406
+ version = "0.8.0"
4407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4408
+ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
4409
+
4410
+ [[package]]
4411
+ name = "wait-timeout"
4412
+ version = "0.2.1"
4413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4414
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
4415
+ dependencies = [
4416
+ "libc",
4417
+ ]
4418
+
4419
+ [[package]]
4420
+ name = "walkdir"
4421
+ version = "2.5.0"
4422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4423
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4424
+ dependencies = [
4425
+ "same-file",
4426
+ "winapi-util",
4427
+ ]
4428
+
4429
+ [[package]]
4430
+ name = "want"
4431
+ version = "0.3.1"
4432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4433
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4434
+ dependencies = [
4435
+ "try-lock",
4436
+ ]
4437
+
4438
+ [[package]]
4439
+ name = "wasi"
4440
+ version = "0.11.1+wasi-snapshot-preview1"
4441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4442
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4443
+
4444
+ [[package]]
4445
+ name = "wasip2"
4446
+ version = "1.0.4+wasi-0.2.12"
4447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4448
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
4449
+ dependencies = [
4450
+ "wit-bindgen",
4451
+ ]
4452
+
4453
+ [[package]]
4454
+ name = "wasm-bindgen"
4455
+ version = "0.2.125"
4456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4457
+ checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
4458
+ dependencies = [
4459
+ "cfg-if",
4460
+ "once_cell",
4461
+ "rustversion",
4462
+ "wasm-bindgen-macro",
4463
+ "wasm-bindgen-shared",
4464
+ ]
4465
+
4466
+ [[package]]
4467
+ name = "wasm-bindgen-futures"
4468
+ version = "0.4.75"
4469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4470
+ checksum = "503b14d284f2c8dac03b819967e155ea753f573586193b2b2c95990cb5d69280"
4471
+ dependencies = [
4472
+ "js-sys",
4473
+ "wasm-bindgen",
4474
+ ]
4475
+
4476
+ [[package]]
4477
+ name = "wasm-bindgen-macro"
4478
+ version = "0.2.125"
4479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4480
+ checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
4481
+ dependencies = [
4482
+ "quote",
4483
+ "wasm-bindgen-macro-support",
4484
+ ]
4485
+
4486
+ [[package]]
4487
+ name = "wasm-bindgen-macro-support"
4488
+ version = "0.2.125"
4489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4490
+ checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
4491
+ dependencies = [
4492
+ "bumpalo",
4493
+ "proc-macro2",
4494
+ "quote",
4495
+ "syn",
4496
+ "wasm-bindgen-shared",
4497
+ ]
4498
+
4499
+ [[package]]
4500
+ name = "wasm-bindgen-shared"
4501
+ version = "0.2.125"
4502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4503
+ checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
4504
+ dependencies = [
4505
+ "unicode-ident",
4506
+ ]
4507
+
4508
+ [[package]]
4509
+ name = "wasm-streams"
4510
+ version = "0.5.0"
4511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4512
+ checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
4513
+ dependencies = [
4514
+ "futures-util",
4515
+ "js-sys",
4516
+ "wasm-bindgen",
4517
+ "wasm-bindgen-futures",
4518
+ "web-sys",
4519
+ ]
4520
+
4521
+ [[package]]
4522
+ name = "web-sys"
4523
+ version = "0.3.102"
4524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4525
+ checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
4526
+ dependencies = [
4527
+ "js-sys",
4528
+ "wasm-bindgen",
4529
+ ]
4530
+
4531
+ [[package]]
4532
+ name = "web-time"
4533
+ version = "1.1.0"
4534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4535
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4536
+ dependencies = [
4537
+ "js-sys",
4538
+ "wasm-bindgen",
4539
+ ]
4540
+
4541
+ [[package]]
4542
+ name = "webpki-root-certs"
4543
+ version = "1.0.8"
4544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4545
+ checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267"
4546
+ dependencies = [
4547
+ "rustls-pki-types",
4548
+ ]
4549
+
4550
+ [[package]]
4551
+ name = "winapi"
4552
+ version = "0.3.9"
4553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4554
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4555
+ dependencies = [
4556
+ "winapi-i686-pc-windows-gnu",
4557
+ "winapi-x86_64-pc-windows-gnu",
4558
+ ]
4559
+
4560
+ [[package]]
4561
+ name = "winapi-i686-pc-windows-gnu"
4562
+ version = "0.4.0"
4563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4564
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4565
+
4566
+ [[package]]
4567
+ name = "winapi-util"
4568
+ version = "0.1.11"
4569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4570
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4571
+ dependencies = [
4572
+ "windows-sys 0.61.2",
4573
+ ]
4574
+
4575
+ [[package]]
4576
+ name = "winapi-x86_64-pc-windows-gnu"
4577
+ version = "0.4.0"
4578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4579
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4580
+
4581
+ [[package]]
4582
+ name = "windows-core"
4583
+ version = "0.62.2"
4584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4585
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4586
+ dependencies = [
4587
+ "windows-implement",
4588
+ "windows-interface",
4589
+ "windows-link",
4590
+ "windows-result",
4591
+ "windows-strings",
4592
+ ]
4593
+
4594
+ [[package]]
4595
+ name = "windows-implement"
4596
+ version = "0.60.2"
4597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4598
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4599
+ dependencies = [
4600
+ "proc-macro2",
4601
+ "quote",
4602
+ "syn",
4603
+ ]
4604
+
4605
+ [[package]]
4606
+ name = "windows-interface"
4607
+ version = "0.59.3"
4608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4609
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4610
+ dependencies = [
4611
+ "proc-macro2",
4612
+ "quote",
4613
+ "syn",
4614
+ ]
4615
+
4616
+ [[package]]
4617
+ name = "windows-link"
4618
+ version = "0.2.1"
4619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4620
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4621
+
4622
+ [[package]]
4623
+ name = "windows-result"
4624
+ version = "0.4.1"
4625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4626
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4627
+ dependencies = [
4628
+ "windows-link",
4629
+ ]
4630
+
4631
+ [[package]]
4632
+ name = "windows-strings"
4633
+ version = "0.5.1"
4634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4635
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4636
+ dependencies = [
4637
+ "windows-link",
4638
+ ]
4639
+
4640
+ [[package]]
4641
+ name = "windows-sys"
4642
+ version = "0.52.0"
4643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4644
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4645
+ dependencies = [
4646
+ "windows-targets",
4647
+ ]
4648
+
4649
+ [[package]]
4650
+ name = "windows-sys"
4651
+ version = "0.61.2"
4652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4653
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4654
+ dependencies = [
4655
+ "windows-link",
4656
+ ]
4657
+
4658
+ [[package]]
4659
+ name = "windows-targets"
4660
+ version = "0.52.6"
4661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4662
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4663
+ dependencies = [
4664
+ "windows_aarch64_gnullvm",
4665
+ "windows_aarch64_msvc",
4666
+ "windows_i686_gnu",
4667
+ "windows_i686_gnullvm",
4668
+ "windows_i686_msvc",
4669
+ "windows_x86_64_gnu",
4670
+ "windows_x86_64_gnullvm",
4671
+ "windows_x86_64_msvc",
4672
+ ]
4673
+
4674
+ [[package]]
4675
+ name = "windows_aarch64_gnullvm"
4676
+ version = "0.52.6"
4677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4678
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4679
+
4680
+ [[package]]
4681
+ name = "windows_aarch64_msvc"
4682
+ version = "0.52.6"
4683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4684
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4685
+
4686
+ [[package]]
4687
+ name = "windows_i686_gnu"
4688
+ version = "0.52.6"
4689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4690
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4691
+
4692
+ [[package]]
4693
+ name = "windows_i686_gnullvm"
4694
+ version = "0.52.6"
4695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4696
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4697
+
4698
+ [[package]]
4699
+ name = "windows_i686_msvc"
4700
+ version = "0.52.6"
4701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4702
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4703
+
4704
+ [[package]]
4705
+ name = "windows_x86_64_gnu"
4706
+ version = "0.52.6"
4707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4708
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4709
+
4710
+ [[package]]
4711
+ name = "windows_x86_64_gnullvm"
4712
+ version = "0.52.6"
4713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4714
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4715
+
4716
+ [[package]]
4717
+ name = "windows_x86_64_msvc"
4718
+ version = "0.52.6"
4719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4720
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4721
+
4722
+ [[package]]
4723
+ name = "winnow"
4724
+ version = "0.7.15"
4725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4726
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
4727
+ dependencies = [
4728
+ "memchr",
4729
+ ]
4730
+
4731
+ [[package]]
4732
+ name = "winnow"
4733
+ version = "1.0.3"
4734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4735
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
4736
+ dependencies = [
4737
+ "memchr",
4738
+ ]
4739
+
4740
+ [[package]]
4741
+ name = "wit-bindgen"
4742
+ version = "0.57.1"
4743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4744
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4745
+
4746
+ [[package]]
4747
+ name = "writeable"
4748
+ version = "0.6.3"
4749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4750
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4751
+
4752
+ [[package]]
4753
+ name = "xmlparser"
4754
+ version = "0.13.6"
4755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4756
+ checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4"
4757
+
4758
+ [[package]]
4759
+ name = "yoke"
4760
+ version = "0.8.3"
4761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4762
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
4763
+ dependencies = [
4764
+ "stable_deref_trait",
4765
+ "yoke-derive",
4766
+ "zerofrom",
4767
+ ]
4768
+
4769
+ [[package]]
4770
+ name = "yoke-derive"
4771
+ version = "0.8.2"
4772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4773
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4774
+ dependencies = [
4775
+ "proc-macro2",
4776
+ "quote",
4777
+ "syn",
4778
+ "synstructure",
4779
+ ]
4780
+
4781
+ [[package]]
4782
+ name = "zerocopy"
4783
+ version = "0.8.52"
4784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4785
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
4786
+ dependencies = [
4787
+ "zerocopy-derive",
4788
+ ]
4789
+
4790
+ [[package]]
4791
+ name = "zerocopy-derive"
4792
+ version = "0.8.52"
4793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4794
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
4795
+ dependencies = [
4796
+ "proc-macro2",
4797
+ "quote",
4798
+ "syn",
4799
+ ]
4800
+
4801
+ [[package]]
4802
+ name = "zerofrom"
4803
+ version = "0.1.8"
4804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4805
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
4806
+ dependencies = [
4807
+ "zerofrom-derive",
4808
+ ]
4809
+
4810
+ [[package]]
4811
+ name = "zerofrom-derive"
4812
+ version = "0.1.7"
4813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4814
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4815
+ dependencies = [
4816
+ "proc-macro2",
4817
+ "quote",
4818
+ "syn",
4819
+ "synstructure",
4820
+ ]
4821
+
4822
+ [[package]]
4823
+ name = "zeroize"
4824
+ version = "1.9.0"
4825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4826
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
4827
+
4828
+ [[package]]
4829
+ name = "zerotrie"
4830
+ version = "0.2.4"
4831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4832
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4833
+ dependencies = [
4834
+ "displaydoc",
4835
+ "yoke",
4836
+ "zerofrom",
4837
+ ]
4838
+
4839
+ [[package]]
4840
+ name = "zerovec"
4841
+ version = "0.11.6"
4842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4843
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4844
+ dependencies = [
4845
+ "yoke",
4846
+ "zerofrom",
4847
+ "zerovec-derive",
4848
+ ]
4849
+
4850
+ [[package]]
4851
+ name = "zerovec-derive"
4852
+ version = "0.11.3"
4853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4854
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4855
+ dependencies = [
4856
+ "proc-macro2",
4857
+ "quote",
4858
+ "syn",
4859
+ ]
4860
+
4861
+ [[package]]
4862
+ name = "zmij"
4863
+ version = "1.0.21"
4864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4865
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
4866
+
4867
+ [[package]]
4868
+ name = "zstd"
4869
+ version = "0.13.3"
4870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4871
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4872
+ dependencies = [
4873
+ "zstd-safe",
4874
+ ]
4875
+
4876
+ [[package]]
4877
+ name = "zstd-safe"
4878
+ version = "7.2.4"
4879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4880
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4881
+ dependencies = [
4882
+ "zstd-sys",
4883
+ ]
4884
+
4885
+ [[package]]
4886
+ name = "zstd-sys"
4887
+ version = "2.0.16+zstd.1.5.7"
4888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4889
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4890
+ dependencies = [
4891
+ "cc",
4892
+ "pkg-config",
4893
+ ]