hexz 0.1.1__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 (141) hide show
  1. hexz-0.1.1/Cargo.lock +4343 -0
  2. hexz-0.1.1/Cargo.toml +29 -0
  3. hexz-0.1.1/PKG-INFO +454 -0
  4. hexz-0.1.1/README.md +405 -0
  5. hexz-0.1.1/crates/common/Cargo.toml +27 -0
  6. hexz-0.1.1/crates/common/README.md +217 -0
  7. hexz-0.1.1/crates/common/src/config.rs +265 -0
  8. hexz-0.1.1/crates/common/src/constants.rs +83 -0
  9. hexz-0.1.1/crates/common/src/crypto.rs +217 -0
  10. hexz-0.1.1/crates/common/src/error.rs +61 -0
  11. hexz-0.1.1/crates/common/src/lib.rs +42 -0
  12. hexz-0.1.1/crates/common/src/logging.rs +21 -0
  13. hexz-0.1.1/crates/common/src/sign.rs +285 -0
  14. hexz-0.1.1/crates/core/Cargo.toml +57 -0
  15. hexz-0.1.1/crates/core/README.md +247 -0
  16. hexz-0.1.1/crates/core/src/algo/compression/lz4.rs +531 -0
  17. hexz-0.1.1/crates/core/src/algo/compression/mod.rs +102 -0
  18. hexz-0.1.1/crates/core/src/algo/compression/zstd.rs +1366 -0
  19. hexz-0.1.1/crates/core/src/algo/dedup/cdc.rs +1270 -0
  20. hexz-0.1.1/crates/core/src/algo/dedup/dcam.rs +1563 -0
  21. hexz-0.1.1/crates/core/src/algo/dedup/mod.rs +54 -0
  22. hexz-0.1.1/crates/core/src/algo/encryption/aes_gcm.rs +1598 -0
  23. hexz-0.1.1/crates/core/src/algo/encryption/mod.rs +39 -0
  24. hexz-0.1.1/crates/core/src/algo/hashing/blake3.rs +590 -0
  25. hexz-0.1.1/crates/core/src/algo/hashing/mod.rs +36 -0
  26. hexz-0.1.1/crates/core/src/algo/mod.rs +80 -0
  27. hexz-0.1.1/crates/core/src/api/file.rs +1071 -0
  28. hexz-0.1.1/crates/core/src/api/mod.rs +47 -0
  29. hexz-0.1.1/crates/core/src/cache/lru.rs +1245 -0
  30. hexz-0.1.1/crates/core/src/cache/mod.rs +63 -0
  31. hexz-0.1.1/crates/core/src/cache/prefetch.rs +580 -0
  32. hexz-0.1.1/crates/core/src/format/header.rs +580 -0
  33. hexz-0.1.1/crates/core/src/format/index/mod.rs +788 -0
  34. hexz-0.1.1/crates/core/src/format/magic.rs +382 -0
  35. hexz-0.1.1/crates/core/src/format/mod.rs +95 -0
  36. hexz-0.1.1/crates/core/src/format/version.rs +826 -0
  37. hexz-0.1.1/crates/core/src/lib.rs +196 -0
  38. hexz-0.1.1/crates/core/src/ops/inspect.rs +75 -0
  39. hexz-0.1.1/crates/core/src/ops/mod.rs +77 -0
  40. hexz-0.1.1/crates/core/src/ops/pack.rs +1161 -0
  41. hexz-0.1.1/crates/core/src/ops/sign.rs +81 -0
  42. hexz-0.1.1/crates/core/src/ops/snapshot_writer.rs +522 -0
  43. hexz-0.1.1/crates/core/src/ops/write.rs +1366 -0
  44. hexz-0.1.1/crates/core/src/store/http/async_client.rs +192 -0
  45. hexz-0.1.1/crates/core/src/store/http/mod.rs +58 -0
  46. hexz-0.1.1/crates/core/src/store/local/file.rs +271 -0
  47. hexz-0.1.1/crates/core/src/store/local/mmap.rs +328 -0
  48. hexz-0.1.1/crates/core/src/store/local/mod.rs +88 -0
  49. hexz-0.1.1/crates/core/src/store/mod.rs +101 -0
  50. hexz-0.1.1/crates/core/src/store/s3/async_client.rs +267 -0
  51. hexz-0.1.1/crates/core/src/store/s3/mod.rs +59 -0
  52. hexz-0.1.1/crates/core/src/store/utils.rs +545 -0
  53. hexz-0.1.1/crates/core/tests/TEST_PLAN.md +26 -0
  54. hexz-0.1.1/crates/core/tests/common/generators.rs +202 -0
  55. hexz-0.1.1/crates/core/tests/common/helpers.rs +363 -0
  56. hexz-0.1.1/crates/core/tests/common/mod.rs +10 -0
  57. hexz-0.1.1/crates/core/tests/integration/cdc_pack_tests.rs +334 -0
  58. hexz-0.1.1/crates/core/tests/integration/encryption_pack_tests.rs +293 -0
  59. hexz-0.1.1/crates/core/tests/integration/file_coverage_tests.rs +594 -0
  60. hexz-0.1.1/crates/core/tests/integration/pack_read_tests.rs +1132 -0
  61. hexz-0.1.1/crates/core/tests/integration/thin_snapshot_tests.rs +142 -0
  62. hexz-0.1.1/crates/core/tests/integration_tests.rs +25 -0
  63. hexz-0.1.1/crates/core/tests/unit/cache_tests.rs +294 -0
  64. hexz-0.1.1/crates/core/tests/unit/compression_tests.rs +658 -0
  65. hexz-0.1.1/crates/core/tests/unit/dedup/cdc_tests.rs +348 -0
  66. hexz-0.1.1/crates/core/tests/unit/dedup/dcam_tests.rs +172 -0
  67. hexz-0.1.1/crates/core/tests/unit/encryption_tests.rs +586 -0
  68. hexz-0.1.1/crates/core/tests/unit/file_tests.rs +373 -0
  69. hexz-0.1.1/crates/core/tests/unit/fixtures_tests.rs +104 -0
  70. hexz-0.1.1/crates/core/tests/unit/format_tests.rs +409 -0
  71. hexz-0.1.1/crates/core/tests/unit/header_tests.rs +153 -0
  72. hexz-0.1.1/crates/core/tests/unit/http_mock_tests.rs +281 -0
  73. hexz-0.1.1/crates/core/tests/unit/storage/file_backend_tests.rs +291 -0
  74. hexz-0.1.1/crates/core/tests/unit/storage/http_backend_simple_tests.rs +80 -0
  75. hexz-0.1.1/crates/core/tests/unit/storage/http_backend_tests.rs +232 -0
  76. hexz-0.1.1/crates/core/tests/unit/storage/mmap_backend_tests.rs +302 -0
  77. hexz-0.1.1/crates/core/tests/unit/storage/s3_backend_tests.rs +244 -0
  78. hexz-0.1.1/crates/core/tests/unit/writer_tests.rs +168 -0
  79. hexz-0.1.1/crates/core/tests/unit_tests.rs +59 -0
  80. hexz-0.1.1/crates/loader/Cargo.toml +39 -0
  81. hexz-0.1.1/crates/loader/README.md +405 -0
  82. hexz-0.1.1/crates/loader/src/engine/iterator.rs +1091 -0
  83. hexz-0.1.1/crates/loader/src/engine/mod.rs +1094 -0
  84. hexz-0.1.1/crates/loader/src/engine/shuffle.rs +312 -0
  85. hexz-0.1.1/crates/loader/src/lib.rs +123 -0
  86. hexz-0.1.1/crates/loader/src/py_interface/async_dataset.rs +577 -0
  87. hexz-0.1.1/crates/loader/src/py_interface/builder.rs +399 -0
  88. hexz-0.1.1/crates/loader/src/py_interface/dataset.rs +797 -0
  89. hexz-0.1.1/crates/loader/src/py_interface/exceptions.rs +332 -0
  90. hexz-0.1.1/crates/loader/src/py_interface/mod.rs +151 -0
  91. hexz-0.1.1/crates/loader/src/py_interface/ops.rs +878 -0
  92. hexz-0.1.1/crates/loader/src/py_interface/pack.rs +263 -0
  93. hexz-0.1.1/crates/loader/src/tensor/mod.rs +182 -0
  94. hexz-0.1.1/crates/loader/src/tensor/numpy.rs +772 -0
  95. hexz-0.1.1/crates/loader/tests/conftest.py +103 -0
  96. hexz-0.1.1/crates/loader/tests/test_api_cleanup.py +290 -0
  97. hexz-0.1.1/crates/loader/tests/test_array_edge_cases.py +334 -0
  98. hexz-0.1.1/crates/loader/tests/test_array_read_write.py +319 -0
  99. hexz-0.1.1/crates/loader/tests/test_array_view.py +330 -0
  100. hexz-0.1.1/crates/loader/tests/test_async.py +25 -0
  101. hexz-0.1.1/crates/loader/tests/test_async_reader_extended.py +68 -0
  102. hexz-0.1.1/crates/loader/tests/test_cache_size.py +107 -0
  103. hexz-0.1.1/crates/loader/tests/test_checksum_verification.py +79 -0
  104. hexz-0.1.1/crates/loader/tests/test_convert.py +368 -0
  105. hexz-0.1.1/crates/loader/tests/test_core.py +111 -0
  106. hexz-0.1.1/crates/loader/tests/test_crypto.py +242 -0
  107. hexz-0.1.1/crates/loader/tests/test_dataset_formats.py +204 -0
  108. hexz-0.1.1/crates/loader/tests/test_dataset_lru_cache.py +173 -0
  109. hexz-0.1.1/crates/loader/tests/test_dataset_prefetcher.py +302 -0
  110. hexz-0.1.1/crates/loader/tests/test_dataset_pytorch.py +352 -0
  111. hexz-0.1.1/crates/loader/tests/test_dataset_tensorflow.py +53 -0
  112. hexz-0.1.1/crates/loader/tests/test_dataset_variable_length.py +267 -0
  113. hexz-0.1.1/crates/loader/tests/test_e2e_pack_read_roundtrip.py +229 -0
  114. hexz-0.1.1/crates/loader/tests/test_exceptions_extended.py +166 -0
  115. hexz-0.1.1/crates/loader/tests/test_init_extended.py +141 -0
  116. hexz-0.1.1/crates/loader/tests/test_integration.py +255 -0
  117. hexz-0.1.1/crates/loader/tests/test_mount_extended.py +384 -0
  118. hexz-0.1.1/crates/loader/tests/test_mount_unit.py +107 -0
  119. hexz-0.1.1/crates/loader/tests/test_profiles.py +222 -0
  120. hexz-0.1.1/crates/loader/tests/test_reader_extended.py +215 -0
  121. hexz-0.1.1/crates/loader/tests/test_s3.py +140 -0
  122. hexz-0.1.1/crates/loader/tests/test_security.py +68 -0
  123. hexz-0.1.1/crates/loader/tests/test_utils_extended.py +352 -0
  124. hexz-0.1.1/crates/loader/tests/test_writer.py +84 -0
  125. hexz-0.1.1/crates/loader/tests/test_writer_edge_cases.py +178 -0
  126. hexz-0.1.1/crates/loader/tests/test_writer_extended2.py +261 -0
  127. hexz-0.1.1/pyproject.toml +74 -0
  128. hexz-0.1.1/python/hexz/__init__.py +228 -0
  129. hexz-0.1.1/python/hexz/_core.pyi +305 -0
  130. hexz-0.1.1/python/hexz/array.py +338 -0
  131. hexz-0.1.1/python/hexz/convert.py +362 -0
  132. hexz-0.1.1/python/hexz/crypto.py +85 -0
  133. hexz-0.1.1/python/hexz/dataset.py +603 -0
  134. hexz-0.1.1/python/hexz/exceptions.py +154 -0
  135. hexz-0.1.1/python/hexz/hexz_loader.pyi +98 -0
  136. hexz-0.1.1/python/hexz/mount.py +174 -0
  137. hexz-0.1.1/python/hexz/profiles.py +125 -0
  138. hexz-0.1.1/python/hexz/reader.py +406 -0
  139. hexz-0.1.1/python/hexz/typing.py +59 -0
  140. hexz-0.1.1/python/hexz/utils.py +355 -0
  141. hexz-0.1.1/python/hexz/writer.py +359 -0
hexz-0.1.1/Cargo.lock ADDED
@@ -0,0 +1,4343 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aead"
13
+ version = "0.5.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
16
+ dependencies = [
17
+ "crypto-common",
18
+ "generic-array",
19
+ ]
20
+
21
+ [[package]]
22
+ name = "aes"
23
+ version = "0.8.4"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
26
+ dependencies = [
27
+ "cfg-if",
28
+ "cipher",
29
+ "cpufeatures",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "aes-gcm"
34
+ version = "0.10.3"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
37
+ dependencies = [
38
+ "aead",
39
+ "aes",
40
+ "cipher",
41
+ "ctr",
42
+ "ghash",
43
+ "subtle",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "ahash"
48
+ version = "0.7.8"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
51
+ dependencies = [
52
+ "getrandom 0.2.17",
53
+ "once_cell",
54
+ "version_check",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "aho-corasick"
59
+ version = "1.1.4"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
62
+ dependencies = [
63
+ "memchr",
64
+ ]
65
+
66
+ [[package]]
67
+ name = "allocator-api2"
68
+ version = "0.2.21"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
71
+
72
+ [[package]]
73
+ name = "anes"
74
+ version = "0.1.6"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
77
+
78
+ [[package]]
79
+ name = "anstream"
80
+ version = "0.6.21"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
83
+ dependencies = [
84
+ "anstyle",
85
+ "anstyle-parse",
86
+ "anstyle-query",
87
+ "anstyle-wincon",
88
+ "colorchoice",
89
+ "is_terminal_polyfill",
90
+ "utf8parse",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "anstyle"
95
+ version = "1.0.13"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
98
+
99
+ [[package]]
100
+ name = "anstyle-parse"
101
+ version = "0.2.7"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
104
+ dependencies = [
105
+ "utf8parse",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "anstyle-query"
110
+ version = "1.1.5"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
113
+ dependencies = [
114
+ "windows-sys 0.61.2",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "anstyle-wincon"
119
+ version = "3.0.11"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
122
+ dependencies = [
123
+ "anstyle",
124
+ "once_cell_polyfill",
125
+ "windows-sys 0.61.2",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "anyhow"
130
+ version = "1.0.101"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
133
+
134
+ [[package]]
135
+ name = "arrayref"
136
+ version = "0.3.9"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
139
+
140
+ [[package]]
141
+ name = "arrayvec"
142
+ version = "0.7.6"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
145
+
146
+ [[package]]
147
+ name = "assert-json-diff"
148
+ version = "2.0.2"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
151
+ dependencies = [
152
+ "serde",
153
+ "serde_json",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "assert_cmd"
158
+ version = "2.1.2"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "9c5bcfa8749ac45dd12cb11055aeeb6b27a3895560d60d71e3c23bf979e60514"
161
+ dependencies = [
162
+ "anstyle",
163
+ "bstr",
164
+ "libc",
165
+ "predicates",
166
+ "predicates-core",
167
+ "predicates-tree",
168
+ "wait-timeout",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "async-trait"
173
+ version = "0.1.89"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
176
+ dependencies = [
177
+ "proc-macro2",
178
+ "quote",
179
+ "syn",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "atomic-waker"
184
+ version = "1.1.2"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
187
+
188
+ [[package]]
189
+ name = "attohttpc"
190
+ version = "0.22.0"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "1fcf00bc6d5abb29b5f97e3c61a90b6d3caa12f3faf897d4a3e3607c050a35a7"
193
+ dependencies = [
194
+ "http 0.2.12",
195
+ "log",
196
+ "rustls 0.20.9",
197
+ "serde",
198
+ "serde_json",
199
+ "url",
200
+ "webpki",
201
+ "webpki-roots 0.22.6",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "autocfg"
206
+ version = "1.5.0"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
209
+
210
+ [[package]]
211
+ name = "aws-creds"
212
+ version = "0.34.1"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "3776743bb68d4ad02ba30ba8f64373f1be4e082fe47651767171ce75bb2f6cf5"
215
+ dependencies = [
216
+ "attohttpc",
217
+ "dirs",
218
+ "log",
219
+ "quick-xml",
220
+ "rust-ini",
221
+ "serde",
222
+ "thiserror",
223
+ "time",
224
+ "url",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "aws-region"
229
+ version = "0.25.5"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "e9aed3f9c7eac9be28662fdb3b0f4d1951e812f7c64fed4f0327ba702f459b3b"
232
+ dependencies = [
233
+ "thiserror",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "axum"
238
+ version = "0.7.9"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
241
+ dependencies = [
242
+ "async-trait",
243
+ "axum-core",
244
+ "bytes",
245
+ "futures-util",
246
+ "http 1.4.0",
247
+ "http-body 1.0.1",
248
+ "http-body-util",
249
+ "hyper 1.8.1",
250
+ "hyper-util",
251
+ "itoa",
252
+ "matchit",
253
+ "memchr",
254
+ "mime",
255
+ "percent-encoding",
256
+ "pin-project-lite",
257
+ "rustversion",
258
+ "serde",
259
+ "serde_json",
260
+ "serde_path_to_error",
261
+ "serde_urlencoded",
262
+ "sync_wrapper 1.0.2",
263
+ "tokio",
264
+ "tower 0.5.3",
265
+ "tower-layer",
266
+ "tower-service",
267
+ "tracing",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "axum-core"
272
+ version = "0.4.5"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
275
+ dependencies = [
276
+ "async-trait",
277
+ "bytes",
278
+ "futures-util",
279
+ "http 1.4.0",
280
+ "http-body 1.0.1",
281
+ "http-body-util",
282
+ "mime",
283
+ "pin-project-lite",
284
+ "rustversion",
285
+ "sync_wrapper 1.0.2",
286
+ "tower-layer",
287
+ "tower-service",
288
+ "tracing",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "base64"
293
+ version = "0.13.1"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
296
+
297
+ [[package]]
298
+ name = "base64"
299
+ version = "0.21.7"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
302
+
303
+ [[package]]
304
+ name = "base64"
305
+ version = "0.22.1"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
308
+
309
+ [[package]]
310
+ name = "base64ct"
311
+ version = "1.8.3"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
314
+
315
+ [[package]]
316
+ name = "bincode"
317
+ version = "1.3.3"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
320
+ dependencies = [
321
+ "serde",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "bit-set"
326
+ version = "0.8.0"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
329
+ dependencies = [
330
+ "bit-vec",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "bit-vec"
335
+ version = "0.8.0"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
338
+
339
+ [[package]]
340
+ name = "bitflags"
341
+ version = "1.3.2"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
344
+
345
+ [[package]]
346
+ name = "bitflags"
347
+ version = "2.11.0"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
350
+
351
+ [[package]]
352
+ name = "blake3"
353
+ version = "1.8.3"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d"
356
+ dependencies = [
357
+ "arrayref",
358
+ "arrayvec",
359
+ "cc",
360
+ "cfg-if",
361
+ "constant_time_eq",
362
+ "cpufeatures",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "block-buffer"
367
+ version = "0.10.4"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
370
+ dependencies = [
371
+ "generic-array",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "block2"
376
+ version = "0.6.2"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
379
+ dependencies = [
380
+ "objc2",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "bstr"
385
+ version = "1.12.1"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
388
+ dependencies = [
389
+ "memchr",
390
+ "regex-automata",
391
+ "serde",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "bumpalo"
396
+ version = "3.19.1"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
399
+
400
+ [[package]]
401
+ name = "byteorder"
402
+ version = "1.5.0"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
405
+
406
+ [[package]]
407
+ name = "bytes"
408
+ version = "1.11.1"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
411
+
412
+ [[package]]
413
+ name = "cast"
414
+ version = "0.3.0"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
417
+
418
+ [[package]]
419
+ name = "cc"
420
+ version = "1.2.56"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
423
+ dependencies = [
424
+ "find-msvc-tools",
425
+ "jobserver",
426
+ "libc",
427
+ "shlex",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "cfg-if"
432
+ version = "1.0.4"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
435
+
436
+ [[package]]
437
+ name = "cfg_aliases"
438
+ version = "0.2.1"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
441
+
442
+ [[package]]
443
+ name = "ciborium"
444
+ version = "0.2.2"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
447
+ dependencies = [
448
+ "ciborium-io",
449
+ "ciborium-ll",
450
+ "serde",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "ciborium-io"
455
+ version = "0.2.2"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
458
+
459
+ [[package]]
460
+ name = "ciborium-ll"
461
+ version = "0.2.2"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
464
+ dependencies = [
465
+ "ciborium-io",
466
+ "half",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "cipher"
471
+ version = "0.4.4"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
474
+ dependencies = [
475
+ "crypto-common",
476
+ "inout",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "clap"
481
+ version = "4.5.58"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "63be97961acde393029492ce0be7a1af7e323e6bae9511ebfac33751be5e6806"
484
+ dependencies = [
485
+ "clap_builder",
486
+ "clap_derive",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "clap_builder"
491
+ version = "4.5.58"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "7f13174bda5dfd69d7e947827e5af4b0f2f94a4a3ee92912fba07a66150f21e2"
494
+ dependencies = [
495
+ "anstream",
496
+ "anstyle",
497
+ "clap_lex",
498
+ "strsim",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "clap_derive"
503
+ version = "4.5.55"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
506
+ dependencies = [
507
+ "heck",
508
+ "proc-macro2",
509
+ "quote",
510
+ "syn",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "clap_lex"
515
+ version = "1.0.0"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
518
+
519
+ [[package]]
520
+ name = "colorchoice"
521
+ version = "1.0.4"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
524
+
525
+ [[package]]
526
+ name = "console"
527
+ version = "0.15.11"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
530
+ dependencies = [
531
+ "encode_unicode",
532
+ "libc",
533
+ "once_cell",
534
+ "unicode-width",
535
+ "windows-sys 0.59.0",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "const-oid"
540
+ version = "0.9.6"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
543
+
544
+ [[package]]
545
+ name = "constant_time_eq"
546
+ version = "0.4.2"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
549
+
550
+ [[package]]
551
+ name = "core-foundation"
552
+ version = "0.9.4"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
555
+ dependencies = [
556
+ "core-foundation-sys",
557
+ "libc",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "core-foundation"
562
+ version = "0.10.1"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
565
+ dependencies = [
566
+ "core-foundation-sys",
567
+ "libc",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "core-foundation-sys"
572
+ version = "0.8.7"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
575
+
576
+ [[package]]
577
+ name = "cpufeatures"
578
+ version = "0.2.17"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
581
+ dependencies = [
582
+ "libc",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "crc32fast"
587
+ version = "1.5.0"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
590
+ dependencies = [
591
+ "cfg-if",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "criterion"
596
+ version = "0.5.1"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
599
+ dependencies = [
600
+ "anes",
601
+ "cast",
602
+ "ciborium",
603
+ "clap",
604
+ "criterion-plot",
605
+ "is-terminal",
606
+ "itertools",
607
+ "num-traits",
608
+ "once_cell",
609
+ "oorandom",
610
+ "plotters",
611
+ "rayon",
612
+ "regex",
613
+ "serde",
614
+ "serde_derive",
615
+ "serde_json",
616
+ "tinytemplate",
617
+ "walkdir",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "criterion-plot"
622
+ version = "0.5.0"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
625
+ dependencies = [
626
+ "cast",
627
+ "itertools",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "crossbeam-deque"
632
+ version = "0.8.6"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
635
+ dependencies = [
636
+ "crossbeam-epoch",
637
+ "crossbeam-utils",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "crossbeam-epoch"
642
+ version = "0.9.18"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
645
+ dependencies = [
646
+ "crossbeam-utils",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "crossbeam-utils"
651
+ version = "0.8.21"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
654
+
655
+ [[package]]
656
+ name = "crunchy"
657
+ version = "0.2.4"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
660
+
661
+ [[package]]
662
+ name = "crypto-common"
663
+ version = "0.1.7"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
666
+ dependencies = [
667
+ "generic-array",
668
+ "rand_core 0.6.4",
669
+ "typenum",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "ctr"
674
+ version = "0.9.2"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
677
+ dependencies = [
678
+ "cipher",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "ctrlc"
683
+ version = "3.5.2"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "e0b1fab2ae45819af2d0731d60f2afe17227ebb1a1538a236da84c93e9a60162"
686
+ dependencies = [
687
+ "dispatch2",
688
+ "nix",
689
+ "windows-sys 0.61.2",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "curve25519-dalek"
694
+ version = "4.1.3"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
697
+ dependencies = [
698
+ "cfg-if",
699
+ "cpufeatures",
700
+ "curve25519-dalek-derive",
701
+ "digest",
702
+ "fiat-crypto",
703
+ "rustc_version",
704
+ "subtle",
705
+ "zeroize",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "curve25519-dalek-derive"
710
+ version = "0.1.1"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
713
+ dependencies = [
714
+ "proc-macro2",
715
+ "quote",
716
+ "syn",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "daemonize"
721
+ version = "0.5.0"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "ab8bfdaacb3c887a54d41bdf48d3af8873b3f5566469f8ba21b92057509f116e"
724
+ dependencies = [
725
+ "libc",
726
+ ]
727
+
728
+ [[package]]
729
+ name = "dashmap"
730
+ version = "5.5.3"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
733
+ dependencies = [
734
+ "cfg-if",
735
+ "hashbrown 0.14.5",
736
+ "lock_api",
737
+ "once_cell",
738
+ "parking_lot_core",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "deadpool"
743
+ version = "0.12.3"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
746
+ dependencies = [
747
+ "deadpool-runtime",
748
+ "lazy_static",
749
+ "num_cpus",
750
+ "tokio",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "deadpool-runtime"
755
+ version = "0.1.4"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
758
+
759
+ [[package]]
760
+ name = "der"
761
+ version = "0.7.10"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
764
+ dependencies = [
765
+ "const-oid",
766
+ "zeroize",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "deranged"
771
+ version = "0.5.6"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "cc3dc5ad92c2e2d1c193bbbbdf2ea477cb81331de4f3103f267ca18368b988c4"
774
+ dependencies = [
775
+ "powerfmt",
776
+ "serde_core",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "difflib"
781
+ version = "0.4.0"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
784
+
785
+ [[package]]
786
+ name = "digest"
787
+ version = "0.10.7"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
790
+ dependencies = [
791
+ "block-buffer",
792
+ "crypto-common",
793
+ "subtle",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "dirs"
798
+ version = "4.0.0"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
801
+ dependencies = [
802
+ "dirs-sys",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "dirs-sys"
807
+ version = "0.3.7"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
810
+ dependencies = [
811
+ "libc",
812
+ "redox_users",
813
+ "winapi",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "dispatch2"
818
+ version = "0.3.0"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
821
+ dependencies = [
822
+ "bitflags 2.11.0",
823
+ "block2",
824
+ "libc",
825
+ "objc2",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "displaydoc"
830
+ version = "0.2.5"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
833
+ dependencies = [
834
+ "proc-macro2",
835
+ "quote",
836
+ "syn",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "dlv-list"
841
+ version = "0.3.0"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
844
+
845
+ [[package]]
846
+ name = "ed25519"
847
+ version = "2.2.3"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
850
+ dependencies = [
851
+ "pkcs8",
852
+ "signature",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "ed25519-dalek"
857
+ version = "2.2.0"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
860
+ dependencies = [
861
+ "curve25519-dalek",
862
+ "ed25519",
863
+ "rand_core 0.6.4",
864
+ "serde",
865
+ "sha2",
866
+ "subtle",
867
+ "zeroize",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "either"
872
+ version = "1.15.0"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
875
+
876
+ [[package]]
877
+ name = "encode_unicode"
878
+ version = "1.0.0"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
881
+
882
+ [[package]]
883
+ name = "encoding_rs"
884
+ version = "0.8.35"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
887
+ dependencies = [
888
+ "cfg-if",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "equivalent"
893
+ version = "1.0.2"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
896
+
897
+ [[package]]
898
+ name = "errno"
899
+ version = "0.3.14"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
902
+ dependencies = [
903
+ "libc",
904
+ "windows-sys 0.61.2",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "fastcdc"
909
+ version = "3.2.1"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "bf51ceb43e96afbfe4dd5c6f6082af5dfd60e220820b8123792d61963f2ce6bc"
912
+
913
+ [[package]]
914
+ name = "fastrand"
915
+ version = "2.3.0"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
918
+
919
+ [[package]]
920
+ name = "fiat-crypto"
921
+ version = "0.2.9"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
924
+
925
+ [[package]]
926
+ name = "filetime"
927
+ version = "0.2.27"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
930
+ dependencies = [
931
+ "cfg-if",
932
+ "libc",
933
+ "libredox",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "find-msvc-tools"
938
+ version = "0.1.9"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
941
+
942
+ [[package]]
943
+ name = "flate2"
944
+ version = "1.1.9"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
947
+ dependencies = [
948
+ "crc32fast",
949
+ "miniz_oxide",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "float-cmp"
954
+ version = "0.10.0"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
957
+ dependencies = [
958
+ "num-traits",
959
+ ]
960
+
961
+ [[package]]
962
+ name = "fnv"
963
+ version = "1.0.7"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
966
+
967
+ [[package]]
968
+ name = "foldhash"
969
+ version = "0.1.5"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
972
+
973
+ [[package]]
974
+ name = "foreign-types"
975
+ version = "0.3.2"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
978
+ dependencies = [
979
+ "foreign-types-shared",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "foreign-types-shared"
984
+ version = "0.1.1"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
987
+
988
+ [[package]]
989
+ name = "form_urlencoded"
990
+ version = "1.2.2"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
993
+ dependencies = [
994
+ "percent-encoding",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "fuser"
999
+ version = "0.14.0"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "2e697f6f62c20b6fad1ba0f84ae909f25971cf16e735273524e3977c94604cf8"
1002
+ dependencies = [
1003
+ "libc",
1004
+ "log",
1005
+ "memchr",
1006
+ "page_size",
1007
+ "pkg-config",
1008
+ "smallvec",
1009
+ "zerocopy 0.7.35",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "futures"
1014
+ version = "0.3.32"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1017
+ dependencies = [
1018
+ "futures-channel",
1019
+ "futures-core",
1020
+ "futures-executor",
1021
+ "futures-io",
1022
+ "futures-sink",
1023
+ "futures-task",
1024
+ "futures-util",
1025
+ ]
1026
+
1027
+ [[package]]
1028
+ name = "futures-channel"
1029
+ version = "0.3.32"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1032
+ dependencies = [
1033
+ "futures-core",
1034
+ "futures-sink",
1035
+ ]
1036
+
1037
+ [[package]]
1038
+ name = "futures-core"
1039
+ version = "0.3.32"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1042
+
1043
+ [[package]]
1044
+ name = "futures-executor"
1045
+ version = "0.3.32"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1048
+ dependencies = [
1049
+ "futures-core",
1050
+ "futures-task",
1051
+ "futures-util",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "futures-io"
1056
+ version = "0.3.32"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1059
+
1060
+ [[package]]
1061
+ name = "futures-macro"
1062
+ version = "0.3.32"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1065
+ dependencies = [
1066
+ "proc-macro2",
1067
+ "quote",
1068
+ "syn",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "futures-sink"
1073
+ version = "0.3.32"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1076
+
1077
+ [[package]]
1078
+ name = "futures-task"
1079
+ version = "0.3.32"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1082
+
1083
+ [[package]]
1084
+ name = "futures-timer"
1085
+ version = "3.0.3"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
1088
+
1089
+ [[package]]
1090
+ name = "futures-util"
1091
+ version = "0.3.32"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1094
+ dependencies = [
1095
+ "futures-channel",
1096
+ "futures-core",
1097
+ "futures-io",
1098
+ "futures-macro",
1099
+ "futures-sink",
1100
+ "futures-task",
1101
+ "memchr",
1102
+ "pin-project-lite",
1103
+ "slab",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "generic-array"
1108
+ version = "0.14.7"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1111
+ dependencies = [
1112
+ "typenum",
1113
+ "version_check",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "getrandom"
1118
+ version = "0.2.17"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1121
+ dependencies = [
1122
+ "cfg-if",
1123
+ "libc",
1124
+ "wasi",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "getrandom"
1129
+ version = "0.3.4"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1132
+ dependencies = [
1133
+ "cfg-if",
1134
+ "libc",
1135
+ "r-efi",
1136
+ "wasip2",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "getrandom"
1141
+ version = "0.4.1"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
1144
+ dependencies = [
1145
+ "cfg-if",
1146
+ "libc",
1147
+ "r-efi",
1148
+ "wasip2",
1149
+ "wasip3",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "ghash"
1154
+ version = "0.5.1"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
1157
+ dependencies = [
1158
+ "opaque-debug",
1159
+ "polyval",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "glob"
1164
+ version = "0.3.3"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1167
+
1168
+ [[package]]
1169
+ name = "h2"
1170
+ version = "0.3.27"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
1173
+ dependencies = [
1174
+ "bytes",
1175
+ "fnv",
1176
+ "futures-core",
1177
+ "futures-sink",
1178
+ "futures-util",
1179
+ "http 0.2.12",
1180
+ "indexmap",
1181
+ "slab",
1182
+ "tokio",
1183
+ "tokio-util",
1184
+ "tracing",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "h2"
1189
+ version = "0.4.13"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
1192
+ dependencies = [
1193
+ "atomic-waker",
1194
+ "bytes",
1195
+ "fnv",
1196
+ "futures-core",
1197
+ "futures-sink",
1198
+ "http 1.4.0",
1199
+ "indexmap",
1200
+ "slab",
1201
+ "tokio",
1202
+ "tokio-util",
1203
+ "tracing",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "half"
1208
+ version = "2.7.1"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1211
+ dependencies = [
1212
+ "cfg-if",
1213
+ "crunchy",
1214
+ "zerocopy 0.8.39",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "hashbrown"
1219
+ version = "0.12.3"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1222
+ dependencies = [
1223
+ "ahash",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "hashbrown"
1228
+ version = "0.14.5"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1231
+
1232
+ [[package]]
1233
+ name = "hashbrown"
1234
+ version = "0.15.5"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1237
+ dependencies = [
1238
+ "allocator-api2",
1239
+ "equivalent",
1240
+ "foldhash",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "hashbrown"
1245
+ version = "0.16.1"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1248
+
1249
+ [[package]]
1250
+ name = "heck"
1251
+ version = "0.5.0"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1254
+
1255
+ [[package]]
1256
+ name = "hermit-abi"
1257
+ version = "0.5.2"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1260
+
1261
+ [[package]]
1262
+ name = "hex"
1263
+ version = "0.4.3"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1266
+
1267
+ [[package]]
1268
+ name = "hexz"
1269
+ version = "0.1.1"
1270
+ dependencies = [
1271
+ "anyhow",
1272
+ "assert_cmd",
1273
+ "bincode",
1274
+ "blake3",
1275
+ "clap",
1276
+ "crc32fast",
1277
+ "criterion",
1278
+ "ctrlc",
1279
+ "daemonize",
1280
+ "flate2",
1281
+ "fuser",
1282
+ "hex",
1283
+ "hexz-common",
1284
+ "hexz-core",
1285
+ "hexz-fuse",
1286
+ "hexz-server",
1287
+ "indicatif",
1288
+ "libc",
1289
+ "lz4_flex",
1290
+ "predicates",
1291
+ "rand 0.8.5",
1292
+ "rayon",
1293
+ "rpassword",
1294
+ "serde_json",
1295
+ "sha2",
1296
+ "tar",
1297
+ "tempfile",
1298
+ "tokio",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "hexz-common"
1303
+ version = "0.1.1"
1304
+ dependencies = [
1305
+ "bincode",
1306
+ "ed25519-dalek",
1307
+ "rand 0.8.5",
1308
+ "serde",
1309
+ "serde_json",
1310
+ "sha2",
1311
+ "thiserror",
1312
+ "tracing",
1313
+ "tracing-subscriber",
1314
+ "zeroize",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "hexz-core"
1319
+ version = "0.1.1"
1320
+ dependencies = [
1321
+ "aes-gcm",
1322
+ "anyhow",
1323
+ "bincode",
1324
+ "blake3",
1325
+ "bytes",
1326
+ "crc32fast",
1327
+ "dashmap",
1328
+ "fastcdc",
1329
+ "hexz-common",
1330
+ "hmac",
1331
+ "lru",
1332
+ "lz4_flex",
1333
+ "memmap2",
1334
+ "pbkdf2",
1335
+ "proptest",
1336
+ "rand 0.8.5",
1337
+ "rayon",
1338
+ "reqwest",
1339
+ "rstest",
1340
+ "rust-s3",
1341
+ "serde",
1342
+ "sha2",
1343
+ "tempfile",
1344
+ "thiserror",
1345
+ "tokio",
1346
+ "tracing",
1347
+ "url",
1348
+ "wiremock",
1349
+ "zeroize",
1350
+ "zstd",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "hexz-fuse"
1355
+ version = "0.1.1"
1356
+ dependencies = [
1357
+ "anyhow",
1358
+ "bincode",
1359
+ "fuser",
1360
+ "hexz-common",
1361
+ "hexz-core",
1362
+ "libc",
1363
+ "serde",
1364
+ "tempfile",
1365
+ "tracing",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "hexz-loader"
1370
+ version = "0.1.1"
1371
+ dependencies = [
1372
+ "bincode",
1373
+ "hexz-common",
1374
+ "hexz-core",
1375
+ "pyo3",
1376
+ "pyo3-async-runtimes",
1377
+ "serde_json",
1378
+ "tempfile",
1379
+ "tokio",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "hexz-server"
1384
+ version = "0.1.1"
1385
+ dependencies = [
1386
+ "anyhow",
1387
+ "axum",
1388
+ "bytes",
1389
+ "hexz-common",
1390
+ "hexz-core",
1391
+ "rand 0.8.5",
1392
+ "reqwest",
1393
+ "tempfile",
1394
+ "tokio",
1395
+ "tower 0.4.13",
1396
+ "tower-http",
1397
+ "tracing",
1398
+ ]
1399
+
1400
+ [[package]]
1401
+ name = "hmac"
1402
+ version = "0.12.1"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1405
+ dependencies = [
1406
+ "digest",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "http"
1411
+ version = "0.2.12"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1414
+ dependencies = [
1415
+ "bytes",
1416
+ "fnv",
1417
+ "itoa",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "http"
1422
+ version = "1.4.0"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1425
+ dependencies = [
1426
+ "bytes",
1427
+ "itoa",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "http-body"
1432
+ version = "0.4.6"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1435
+ dependencies = [
1436
+ "bytes",
1437
+ "http 0.2.12",
1438
+ "pin-project-lite",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "http-body"
1443
+ version = "1.0.1"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1446
+ dependencies = [
1447
+ "bytes",
1448
+ "http 1.4.0",
1449
+ ]
1450
+
1451
+ [[package]]
1452
+ name = "http-body-util"
1453
+ version = "0.1.3"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1456
+ dependencies = [
1457
+ "bytes",
1458
+ "futures-core",
1459
+ "http 1.4.0",
1460
+ "http-body 1.0.1",
1461
+ "pin-project-lite",
1462
+ ]
1463
+
1464
+ [[package]]
1465
+ name = "http-range-header"
1466
+ version = "0.4.2"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c"
1469
+
1470
+ [[package]]
1471
+ name = "httparse"
1472
+ version = "1.10.1"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1475
+
1476
+ [[package]]
1477
+ name = "httpdate"
1478
+ version = "1.0.3"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1481
+
1482
+ [[package]]
1483
+ name = "hyper"
1484
+ version = "0.14.32"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
1487
+ dependencies = [
1488
+ "bytes",
1489
+ "futures-channel",
1490
+ "futures-core",
1491
+ "futures-util",
1492
+ "h2 0.3.27",
1493
+ "http 0.2.12",
1494
+ "http-body 0.4.6",
1495
+ "httparse",
1496
+ "httpdate",
1497
+ "itoa",
1498
+ "pin-project-lite",
1499
+ "socket2 0.5.10",
1500
+ "tokio",
1501
+ "tower-service",
1502
+ "tracing",
1503
+ "want",
1504
+ ]
1505
+
1506
+ [[package]]
1507
+ name = "hyper"
1508
+ version = "1.8.1"
1509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1510
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1511
+ dependencies = [
1512
+ "atomic-waker",
1513
+ "bytes",
1514
+ "futures-channel",
1515
+ "futures-core",
1516
+ "h2 0.4.13",
1517
+ "http 1.4.0",
1518
+ "http-body 1.0.1",
1519
+ "httparse",
1520
+ "httpdate",
1521
+ "itoa",
1522
+ "pin-project-lite",
1523
+ "pin-utils",
1524
+ "smallvec",
1525
+ "tokio",
1526
+ "want",
1527
+ ]
1528
+
1529
+ [[package]]
1530
+ name = "hyper-rustls"
1531
+ version = "0.24.2"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
1534
+ dependencies = [
1535
+ "futures-util",
1536
+ "http 0.2.12",
1537
+ "hyper 0.14.32",
1538
+ "rustls 0.21.12",
1539
+ "tokio",
1540
+ "tokio-rustls",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "hyper-tls"
1545
+ version = "0.5.0"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
1548
+ dependencies = [
1549
+ "bytes",
1550
+ "hyper 0.14.32",
1551
+ "native-tls",
1552
+ "tokio",
1553
+ "tokio-native-tls",
1554
+ ]
1555
+
1556
+ [[package]]
1557
+ name = "hyper-util"
1558
+ version = "0.1.20"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1561
+ dependencies = [
1562
+ "bytes",
1563
+ "http 1.4.0",
1564
+ "http-body 1.0.1",
1565
+ "hyper 1.8.1",
1566
+ "pin-project-lite",
1567
+ "tokio",
1568
+ "tower-service",
1569
+ ]
1570
+
1571
+ [[package]]
1572
+ name = "icu_collections"
1573
+ version = "2.1.1"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1576
+ dependencies = [
1577
+ "displaydoc",
1578
+ "potential_utf",
1579
+ "yoke",
1580
+ "zerofrom",
1581
+ "zerovec",
1582
+ ]
1583
+
1584
+ [[package]]
1585
+ name = "icu_locale_core"
1586
+ version = "2.1.1"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1589
+ dependencies = [
1590
+ "displaydoc",
1591
+ "litemap",
1592
+ "tinystr",
1593
+ "writeable",
1594
+ "zerovec",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "icu_normalizer"
1599
+ version = "2.1.1"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1602
+ dependencies = [
1603
+ "icu_collections",
1604
+ "icu_normalizer_data",
1605
+ "icu_properties",
1606
+ "icu_provider",
1607
+ "smallvec",
1608
+ "zerovec",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "icu_normalizer_data"
1613
+ version = "2.1.1"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1616
+
1617
+ [[package]]
1618
+ name = "icu_properties"
1619
+ version = "2.1.2"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1622
+ dependencies = [
1623
+ "icu_collections",
1624
+ "icu_locale_core",
1625
+ "icu_properties_data",
1626
+ "icu_provider",
1627
+ "zerotrie",
1628
+ "zerovec",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "icu_properties_data"
1633
+ version = "2.1.2"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1636
+
1637
+ [[package]]
1638
+ name = "icu_provider"
1639
+ version = "2.1.1"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1642
+ dependencies = [
1643
+ "displaydoc",
1644
+ "icu_locale_core",
1645
+ "writeable",
1646
+ "yoke",
1647
+ "zerofrom",
1648
+ "zerotrie",
1649
+ "zerovec",
1650
+ ]
1651
+
1652
+ [[package]]
1653
+ name = "id-arena"
1654
+ version = "2.3.0"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1657
+
1658
+ [[package]]
1659
+ name = "idna"
1660
+ version = "1.1.0"
1661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1663
+ dependencies = [
1664
+ "idna_adapter",
1665
+ "smallvec",
1666
+ "utf8_iter",
1667
+ ]
1668
+
1669
+ [[package]]
1670
+ name = "idna_adapter"
1671
+ version = "1.2.1"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1674
+ dependencies = [
1675
+ "icu_normalizer",
1676
+ "icu_properties",
1677
+ ]
1678
+
1679
+ [[package]]
1680
+ name = "indexmap"
1681
+ version = "2.13.0"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1684
+ dependencies = [
1685
+ "equivalent",
1686
+ "hashbrown 0.16.1",
1687
+ "serde",
1688
+ "serde_core",
1689
+ ]
1690
+
1691
+ [[package]]
1692
+ name = "indicatif"
1693
+ version = "0.17.11"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
1696
+ dependencies = [
1697
+ "console",
1698
+ "number_prefix",
1699
+ "portable-atomic",
1700
+ "unicode-width",
1701
+ "web-time",
1702
+ ]
1703
+
1704
+ [[package]]
1705
+ name = "indoc"
1706
+ version = "2.0.7"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1709
+ dependencies = [
1710
+ "rustversion",
1711
+ ]
1712
+
1713
+ [[package]]
1714
+ name = "inout"
1715
+ version = "0.1.4"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1718
+ dependencies = [
1719
+ "generic-array",
1720
+ ]
1721
+
1722
+ [[package]]
1723
+ name = "ipnet"
1724
+ version = "2.11.0"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1727
+
1728
+ [[package]]
1729
+ name = "is-terminal"
1730
+ version = "0.4.17"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1733
+ dependencies = [
1734
+ "hermit-abi",
1735
+ "libc",
1736
+ "windows-sys 0.61.2",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "is_terminal_polyfill"
1741
+ version = "1.70.2"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1744
+
1745
+ [[package]]
1746
+ name = "itertools"
1747
+ version = "0.10.5"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1750
+ dependencies = [
1751
+ "either",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "itoa"
1756
+ version = "1.0.17"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1759
+
1760
+ [[package]]
1761
+ name = "jobserver"
1762
+ version = "0.1.34"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1765
+ dependencies = [
1766
+ "getrandom 0.3.4",
1767
+ "libc",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "js-sys"
1772
+ version = "0.3.85"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
1775
+ dependencies = [
1776
+ "once_cell",
1777
+ "wasm-bindgen",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "lazy_static"
1782
+ version = "1.5.0"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1785
+
1786
+ [[package]]
1787
+ name = "leb128fmt"
1788
+ version = "0.1.0"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1791
+
1792
+ [[package]]
1793
+ name = "libc"
1794
+ version = "0.2.180"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
1797
+
1798
+ [[package]]
1799
+ name = "libredox"
1800
+ version = "0.1.12"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
1803
+ dependencies = [
1804
+ "bitflags 2.11.0",
1805
+ "libc",
1806
+ "redox_syscall 0.7.1",
1807
+ ]
1808
+
1809
+ [[package]]
1810
+ name = "linux-raw-sys"
1811
+ version = "0.11.0"
1812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1813
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1814
+
1815
+ [[package]]
1816
+ name = "litemap"
1817
+ version = "0.8.1"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1820
+
1821
+ [[package]]
1822
+ name = "lock_api"
1823
+ version = "0.4.14"
1824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1825
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1826
+ dependencies = [
1827
+ "scopeguard",
1828
+ ]
1829
+
1830
+ [[package]]
1831
+ name = "log"
1832
+ version = "0.4.29"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1835
+
1836
+ [[package]]
1837
+ name = "lru"
1838
+ version = "0.12.5"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
1841
+ dependencies = [
1842
+ "hashbrown 0.15.5",
1843
+ ]
1844
+
1845
+ [[package]]
1846
+ name = "lz4_flex"
1847
+ version = "0.11.5"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
1850
+ dependencies = [
1851
+ "twox-hash",
1852
+ ]
1853
+
1854
+ [[package]]
1855
+ name = "matchit"
1856
+ version = "0.7.3"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1859
+
1860
+ [[package]]
1861
+ name = "maybe-async"
1862
+ version = "0.2.10"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11"
1865
+ dependencies = [
1866
+ "proc-macro2",
1867
+ "quote",
1868
+ "syn",
1869
+ ]
1870
+
1871
+ [[package]]
1872
+ name = "md5"
1873
+ version = "0.7.0"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
1876
+
1877
+ [[package]]
1878
+ name = "memchr"
1879
+ version = "2.8.0"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1882
+
1883
+ [[package]]
1884
+ name = "memmap2"
1885
+ version = "0.9.10"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
1888
+ dependencies = [
1889
+ "libc",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "memoffset"
1894
+ version = "0.9.1"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1897
+ dependencies = [
1898
+ "autocfg",
1899
+ ]
1900
+
1901
+ [[package]]
1902
+ name = "mime"
1903
+ version = "0.3.17"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1906
+
1907
+ [[package]]
1908
+ name = "mime_guess"
1909
+ version = "2.0.5"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1912
+ dependencies = [
1913
+ "mime",
1914
+ "unicase",
1915
+ ]
1916
+
1917
+ [[package]]
1918
+ name = "miniz_oxide"
1919
+ version = "0.8.9"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1922
+ dependencies = [
1923
+ "adler2",
1924
+ "simd-adler32",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "mio"
1929
+ version = "1.1.1"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1932
+ dependencies = [
1933
+ "libc",
1934
+ "wasi",
1935
+ "windows-sys 0.61.2",
1936
+ ]
1937
+
1938
+ [[package]]
1939
+ name = "native-tls"
1940
+ version = "0.2.16"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "9d5d26952a508f321b4d3d2e80e78fc2603eaefcdf0c30783867f19586518bdc"
1943
+ dependencies = [
1944
+ "libc",
1945
+ "log",
1946
+ "openssl",
1947
+ "openssl-probe",
1948
+ "openssl-sys",
1949
+ "schannel",
1950
+ "security-framework",
1951
+ "security-framework-sys",
1952
+ "tempfile",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "nix"
1957
+ version = "0.31.1"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "225e7cfe711e0ba79a68baeddb2982723e4235247aefce1482f2f16c27865b66"
1960
+ dependencies = [
1961
+ "bitflags 2.11.0",
1962
+ "cfg-if",
1963
+ "cfg_aliases",
1964
+ "libc",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "normalize-line-endings"
1969
+ version = "0.3.0"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
1972
+
1973
+ [[package]]
1974
+ name = "nu-ansi-term"
1975
+ version = "0.50.3"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1978
+ dependencies = [
1979
+ "windows-sys 0.61.2",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "num-conv"
1984
+ version = "0.2.0"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
1987
+
1988
+ [[package]]
1989
+ name = "num-traits"
1990
+ version = "0.2.19"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1993
+ dependencies = [
1994
+ "autocfg",
1995
+ ]
1996
+
1997
+ [[package]]
1998
+ name = "num_cpus"
1999
+ version = "1.17.0"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2002
+ dependencies = [
2003
+ "hermit-abi",
2004
+ "libc",
2005
+ ]
2006
+
2007
+ [[package]]
2008
+ name = "number_prefix"
2009
+ version = "0.4.0"
2010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2011
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2012
+
2013
+ [[package]]
2014
+ name = "objc2"
2015
+ version = "0.6.3"
2016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2017
+ checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05"
2018
+ dependencies = [
2019
+ "objc2-encode",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "objc2-encode"
2024
+ version = "4.1.0"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
2027
+
2028
+ [[package]]
2029
+ name = "once_cell"
2030
+ version = "1.21.3"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2033
+
2034
+ [[package]]
2035
+ name = "once_cell_polyfill"
2036
+ version = "1.70.2"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2039
+
2040
+ [[package]]
2041
+ name = "oorandom"
2042
+ version = "11.1.5"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
2045
+
2046
+ [[package]]
2047
+ name = "opaque-debug"
2048
+ version = "0.3.1"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
2051
+
2052
+ [[package]]
2053
+ name = "openssl"
2054
+ version = "0.10.75"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
2057
+ dependencies = [
2058
+ "bitflags 2.11.0",
2059
+ "cfg-if",
2060
+ "foreign-types",
2061
+ "libc",
2062
+ "once_cell",
2063
+ "openssl-macros",
2064
+ "openssl-sys",
2065
+ ]
2066
+
2067
+ [[package]]
2068
+ name = "openssl-macros"
2069
+ version = "0.1.1"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2072
+ dependencies = [
2073
+ "proc-macro2",
2074
+ "quote",
2075
+ "syn",
2076
+ ]
2077
+
2078
+ [[package]]
2079
+ name = "openssl-probe"
2080
+ version = "0.2.1"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
2083
+
2084
+ [[package]]
2085
+ name = "openssl-sys"
2086
+ version = "0.9.111"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
2089
+ dependencies = [
2090
+ "cc",
2091
+ "libc",
2092
+ "pkg-config",
2093
+ "vcpkg",
2094
+ ]
2095
+
2096
+ [[package]]
2097
+ name = "ordered-multimap"
2098
+ version = "0.4.3"
2099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2100
+ checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
2101
+ dependencies = [
2102
+ "dlv-list",
2103
+ "hashbrown 0.12.3",
2104
+ ]
2105
+
2106
+ [[package]]
2107
+ name = "page_size"
2108
+ version = "0.6.0"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
2111
+ dependencies = [
2112
+ "libc",
2113
+ "winapi",
2114
+ ]
2115
+
2116
+ [[package]]
2117
+ name = "parking_lot"
2118
+ version = "0.12.5"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2121
+ dependencies = [
2122
+ "lock_api",
2123
+ "parking_lot_core",
2124
+ ]
2125
+
2126
+ [[package]]
2127
+ name = "parking_lot_core"
2128
+ version = "0.9.12"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2131
+ dependencies = [
2132
+ "cfg-if",
2133
+ "libc",
2134
+ "redox_syscall 0.5.18",
2135
+ "smallvec",
2136
+ "windows-link",
2137
+ ]
2138
+
2139
+ [[package]]
2140
+ name = "pbkdf2"
2141
+ version = "0.12.2"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
2144
+ dependencies = [
2145
+ "digest",
2146
+ "hmac",
2147
+ ]
2148
+
2149
+ [[package]]
2150
+ name = "percent-encoding"
2151
+ version = "2.3.2"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2154
+
2155
+ [[package]]
2156
+ name = "pin-project-lite"
2157
+ version = "0.2.16"
2158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2159
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2160
+
2161
+ [[package]]
2162
+ name = "pin-utils"
2163
+ version = "0.1.0"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2166
+
2167
+ [[package]]
2168
+ name = "pkcs8"
2169
+ version = "0.10.2"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2172
+ dependencies = [
2173
+ "der",
2174
+ "spki",
2175
+ ]
2176
+
2177
+ [[package]]
2178
+ name = "pkg-config"
2179
+ version = "0.3.32"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2182
+
2183
+ [[package]]
2184
+ name = "plotters"
2185
+ version = "0.3.7"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
2188
+ dependencies = [
2189
+ "num-traits",
2190
+ "plotters-backend",
2191
+ "plotters-svg",
2192
+ "wasm-bindgen",
2193
+ "web-sys",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "plotters-backend"
2198
+ version = "0.3.7"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
2201
+
2202
+ [[package]]
2203
+ name = "plotters-svg"
2204
+ version = "0.3.7"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
2207
+ dependencies = [
2208
+ "plotters-backend",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "polyval"
2213
+ version = "0.6.2"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
2216
+ dependencies = [
2217
+ "cfg-if",
2218
+ "cpufeatures",
2219
+ "opaque-debug",
2220
+ "universal-hash",
2221
+ ]
2222
+
2223
+ [[package]]
2224
+ name = "portable-atomic"
2225
+ version = "1.13.1"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2228
+
2229
+ [[package]]
2230
+ name = "potential_utf"
2231
+ version = "0.1.4"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2234
+ dependencies = [
2235
+ "zerovec",
2236
+ ]
2237
+
2238
+ [[package]]
2239
+ name = "powerfmt"
2240
+ version = "0.2.0"
2241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2242
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2243
+
2244
+ [[package]]
2245
+ name = "ppv-lite86"
2246
+ version = "0.2.21"
2247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2248
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2249
+ dependencies = [
2250
+ "zerocopy 0.8.39",
2251
+ ]
2252
+
2253
+ [[package]]
2254
+ name = "predicates"
2255
+ version = "3.1.4"
2256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
2258
+ dependencies = [
2259
+ "anstyle",
2260
+ "difflib",
2261
+ "float-cmp",
2262
+ "normalize-line-endings",
2263
+ "predicates-core",
2264
+ "regex",
2265
+ ]
2266
+
2267
+ [[package]]
2268
+ name = "predicates-core"
2269
+ version = "1.0.10"
2270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2271
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
2272
+
2273
+ [[package]]
2274
+ name = "predicates-tree"
2275
+ version = "1.0.13"
2276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2277
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
2278
+ dependencies = [
2279
+ "predicates-core",
2280
+ "termtree",
2281
+ ]
2282
+
2283
+ [[package]]
2284
+ name = "prettyplease"
2285
+ version = "0.2.37"
2286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2287
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2288
+ dependencies = [
2289
+ "proc-macro2",
2290
+ "syn",
2291
+ ]
2292
+
2293
+ [[package]]
2294
+ name = "proc-macro2"
2295
+ version = "1.0.106"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2298
+ dependencies = [
2299
+ "unicode-ident",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "proptest"
2304
+ version = "1.10.0"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532"
2307
+ dependencies = [
2308
+ "bit-set",
2309
+ "bit-vec",
2310
+ "bitflags 2.11.0",
2311
+ "num-traits",
2312
+ "rand 0.9.2",
2313
+ "rand_chacha 0.9.0",
2314
+ "rand_xorshift",
2315
+ "regex-syntax",
2316
+ "rusty-fork",
2317
+ "tempfile",
2318
+ "unarray",
2319
+ ]
2320
+
2321
+ [[package]]
2322
+ name = "pyo3"
2323
+ version = "0.23.5"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
2326
+ dependencies = [
2327
+ "cfg-if",
2328
+ "indoc",
2329
+ "libc",
2330
+ "memoffset",
2331
+ "once_cell",
2332
+ "portable-atomic",
2333
+ "pyo3-build-config",
2334
+ "pyo3-ffi",
2335
+ "pyo3-macros",
2336
+ "unindent",
2337
+ ]
2338
+
2339
+ [[package]]
2340
+ name = "pyo3-async-runtimes"
2341
+ version = "0.23.0"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "977dc837525cfd22919ba6a831413854beb7c99a256c03bf8624ad707e45810e"
2344
+ dependencies = [
2345
+ "futures",
2346
+ "once_cell",
2347
+ "pin-project-lite",
2348
+ "pyo3",
2349
+ "tokio",
2350
+ ]
2351
+
2352
+ [[package]]
2353
+ name = "pyo3-build-config"
2354
+ version = "0.23.5"
2355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2356
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
2357
+ dependencies = [
2358
+ "once_cell",
2359
+ "target-lexicon",
2360
+ ]
2361
+
2362
+ [[package]]
2363
+ name = "pyo3-ffi"
2364
+ version = "0.23.5"
2365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2366
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
2367
+ dependencies = [
2368
+ "libc",
2369
+ "pyo3-build-config",
2370
+ ]
2371
+
2372
+ [[package]]
2373
+ name = "pyo3-macros"
2374
+ version = "0.23.5"
2375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2376
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
2377
+ dependencies = [
2378
+ "proc-macro2",
2379
+ "pyo3-macros-backend",
2380
+ "quote",
2381
+ "syn",
2382
+ ]
2383
+
2384
+ [[package]]
2385
+ name = "pyo3-macros-backend"
2386
+ version = "0.23.5"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
2389
+ dependencies = [
2390
+ "heck",
2391
+ "proc-macro2",
2392
+ "pyo3-build-config",
2393
+ "quote",
2394
+ "syn",
2395
+ ]
2396
+
2397
+ [[package]]
2398
+ name = "quick-error"
2399
+ version = "1.2.3"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2402
+
2403
+ [[package]]
2404
+ name = "quick-xml"
2405
+ version = "0.26.0"
2406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2407
+ checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
2408
+ dependencies = [
2409
+ "memchr",
2410
+ "serde",
2411
+ ]
2412
+
2413
+ [[package]]
2414
+ name = "quote"
2415
+ version = "1.0.44"
2416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2417
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
2418
+ dependencies = [
2419
+ "proc-macro2",
2420
+ ]
2421
+
2422
+ [[package]]
2423
+ name = "r-efi"
2424
+ version = "5.3.0"
2425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2426
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2427
+
2428
+ [[package]]
2429
+ name = "rand"
2430
+ version = "0.8.5"
2431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2432
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2433
+ dependencies = [
2434
+ "libc",
2435
+ "rand_chacha 0.3.1",
2436
+ "rand_core 0.6.4",
2437
+ ]
2438
+
2439
+ [[package]]
2440
+ name = "rand"
2441
+ version = "0.9.2"
2442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2443
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2444
+ dependencies = [
2445
+ "rand_chacha 0.9.0",
2446
+ "rand_core 0.9.5",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "rand_chacha"
2451
+ version = "0.3.1"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2454
+ dependencies = [
2455
+ "ppv-lite86",
2456
+ "rand_core 0.6.4",
2457
+ ]
2458
+
2459
+ [[package]]
2460
+ name = "rand_chacha"
2461
+ version = "0.9.0"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2464
+ dependencies = [
2465
+ "ppv-lite86",
2466
+ "rand_core 0.9.5",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "rand_core"
2471
+ version = "0.6.4"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2474
+ dependencies = [
2475
+ "getrandom 0.2.17",
2476
+ ]
2477
+
2478
+ [[package]]
2479
+ name = "rand_core"
2480
+ version = "0.9.5"
2481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2482
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2483
+ dependencies = [
2484
+ "getrandom 0.3.4",
2485
+ ]
2486
+
2487
+ [[package]]
2488
+ name = "rand_xorshift"
2489
+ version = "0.4.0"
2490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2491
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
2492
+ dependencies = [
2493
+ "rand_core 0.9.5",
2494
+ ]
2495
+
2496
+ [[package]]
2497
+ name = "rayon"
2498
+ version = "1.11.0"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2501
+ dependencies = [
2502
+ "either",
2503
+ "rayon-core",
2504
+ ]
2505
+
2506
+ [[package]]
2507
+ name = "rayon-core"
2508
+ version = "1.13.0"
2509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2510
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2511
+ dependencies = [
2512
+ "crossbeam-deque",
2513
+ "crossbeam-utils",
2514
+ ]
2515
+
2516
+ [[package]]
2517
+ name = "redox_syscall"
2518
+ version = "0.5.18"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2521
+ dependencies = [
2522
+ "bitflags 2.11.0",
2523
+ ]
2524
+
2525
+ [[package]]
2526
+ name = "redox_syscall"
2527
+ version = "0.7.1"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "35985aa610addc02e24fc232012c86fd11f14111180f902b67e2d5331f8ebf2b"
2530
+ dependencies = [
2531
+ "bitflags 2.11.0",
2532
+ ]
2533
+
2534
+ [[package]]
2535
+ name = "redox_users"
2536
+ version = "0.4.6"
2537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2538
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2539
+ dependencies = [
2540
+ "getrandom 0.2.17",
2541
+ "libredox",
2542
+ "thiserror",
2543
+ ]
2544
+
2545
+ [[package]]
2546
+ name = "regex"
2547
+ version = "1.12.3"
2548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2549
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2550
+ dependencies = [
2551
+ "aho-corasick",
2552
+ "memchr",
2553
+ "regex-automata",
2554
+ "regex-syntax",
2555
+ ]
2556
+
2557
+ [[package]]
2558
+ name = "regex-automata"
2559
+ version = "0.4.14"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2562
+ dependencies = [
2563
+ "aho-corasick",
2564
+ "memchr",
2565
+ "regex-syntax",
2566
+ ]
2567
+
2568
+ [[package]]
2569
+ name = "regex-syntax"
2570
+ version = "0.8.9"
2571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2572
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
2573
+
2574
+ [[package]]
2575
+ name = "relative-path"
2576
+ version = "1.9.3"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2579
+
2580
+ [[package]]
2581
+ name = "reqwest"
2582
+ version = "0.11.27"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
2585
+ dependencies = [
2586
+ "base64 0.21.7",
2587
+ "bytes",
2588
+ "encoding_rs",
2589
+ "futures-core",
2590
+ "futures-util",
2591
+ "h2 0.3.27",
2592
+ "http 0.2.12",
2593
+ "http-body 0.4.6",
2594
+ "hyper 0.14.32",
2595
+ "hyper-rustls",
2596
+ "hyper-tls",
2597
+ "ipnet",
2598
+ "js-sys",
2599
+ "log",
2600
+ "mime",
2601
+ "native-tls",
2602
+ "once_cell",
2603
+ "percent-encoding",
2604
+ "pin-project-lite",
2605
+ "rustls 0.21.12",
2606
+ "rustls-pemfile",
2607
+ "serde",
2608
+ "serde_json",
2609
+ "serde_urlencoded",
2610
+ "sync_wrapper 0.1.2",
2611
+ "system-configuration",
2612
+ "tokio",
2613
+ "tokio-native-tls",
2614
+ "tokio-rustls",
2615
+ "tokio-util",
2616
+ "tower-service",
2617
+ "url",
2618
+ "wasm-bindgen",
2619
+ "wasm-bindgen-futures",
2620
+ "wasm-streams",
2621
+ "web-sys",
2622
+ "webpki-roots 0.25.4",
2623
+ "winreg",
2624
+ ]
2625
+
2626
+ [[package]]
2627
+ name = "ring"
2628
+ version = "0.16.20"
2629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
+ checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2631
+ dependencies = [
2632
+ "cc",
2633
+ "libc",
2634
+ "once_cell",
2635
+ "spin",
2636
+ "untrusted 0.7.1",
2637
+ "web-sys",
2638
+ "winapi",
2639
+ ]
2640
+
2641
+ [[package]]
2642
+ name = "ring"
2643
+ version = "0.17.14"
2644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2645
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2646
+ dependencies = [
2647
+ "cc",
2648
+ "cfg-if",
2649
+ "getrandom 0.2.17",
2650
+ "libc",
2651
+ "untrusted 0.9.0",
2652
+ "windows-sys 0.52.0",
2653
+ ]
2654
+
2655
+ [[package]]
2656
+ name = "rpassword"
2657
+ version = "7.4.0"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "66d4c8b64f049c6721ec8ccec37ddfc3d641c4a7fca57e8f2a89de509c73df39"
2660
+ dependencies = [
2661
+ "libc",
2662
+ "rtoolbox",
2663
+ "windows-sys 0.59.0",
2664
+ ]
2665
+
2666
+ [[package]]
2667
+ name = "rstest"
2668
+ version = "0.18.2"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199"
2671
+ dependencies = [
2672
+ "futures",
2673
+ "futures-timer",
2674
+ "rstest_macros",
2675
+ "rustc_version",
2676
+ ]
2677
+
2678
+ [[package]]
2679
+ name = "rstest_macros"
2680
+ version = "0.18.2"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605"
2683
+ dependencies = [
2684
+ "cfg-if",
2685
+ "glob",
2686
+ "proc-macro2",
2687
+ "quote",
2688
+ "regex",
2689
+ "relative-path",
2690
+ "rustc_version",
2691
+ "syn",
2692
+ "unicode-ident",
2693
+ ]
2694
+
2695
+ [[package]]
2696
+ name = "rtoolbox"
2697
+ version = "0.0.3"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "a7cc970b249fbe527d6e02e0a227762c9108b2f49d81094fe357ffc6d14d7f6f"
2700
+ dependencies = [
2701
+ "libc",
2702
+ "windows-sys 0.52.0",
2703
+ ]
2704
+
2705
+ [[package]]
2706
+ name = "rust-ini"
2707
+ version = "0.18.0"
2708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2709
+ checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
2710
+ dependencies = [
2711
+ "cfg-if",
2712
+ "ordered-multimap",
2713
+ ]
2714
+
2715
+ [[package]]
2716
+ name = "rust-s3"
2717
+ version = "0.33.0"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "1b2ac5ff6acfbe74226fa701b5ef793aaa054055c13ebb7060ad36942956e027"
2720
+ dependencies = [
2721
+ "async-trait",
2722
+ "aws-creds",
2723
+ "aws-region",
2724
+ "base64 0.13.1",
2725
+ "bytes",
2726
+ "cfg-if",
2727
+ "futures",
2728
+ "hex",
2729
+ "hmac",
2730
+ "http 0.2.12",
2731
+ "log",
2732
+ "maybe-async",
2733
+ "md5",
2734
+ "percent-encoding",
2735
+ "quick-xml",
2736
+ "reqwest",
2737
+ "serde",
2738
+ "serde_derive",
2739
+ "sha2",
2740
+ "thiserror",
2741
+ "time",
2742
+ "tokio",
2743
+ "tokio-stream",
2744
+ "url",
2745
+ ]
2746
+
2747
+ [[package]]
2748
+ name = "rustc_version"
2749
+ version = "0.4.1"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2752
+ dependencies = [
2753
+ "semver",
2754
+ ]
2755
+
2756
+ [[package]]
2757
+ name = "rustix"
2758
+ version = "1.1.3"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
2761
+ dependencies = [
2762
+ "bitflags 2.11.0",
2763
+ "errno",
2764
+ "libc",
2765
+ "linux-raw-sys",
2766
+ "windows-sys 0.61.2",
2767
+ ]
2768
+
2769
+ [[package]]
2770
+ name = "rustls"
2771
+ version = "0.20.9"
2772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2773
+ checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99"
2774
+ dependencies = [
2775
+ "log",
2776
+ "ring 0.16.20",
2777
+ "sct",
2778
+ "webpki",
2779
+ ]
2780
+
2781
+ [[package]]
2782
+ name = "rustls"
2783
+ version = "0.21.12"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
2786
+ dependencies = [
2787
+ "log",
2788
+ "ring 0.17.14",
2789
+ "rustls-webpki",
2790
+ "sct",
2791
+ ]
2792
+
2793
+ [[package]]
2794
+ name = "rustls-pemfile"
2795
+ version = "1.0.4"
2796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2797
+ checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
2798
+ dependencies = [
2799
+ "base64 0.21.7",
2800
+ ]
2801
+
2802
+ [[package]]
2803
+ name = "rustls-webpki"
2804
+ version = "0.101.7"
2805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2806
+ checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
2807
+ dependencies = [
2808
+ "ring 0.17.14",
2809
+ "untrusted 0.9.0",
2810
+ ]
2811
+
2812
+ [[package]]
2813
+ name = "rustversion"
2814
+ version = "1.0.22"
2815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2816
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2817
+
2818
+ [[package]]
2819
+ name = "rusty-fork"
2820
+ version = "0.3.1"
2821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2822
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
2823
+ dependencies = [
2824
+ "fnv",
2825
+ "quick-error",
2826
+ "tempfile",
2827
+ "wait-timeout",
2828
+ ]
2829
+
2830
+ [[package]]
2831
+ name = "ryu"
2832
+ version = "1.0.23"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2835
+
2836
+ [[package]]
2837
+ name = "same-file"
2838
+ version = "1.0.6"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2841
+ dependencies = [
2842
+ "winapi-util",
2843
+ ]
2844
+
2845
+ [[package]]
2846
+ name = "schannel"
2847
+ version = "0.1.28"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2850
+ dependencies = [
2851
+ "windows-sys 0.61.2",
2852
+ ]
2853
+
2854
+ [[package]]
2855
+ name = "scopeguard"
2856
+ version = "1.2.0"
2857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2859
+
2860
+ [[package]]
2861
+ name = "sct"
2862
+ version = "0.7.1"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
2865
+ dependencies = [
2866
+ "ring 0.17.14",
2867
+ "untrusted 0.9.0",
2868
+ ]
2869
+
2870
+ [[package]]
2871
+ name = "security-framework"
2872
+ version = "3.6.0"
2873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2874
+ checksum = "d17b898a6d6948c3a8ee4372c17cb384f90d2e6e912ef00895b14fd7ab54ec38"
2875
+ dependencies = [
2876
+ "bitflags 2.11.0",
2877
+ "core-foundation 0.10.1",
2878
+ "core-foundation-sys",
2879
+ "libc",
2880
+ "security-framework-sys",
2881
+ ]
2882
+
2883
+ [[package]]
2884
+ name = "security-framework-sys"
2885
+ version = "2.16.0"
2886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2887
+ checksum = "321c8673b092a9a42605034a9879d73cb79101ed5fd117bc9a597b89b4e9e61a"
2888
+ dependencies = [
2889
+ "core-foundation-sys",
2890
+ "libc",
2891
+ ]
2892
+
2893
+ [[package]]
2894
+ name = "semver"
2895
+ version = "1.0.27"
2896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2897
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2898
+
2899
+ [[package]]
2900
+ name = "serde"
2901
+ version = "1.0.228"
2902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2904
+ dependencies = [
2905
+ "serde_core",
2906
+ "serde_derive",
2907
+ ]
2908
+
2909
+ [[package]]
2910
+ name = "serde_core"
2911
+ version = "1.0.228"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2914
+ dependencies = [
2915
+ "serde_derive",
2916
+ ]
2917
+
2918
+ [[package]]
2919
+ name = "serde_derive"
2920
+ version = "1.0.228"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2923
+ dependencies = [
2924
+ "proc-macro2",
2925
+ "quote",
2926
+ "syn",
2927
+ ]
2928
+
2929
+ [[package]]
2930
+ name = "serde_json"
2931
+ version = "1.0.149"
2932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2933
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2934
+ dependencies = [
2935
+ "itoa",
2936
+ "memchr",
2937
+ "serde",
2938
+ "serde_core",
2939
+ "zmij",
2940
+ ]
2941
+
2942
+ [[package]]
2943
+ name = "serde_path_to_error"
2944
+ version = "0.1.20"
2945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2946
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2947
+ dependencies = [
2948
+ "itoa",
2949
+ "serde",
2950
+ "serde_core",
2951
+ ]
2952
+
2953
+ [[package]]
2954
+ name = "serde_urlencoded"
2955
+ version = "0.7.1"
2956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2957
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2958
+ dependencies = [
2959
+ "form_urlencoded",
2960
+ "itoa",
2961
+ "ryu",
2962
+ "serde",
2963
+ ]
2964
+
2965
+ [[package]]
2966
+ name = "sha2"
2967
+ version = "0.10.9"
2968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2969
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2970
+ dependencies = [
2971
+ "cfg-if",
2972
+ "cpufeatures",
2973
+ "digest",
2974
+ ]
2975
+
2976
+ [[package]]
2977
+ name = "sharded-slab"
2978
+ version = "0.1.7"
2979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2980
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2981
+ dependencies = [
2982
+ "lazy_static",
2983
+ ]
2984
+
2985
+ [[package]]
2986
+ name = "shlex"
2987
+ version = "1.3.0"
2988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2989
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2990
+
2991
+ [[package]]
2992
+ name = "signal-hook-registry"
2993
+ version = "1.4.8"
2994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2995
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2996
+ dependencies = [
2997
+ "errno",
2998
+ "libc",
2999
+ ]
3000
+
3001
+ [[package]]
3002
+ name = "signature"
3003
+ version = "2.2.0"
3004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3005
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
3006
+ dependencies = [
3007
+ "rand_core 0.6.4",
3008
+ ]
3009
+
3010
+ [[package]]
3011
+ name = "simd-adler32"
3012
+ version = "0.3.8"
3013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3014
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
3015
+
3016
+ [[package]]
3017
+ name = "slab"
3018
+ version = "0.4.12"
3019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3020
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3021
+
3022
+ [[package]]
3023
+ name = "smallvec"
3024
+ version = "1.15.1"
3025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3026
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3027
+
3028
+ [[package]]
3029
+ name = "socket2"
3030
+ version = "0.5.10"
3031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3032
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
3033
+ dependencies = [
3034
+ "libc",
3035
+ "windows-sys 0.52.0",
3036
+ ]
3037
+
3038
+ [[package]]
3039
+ name = "socket2"
3040
+ version = "0.6.2"
3041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3042
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
3043
+ dependencies = [
3044
+ "libc",
3045
+ "windows-sys 0.60.2",
3046
+ ]
3047
+
3048
+ [[package]]
3049
+ name = "spin"
3050
+ version = "0.5.2"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
3053
+
3054
+ [[package]]
3055
+ name = "spki"
3056
+ version = "0.7.3"
3057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3058
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
3059
+ dependencies = [
3060
+ "base64ct",
3061
+ "der",
3062
+ ]
3063
+
3064
+ [[package]]
3065
+ name = "stable_deref_trait"
3066
+ version = "1.2.1"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3069
+
3070
+ [[package]]
3071
+ name = "strsim"
3072
+ version = "0.11.1"
3073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3074
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3075
+
3076
+ [[package]]
3077
+ name = "subtle"
3078
+ version = "2.6.1"
3079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3080
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3081
+
3082
+ [[package]]
3083
+ name = "syn"
3084
+ version = "2.0.115"
3085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3086
+ checksum = "6e614ed320ac28113fa64972c4262d5dbc89deacdfd00c34a3e4cea073243c12"
3087
+ dependencies = [
3088
+ "proc-macro2",
3089
+ "quote",
3090
+ "unicode-ident",
3091
+ ]
3092
+
3093
+ [[package]]
3094
+ name = "sync_wrapper"
3095
+ version = "0.1.2"
3096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3097
+ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
3098
+
3099
+ [[package]]
3100
+ name = "sync_wrapper"
3101
+ version = "1.0.2"
3102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3103
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3104
+
3105
+ [[package]]
3106
+ name = "synstructure"
3107
+ version = "0.13.2"
3108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3109
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3110
+ dependencies = [
3111
+ "proc-macro2",
3112
+ "quote",
3113
+ "syn",
3114
+ ]
3115
+
3116
+ [[package]]
3117
+ name = "system-configuration"
3118
+ version = "0.5.1"
3119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3120
+ checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
3121
+ dependencies = [
3122
+ "bitflags 1.3.2",
3123
+ "core-foundation 0.9.4",
3124
+ "system-configuration-sys",
3125
+ ]
3126
+
3127
+ [[package]]
3128
+ name = "system-configuration-sys"
3129
+ version = "0.5.0"
3130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+ checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
3132
+ dependencies = [
3133
+ "core-foundation-sys",
3134
+ "libc",
3135
+ ]
3136
+
3137
+ [[package]]
3138
+ name = "tar"
3139
+ version = "0.4.44"
3140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3141
+ checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
3142
+ dependencies = [
3143
+ "filetime",
3144
+ "libc",
3145
+ "xattr",
3146
+ ]
3147
+
3148
+ [[package]]
3149
+ name = "target-lexicon"
3150
+ version = "0.12.16"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3153
+
3154
+ [[package]]
3155
+ name = "tempfile"
3156
+ version = "3.25.0"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1"
3159
+ dependencies = [
3160
+ "fastrand",
3161
+ "getrandom 0.4.1",
3162
+ "once_cell",
3163
+ "rustix",
3164
+ "windows-sys 0.61.2",
3165
+ ]
3166
+
3167
+ [[package]]
3168
+ name = "termtree"
3169
+ version = "0.5.1"
3170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3171
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
3172
+
3173
+ [[package]]
3174
+ name = "thiserror"
3175
+ version = "1.0.69"
3176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3177
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3178
+ dependencies = [
3179
+ "thiserror-impl",
3180
+ ]
3181
+
3182
+ [[package]]
3183
+ name = "thiserror-impl"
3184
+ version = "1.0.69"
3185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3186
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3187
+ dependencies = [
3188
+ "proc-macro2",
3189
+ "quote",
3190
+ "syn",
3191
+ ]
3192
+
3193
+ [[package]]
3194
+ name = "thread_local"
3195
+ version = "1.1.9"
3196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3197
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3198
+ dependencies = [
3199
+ "cfg-if",
3200
+ ]
3201
+
3202
+ [[package]]
3203
+ name = "time"
3204
+ version = "0.3.47"
3205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3206
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
3207
+ dependencies = [
3208
+ "deranged",
3209
+ "itoa",
3210
+ "num-conv",
3211
+ "powerfmt",
3212
+ "serde_core",
3213
+ "time-core",
3214
+ "time-macros",
3215
+ ]
3216
+
3217
+ [[package]]
3218
+ name = "time-core"
3219
+ version = "0.1.8"
3220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3221
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
3222
+
3223
+ [[package]]
3224
+ name = "time-macros"
3225
+ version = "0.2.27"
3226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3227
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
3228
+ dependencies = [
3229
+ "num-conv",
3230
+ "time-core",
3231
+ ]
3232
+
3233
+ [[package]]
3234
+ name = "tinystr"
3235
+ version = "0.8.2"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
3238
+ dependencies = [
3239
+ "displaydoc",
3240
+ "zerovec",
3241
+ ]
3242
+
3243
+ [[package]]
3244
+ name = "tinytemplate"
3245
+ version = "1.2.1"
3246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3247
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3248
+ dependencies = [
3249
+ "serde",
3250
+ "serde_json",
3251
+ ]
3252
+
3253
+ [[package]]
3254
+ name = "tokio"
3255
+ version = "1.49.0"
3256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3257
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
3258
+ dependencies = [
3259
+ "bytes",
3260
+ "libc",
3261
+ "mio",
3262
+ "parking_lot",
3263
+ "pin-project-lite",
3264
+ "signal-hook-registry",
3265
+ "socket2 0.6.2",
3266
+ "tokio-macros",
3267
+ "windows-sys 0.61.2",
3268
+ ]
3269
+
3270
+ [[package]]
3271
+ name = "tokio-macros"
3272
+ version = "2.6.0"
3273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3274
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
3275
+ dependencies = [
3276
+ "proc-macro2",
3277
+ "quote",
3278
+ "syn",
3279
+ ]
3280
+
3281
+ [[package]]
3282
+ name = "tokio-native-tls"
3283
+ version = "0.3.1"
3284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3285
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
3286
+ dependencies = [
3287
+ "native-tls",
3288
+ "tokio",
3289
+ ]
3290
+
3291
+ [[package]]
3292
+ name = "tokio-rustls"
3293
+ version = "0.24.1"
3294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3295
+ checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
3296
+ dependencies = [
3297
+ "rustls 0.21.12",
3298
+ "tokio",
3299
+ ]
3300
+
3301
+ [[package]]
3302
+ name = "tokio-stream"
3303
+ version = "0.1.18"
3304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3305
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
3306
+ dependencies = [
3307
+ "futures-core",
3308
+ "pin-project-lite",
3309
+ "tokio",
3310
+ ]
3311
+
3312
+ [[package]]
3313
+ name = "tokio-util"
3314
+ version = "0.7.18"
3315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3316
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3317
+ dependencies = [
3318
+ "bytes",
3319
+ "futures-core",
3320
+ "futures-sink",
3321
+ "pin-project-lite",
3322
+ "tokio",
3323
+ ]
3324
+
3325
+ [[package]]
3326
+ name = "tower"
3327
+ version = "0.4.13"
3328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3329
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
3330
+ dependencies = [
3331
+ "tower-layer",
3332
+ "tower-service",
3333
+ "tracing",
3334
+ ]
3335
+
3336
+ [[package]]
3337
+ name = "tower"
3338
+ version = "0.5.3"
3339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3340
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3341
+ dependencies = [
3342
+ "futures-core",
3343
+ "futures-util",
3344
+ "pin-project-lite",
3345
+ "sync_wrapper 1.0.2",
3346
+ "tokio",
3347
+ "tower-layer",
3348
+ "tower-service",
3349
+ "tracing",
3350
+ ]
3351
+
3352
+ [[package]]
3353
+ name = "tower-http"
3354
+ version = "0.5.2"
3355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3356
+ checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
3357
+ dependencies = [
3358
+ "bitflags 2.11.0",
3359
+ "bytes",
3360
+ "futures-util",
3361
+ "http 1.4.0",
3362
+ "http-body 1.0.1",
3363
+ "http-body-util",
3364
+ "http-range-header",
3365
+ "httpdate",
3366
+ "mime",
3367
+ "mime_guess",
3368
+ "percent-encoding",
3369
+ "pin-project-lite",
3370
+ "tokio",
3371
+ "tokio-util",
3372
+ "tower-layer",
3373
+ "tower-service",
3374
+ "tracing",
3375
+ ]
3376
+
3377
+ [[package]]
3378
+ name = "tower-layer"
3379
+ version = "0.3.3"
3380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3381
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3382
+
3383
+ [[package]]
3384
+ name = "tower-service"
3385
+ version = "0.3.3"
3386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3387
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3388
+
3389
+ [[package]]
3390
+ name = "tracing"
3391
+ version = "0.1.44"
3392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3393
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3394
+ dependencies = [
3395
+ "log",
3396
+ "pin-project-lite",
3397
+ "tracing-attributes",
3398
+ "tracing-core",
3399
+ ]
3400
+
3401
+ [[package]]
3402
+ name = "tracing-attributes"
3403
+ version = "0.1.31"
3404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3405
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3406
+ dependencies = [
3407
+ "proc-macro2",
3408
+ "quote",
3409
+ "syn",
3410
+ ]
3411
+
3412
+ [[package]]
3413
+ name = "tracing-core"
3414
+ version = "0.1.36"
3415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3416
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3417
+ dependencies = [
3418
+ "once_cell",
3419
+ "valuable",
3420
+ ]
3421
+
3422
+ [[package]]
3423
+ name = "tracing-log"
3424
+ version = "0.2.0"
3425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3426
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3427
+ dependencies = [
3428
+ "log",
3429
+ "once_cell",
3430
+ "tracing-core",
3431
+ ]
3432
+
3433
+ [[package]]
3434
+ name = "tracing-subscriber"
3435
+ version = "0.3.22"
3436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3437
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
3438
+ dependencies = [
3439
+ "nu-ansi-term",
3440
+ "sharded-slab",
3441
+ "smallvec",
3442
+ "thread_local",
3443
+ "tracing-core",
3444
+ "tracing-log",
3445
+ ]
3446
+
3447
+ [[package]]
3448
+ name = "try-lock"
3449
+ version = "0.2.5"
3450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3451
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3452
+
3453
+ [[package]]
3454
+ name = "twox-hash"
3455
+ version = "2.1.2"
3456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3457
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
3458
+
3459
+ [[package]]
3460
+ name = "typenum"
3461
+ version = "1.19.0"
3462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3463
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3464
+
3465
+ [[package]]
3466
+ name = "unarray"
3467
+ version = "0.1.4"
3468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3469
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
3470
+
3471
+ [[package]]
3472
+ name = "unicase"
3473
+ version = "2.9.0"
3474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3475
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
3476
+
3477
+ [[package]]
3478
+ name = "unicode-ident"
3479
+ version = "1.0.23"
3480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3481
+ checksum = "537dd038a89878be9b64dd4bd1b260315c1bb94f4d784956b81e27a088d9a09e"
3482
+
3483
+ [[package]]
3484
+ name = "unicode-width"
3485
+ version = "0.2.2"
3486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3487
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3488
+
3489
+ [[package]]
3490
+ name = "unicode-xid"
3491
+ version = "0.2.6"
3492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3493
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3494
+
3495
+ [[package]]
3496
+ name = "unindent"
3497
+ version = "0.2.4"
3498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3499
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3500
+
3501
+ [[package]]
3502
+ name = "universal-hash"
3503
+ version = "0.5.1"
3504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3505
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
3506
+ dependencies = [
3507
+ "crypto-common",
3508
+ "subtle",
3509
+ ]
3510
+
3511
+ [[package]]
3512
+ name = "untrusted"
3513
+ version = "0.7.1"
3514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3515
+ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
3516
+
3517
+ [[package]]
3518
+ name = "untrusted"
3519
+ version = "0.9.0"
3520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3521
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3522
+
3523
+ [[package]]
3524
+ name = "url"
3525
+ version = "2.5.8"
3526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3527
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3528
+ dependencies = [
3529
+ "form_urlencoded",
3530
+ "idna",
3531
+ "percent-encoding",
3532
+ "serde",
3533
+ ]
3534
+
3535
+ [[package]]
3536
+ name = "utf8_iter"
3537
+ version = "1.0.4"
3538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3539
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3540
+
3541
+ [[package]]
3542
+ name = "utf8parse"
3543
+ version = "0.2.2"
3544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3545
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3546
+
3547
+ [[package]]
3548
+ name = "valuable"
3549
+ version = "0.1.1"
3550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3551
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3552
+
3553
+ [[package]]
3554
+ name = "vcpkg"
3555
+ version = "0.2.15"
3556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3557
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3558
+
3559
+ [[package]]
3560
+ name = "version_check"
3561
+ version = "0.9.5"
3562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3563
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3564
+
3565
+ [[package]]
3566
+ name = "wait-timeout"
3567
+ version = "0.2.1"
3568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3569
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3570
+ dependencies = [
3571
+ "libc",
3572
+ ]
3573
+
3574
+ [[package]]
3575
+ name = "walkdir"
3576
+ version = "2.5.0"
3577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3578
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3579
+ dependencies = [
3580
+ "same-file",
3581
+ "winapi-util",
3582
+ ]
3583
+
3584
+ [[package]]
3585
+ name = "want"
3586
+ version = "0.3.1"
3587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3588
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3589
+ dependencies = [
3590
+ "try-lock",
3591
+ ]
3592
+
3593
+ [[package]]
3594
+ name = "wasi"
3595
+ version = "0.11.1+wasi-snapshot-preview1"
3596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3597
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3598
+
3599
+ [[package]]
3600
+ name = "wasip2"
3601
+ version = "1.0.2+wasi-0.2.9"
3602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3603
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3604
+ dependencies = [
3605
+ "wit-bindgen",
3606
+ ]
3607
+
3608
+ [[package]]
3609
+ name = "wasip3"
3610
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3612
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3613
+ dependencies = [
3614
+ "wit-bindgen",
3615
+ ]
3616
+
3617
+ [[package]]
3618
+ name = "wasm-bindgen"
3619
+ version = "0.2.108"
3620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3621
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
3622
+ dependencies = [
3623
+ "cfg-if",
3624
+ "once_cell",
3625
+ "rustversion",
3626
+ "wasm-bindgen-macro",
3627
+ "wasm-bindgen-shared",
3628
+ ]
3629
+
3630
+ [[package]]
3631
+ name = "wasm-bindgen-futures"
3632
+ version = "0.4.58"
3633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3634
+ checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
3635
+ dependencies = [
3636
+ "cfg-if",
3637
+ "futures-util",
3638
+ "js-sys",
3639
+ "once_cell",
3640
+ "wasm-bindgen",
3641
+ "web-sys",
3642
+ ]
3643
+
3644
+ [[package]]
3645
+ name = "wasm-bindgen-macro"
3646
+ version = "0.2.108"
3647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3648
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
3649
+ dependencies = [
3650
+ "quote",
3651
+ "wasm-bindgen-macro-support",
3652
+ ]
3653
+
3654
+ [[package]]
3655
+ name = "wasm-bindgen-macro-support"
3656
+ version = "0.2.108"
3657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3658
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
3659
+ dependencies = [
3660
+ "bumpalo",
3661
+ "proc-macro2",
3662
+ "quote",
3663
+ "syn",
3664
+ "wasm-bindgen-shared",
3665
+ ]
3666
+
3667
+ [[package]]
3668
+ name = "wasm-bindgen-shared"
3669
+ version = "0.2.108"
3670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3671
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
3672
+ dependencies = [
3673
+ "unicode-ident",
3674
+ ]
3675
+
3676
+ [[package]]
3677
+ name = "wasm-encoder"
3678
+ version = "0.244.0"
3679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3680
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3681
+ dependencies = [
3682
+ "leb128fmt",
3683
+ "wasmparser",
3684
+ ]
3685
+
3686
+ [[package]]
3687
+ name = "wasm-metadata"
3688
+ version = "0.244.0"
3689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3690
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3691
+ dependencies = [
3692
+ "anyhow",
3693
+ "indexmap",
3694
+ "wasm-encoder",
3695
+ "wasmparser",
3696
+ ]
3697
+
3698
+ [[package]]
3699
+ name = "wasm-streams"
3700
+ version = "0.4.2"
3701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3702
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3703
+ dependencies = [
3704
+ "futures-util",
3705
+ "js-sys",
3706
+ "wasm-bindgen",
3707
+ "wasm-bindgen-futures",
3708
+ "web-sys",
3709
+ ]
3710
+
3711
+ [[package]]
3712
+ name = "wasmparser"
3713
+ version = "0.244.0"
3714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3715
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3716
+ dependencies = [
3717
+ "bitflags 2.11.0",
3718
+ "hashbrown 0.15.5",
3719
+ "indexmap",
3720
+ "semver",
3721
+ ]
3722
+
3723
+ [[package]]
3724
+ name = "web-sys"
3725
+ version = "0.3.85"
3726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3727
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
3728
+ dependencies = [
3729
+ "js-sys",
3730
+ "wasm-bindgen",
3731
+ ]
3732
+
3733
+ [[package]]
3734
+ name = "web-time"
3735
+ version = "1.1.0"
3736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3737
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3738
+ dependencies = [
3739
+ "js-sys",
3740
+ "wasm-bindgen",
3741
+ ]
3742
+
3743
+ [[package]]
3744
+ name = "webpki"
3745
+ version = "0.22.4"
3746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3747
+ checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53"
3748
+ dependencies = [
3749
+ "ring 0.17.14",
3750
+ "untrusted 0.9.0",
3751
+ ]
3752
+
3753
+ [[package]]
3754
+ name = "webpki-roots"
3755
+ version = "0.22.6"
3756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3757
+ checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
3758
+ dependencies = [
3759
+ "webpki",
3760
+ ]
3761
+
3762
+ [[package]]
3763
+ name = "webpki-roots"
3764
+ version = "0.25.4"
3765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3766
+ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
3767
+
3768
+ [[package]]
3769
+ name = "winapi"
3770
+ version = "0.3.9"
3771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3772
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3773
+ dependencies = [
3774
+ "winapi-i686-pc-windows-gnu",
3775
+ "winapi-x86_64-pc-windows-gnu",
3776
+ ]
3777
+
3778
+ [[package]]
3779
+ name = "winapi-i686-pc-windows-gnu"
3780
+ version = "0.4.0"
3781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3782
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3783
+
3784
+ [[package]]
3785
+ name = "winapi-util"
3786
+ version = "0.1.11"
3787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3788
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3789
+ dependencies = [
3790
+ "windows-sys 0.61.2",
3791
+ ]
3792
+
3793
+ [[package]]
3794
+ name = "winapi-x86_64-pc-windows-gnu"
3795
+ version = "0.4.0"
3796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3797
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3798
+
3799
+ [[package]]
3800
+ name = "windows-link"
3801
+ version = "0.2.1"
3802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3803
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3804
+
3805
+ [[package]]
3806
+ name = "windows-sys"
3807
+ version = "0.48.0"
3808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3809
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3810
+ dependencies = [
3811
+ "windows-targets 0.48.5",
3812
+ ]
3813
+
3814
+ [[package]]
3815
+ name = "windows-sys"
3816
+ version = "0.52.0"
3817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3818
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3819
+ dependencies = [
3820
+ "windows-targets 0.52.6",
3821
+ ]
3822
+
3823
+ [[package]]
3824
+ name = "windows-sys"
3825
+ version = "0.59.0"
3826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3827
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3828
+ dependencies = [
3829
+ "windows-targets 0.52.6",
3830
+ ]
3831
+
3832
+ [[package]]
3833
+ name = "windows-sys"
3834
+ version = "0.60.2"
3835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3836
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3837
+ dependencies = [
3838
+ "windows-targets 0.53.5",
3839
+ ]
3840
+
3841
+ [[package]]
3842
+ name = "windows-sys"
3843
+ version = "0.61.2"
3844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3845
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3846
+ dependencies = [
3847
+ "windows-link",
3848
+ ]
3849
+
3850
+ [[package]]
3851
+ name = "windows-targets"
3852
+ version = "0.48.5"
3853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3854
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3855
+ dependencies = [
3856
+ "windows_aarch64_gnullvm 0.48.5",
3857
+ "windows_aarch64_msvc 0.48.5",
3858
+ "windows_i686_gnu 0.48.5",
3859
+ "windows_i686_msvc 0.48.5",
3860
+ "windows_x86_64_gnu 0.48.5",
3861
+ "windows_x86_64_gnullvm 0.48.5",
3862
+ "windows_x86_64_msvc 0.48.5",
3863
+ ]
3864
+
3865
+ [[package]]
3866
+ name = "windows-targets"
3867
+ version = "0.52.6"
3868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3869
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3870
+ dependencies = [
3871
+ "windows_aarch64_gnullvm 0.52.6",
3872
+ "windows_aarch64_msvc 0.52.6",
3873
+ "windows_i686_gnu 0.52.6",
3874
+ "windows_i686_gnullvm 0.52.6",
3875
+ "windows_i686_msvc 0.52.6",
3876
+ "windows_x86_64_gnu 0.52.6",
3877
+ "windows_x86_64_gnullvm 0.52.6",
3878
+ "windows_x86_64_msvc 0.52.6",
3879
+ ]
3880
+
3881
+ [[package]]
3882
+ name = "windows-targets"
3883
+ version = "0.53.5"
3884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3885
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3886
+ dependencies = [
3887
+ "windows-link",
3888
+ "windows_aarch64_gnullvm 0.53.1",
3889
+ "windows_aarch64_msvc 0.53.1",
3890
+ "windows_i686_gnu 0.53.1",
3891
+ "windows_i686_gnullvm 0.53.1",
3892
+ "windows_i686_msvc 0.53.1",
3893
+ "windows_x86_64_gnu 0.53.1",
3894
+ "windows_x86_64_gnullvm 0.53.1",
3895
+ "windows_x86_64_msvc 0.53.1",
3896
+ ]
3897
+
3898
+ [[package]]
3899
+ name = "windows_aarch64_gnullvm"
3900
+ version = "0.48.5"
3901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3902
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3903
+
3904
+ [[package]]
3905
+ name = "windows_aarch64_gnullvm"
3906
+ version = "0.52.6"
3907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3908
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3909
+
3910
+ [[package]]
3911
+ name = "windows_aarch64_gnullvm"
3912
+ version = "0.53.1"
3913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3914
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3915
+
3916
+ [[package]]
3917
+ name = "windows_aarch64_msvc"
3918
+ version = "0.48.5"
3919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3920
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3921
+
3922
+ [[package]]
3923
+ name = "windows_aarch64_msvc"
3924
+ version = "0.52.6"
3925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3926
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3927
+
3928
+ [[package]]
3929
+ name = "windows_aarch64_msvc"
3930
+ version = "0.53.1"
3931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3932
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3933
+
3934
+ [[package]]
3935
+ name = "windows_i686_gnu"
3936
+ version = "0.48.5"
3937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3938
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3939
+
3940
+ [[package]]
3941
+ name = "windows_i686_gnu"
3942
+ version = "0.52.6"
3943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3944
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3945
+
3946
+ [[package]]
3947
+ name = "windows_i686_gnu"
3948
+ version = "0.53.1"
3949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3950
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3951
+
3952
+ [[package]]
3953
+ name = "windows_i686_gnullvm"
3954
+ version = "0.52.6"
3955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3956
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3957
+
3958
+ [[package]]
3959
+ name = "windows_i686_gnullvm"
3960
+ version = "0.53.1"
3961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3962
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3963
+
3964
+ [[package]]
3965
+ name = "windows_i686_msvc"
3966
+ version = "0.48.5"
3967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3968
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3969
+
3970
+ [[package]]
3971
+ name = "windows_i686_msvc"
3972
+ version = "0.52.6"
3973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3974
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3975
+
3976
+ [[package]]
3977
+ name = "windows_i686_msvc"
3978
+ version = "0.53.1"
3979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3980
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3981
+
3982
+ [[package]]
3983
+ name = "windows_x86_64_gnu"
3984
+ version = "0.48.5"
3985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3986
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3987
+
3988
+ [[package]]
3989
+ name = "windows_x86_64_gnu"
3990
+ version = "0.52.6"
3991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3992
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3993
+
3994
+ [[package]]
3995
+ name = "windows_x86_64_gnu"
3996
+ version = "0.53.1"
3997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3998
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3999
+
4000
+ [[package]]
4001
+ name = "windows_x86_64_gnullvm"
4002
+ version = "0.48.5"
4003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4004
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4005
+
4006
+ [[package]]
4007
+ name = "windows_x86_64_gnullvm"
4008
+ version = "0.52.6"
4009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4010
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4011
+
4012
+ [[package]]
4013
+ name = "windows_x86_64_gnullvm"
4014
+ version = "0.53.1"
4015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4016
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4017
+
4018
+ [[package]]
4019
+ name = "windows_x86_64_msvc"
4020
+ version = "0.48.5"
4021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4022
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4023
+
4024
+ [[package]]
4025
+ name = "windows_x86_64_msvc"
4026
+ version = "0.52.6"
4027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4028
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4029
+
4030
+ [[package]]
4031
+ name = "windows_x86_64_msvc"
4032
+ version = "0.53.1"
4033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4034
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4035
+
4036
+ [[package]]
4037
+ name = "winreg"
4038
+ version = "0.50.0"
4039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4040
+ checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
4041
+ dependencies = [
4042
+ "cfg-if",
4043
+ "windows-sys 0.48.0",
4044
+ ]
4045
+
4046
+ [[package]]
4047
+ name = "wiremock"
4048
+ version = "0.6.5"
4049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4050
+ checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
4051
+ dependencies = [
4052
+ "assert-json-diff",
4053
+ "base64 0.22.1",
4054
+ "deadpool",
4055
+ "futures",
4056
+ "http 1.4.0",
4057
+ "http-body-util",
4058
+ "hyper 1.8.1",
4059
+ "hyper-util",
4060
+ "log",
4061
+ "once_cell",
4062
+ "regex",
4063
+ "serde",
4064
+ "serde_json",
4065
+ "tokio",
4066
+ "url",
4067
+ ]
4068
+
4069
+ [[package]]
4070
+ name = "wit-bindgen"
4071
+ version = "0.51.0"
4072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4073
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4074
+ dependencies = [
4075
+ "wit-bindgen-rust-macro",
4076
+ ]
4077
+
4078
+ [[package]]
4079
+ name = "wit-bindgen-core"
4080
+ version = "0.51.0"
4081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4082
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
4083
+ dependencies = [
4084
+ "anyhow",
4085
+ "heck",
4086
+ "wit-parser",
4087
+ ]
4088
+
4089
+ [[package]]
4090
+ name = "wit-bindgen-rust"
4091
+ version = "0.51.0"
4092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4093
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
4094
+ dependencies = [
4095
+ "anyhow",
4096
+ "heck",
4097
+ "indexmap",
4098
+ "prettyplease",
4099
+ "syn",
4100
+ "wasm-metadata",
4101
+ "wit-bindgen-core",
4102
+ "wit-component",
4103
+ ]
4104
+
4105
+ [[package]]
4106
+ name = "wit-bindgen-rust-macro"
4107
+ version = "0.51.0"
4108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4109
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
4110
+ dependencies = [
4111
+ "anyhow",
4112
+ "prettyplease",
4113
+ "proc-macro2",
4114
+ "quote",
4115
+ "syn",
4116
+ "wit-bindgen-core",
4117
+ "wit-bindgen-rust",
4118
+ ]
4119
+
4120
+ [[package]]
4121
+ name = "wit-component"
4122
+ version = "0.244.0"
4123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4124
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
4125
+ dependencies = [
4126
+ "anyhow",
4127
+ "bitflags 2.11.0",
4128
+ "indexmap",
4129
+ "log",
4130
+ "serde",
4131
+ "serde_derive",
4132
+ "serde_json",
4133
+ "wasm-encoder",
4134
+ "wasm-metadata",
4135
+ "wasmparser",
4136
+ "wit-parser",
4137
+ ]
4138
+
4139
+ [[package]]
4140
+ name = "wit-parser"
4141
+ version = "0.244.0"
4142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4143
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
4144
+ dependencies = [
4145
+ "anyhow",
4146
+ "id-arena",
4147
+ "indexmap",
4148
+ "log",
4149
+ "semver",
4150
+ "serde",
4151
+ "serde_derive",
4152
+ "serde_json",
4153
+ "unicode-xid",
4154
+ "wasmparser",
4155
+ ]
4156
+
4157
+ [[package]]
4158
+ name = "writeable"
4159
+ version = "0.6.2"
4160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4161
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
4162
+
4163
+ [[package]]
4164
+ name = "xattr"
4165
+ version = "1.6.1"
4166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4167
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
4168
+ dependencies = [
4169
+ "libc",
4170
+ "rustix",
4171
+ ]
4172
+
4173
+ [[package]]
4174
+ name = "yoke"
4175
+ version = "0.8.1"
4176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4177
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
4178
+ dependencies = [
4179
+ "stable_deref_trait",
4180
+ "yoke-derive",
4181
+ "zerofrom",
4182
+ ]
4183
+
4184
+ [[package]]
4185
+ name = "yoke-derive"
4186
+ version = "0.8.1"
4187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4188
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
4189
+ dependencies = [
4190
+ "proc-macro2",
4191
+ "quote",
4192
+ "syn",
4193
+ "synstructure",
4194
+ ]
4195
+
4196
+ [[package]]
4197
+ name = "zerocopy"
4198
+ version = "0.7.35"
4199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4200
+ checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
4201
+ dependencies = [
4202
+ "byteorder",
4203
+ "zerocopy-derive 0.7.35",
4204
+ ]
4205
+
4206
+ [[package]]
4207
+ name = "zerocopy"
4208
+ version = "0.8.39"
4209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4210
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
4211
+ dependencies = [
4212
+ "zerocopy-derive 0.8.39",
4213
+ ]
4214
+
4215
+ [[package]]
4216
+ name = "zerocopy-derive"
4217
+ version = "0.7.35"
4218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4219
+ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
4220
+ dependencies = [
4221
+ "proc-macro2",
4222
+ "quote",
4223
+ "syn",
4224
+ ]
4225
+
4226
+ [[package]]
4227
+ name = "zerocopy-derive"
4228
+ version = "0.8.39"
4229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4230
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
4231
+ dependencies = [
4232
+ "proc-macro2",
4233
+ "quote",
4234
+ "syn",
4235
+ ]
4236
+
4237
+ [[package]]
4238
+ name = "zerofrom"
4239
+ version = "0.1.6"
4240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4241
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4242
+ dependencies = [
4243
+ "zerofrom-derive",
4244
+ ]
4245
+
4246
+ [[package]]
4247
+ name = "zerofrom-derive"
4248
+ version = "0.1.6"
4249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4250
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4251
+ dependencies = [
4252
+ "proc-macro2",
4253
+ "quote",
4254
+ "syn",
4255
+ "synstructure",
4256
+ ]
4257
+
4258
+ [[package]]
4259
+ name = "zeroize"
4260
+ version = "1.8.2"
4261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4262
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4263
+ dependencies = [
4264
+ "zeroize_derive",
4265
+ ]
4266
+
4267
+ [[package]]
4268
+ name = "zeroize_derive"
4269
+ version = "1.4.3"
4270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4271
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
4272
+ dependencies = [
4273
+ "proc-macro2",
4274
+ "quote",
4275
+ "syn",
4276
+ ]
4277
+
4278
+ [[package]]
4279
+ name = "zerotrie"
4280
+ version = "0.2.3"
4281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4282
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
4283
+ dependencies = [
4284
+ "displaydoc",
4285
+ "yoke",
4286
+ "zerofrom",
4287
+ ]
4288
+
4289
+ [[package]]
4290
+ name = "zerovec"
4291
+ version = "0.11.5"
4292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4293
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
4294
+ dependencies = [
4295
+ "yoke",
4296
+ "zerofrom",
4297
+ "zerovec-derive",
4298
+ ]
4299
+
4300
+ [[package]]
4301
+ name = "zerovec-derive"
4302
+ version = "0.11.2"
4303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4304
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
4305
+ dependencies = [
4306
+ "proc-macro2",
4307
+ "quote",
4308
+ "syn",
4309
+ ]
4310
+
4311
+ [[package]]
4312
+ name = "zmij"
4313
+ version = "1.0.21"
4314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4315
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
4316
+
4317
+ [[package]]
4318
+ name = "zstd"
4319
+ version = "0.13.3"
4320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4321
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4322
+ dependencies = [
4323
+ "zstd-safe",
4324
+ ]
4325
+
4326
+ [[package]]
4327
+ name = "zstd-safe"
4328
+ version = "7.2.4"
4329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4330
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4331
+ dependencies = [
4332
+ "zstd-sys",
4333
+ ]
4334
+
4335
+ [[package]]
4336
+ name = "zstd-sys"
4337
+ version = "2.0.16+zstd.1.5.7"
4338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4339
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4340
+ dependencies = [
4341
+ "cc",
4342
+ "pkg-config",
4343
+ ]