boon-deadlock 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (103) hide show
  1. boon_deadlock-0.1.0/Cargo.lock +3984 -0
  2. boon_deadlock-0.1.0/Cargo.toml +19 -0
  3. boon_deadlock-0.1.0/PKG-INFO +121 -0
  4. boon_deadlock-0.1.0/README.md +94 -0
  5. boon_deadlock-0.1.0/crates/boon/Cargo.toml +39 -0
  6. boon_deadlock-0.1.0/crates/boon/README.md +146 -0
  7. boon_deadlock-0.1.0/crates/boon/benches/parse.rs +102 -0
  8. boon_deadlock-0.1.0/crates/boon/examples/entities.rs +73 -0
  9. boon_deadlock-0.1.0/crates/boon/examples/events.rs +51 -0
  10. boon_deadlock-0.1.0/crates/boon/examples/info.rs +62 -0
  11. boon_deadlock-0.1.0/crates/boon/examples/player_ticks.rs +88 -0
  12. boon_deadlock-0.1.0/crates/boon/src/abilities.rs +1655 -0
  13. boon_deadlock-0.1.0/crates/boon/src/demo/command.rs +119 -0
  14. boon_deadlock-0.1.0/crates/boon/src/demo/decode.rs +175 -0
  15. boon_deadlock-0.1.0/crates/boon/src/demo/mod.rs +12 -0
  16. boon_deadlock-0.1.0/crates/boon/src/demo/parser.rs +1202 -0
  17. boon_deadlock-0.1.0/crates/boon/src/entity/class_info.rs +148 -0
  18. boon_deadlock-0.1.0/crates/boon/src/entity/entities.rs +534 -0
  19. boon_deadlock-0.1.0/crates/boon/src/entity/field_decoder.rs +897 -0
  20. boon_deadlock-0.1.0/crates/boon/src/entity/field_path.rs +760 -0
  21. boon_deadlock-0.1.0/crates/boon/src/entity/field_value.rs +313 -0
  22. boon_deadlock-0.1.0/crates/boon/src/entity/mod.rs +24 -0
  23. boon_deadlock-0.1.0/crates/boon/src/entity/quantized_float.rs +312 -0
  24. boon_deadlock-0.1.0/crates/boon/src/entity/serializers.rs +619 -0
  25. boon_deadlock-0.1.0/crates/boon/src/entity/string_tables.rs +359 -0
  26. boon_deadlock-0.1.0/crates/boon/src/error.rs +94 -0
  27. boon_deadlock-0.1.0/crates/boon/src/game_modes.rs +45 -0
  28. boon_deadlock-0.1.0/crates/boon/src/heroes.rs +122 -0
  29. boon_deadlock-0.1.0/crates/boon/src/io/bitreader.rs +604 -0
  30. boon_deadlock-0.1.0/crates/boon/src/io/mod.rs +10 -0
  31. boon_deadlock-0.1.0/crates/boon/src/io/reader.rs +188 -0
  32. boon_deadlock-0.1.0/crates/boon/src/lib.rs +78 -0
  33. boon_deadlock-0.1.0/crates/boon/src/modifiers.rs +228 -0
  34. boon_deadlock-0.1.0/crates/boon/src/teams.rs +50 -0
  35. boon_deadlock-0.1.0/crates/boon-proto/Cargo.toml +23 -0
  36. boon_deadlock-0.1.0/crates/boon-proto/README.md +52 -0
  37. boon_deadlock-0.1.0/crates/boon-proto/proto/allowlist.txt +27 -0
  38. boon_deadlock-0.1.0/crates/boon-proto/proto/base_gcmessages.proto +412 -0
  39. boon_deadlock-0.1.0/crates/boon-proto/proto/base_modifier.proto +59 -0
  40. boon_deadlock-0.1.0/crates/boon-proto/proto/c_peer2peer_netmessages.proto +57 -0
  41. boon_deadlock-0.1.0/crates/boon-proto/proto/citadel_clientmessages.proto +181 -0
  42. boon_deadlock-0.1.0/crates/boon-proto/proto/citadel_gameevents.proto +218 -0
  43. boon_deadlock-0.1.0/crates/boon-proto/proto/citadel_gcmessages_client.proto +1820 -0
  44. boon_deadlock-0.1.0/crates/boon-proto/proto/citadel_gcmessages_common.proto +786 -0
  45. boon_deadlock-0.1.0/crates/boon-proto/proto/citadel_gcmessages_server.proto +917 -0
  46. boon_deadlock-0.1.0/crates/boon-proto/proto/citadel_usercmd.proto +16 -0
  47. boon_deadlock-0.1.0/crates/boon-proto/proto/citadel_usermessages.proto +688 -0
  48. boon_deadlock-0.1.0/crates/boon-proto/proto/clientmessages.proto +53 -0
  49. boon_deadlock-0.1.0/crates/boon-proto/proto/demo.proto +188 -0
  50. boon_deadlock-0.1.0/crates/boon-proto/proto/econ_gcmessages.proto +1100 -0
  51. boon_deadlock-0.1.0/crates/boon-proto/proto/econ_shared_enums.proto +40 -0
  52. boon_deadlock-0.1.0/crates/boon-proto/proto/gameevents.proto +120 -0
  53. boon_deadlock-0.1.0/crates/boon-proto/proto/gcsdk_gcmessages.proto +496 -0
  54. boon_deadlock-0.1.0/crates/boon-proto/proto/netmessages.proto +658 -0
  55. boon_deadlock-0.1.0/crates/boon-proto/proto/network_connection.proto +131 -0
  56. boon_deadlock-0.1.0/crates/boon-proto/proto/networkbasetypes.proto +252 -0
  57. boon_deadlock-0.1.0/crates/boon-proto/proto/source2_steam_stats.proto +172 -0
  58. boon_deadlock-0.1.0/crates/boon-proto/proto/steammessages.proto +108 -0
  59. boon_deadlock-0.1.0/crates/boon-proto/proto/steammessages_steamlearn.steamworkssdk.proto +435 -0
  60. boon_deadlock-0.1.0/crates/boon-proto/proto/steammessages_unified_base.steamworkssdk.proto +30 -0
  61. boon_deadlock-0.1.0/crates/boon-proto/proto/te.proto +236 -0
  62. boon_deadlock-0.1.0/crates/boon-proto/proto/usercmd.proto +47 -0
  63. boon_deadlock-0.1.0/crates/boon-proto/proto/usermessages.proto +867 -0
  64. boon_deadlock-0.1.0/crates/boon-proto/proto/valveextensions.proto +26 -0
  65. boon_deadlock-0.1.0/crates/boon-proto/src/lib.rs +4 -0
  66. boon_deadlock-0.1.0/crates/boon-proto/src/proto.rs +27514 -0
  67. boon_deadlock-0.1.0/crates/boon-python/Cargo.toml +20 -0
  68. boon_deadlock-0.1.0/crates/boon-python/README.md +94 -0
  69. boon_deadlock-0.1.0/crates/boon-python/docs/Makefile +12 -0
  70. boon_deadlock-0.1.0/crates/boon-python/docs/_static/favicon.ico +0 -0
  71. boon_deadlock-0.1.0/crates/boon-python/docs/api.md +778 -0
  72. boon_deadlock-0.1.0/crates/boon-python/docs/changelog.md +62 -0
  73. boon_deadlock-0.1.0/crates/boon-python/docs/cli.md +440 -0
  74. boon_deadlock-0.1.0/crates/boon-python/docs/conf.py +75 -0
  75. boon_deadlock-0.1.0/crates/boon-python/docs/examples.md +262 -0
  76. boon_deadlock-0.1.0/crates/boon-python/docs/faq.md +53 -0
  77. boon_deadlock-0.1.0/crates/boon-python/docs/getting-started.md +129 -0
  78. boon_deadlock-0.1.0/crates/boon-python/docs/index.md +38 -0
  79. boon_deadlock-0.1.0/crates/boon-python/docs/internals/class-info.md +45 -0
  80. boon_deadlock-0.1.0/crates/boon-python/docs/internals/entities.md +118 -0
  81. boon_deadlock-0.1.0/crates/boon-python/docs/internals/file-structure.md +63 -0
  82. boon_deadlock-0.1.0/crates/boon-python/docs/internals/index.md +18 -0
  83. boon_deadlock-0.1.0/crates/boon-python/docs/internals/messages.md +48 -0
  84. boon_deadlock-0.1.0/crates/boon-python/docs/internals/parsing-flow.md +123 -0
  85. boon_deadlock-0.1.0/crates/boon-python/docs/internals/serializers.md +85 -0
  86. boon_deadlock-0.1.0/crates/boon-python/docs/internals/string-tables.md +65 -0
  87. boon_deadlock-0.1.0/crates/boon-python/docs/known-issues.md +13 -0
  88. boon_deadlock-0.1.0/crates/boon-python/docs/reference/entity-classes.md +126 -0
  89. boon_deadlock-0.1.0/crates/boon-python/docs/reference/heroes.md +75 -0
  90. boon_deadlock-0.1.0/crates/boon-python/docs/reference/index.md +11 -0
  91. boon_deadlock-0.1.0/crates/boon-python/docs/reference/teams.md +23 -0
  92. boon_deadlock-0.1.0/crates/boon-python/docs/requirements.txt +3 -0
  93. boon_deadlock-0.1.0/crates/boon-python/src/lib.rs +2887 -0
  94. boon_deadlock-0.1.0/crates/boon-python/tests/conftest.py +77 -0
  95. boon_deadlock-0.1.0/crates/boon-python/tests/test_70537442.py +321 -0
  96. boon_deadlock-0.1.0/crates/boon-python/tests/test_70555151.py +404 -0
  97. boon_deadlock-0.1.0/crates/boon-python/tests/test_demo.py +366 -0
  98. boon_deadlock-0.1.0/crates/boon-python/uv.lock +700 -0
  99. boon_deadlock-0.1.0/pyproject.toml +54 -0
  100. boon_deadlock-0.1.0/python/boon/__init__.py +35 -0
  101. boon_deadlock-0.1.0/python/boon/__init__.pyi +560 -0
  102. boon_deadlock-0.1.0/python/boon/errors.py +17 -0
  103. boon_deadlock-0.1.0/python/boon/py.typed +0 -0
@@ -0,0 +1,3984 @@
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 = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "allocator-api2"
22
+ version = "0.2.21"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
25
+
26
+ [[package]]
27
+ name = "android-tzdata"
28
+ version = "0.1.1"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
31
+
32
+ [[package]]
33
+ name = "android_system_properties"
34
+ version = "0.1.5"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
37
+ dependencies = [
38
+ "libc",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anes"
43
+ version = "0.1.6"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
46
+
47
+ [[package]]
48
+ name = "anstream"
49
+ version = "0.6.20"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
52
+ dependencies = [
53
+ "anstyle",
54
+ "anstyle-parse",
55
+ "anstyle-query",
56
+ "anstyle-wincon",
57
+ "colorchoice",
58
+ "is_terminal_polyfill",
59
+ "utf8parse",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "anstyle"
64
+ version = "1.0.11"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
67
+
68
+ [[package]]
69
+ name = "anstyle-parse"
70
+ version = "0.2.7"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
73
+ dependencies = [
74
+ "utf8parse",
75
+ ]
76
+
77
+ [[package]]
78
+ name = "anstyle-query"
79
+ version = "1.1.4"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
82
+ dependencies = [
83
+ "windows-sys 0.60.2",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "anstyle-wincon"
88
+ version = "3.0.10"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
91
+ dependencies = [
92
+ "anstyle",
93
+ "once_cell_polyfill",
94
+ "windows-sys 0.60.2",
95
+ ]
96
+
97
+ [[package]]
98
+ name = "anyhow"
99
+ version = "1.0.99"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
102
+
103
+ [[package]]
104
+ name = "ar_archive_writer"
105
+ version = "0.5.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b"
108
+ dependencies = [
109
+ "object",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "argminmax"
114
+ version = "0.6.3"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
117
+ dependencies = [
118
+ "half",
119
+ "num-traits",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "array-init-cursor"
124
+ version = "0.2.1"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
127
+
128
+ [[package]]
129
+ name = "arrayref"
130
+ version = "0.3.9"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
133
+
134
+ [[package]]
135
+ name = "arrayvec"
136
+ version = "0.7.6"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
139
+
140
+ [[package]]
141
+ name = "async-channel"
142
+ version = "2.5.0"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
145
+ dependencies = [
146
+ "concurrent-queue",
147
+ "event-listener-strategy",
148
+ "futures-core",
149
+ "pin-project-lite",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "async-stream"
154
+ version = "0.3.6"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
157
+ dependencies = [
158
+ "async-stream-impl",
159
+ "futures-core",
160
+ "pin-project-lite",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "async-stream-impl"
165
+ version = "0.3.6"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
168
+ dependencies = [
169
+ "proc-macro2",
170
+ "quote",
171
+ "syn",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "async-trait"
176
+ version = "0.1.89"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
179
+ dependencies = [
180
+ "proc-macro2",
181
+ "quote",
182
+ "syn",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "atoi_simd"
187
+ version = "0.17.0"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "8ad17c7c205c2c28b527b9845eeb91cf1b4d008b438f98ce0e628227a822758e"
190
+ dependencies = [
191
+ "debug_unsafe",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "atomic-waker"
196
+ version = "1.1.2"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
199
+
200
+ [[package]]
201
+ name = "autocfg"
202
+ version = "1.5.0"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
205
+
206
+ [[package]]
207
+ name = "base64"
208
+ version = "0.22.1"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
211
+
212
+ [[package]]
213
+ name = "bincode"
214
+ version = "2.0.1"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
217
+ dependencies = [
218
+ "bincode_derive",
219
+ "serde",
220
+ "unty",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "bincode_derive"
225
+ version = "2.0.1"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
228
+ dependencies = [
229
+ "virtue",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "bitflags"
234
+ version = "2.10.0"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
237
+ dependencies = [
238
+ "serde_core",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "blake3"
243
+ version = "1.8.3"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d"
246
+ dependencies = [
247
+ "arrayref",
248
+ "arrayvec",
249
+ "cc",
250
+ "cfg-if",
251
+ "constant_time_eq",
252
+ "cpufeatures",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "block-buffer"
257
+ version = "0.10.4"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
260
+ dependencies = [
261
+ "generic-array",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "boon-cli"
266
+ version = "0.1.0"
267
+ dependencies = [
268
+ "anyhow",
269
+ "boon-deadlock",
270
+ "boon-proto",
271
+ "clap",
272
+ "colored",
273
+ "criterion",
274
+ "prost",
275
+ "serde",
276
+ "serde_json",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "boon-deadlock"
281
+ version = "0.1.0"
282
+ dependencies = [
283
+ "anyhow",
284
+ "boon-proto",
285
+ "criterion",
286
+ "memmap2",
287
+ "prost",
288
+ "rustc-hash",
289
+ "serde",
290
+ "serde_json",
291
+ "snap",
292
+ "thiserror 2.0.16",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "boon-proto"
297
+ version = "0.1.0"
298
+ dependencies = [
299
+ "bytes",
300
+ "prost",
301
+ "prost-types",
302
+ "serde",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "boon-python"
307
+ version = "0.1.0"
308
+ dependencies = [
309
+ "boon-deadlock",
310
+ "boon-proto",
311
+ "polars",
312
+ "prost",
313
+ "pyo3",
314
+ "pyo3-polars",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "boxcar"
319
+ version = "0.2.14"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
322
+
323
+ [[package]]
324
+ name = "bumpalo"
325
+ version = "3.19.1"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
328
+
329
+ [[package]]
330
+ name = "bytemuck"
331
+ version = "1.25.0"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
334
+ dependencies = [
335
+ "bytemuck_derive",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "bytemuck_derive"
340
+ version = "1.10.2"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
343
+ dependencies = [
344
+ "proc-macro2",
345
+ "quote",
346
+ "syn",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "bytes"
351
+ version = "1.11.1"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
354
+ dependencies = [
355
+ "serde",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "cast"
360
+ version = "0.3.0"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
363
+
364
+ [[package]]
365
+ name = "castaway"
366
+ version = "0.2.4"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
369
+ dependencies = [
370
+ "rustversion",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "cc"
375
+ version = "1.2.55"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
378
+ dependencies = [
379
+ "find-msvc-tools",
380
+ "jobserver",
381
+ "libc",
382
+ "shlex",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "cfg-if"
387
+ version = "1.0.4"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
390
+
391
+ [[package]]
392
+ name = "cfg_aliases"
393
+ version = "0.2.1"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
396
+
397
+ [[package]]
398
+ name = "chrono"
399
+ version = "0.4.41"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
402
+ dependencies = [
403
+ "android-tzdata",
404
+ "iana-time-zone",
405
+ "num-traits",
406
+ "serde",
407
+ "windows-link 0.1.3",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "chrono-tz"
412
+ version = "0.10.4"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
415
+ dependencies = [
416
+ "chrono",
417
+ "phf",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "ciborium"
422
+ version = "0.2.2"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
425
+ dependencies = [
426
+ "ciborium-io",
427
+ "ciborium-ll",
428
+ "serde",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "ciborium-io"
433
+ version = "0.2.2"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
436
+
437
+ [[package]]
438
+ name = "ciborium-ll"
439
+ version = "0.2.2"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
442
+ dependencies = [
443
+ "ciborium-io",
444
+ "half",
445
+ ]
446
+
447
+ [[package]]
448
+ name = "clap"
449
+ version = "4.5.47"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931"
452
+ dependencies = [
453
+ "clap_builder",
454
+ "clap_derive",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "clap_builder"
459
+ version = "4.5.47"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6"
462
+ dependencies = [
463
+ "anstream",
464
+ "anstyle",
465
+ "clap_lex",
466
+ "strsim",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "clap_derive"
471
+ version = "4.5.47"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c"
474
+ dependencies = [
475
+ "heck",
476
+ "proc-macro2",
477
+ "quote",
478
+ "syn",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "clap_lex"
483
+ version = "0.7.5"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
486
+
487
+ [[package]]
488
+ name = "colorchoice"
489
+ version = "1.0.4"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
492
+
493
+ [[package]]
494
+ name = "colored"
495
+ version = "2.2.0"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
498
+ dependencies = [
499
+ "lazy_static",
500
+ "windows-sys 0.59.0",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "comfy-table"
505
+ version = "7.2.2"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
508
+ dependencies = [
509
+ "crossterm",
510
+ "unicode-segmentation",
511
+ "unicode-width",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "compact_str"
516
+ version = "0.9.0"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
519
+ dependencies = [
520
+ "castaway",
521
+ "cfg-if",
522
+ "itoa",
523
+ "rustversion",
524
+ "ryu",
525
+ "serde",
526
+ "static_assertions",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "concurrent-queue"
531
+ version = "2.5.0"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
534
+ dependencies = [
535
+ "crossbeam-utils",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "constant_time_eq"
540
+ version = "0.4.2"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
543
+
544
+ [[package]]
545
+ name = "core-foundation"
546
+ version = "0.10.1"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
549
+ dependencies = [
550
+ "core-foundation-sys",
551
+ "libc",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "core-foundation-sys"
556
+ version = "0.8.7"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
559
+
560
+ [[package]]
561
+ name = "cpufeatures"
562
+ version = "0.2.17"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
565
+ dependencies = [
566
+ "libc",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "crc32fast"
571
+ version = "1.5.0"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
574
+ dependencies = [
575
+ "cfg-if",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "criterion"
580
+ version = "0.5.1"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
583
+ dependencies = [
584
+ "anes",
585
+ "cast",
586
+ "ciborium",
587
+ "clap",
588
+ "criterion-plot",
589
+ "is-terminal",
590
+ "itertools 0.10.5",
591
+ "num-traits",
592
+ "once_cell",
593
+ "oorandom",
594
+ "plotters",
595
+ "rayon",
596
+ "regex",
597
+ "serde",
598
+ "serde_derive",
599
+ "serde_json",
600
+ "tinytemplate",
601
+ "walkdir",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "criterion-plot"
606
+ version = "0.5.0"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
609
+ dependencies = [
610
+ "cast",
611
+ "itertools 0.10.5",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "crossbeam-channel"
616
+ version = "0.5.15"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
619
+ dependencies = [
620
+ "crossbeam-utils",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "crossbeam-deque"
625
+ version = "0.8.6"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
628
+ dependencies = [
629
+ "crossbeam-epoch",
630
+ "crossbeam-utils",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "crossbeam-epoch"
635
+ version = "0.9.18"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
638
+ dependencies = [
639
+ "crossbeam-utils",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "crossbeam-queue"
644
+ version = "0.3.12"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
647
+ dependencies = [
648
+ "crossbeam-utils",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "crossbeam-utils"
653
+ version = "0.8.21"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
656
+
657
+ [[package]]
658
+ name = "crossterm"
659
+ version = "0.29.0"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
662
+ dependencies = [
663
+ "bitflags",
664
+ "crossterm_winapi",
665
+ "document-features",
666
+ "parking_lot",
667
+ "rustix",
668
+ "winapi",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "crossterm_winapi"
673
+ version = "0.9.1"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
676
+ dependencies = [
677
+ "winapi",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "crunchy"
682
+ version = "0.2.4"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
685
+
686
+ [[package]]
687
+ name = "crypto-common"
688
+ version = "0.1.7"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
691
+ dependencies = [
692
+ "generic-array",
693
+ "typenum",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "debug_unsafe"
698
+ version = "0.1.3"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "85d3cef41d236720ed453e102153a53e4cc3d2fde848c0078a50cf249e8e3e5b"
701
+
702
+ [[package]]
703
+ name = "digest"
704
+ version = "0.10.7"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
707
+ dependencies = [
708
+ "block-buffer",
709
+ "crypto-common",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "displaydoc"
714
+ version = "0.2.5"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
717
+ dependencies = [
718
+ "proc-macro2",
719
+ "quote",
720
+ "syn",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "document-features"
725
+ version = "0.2.12"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
728
+ dependencies = [
729
+ "litrs",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "dyn-clone"
734
+ version = "1.0.20"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
737
+
738
+ [[package]]
739
+ name = "either"
740
+ version = "1.15.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
743
+
744
+ [[package]]
745
+ name = "equivalent"
746
+ version = "1.0.2"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
749
+
750
+ [[package]]
751
+ name = "errno"
752
+ version = "0.3.14"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
755
+ dependencies = [
756
+ "libc",
757
+ "windows-sys 0.61.2",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "ethnum"
762
+ version = "1.5.2"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "ca81e6b4777c89fd810c25a4be2b1bd93ea034fbe58e6a75216a34c6b82c539b"
765
+
766
+ [[package]]
767
+ name = "event-listener"
768
+ version = "5.4.1"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
771
+ dependencies = [
772
+ "concurrent-queue",
773
+ "parking",
774
+ "pin-project-lite",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "event-listener-strategy"
779
+ version = "0.5.4"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
782
+ dependencies = [
783
+ "event-listener",
784
+ "pin-project-lite",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "fallible-streaming-iterator"
789
+ version = "0.1.9"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
792
+
793
+ [[package]]
794
+ name = "fast-float2"
795
+ version = "0.2.3"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
798
+
799
+ [[package]]
800
+ name = "find-msvc-tools"
801
+ version = "0.1.9"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
804
+
805
+ [[package]]
806
+ name = "flate2"
807
+ version = "1.1.9"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
810
+ dependencies = [
811
+ "crc32fast",
812
+ "miniz_oxide",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "fnv"
817
+ version = "1.0.7"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
820
+
821
+ [[package]]
822
+ name = "foldhash"
823
+ version = "0.1.5"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
826
+
827
+ [[package]]
828
+ name = "foldhash"
829
+ version = "0.2.0"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
832
+
833
+ [[package]]
834
+ name = "form_urlencoded"
835
+ version = "1.2.2"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
838
+ dependencies = [
839
+ "percent-encoding",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "fs4"
844
+ version = "0.13.1"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
847
+ dependencies = [
848
+ "rustix",
849
+ "windows-sys 0.59.0",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "futures"
854
+ version = "0.3.31"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
857
+ dependencies = [
858
+ "futures-channel",
859
+ "futures-core",
860
+ "futures-executor",
861
+ "futures-io",
862
+ "futures-sink",
863
+ "futures-task",
864
+ "futures-util",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "futures-channel"
869
+ version = "0.3.31"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
872
+ dependencies = [
873
+ "futures-core",
874
+ "futures-sink",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "futures-core"
879
+ version = "0.3.31"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
882
+
883
+ [[package]]
884
+ name = "futures-executor"
885
+ version = "0.3.31"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
888
+ dependencies = [
889
+ "futures-core",
890
+ "futures-task",
891
+ "futures-util",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "futures-io"
896
+ version = "0.3.31"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
899
+
900
+ [[package]]
901
+ name = "futures-macro"
902
+ version = "0.3.31"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
905
+ dependencies = [
906
+ "proc-macro2",
907
+ "quote",
908
+ "syn",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "futures-sink"
913
+ version = "0.3.31"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
916
+
917
+ [[package]]
918
+ name = "futures-task"
919
+ version = "0.3.31"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
922
+
923
+ [[package]]
924
+ name = "futures-util"
925
+ version = "0.3.31"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
928
+ dependencies = [
929
+ "futures-channel",
930
+ "futures-core",
931
+ "futures-io",
932
+ "futures-macro",
933
+ "futures-sink",
934
+ "futures-task",
935
+ "memchr",
936
+ "pin-project-lite",
937
+ "pin-utils",
938
+ "slab",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "generic-array"
943
+ version = "0.14.7"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
946
+ dependencies = [
947
+ "typenum",
948
+ "version_check",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "getrandom"
953
+ version = "0.2.17"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
956
+ dependencies = [
957
+ "cfg-if",
958
+ "js-sys",
959
+ "libc",
960
+ "wasi",
961
+ "wasm-bindgen",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "getrandom"
966
+ version = "0.3.4"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
969
+ dependencies = [
970
+ "cfg-if",
971
+ "js-sys",
972
+ "libc",
973
+ "r-efi",
974
+ "wasip2",
975
+ "wasm-bindgen",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "glob"
980
+ version = "0.3.3"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
983
+
984
+ [[package]]
985
+ name = "h2"
986
+ version = "0.4.13"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
989
+ dependencies = [
990
+ "atomic-waker",
991
+ "bytes",
992
+ "fnv",
993
+ "futures-core",
994
+ "futures-sink",
995
+ "http",
996
+ "indexmap",
997
+ "slab",
998
+ "tokio",
999
+ "tokio-util",
1000
+ "tracing",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "half"
1005
+ version = "2.7.1"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1008
+ dependencies = [
1009
+ "bytemuck",
1010
+ "cfg-if",
1011
+ "crunchy",
1012
+ "num-traits",
1013
+ "serde",
1014
+ "zerocopy",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "hashbrown"
1019
+ version = "0.15.5"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1022
+ dependencies = [
1023
+ "allocator-api2",
1024
+ "equivalent",
1025
+ "foldhash 0.1.5",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "hashbrown"
1030
+ version = "0.16.1"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1033
+ dependencies = [
1034
+ "allocator-api2",
1035
+ "equivalent",
1036
+ "foldhash 0.2.0",
1037
+ "rayon",
1038
+ "serde",
1039
+ "serde_core",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "heck"
1044
+ version = "0.5.0"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1047
+
1048
+ [[package]]
1049
+ name = "hermit-abi"
1050
+ version = "0.5.2"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1053
+
1054
+ [[package]]
1055
+ name = "hex"
1056
+ version = "0.4.3"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1059
+
1060
+ [[package]]
1061
+ name = "home"
1062
+ version = "0.5.12"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
1065
+ dependencies = [
1066
+ "windows-sys 0.61.2",
1067
+ ]
1068
+
1069
+ [[package]]
1070
+ name = "http"
1071
+ version = "1.4.0"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1074
+ dependencies = [
1075
+ "bytes",
1076
+ "itoa",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "http-body"
1081
+ version = "1.0.1"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1084
+ dependencies = [
1085
+ "bytes",
1086
+ "http",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "http-body-util"
1091
+ version = "0.1.3"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1094
+ dependencies = [
1095
+ "bytes",
1096
+ "futures-core",
1097
+ "http",
1098
+ "http-body",
1099
+ "pin-project-lite",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "httparse"
1104
+ version = "1.10.1"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1107
+
1108
+ [[package]]
1109
+ name = "humantime"
1110
+ version = "2.3.0"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
1113
+
1114
+ [[package]]
1115
+ name = "hyper"
1116
+ version = "1.8.1"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1119
+ dependencies = [
1120
+ "atomic-waker",
1121
+ "bytes",
1122
+ "futures-channel",
1123
+ "futures-core",
1124
+ "h2",
1125
+ "http",
1126
+ "http-body",
1127
+ "httparse",
1128
+ "itoa",
1129
+ "pin-project-lite",
1130
+ "pin-utils",
1131
+ "smallvec",
1132
+ "tokio",
1133
+ "want",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "hyper-rustls"
1138
+ version = "0.27.7"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1141
+ dependencies = [
1142
+ "http",
1143
+ "hyper",
1144
+ "hyper-util",
1145
+ "rustls",
1146
+ "rustls-native-certs",
1147
+ "rustls-pki-types",
1148
+ "tokio",
1149
+ "tokio-rustls",
1150
+ "tower-service",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "hyper-util"
1155
+ version = "0.1.20"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1158
+ dependencies = [
1159
+ "base64",
1160
+ "bytes",
1161
+ "futures-channel",
1162
+ "futures-util",
1163
+ "http",
1164
+ "http-body",
1165
+ "hyper",
1166
+ "ipnet",
1167
+ "libc",
1168
+ "percent-encoding",
1169
+ "pin-project-lite",
1170
+ "socket2",
1171
+ "tokio",
1172
+ "tower-service",
1173
+ "tracing",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "iana-time-zone"
1178
+ version = "0.1.65"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1181
+ dependencies = [
1182
+ "android_system_properties",
1183
+ "core-foundation-sys",
1184
+ "iana-time-zone-haiku",
1185
+ "js-sys",
1186
+ "log",
1187
+ "wasm-bindgen",
1188
+ "windows-core",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "iana-time-zone-haiku"
1193
+ version = "0.1.2"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1196
+ dependencies = [
1197
+ "cc",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "icu_collections"
1202
+ version = "2.1.1"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1205
+ dependencies = [
1206
+ "displaydoc",
1207
+ "potential_utf",
1208
+ "yoke",
1209
+ "zerofrom",
1210
+ "zerovec",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "icu_locale_core"
1215
+ version = "2.1.1"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1218
+ dependencies = [
1219
+ "displaydoc",
1220
+ "litemap",
1221
+ "tinystr",
1222
+ "writeable",
1223
+ "zerovec",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "icu_normalizer"
1228
+ version = "2.1.1"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1231
+ dependencies = [
1232
+ "icu_collections",
1233
+ "icu_normalizer_data",
1234
+ "icu_properties",
1235
+ "icu_provider",
1236
+ "smallvec",
1237
+ "zerovec",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "icu_normalizer_data"
1242
+ version = "2.1.1"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1245
+
1246
+ [[package]]
1247
+ name = "icu_properties"
1248
+ version = "2.1.2"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1251
+ dependencies = [
1252
+ "icu_collections",
1253
+ "icu_locale_core",
1254
+ "icu_properties_data",
1255
+ "icu_provider",
1256
+ "zerotrie",
1257
+ "zerovec",
1258
+ ]
1259
+
1260
+ [[package]]
1261
+ name = "icu_properties_data"
1262
+ version = "2.1.2"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1265
+
1266
+ [[package]]
1267
+ name = "icu_provider"
1268
+ version = "2.1.1"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1271
+ dependencies = [
1272
+ "displaydoc",
1273
+ "icu_locale_core",
1274
+ "writeable",
1275
+ "yoke",
1276
+ "zerofrom",
1277
+ "zerotrie",
1278
+ "zerovec",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "idna"
1283
+ version = "1.1.0"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1286
+ dependencies = [
1287
+ "idna_adapter",
1288
+ "smallvec",
1289
+ "utf8_iter",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "idna_adapter"
1294
+ version = "1.2.1"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1297
+ dependencies = [
1298
+ "icu_normalizer",
1299
+ "icu_properties",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "indexmap"
1304
+ version = "2.13.0"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1307
+ dependencies = [
1308
+ "equivalent",
1309
+ "hashbrown 0.16.1",
1310
+ "serde",
1311
+ "serde_core",
1312
+ ]
1313
+
1314
+ [[package]]
1315
+ name = "indoc"
1316
+ version = "2.0.7"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1319
+ dependencies = [
1320
+ "rustversion",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "ipnet"
1325
+ version = "2.12.0"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1328
+
1329
+ [[package]]
1330
+ name = "iri-string"
1331
+ version = "0.7.10"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1334
+ dependencies = [
1335
+ "memchr",
1336
+ "serde",
1337
+ ]
1338
+
1339
+ [[package]]
1340
+ name = "is-terminal"
1341
+ version = "0.4.17"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1344
+ dependencies = [
1345
+ "hermit-abi",
1346
+ "libc",
1347
+ "windows-sys 0.61.2",
1348
+ ]
1349
+
1350
+ [[package]]
1351
+ name = "is_terminal_polyfill"
1352
+ version = "1.70.1"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1355
+
1356
+ [[package]]
1357
+ name = "itertools"
1358
+ version = "0.10.5"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1361
+ dependencies = [
1362
+ "either",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "itertools"
1367
+ version = "0.14.0"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1370
+ dependencies = [
1371
+ "either",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "itoa"
1376
+ version = "1.0.17"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1379
+
1380
+ [[package]]
1381
+ name = "jobserver"
1382
+ version = "0.1.34"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1385
+ dependencies = [
1386
+ "getrandom 0.3.4",
1387
+ "libc",
1388
+ ]
1389
+
1390
+ [[package]]
1391
+ name = "js-sys"
1392
+ version = "0.3.85"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
1395
+ dependencies = [
1396
+ "once_cell",
1397
+ "wasm-bindgen",
1398
+ ]
1399
+
1400
+ [[package]]
1401
+ name = "lazy_static"
1402
+ version = "1.5.0"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1405
+
1406
+ [[package]]
1407
+ name = "libc"
1408
+ version = "0.2.180"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
1411
+
1412
+ [[package]]
1413
+ name = "libm"
1414
+ version = "0.2.16"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1417
+
1418
+ [[package]]
1419
+ name = "linux-raw-sys"
1420
+ version = "0.11.0"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1423
+
1424
+ [[package]]
1425
+ name = "litemap"
1426
+ version = "0.8.1"
1427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1428
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1429
+
1430
+ [[package]]
1431
+ name = "litrs"
1432
+ version = "1.0.0"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1435
+
1436
+ [[package]]
1437
+ name = "lock_api"
1438
+ version = "0.4.14"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1441
+ dependencies = [
1442
+ "scopeguard",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "log"
1447
+ version = "0.4.29"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1450
+
1451
+ [[package]]
1452
+ name = "lru-slab"
1453
+ version = "0.1.2"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1456
+
1457
+ [[package]]
1458
+ name = "lz4"
1459
+ version = "1.28.1"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
1462
+ dependencies = [
1463
+ "lz4-sys",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "lz4-sys"
1468
+ version = "1.11.1+lz4-1.10.0"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
1471
+ dependencies = [
1472
+ "cc",
1473
+ "libc",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "memchr"
1478
+ version = "2.7.5"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1481
+
1482
+ [[package]]
1483
+ name = "memmap2"
1484
+ version = "0.9.9"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
1487
+ dependencies = [
1488
+ "libc",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "memoffset"
1493
+ version = "0.9.1"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1496
+ dependencies = [
1497
+ "autocfg",
1498
+ ]
1499
+
1500
+ [[package]]
1501
+ name = "miniz_oxide"
1502
+ version = "0.8.9"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1505
+ dependencies = [
1506
+ "adler2",
1507
+ "simd-adler32",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "mio"
1512
+ version = "1.1.1"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1515
+ dependencies = [
1516
+ "libc",
1517
+ "wasi",
1518
+ "windows-sys 0.61.2",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "now"
1523
+ version = "0.1.3"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0"
1526
+ dependencies = [
1527
+ "chrono",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "num-derive"
1532
+ version = "0.4.2"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
1535
+ dependencies = [
1536
+ "proc-macro2",
1537
+ "quote",
1538
+ "syn",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "num-traits"
1543
+ version = "0.2.19"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1546
+ dependencies = [
1547
+ "autocfg",
1548
+ "libm",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "object"
1553
+ version = "0.37.3"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
1556
+ dependencies = [
1557
+ "memchr",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "object_store"
1562
+ version = "0.13.1"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "c2858065e55c148d294a9f3aae3b0fa9458edadb41a108397094566f4e3c0dfb"
1565
+ dependencies = [
1566
+ "async-trait",
1567
+ "base64",
1568
+ "bytes",
1569
+ "chrono",
1570
+ "form_urlencoded",
1571
+ "futures",
1572
+ "http",
1573
+ "http-body-util",
1574
+ "humantime",
1575
+ "hyper",
1576
+ "itertools 0.14.0",
1577
+ "parking_lot",
1578
+ "percent-encoding",
1579
+ "quick-xml",
1580
+ "rand",
1581
+ "reqwest",
1582
+ "ring",
1583
+ "serde",
1584
+ "serde_json",
1585
+ "serde_urlencoded",
1586
+ "thiserror 2.0.16",
1587
+ "tokio",
1588
+ "tracing",
1589
+ "url",
1590
+ "walkdir",
1591
+ "wasm-bindgen-futures",
1592
+ "web-time",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "once_cell"
1597
+ version = "1.21.3"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1600
+
1601
+ [[package]]
1602
+ name = "once_cell_polyfill"
1603
+ version = "1.70.1"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1606
+
1607
+ [[package]]
1608
+ name = "oorandom"
1609
+ version = "11.1.5"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1612
+
1613
+ [[package]]
1614
+ name = "openssl-probe"
1615
+ version = "0.2.1"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1618
+
1619
+ [[package]]
1620
+ name = "parking"
1621
+ version = "2.2.1"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1624
+
1625
+ [[package]]
1626
+ name = "parking_lot"
1627
+ version = "0.12.5"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1630
+ dependencies = [
1631
+ "lock_api",
1632
+ "parking_lot_core",
1633
+ ]
1634
+
1635
+ [[package]]
1636
+ name = "parking_lot_core"
1637
+ version = "0.9.12"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1640
+ dependencies = [
1641
+ "cfg-if",
1642
+ "libc",
1643
+ "redox_syscall",
1644
+ "smallvec",
1645
+ "windows-link 0.2.1",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "percent-encoding"
1650
+ version = "2.3.2"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1653
+
1654
+ [[package]]
1655
+ name = "phf"
1656
+ version = "0.12.1"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
1659
+ dependencies = [
1660
+ "phf_shared",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "phf_shared"
1665
+ version = "0.12.1"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
1668
+ dependencies = [
1669
+ "siphasher",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "pin-project-lite"
1674
+ version = "0.2.16"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1677
+
1678
+ [[package]]
1679
+ name = "pin-utils"
1680
+ version = "0.1.0"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1683
+
1684
+ [[package]]
1685
+ name = "pkg-config"
1686
+ version = "0.3.32"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1689
+
1690
+ [[package]]
1691
+ name = "planus"
1692
+ version = "1.1.1"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "3daf8e3d4b712abe1d690838f6e29fb76b76ea19589c4afa39ec30e12f62af71"
1695
+ dependencies = [
1696
+ "array-init-cursor",
1697
+ "hashbrown 0.15.5",
1698
+ ]
1699
+
1700
+ [[package]]
1701
+ name = "plotters"
1702
+ version = "0.3.7"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1705
+ dependencies = [
1706
+ "num-traits",
1707
+ "plotters-backend",
1708
+ "plotters-svg",
1709
+ "wasm-bindgen",
1710
+ "web-sys",
1711
+ ]
1712
+
1713
+ [[package]]
1714
+ name = "plotters-backend"
1715
+ version = "0.3.7"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1718
+
1719
+ [[package]]
1720
+ name = "plotters-svg"
1721
+ version = "0.3.7"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1724
+ dependencies = [
1725
+ "plotters-backend",
1726
+ ]
1727
+
1728
+ [[package]]
1729
+ name = "polars"
1730
+ version = "0.53.0"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "899852b723e563dc3cbdc7ea833b14ec44e61309f55df29ba86d45cfd6bc141a"
1733
+ dependencies = [
1734
+ "getrandom 0.2.17",
1735
+ "getrandom 0.3.4",
1736
+ "polars-arrow",
1737
+ "polars-buffer",
1738
+ "polars-compute",
1739
+ "polars-core",
1740
+ "polars-error",
1741
+ "polars-io",
1742
+ "polars-lazy",
1743
+ "polars-ops",
1744
+ "polars-parquet",
1745
+ "polars-sql",
1746
+ "polars-time",
1747
+ "polars-utils",
1748
+ "version_check",
1749
+ ]
1750
+
1751
+ [[package]]
1752
+ name = "polars-arrow"
1753
+ version = "0.53.0"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "6f672743a042b72ace4f88b29f8205ab200b29c5ac976c0560899680c07d2d09"
1756
+ dependencies = [
1757
+ "atoi_simd",
1758
+ "bitflags",
1759
+ "bytemuck",
1760
+ "bytes",
1761
+ "chrono",
1762
+ "chrono-tz",
1763
+ "dyn-clone",
1764
+ "either",
1765
+ "ethnum",
1766
+ "getrandom 0.2.17",
1767
+ "getrandom 0.3.4",
1768
+ "half",
1769
+ "hashbrown 0.16.1",
1770
+ "itoa",
1771
+ "lz4",
1772
+ "num-traits",
1773
+ "polars-arrow-format",
1774
+ "polars-buffer",
1775
+ "polars-error",
1776
+ "polars-schema",
1777
+ "polars-utils",
1778
+ "serde",
1779
+ "simdutf8",
1780
+ "streaming-iterator",
1781
+ "strum_macros",
1782
+ "version_check",
1783
+ "zstd",
1784
+ ]
1785
+
1786
+ [[package]]
1787
+ name = "polars-arrow-format"
1788
+ version = "0.2.1"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "a556ac0ee744e61e167f34c1eb0013ce740e0ee6cd8c158b2ec0b518f10e6675"
1791
+ dependencies = [
1792
+ "planus",
1793
+ "serde",
1794
+ ]
1795
+
1796
+ [[package]]
1797
+ name = "polars-buffer"
1798
+ version = "0.53.0"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "5d7011424c3a79ca9c1272c7b4f5fe98695d3bed45595e37bb23c16a2978c80c"
1801
+ dependencies = [
1802
+ "bytemuck",
1803
+ "either",
1804
+ "serde",
1805
+ "version_check",
1806
+ ]
1807
+
1808
+ [[package]]
1809
+ name = "polars-compute"
1810
+ version = "0.53.0"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "42a32eca8e08ac4cc5de2ac3996d2b38567bba72cdb19bbfd94c370193ed51dd"
1813
+ dependencies = [
1814
+ "atoi_simd",
1815
+ "bytemuck",
1816
+ "chrono",
1817
+ "either",
1818
+ "fast-float2",
1819
+ "hashbrown 0.16.1",
1820
+ "itoa",
1821
+ "num-traits",
1822
+ "polars-arrow",
1823
+ "polars-buffer",
1824
+ "polars-error",
1825
+ "polars-utils",
1826
+ "rand",
1827
+ "serde",
1828
+ "strength_reduce",
1829
+ "strum_macros",
1830
+ "version_check",
1831
+ "zmij",
1832
+ ]
1833
+
1834
+ [[package]]
1835
+ name = "polars-core"
1836
+ version = "0.53.0"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "726296966d04268ee9679c2062af2d06c83c7a87379be471defe616b244c5029"
1839
+ dependencies = [
1840
+ "bitflags",
1841
+ "boxcar",
1842
+ "bytemuck",
1843
+ "chrono",
1844
+ "chrono-tz",
1845
+ "comfy-table",
1846
+ "either",
1847
+ "getrandom 0.3.4",
1848
+ "hashbrown 0.16.1",
1849
+ "indexmap",
1850
+ "itoa",
1851
+ "num-traits",
1852
+ "polars-arrow",
1853
+ "polars-buffer",
1854
+ "polars-compute",
1855
+ "polars-dtype",
1856
+ "polars-error",
1857
+ "polars-row",
1858
+ "polars-schema",
1859
+ "polars-utils",
1860
+ "rand",
1861
+ "rand_distr",
1862
+ "rayon",
1863
+ "regex",
1864
+ "serde",
1865
+ "serde_json",
1866
+ "strum_macros",
1867
+ "uuid",
1868
+ "version_check",
1869
+ "xxhash-rust",
1870
+ ]
1871
+
1872
+ [[package]]
1873
+ name = "polars-dtype"
1874
+ version = "0.53.0"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "51976dc46d42cd1e7ca252a9e3bdc90c63b0bfa7030047ebaf5250c2b7838fa6"
1877
+ dependencies = [
1878
+ "boxcar",
1879
+ "hashbrown 0.16.1",
1880
+ "polars-arrow",
1881
+ "polars-error",
1882
+ "polars-utils",
1883
+ "serde",
1884
+ "uuid",
1885
+ ]
1886
+
1887
+ [[package]]
1888
+ name = "polars-error"
1889
+ version = "0.53.0"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "8c13126f8baebc13dadf26a80dcf69a607977fc8a67b18671ad2cefc713a7bdd"
1892
+ dependencies = [
1893
+ "object_store",
1894
+ "parking_lot",
1895
+ "polars-arrow-format",
1896
+ "pyo3",
1897
+ "regex",
1898
+ "signal-hook",
1899
+ "simdutf8",
1900
+ ]
1901
+
1902
+ [[package]]
1903
+ name = "polars-expr"
1904
+ version = "0.53.0"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "2151f54b0ae5d6b86c3c47df0898ff90edfe774807823f742f36e44973d51ea1"
1907
+ dependencies = [
1908
+ "bitflags",
1909
+ "hashbrown 0.16.1",
1910
+ "num-traits",
1911
+ "polars-arrow",
1912
+ "polars-buffer",
1913
+ "polars-compute",
1914
+ "polars-core",
1915
+ "polars-io",
1916
+ "polars-ops",
1917
+ "polars-plan",
1918
+ "polars-row",
1919
+ "polars-time",
1920
+ "polars-utils",
1921
+ "rand",
1922
+ "rayon",
1923
+ "recursive",
1924
+ "regex",
1925
+ "version_check",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "polars-ffi"
1930
+ version = "0.53.0"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "a9526b18335cfddc556eb5c34cdecba3ecf49bba7734470a82728569d44e72a0"
1933
+ dependencies = [
1934
+ "polars-arrow",
1935
+ "polars-core",
1936
+ ]
1937
+
1938
+ [[package]]
1939
+ name = "polars-io"
1940
+ version = "0.53.0"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "059724d7762d7332cbc225e6504d996091b28fa1337716e06e5a81d9e54a34ad"
1943
+ dependencies = [
1944
+ "async-trait",
1945
+ "atoi_simd",
1946
+ "blake3",
1947
+ "bytes",
1948
+ "chrono",
1949
+ "fast-float2",
1950
+ "fs4",
1951
+ "futures",
1952
+ "glob",
1953
+ "hashbrown 0.16.1",
1954
+ "home",
1955
+ "itoa",
1956
+ "memchr",
1957
+ "memmap2",
1958
+ "num-traits",
1959
+ "object_store",
1960
+ "percent-encoding",
1961
+ "polars-arrow",
1962
+ "polars-buffer",
1963
+ "polars-compute",
1964
+ "polars-core",
1965
+ "polars-error",
1966
+ "polars-parquet",
1967
+ "polars-schema",
1968
+ "polars-time",
1969
+ "polars-utils",
1970
+ "rayon",
1971
+ "regex",
1972
+ "reqwest",
1973
+ "serde",
1974
+ "serde_json",
1975
+ "simdutf8",
1976
+ "tokio",
1977
+ "zmij",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "polars-lazy"
1982
+ version = "0.53.0"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "02e1e24d4db8c349e9576564cfff47a3f08bb831dba9168f6599be178bc725e8"
1985
+ dependencies = [
1986
+ "bitflags",
1987
+ "chrono",
1988
+ "either",
1989
+ "memchr",
1990
+ "polars-arrow",
1991
+ "polars-buffer",
1992
+ "polars-compute",
1993
+ "polars-core",
1994
+ "polars-expr",
1995
+ "polars-io",
1996
+ "polars-mem-engine",
1997
+ "polars-ops",
1998
+ "polars-plan",
1999
+ "polars-stream",
2000
+ "polars-time",
2001
+ "polars-utils",
2002
+ "rayon",
2003
+ "version_check",
2004
+ ]
2005
+
2006
+ [[package]]
2007
+ name = "polars-mem-engine"
2008
+ version = "0.53.0"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "c394e4cd90186043d4051ce118e90794afbe81ac5eb9a51e358a56728e8ebde3"
2011
+ dependencies = [
2012
+ "memmap2",
2013
+ "polars-arrow",
2014
+ "polars-core",
2015
+ "polars-error",
2016
+ "polars-expr",
2017
+ "polars-io",
2018
+ "polars-ops",
2019
+ "polars-plan",
2020
+ "polars-time",
2021
+ "polars-utils",
2022
+ "rayon",
2023
+ "recursive",
2024
+ ]
2025
+
2026
+ [[package]]
2027
+ name = "polars-ops"
2028
+ version = "0.53.0"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "7e47b2d9b3627662650da0a8c76ce5101ed1c61b104cb2b3663e0dc711571b12"
2031
+ dependencies = [
2032
+ "argminmax",
2033
+ "base64",
2034
+ "bytemuck",
2035
+ "chrono",
2036
+ "chrono-tz",
2037
+ "either",
2038
+ "hashbrown 0.16.1",
2039
+ "hex",
2040
+ "indexmap",
2041
+ "libm",
2042
+ "memchr",
2043
+ "num-traits",
2044
+ "polars-arrow",
2045
+ "polars-buffer",
2046
+ "polars-compute",
2047
+ "polars-core",
2048
+ "polars-error",
2049
+ "polars-schema",
2050
+ "polars-utils",
2051
+ "rayon",
2052
+ "regex",
2053
+ "regex-syntax",
2054
+ "strum_macros",
2055
+ "unicode-normalization",
2056
+ "unicode-reverse",
2057
+ "version_check",
2058
+ ]
2059
+
2060
+ [[package]]
2061
+ name = "polars-parquet"
2062
+ version = "0.53.0"
2063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2064
+ checksum = "436bae3e89438cafe69400e7567057d7d9820d21ac9a4f69a33b413f2666f03d"
2065
+ dependencies = [
2066
+ "async-stream",
2067
+ "base64",
2068
+ "bytemuck",
2069
+ "ethnum",
2070
+ "futures",
2071
+ "hashbrown 0.16.1",
2072
+ "num-traits",
2073
+ "polars-arrow",
2074
+ "polars-buffer",
2075
+ "polars-compute",
2076
+ "polars-error",
2077
+ "polars-parquet-format",
2078
+ "polars-utils",
2079
+ "regex",
2080
+ "serde",
2081
+ "simdutf8",
2082
+ "streaming-decompression",
2083
+ ]
2084
+
2085
+ [[package]]
2086
+ name = "polars-parquet-format"
2087
+ version = "0.1.0"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "c025243dcfe8dbc57e94d9f82eb3bef10b565ab180d5b99bed87fd8aea319ce1"
2090
+ dependencies = [
2091
+ "async-trait",
2092
+ "futures",
2093
+ ]
2094
+
2095
+ [[package]]
2096
+ name = "polars-plan"
2097
+ version = "0.53.0"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "f7930d5ae1d006179e65f01af57c859307b5875a4cc078dc75257250b9ae5162"
2100
+ dependencies = [
2101
+ "bitflags",
2102
+ "blake3",
2103
+ "bytemuck",
2104
+ "bytes",
2105
+ "chrono",
2106
+ "chrono-tz",
2107
+ "either",
2108
+ "futures",
2109
+ "hashbrown 0.16.1",
2110
+ "memmap2",
2111
+ "num-traits",
2112
+ "percent-encoding",
2113
+ "polars-arrow",
2114
+ "polars-buffer",
2115
+ "polars-compute",
2116
+ "polars-core",
2117
+ "polars-error",
2118
+ "polars-io",
2119
+ "polars-ops",
2120
+ "polars-time",
2121
+ "polars-utils",
2122
+ "rayon",
2123
+ "recursive",
2124
+ "regex",
2125
+ "sha2",
2126
+ "slotmap",
2127
+ "strum_macros",
2128
+ "tokio",
2129
+ "version_check",
2130
+ ]
2131
+
2132
+ [[package]]
2133
+ name = "polars-row"
2134
+ version = "0.53.0"
2135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2136
+ checksum = "d29ea1a4554fe06442db1d6229235cd358e8eacba96aed8718f612caf3e3a646"
2137
+ dependencies = [
2138
+ "bitflags",
2139
+ "bytemuck",
2140
+ "polars-arrow",
2141
+ "polars-buffer",
2142
+ "polars-compute",
2143
+ "polars-dtype",
2144
+ "polars-error",
2145
+ "polars-utils",
2146
+ ]
2147
+
2148
+ [[package]]
2149
+ name = "polars-schema"
2150
+ version = "0.53.0"
2151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2152
+ checksum = "d688e73f9156f93cb29350be144c8f1e84c1bc705f00ee7f15eb9706a7971273"
2153
+ dependencies = [
2154
+ "indexmap",
2155
+ "polars-error",
2156
+ "polars-utils",
2157
+ "serde",
2158
+ "version_check",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "polars-sql"
2163
+ version = "0.53.0"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "100415f86069d7e9fbf54737148fc161a7c7316a6a7d375fb6cfc7fc64f570ae"
2166
+ dependencies = [
2167
+ "bitflags",
2168
+ "hex",
2169
+ "polars-core",
2170
+ "polars-error",
2171
+ "polars-lazy",
2172
+ "polars-ops",
2173
+ "polars-plan",
2174
+ "polars-time",
2175
+ "polars-utils",
2176
+ "regex",
2177
+ "serde",
2178
+ "sqlparser",
2179
+ ]
2180
+
2181
+ [[package]]
2182
+ name = "polars-stream"
2183
+ version = "0.53.0"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "65a0c054bdf16efd16bbc587e8d5418ae28464d61afd735513579cd3c338fa70"
2186
+ dependencies = [
2187
+ "async-channel",
2188
+ "async-trait",
2189
+ "atomic-waker",
2190
+ "bitflags",
2191
+ "bytes",
2192
+ "chrono-tz",
2193
+ "crossbeam-channel",
2194
+ "crossbeam-deque",
2195
+ "crossbeam-queue",
2196
+ "crossbeam-utils",
2197
+ "futures",
2198
+ "memchr",
2199
+ "memmap2",
2200
+ "num-traits",
2201
+ "parking_lot",
2202
+ "percent-encoding",
2203
+ "pin-project-lite",
2204
+ "polars-arrow",
2205
+ "polars-buffer",
2206
+ "polars-compute",
2207
+ "polars-core",
2208
+ "polars-error",
2209
+ "polars-expr",
2210
+ "polars-io",
2211
+ "polars-mem-engine",
2212
+ "polars-ops",
2213
+ "polars-parquet",
2214
+ "polars-plan",
2215
+ "polars-time",
2216
+ "polars-utils",
2217
+ "rand",
2218
+ "rayon",
2219
+ "recursive",
2220
+ "slotmap",
2221
+ "tokio",
2222
+ "version_check",
2223
+ ]
2224
+
2225
+ [[package]]
2226
+ name = "polars-time"
2227
+ version = "0.53.0"
2228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2229
+ checksum = "72e80404e1e418c997230e3b2972c3be331f45df8bdd3150fe3bef562c7a332f"
2230
+ dependencies = [
2231
+ "atoi_simd",
2232
+ "bytemuck",
2233
+ "chrono",
2234
+ "chrono-tz",
2235
+ "now",
2236
+ "num-traits",
2237
+ "polars-arrow",
2238
+ "polars-compute",
2239
+ "polars-core",
2240
+ "polars-error",
2241
+ "polars-ops",
2242
+ "polars-utils",
2243
+ "rayon",
2244
+ "regex",
2245
+ "strum_macros",
2246
+ ]
2247
+
2248
+ [[package]]
2249
+ name = "polars-utils"
2250
+ version = "0.53.0"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "c97cabf53eb8fbf6050cde3fef8f596c51cc25fd7d55fbde108d815ee6674abf"
2253
+ dependencies = [
2254
+ "argminmax",
2255
+ "bincode",
2256
+ "bytemuck",
2257
+ "bytes",
2258
+ "compact_str",
2259
+ "either",
2260
+ "flate2",
2261
+ "foldhash 0.2.0",
2262
+ "half",
2263
+ "hashbrown 0.16.1",
2264
+ "indexmap",
2265
+ "libc",
2266
+ "memmap2",
2267
+ "num-derive",
2268
+ "num-traits",
2269
+ "polars-error",
2270
+ "rand",
2271
+ "raw-cpuid",
2272
+ "rayon",
2273
+ "regex",
2274
+ "rmp-serde",
2275
+ "serde",
2276
+ "serde_json",
2277
+ "serde_stacker",
2278
+ "slotmap",
2279
+ "stacker",
2280
+ "uuid",
2281
+ "version_check",
2282
+ ]
2283
+
2284
+ [[package]]
2285
+ name = "portable-atomic"
2286
+ version = "1.13.1"
2287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2288
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2289
+
2290
+ [[package]]
2291
+ name = "potential_utf"
2292
+ version = "0.1.4"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2295
+ dependencies = [
2296
+ "zerovec",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "ppv-lite86"
2301
+ version = "0.2.21"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2304
+ dependencies = [
2305
+ "zerocopy",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "proc-macro2"
2310
+ version = "1.0.101"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
2313
+ dependencies = [
2314
+ "unicode-ident",
2315
+ ]
2316
+
2317
+ [[package]]
2318
+ name = "prost"
2319
+ version = "0.14.1"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d"
2322
+ dependencies = [
2323
+ "bytes",
2324
+ "prost-derive",
2325
+ ]
2326
+
2327
+ [[package]]
2328
+ name = "prost-derive"
2329
+ version = "0.14.1"
2330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2331
+ checksum = "9120690fafc389a67ba3803df527d0ec9cbbc9cc45e4cc20b332996dfb672425"
2332
+ dependencies = [
2333
+ "anyhow",
2334
+ "itertools 0.14.0",
2335
+ "proc-macro2",
2336
+ "quote",
2337
+ "syn",
2338
+ ]
2339
+
2340
+ [[package]]
2341
+ name = "prost-types"
2342
+ version = "0.14.1"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "b9b4db3d6da204ed77bb26ba83b6122a73aeb2e87e25fbf7ad2e84c4ccbf8f72"
2345
+ dependencies = [
2346
+ "prost",
2347
+ ]
2348
+
2349
+ [[package]]
2350
+ name = "psm"
2351
+ version = "0.1.29"
2352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2353
+ checksum = "1fa96cb91275ed31d6da3e983447320c4eb219ac180fa1679a0889ff32861e2d"
2354
+ dependencies = [
2355
+ "ar_archive_writer",
2356
+ "cc",
2357
+ ]
2358
+
2359
+ [[package]]
2360
+ name = "pyo3"
2361
+ version = "0.27.2"
2362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2363
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
2364
+ dependencies = [
2365
+ "indoc",
2366
+ "libc",
2367
+ "memoffset",
2368
+ "once_cell",
2369
+ "portable-atomic",
2370
+ "pyo3-build-config",
2371
+ "pyo3-ffi",
2372
+ "pyo3-macros",
2373
+ "unindent",
2374
+ ]
2375
+
2376
+ [[package]]
2377
+ name = "pyo3-build-config"
2378
+ version = "0.27.2"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
2381
+ dependencies = [
2382
+ "target-lexicon",
2383
+ ]
2384
+
2385
+ [[package]]
2386
+ name = "pyo3-ffi"
2387
+ version = "0.27.2"
2388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2389
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
2390
+ dependencies = [
2391
+ "libc",
2392
+ "pyo3-build-config",
2393
+ ]
2394
+
2395
+ [[package]]
2396
+ name = "pyo3-macros"
2397
+ version = "0.27.2"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
2400
+ dependencies = [
2401
+ "proc-macro2",
2402
+ "pyo3-macros-backend",
2403
+ "quote",
2404
+ "syn",
2405
+ ]
2406
+
2407
+ [[package]]
2408
+ name = "pyo3-macros-backend"
2409
+ version = "0.27.2"
2410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2411
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
2412
+ dependencies = [
2413
+ "heck",
2414
+ "proc-macro2",
2415
+ "pyo3-build-config",
2416
+ "quote",
2417
+ "syn",
2418
+ ]
2419
+
2420
+ [[package]]
2421
+ name = "pyo3-polars"
2422
+ version = "0.26.0"
2423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2424
+ checksum = "f29248c4baefdfa23a7768341d1e431a5dee7348a757fa74315c810f3b8710d4"
2425
+ dependencies = [
2426
+ "libc",
2427
+ "once_cell",
2428
+ "polars",
2429
+ "polars-arrow",
2430
+ "polars-core",
2431
+ "polars-error",
2432
+ "polars-ffi",
2433
+ "pyo3",
2434
+ "thiserror 1.0.69",
2435
+ ]
2436
+
2437
+ [[package]]
2438
+ name = "quick-xml"
2439
+ version = "0.38.4"
2440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2441
+ checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
2442
+ dependencies = [
2443
+ "memchr",
2444
+ "serde",
2445
+ ]
2446
+
2447
+ [[package]]
2448
+ name = "quinn"
2449
+ version = "0.11.9"
2450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2451
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2452
+ dependencies = [
2453
+ "bytes",
2454
+ "cfg_aliases",
2455
+ "pin-project-lite",
2456
+ "quinn-proto",
2457
+ "quinn-udp",
2458
+ "rustc-hash",
2459
+ "rustls",
2460
+ "socket2",
2461
+ "thiserror 2.0.16",
2462
+ "tokio",
2463
+ "tracing",
2464
+ "web-time",
2465
+ ]
2466
+
2467
+ [[package]]
2468
+ name = "quinn-proto"
2469
+ version = "0.11.14"
2470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2471
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
2472
+ dependencies = [
2473
+ "bytes",
2474
+ "getrandom 0.3.4",
2475
+ "lru-slab",
2476
+ "rand",
2477
+ "ring",
2478
+ "rustc-hash",
2479
+ "rustls",
2480
+ "rustls-pki-types",
2481
+ "slab",
2482
+ "thiserror 2.0.16",
2483
+ "tinyvec",
2484
+ "tracing",
2485
+ "web-time",
2486
+ ]
2487
+
2488
+ [[package]]
2489
+ name = "quinn-udp"
2490
+ version = "0.5.14"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2493
+ dependencies = [
2494
+ "cfg_aliases",
2495
+ "libc",
2496
+ "once_cell",
2497
+ "socket2",
2498
+ "tracing",
2499
+ "windows-sys 0.60.2",
2500
+ ]
2501
+
2502
+ [[package]]
2503
+ name = "quote"
2504
+ version = "1.0.40"
2505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2506
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2507
+ dependencies = [
2508
+ "proc-macro2",
2509
+ ]
2510
+
2511
+ [[package]]
2512
+ name = "r-efi"
2513
+ version = "5.3.0"
2514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2515
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2516
+
2517
+ [[package]]
2518
+ name = "rand"
2519
+ version = "0.9.2"
2520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2521
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2522
+ dependencies = [
2523
+ "rand_chacha",
2524
+ "rand_core",
2525
+ ]
2526
+
2527
+ [[package]]
2528
+ name = "rand_chacha"
2529
+ version = "0.9.0"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2532
+ dependencies = [
2533
+ "ppv-lite86",
2534
+ "rand_core",
2535
+ ]
2536
+
2537
+ [[package]]
2538
+ name = "rand_core"
2539
+ version = "0.9.5"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2542
+ dependencies = [
2543
+ "getrandom 0.3.4",
2544
+ ]
2545
+
2546
+ [[package]]
2547
+ name = "rand_distr"
2548
+ version = "0.5.1"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
2551
+ dependencies = [
2552
+ "num-traits",
2553
+ "rand",
2554
+ ]
2555
+
2556
+ [[package]]
2557
+ name = "raw-cpuid"
2558
+ version = "11.6.0"
2559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2560
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
2561
+ dependencies = [
2562
+ "bitflags",
2563
+ ]
2564
+
2565
+ [[package]]
2566
+ name = "rayon"
2567
+ version = "1.11.0"
2568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2569
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2570
+ dependencies = [
2571
+ "either",
2572
+ "rayon-core",
2573
+ ]
2574
+
2575
+ [[package]]
2576
+ name = "rayon-core"
2577
+ version = "1.13.0"
2578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2579
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2580
+ dependencies = [
2581
+ "crossbeam-deque",
2582
+ "crossbeam-utils",
2583
+ ]
2584
+
2585
+ [[package]]
2586
+ name = "recursive"
2587
+ version = "0.1.1"
2588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2589
+ checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
2590
+ dependencies = [
2591
+ "recursive-proc-macro-impl",
2592
+ "stacker",
2593
+ ]
2594
+
2595
+ [[package]]
2596
+ name = "recursive-proc-macro-impl"
2597
+ version = "0.1.1"
2598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2599
+ checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
2600
+ dependencies = [
2601
+ "quote",
2602
+ "syn",
2603
+ ]
2604
+
2605
+ [[package]]
2606
+ name = "redox_syscall"
2607
+ version = "0.5.18"
2608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2609
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2610
+ dependencies = [
2611
+ "bitflags",
2612
+ ]
2613
+
2614
+ [[package]]
2615
+ name = "regex"
2616
+ version = "1.12.3"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2619
+ dependencies = [
2620
+ "aho-corasick",
2621
+ "memchr",
2622
+ "regex-automata",
2623
+ "regex-syntax",
2624
+ ]
2625
+
2626
+ [[package]]
2627
+ name = "regex-automata"
2628
+ version = "0.4.14"
2629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2631
+ dependencies = [
2632
+ "aho-corasick",
2633
+ "memchr",
2634
+ "regex-syntax",
2635
+ ]
2636
+
2637
+ [[package]]
2638
+ name = "regex-syntax"
2639
+ version = "0.8.9"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
2642
+
2643
+ [[package]]
2644
+ name = "reqwest"
2645
+ version = "0.12.28"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2648
+ dependencies = [
2649
+ "base64",
2650
+ "bytes",
2651
+ "futures-core",
2652
+ "futures-util",
2653
+ "h2",
2654
+ "http",
2655
+ "http-body",
2656
+ "http-body-util",
2657
+ "hyper",
2658
+ "hyper-rustls",
2659
+ "hyper-util",
2660
+ "js-sys",
2661
+ "log",
2662
+ "percent-encoding",
2663
+ "pin-project-lite",
2664
+ "quinn",
2665
+ "rustls",
2666
+ "rustls-native-certs",
2667
+ "rustls-pki-types",
2668
+ "serde",
2669
+ "serde_json",
2670
+ "serde_urlencoded",
2671
+ "sync_wrapper",
2672
+ "tokio",
2673
+ "tokio-rustls",
2674
+ "tokio-util",
2675
+ "tower",
2676
+ "tower-http",
2677
+ "tower-service",
2678
+ "url",
2679
+ "wasm-bindgen",
2680
+ "wasm-bindgen-futures",
2681
+ "wasm-streams",
2682
+ "web-sys",
2683
+ ]
2684
+
2685
+ [[package]]
2686
+ name = "ring"
2687
+ version = "0.17.14"
2688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2689
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2690
+ dependencies = [
2691
+ "cc",
2692
+ "cfg-if",
2693
+ "getrandom 0.2.17",
2694
+ "libc",
2695
+ "untrusted",
2696
+ "windows-sys 0.52.0",
2697
+ ]
2698
+
2699
+ [[package]]
2700
+ name = "rmp"
2701
+ version = "0.8.15"
2702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2703
+ checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c"
2704
+ dependencies = [
2705
+ "num-traits",
2706
+ ]
2707
+
2708
+ [[package]]
2709
+ name = "rmp-serde"
2710
+ version = "1.3.1"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155"
2713
+ dependencies = [
2714
+ "rmp",
2715
+ "serde",
2716
+ ]
2717
+
2718
+ [[package]]
2719
+ name = "rustc-hash"
2720
+ version = "2.1.1"
2721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2722
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2723
+
2724
+ [[package]]
2725
+ name = "rustix"
2726
+ version = "1.1.3"
2727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2728
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
2729
+ dependencies = [
2730
+ "bitflags",
2731
+ "errno",
2732
+ "libc",
2733
+ "linux-raw-sys",
2734
+ "windows-sys 0.61.2",
2735
+ ]
2736
+
2737
+ [[package]]
2738
+ name = "rustls"
2739
+ version = "0.23.37"
2740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2741
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
2742
+ dependencies = [
2743
+ "once_cell",
2744
+ "ring",
2745
+ "rustls-pki-types",
2746
+ "rustls-webpki",
2747
+ "subtle",
2748
+ "zeroize",
2749
+ ]
2750
+
2751
+ [[package]]
2752
+ name = "rustls-native-certs"
2753
+ version = "0.8.3"
2754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2755
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
2756
+ dependencies = [
2757
+ "openssl-probe",
2758
+ "rustls-pki-types",
2759
+ "schannel",
2760
+ "security-framework",
2761
+ ]
2762
+
2763
+ [[package]]
2764
+ name = "rustls-pki-types"
2765
+ version = "1.14.0"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2768
+ dependencies = [
2769
+ "web-time",
2770
+ "zeroize",
2771
+ ]
2772
+
2773
+ [[package]]
2774
+ name = "rustls-webpki"
2775
+ version = "0.103.9"
2776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2777
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
2778
+ dependencies = [
2779
+ "ring",
2780
+ "rustls-pki-types",
2781
+ "untrusted",
2782
+ ]
2783
+
2784
+ [[package]]
2785
+ name = "rustversion"
2786
+ version = "1.0.22"
2787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2788
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2789
+
2790
+ [[package]]
2791
+ name = "ryu"
2792
+ version = "1.0.22"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
2795
+
2796
+ [[package]]
2797
+ name = "same-file"
2798
+ version = "1.0.6"
2799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2800
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2801
+ dependencies = [
2802
+ "winapi-util",
2803
+ ]
2804
+
2805
+ [[package]]
2806
+ name = "schannel"
2807
+ version = "0.1.29"
2808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2809
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2810
+ dependencies = [
2811
+ "windows-sys 0.61.2",
2812
+ ]
2813
+
2814
+ [[package]]
2815
+ name = "scopeguard"
2816
+ version = "1.2.0"
2817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2818
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2819
+
2820
+ [[package]]
2821
+ name = "security-framework"
2822
+ version = "3.6.0"
2823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2824
+ checksum = "d17b898a6d6948c3a8ee4372c17cb384f90d2e6e912ef00895b14fd7ab54ec38"
2825
+ dependencies = [
2826
+ "bitflags",
2827
+ "core-foundation",
2828
+ "core-foundation-sys",
2829
+ "libc",
2830
+ "security-framework-sys",
2831
+ ]
2832
+
2833
+ [[package]]
2834
+ name = "security-framework-sys"
2835
+ version = "2.17.0"
2836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2837
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2838
+ dependencies = [
2839
+ "core-foundation-sys",
2840
+ "libc",
2841
+ ]
2842
+
2843
+ [[package]]
2844
+ name = "serde"
2845
+ version = "1.0.228"
2846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2847
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2848
+ dependencies = [
2849
+ "serde_core",
2850
+ "serde_derive",
2851
+ ]
2852
+
2853
+ [[package]]
2854
+ name = "serde_core"
2855
+ version = "1.0.228"
2856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2857
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2858
+ dependencies = [
2859
+ "serde_derive",
2860
+ ]
2861
+
2862
+ [[package]]
2863
+ name = "serde_derive"
2864
+ version = "1.0.228"
2865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2866
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2867
+ dependencies = [
2868
+ "proc-macro2",
2869
+ "quote",
2870
+ "syn",
2871
+ ]
2872
+
2873
+ [[package]]
2874
+ name = "serde_json"
2875
+ version = "1.0.149"
2876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2877
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2878
+ dependencies = [
2879
+ "itoa",
2880
+ "memchr",
2881
+ "serde",
2882
+ "serde_core",
2883
+ "zmij",
2884
+ ]
2885
+
2886
+ [[package]]
2887
+ name = "serde_stacker"
2888
+ version = "0.1.14"
2889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2890
+ checksum = "d4936375d50c4be7eff22293a9344f8e46f323ed2b3c243e52f89138d9bb0f4a"
2891
+ dependencies = [
2892
+ "serde",
2893
+ "serde_core",
2894
+ "stacker",
2895
+ ]
2896
+
2897
+ [[package]]
2898
+ name = "serde_urlencoded"
2899
+ version = "0.7.1"
2900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2901
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2902
+ dependencies = [
2903
+ "form_urlencoded",
2904
+ "itoa",
2905
+ "ryu",
2906
+ "serde",
2907
+ ]
2908
+
2909
+ [[package]]
2910
+ name = "sha2"
2911
+ version = "0.10.9"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2914
+ dependencies = [
2915
+ "cfg-if",
2916
+ "cpufeatures",
2917
+ "digest",
2918
+ ]
2919
+
2920
+ [[package]]
2921
+ name = "shlex"
2922
+ version = "1.3.0"
2923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2924
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2925
+
2926
+ [[package]]
2927
+ name = "signal-hook"
2928
+ version = "0.4.3"
2929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2930
+ checksum = "3b57709da74f9ff9f4a27dce9526eec25ca8407c45a7887243b031a58935fb8e"
2931
+ dependencies = [
2932
+ "libc",
2933
+ "signal-hook-registry",
2934
+ ]
2935
+
2936
+ [[package]]
2937
+ name = "signal-hook-registry"
2938
+ version = "1.4.8"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2941
+ dependencies = [
2942
+ "errno",
2943
+ "libc",
2944
+ ]
2945
+
2946
+ [[package]]
2947
+ name = "simd-adler32"
2948
+ version = "0.3.8"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
2951
+
2952
+ [[package]]
2953
+ name = "simdutf8"
2954
+ version = "0.1.5"
2955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2956
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2957
+
2958
+ [[package]]
2959
+ name = "siphasher"
2960
+ version = "1.0.2"
2961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2962
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
2963
+
2964
+ [[package]]
2965
+ name = "slab"
2966
+ version = "0.4.12"
2967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2968
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2969
+
2970
+ [[package]]
2971
+ name = "slotmap"
2972
+ version = "1.1.1"
2973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2974
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
2975
+ dependencies = [
2976
+ "version_check",
2977
+ ]
2978
+
2979
+ [[package]]
2980
+ name = "smallvec"
2981
+ version = "1.15.1"
2982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2983
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2984
+
2985
+ [[package]]
2986
+ name = "snap"
2987
+ version = "1.1.1"
2988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2989
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
2990
+
2991
+ [[package]]
2992
+ name = "socket2"
2993
+ version = "0.6.2"
2994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2995
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
2996
+ dependencies = [
2997
+ "libc",
2998
+ "windows-sys 0.60.2",
2999
+ ]
3000
+
3001
+ [[package]]
3002
+ name = "sqlparser"
3003
+ version = "0.60.0"
3004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3005
+ checksum = "505aa16b045c4c1375bf5f125cce3813d0176325bfe9ffc4a903f423de7774ff"
3006
+ dependencies = [
3007
+ "log",
3008
+ "recursive",
3009
+ "sqlparser_derive",
3010
+ ]
3011
+
3012
+ [[package]]
3013
+ name = "sqlparser_derive"
3014
+ version = "0.4.0"
3015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3016
+ checksum = "028e551d5e270b31b9f3ea271778d9d827148d4287a5d96167b6bb9787f5cc38"
3017
+ dependencies = [
3018
+ "proc-macro2",
3019
+ "quote",
3020
+ "syn",
3021
+ ]
3022
+
3023
+ [[package]]
3024
+ name = "stable_deref_trait"
3025
+ version = "1.2.1"
3026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3027
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3028
+
3029
+ [[package]]
3030
+ name = "stacker"
3031
+ version = "0.1.22"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59"
3034
+ dependencies = [
3035
+ "cc",
3036
+ "cfg-if",
3037
+ "libc",
3038
+ "psm",
3039
+ "windows-sys 0.59.0",
3040
+ ]
3041
+
3042
+ [[package]]
3043
+ name = "static_assertions"
3044
+ version = "1.1.0"
3045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3046
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3047
+
3048
+ [[package]]
3049
+ name = "streaming-decompression"
3050
+ version = "0.1.2"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3"
3053
+ dependencies = [
3054
+ "fallible-streaming-iterator",
3055
+ ]
3056
+
3057
+ [[package]]
3058
+ name = "streaming-iterator"
3059
+ version = "0.1.9"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
3062
+
3063
+ [[package]]
3064
+ name = "strength_reduce"
3065
+ version = "0.2.4"
3066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3067
+ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
3068
+
3069
+ [[package]]
3070
+ name = "strsim"
3071
+ version = "0.11.1"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3074
+
3075
+ [[package]]
3076
+ name = "strum_macros"
3077
+ version = "0.27.2"
3078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3079
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
3080
+ dependencies = [
3081
+ "heck",
3082
+ "proc-macro2",
3083
+ "quote",
3084
+ "syn",
3085
+ ]
3086
+
3087
+ [[package]]
3088
+ name = "subtle"
3089
+ version = "2.6.1"
3090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3091
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3092
+
3093
+ [[package]]
3094
+ name = "syn"
3095
+ version = "2.0.106"
3096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3097
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
3098
+ dependencies = [
3099
+ "proc-macro2",
3100
+ "quote",
3101
+ "unicode-ident",
3102
+ ]
3103
+
3104
+ [[package]]
3105
+ name = "sync_wrapper"
3106
+ version = "1.0.2"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3109
+ dependencies = [
3110
+ "futures-core",
3111
+ ]
3112
+
3113
+ [[package]]
3114
+ name = "synstructure"
3115
+ version = "0.13.2"
3116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3117
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3118
+ dependencies = [
3119
+ "proc-macro2",
3120
+ "quote",
3121
+ "syn",
3122
+ ]
3123
+
3124
+ [[package]]
3125
+ name = "target-lexicon"
3126
+ version = "0.13.5"
3127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3128
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3129
+
3130
+ [[package]]
3131
+ name = "thiserror"
3132
+ version = "1.0.69"
3133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3134
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3135
+ dependencies = [
3136
+ "thiserror-impl 1.0.69",
3137
+ ]
3138
+
3139
+ [[package]]
3140
+ name = "thiserror"
3141
+ version = "2.0.16"
3142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3143
+ checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
3144
+ dependencies = [
3145
+ "thiserror-impl 2.0.16",
3146
+ ]
3147
+
3148
+ [[package]]
3149
+ name = "thiserror-impl"
3150
+ version = "1.0.69"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3153
+ dependencies = [
3154
+ "proc-macro2",
3155
+ "quote",
3156
+ "syn",
3157
+ ]
3158
+
3159
+ [[package]]
3160
+ name = "thiserror-impl"
3161
+ version = "2.0.16"
3162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3163
+ checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
3164
+ dependencies = [
3165
+ "proc-macro2",
3166
+ "quote",
3167
+ "syn",
3168
+ ]
3169
+
3170
+ [[package]]
3171
+ name = "tinystr"
3172
+ version = "0.8.2"
3173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3174
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
3175
+ dependencies = [
3176
+ "displaydoc",
3177
+ "zerovec",
3178
+ ]
3179
+
3180
+ [[package]]
3181
+ name = "tinytemplate"
3182
+ version = "1.2.1"
3183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3184
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3185
+ dependencies = [
3186
+ "serde",
3187
+ "serde_json",
3188
+ ]
3189
+
3190
+ [[package]]
3191
+ name = "tinyvec"
3192
+ version = "1.10.0"
3193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3194
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3195
+ dependencies = [
3196
+ "tinyvec_macros",
3197
+ ]
3198
+
3199
+ [[package]]
3200
+ name = "tinyvec_macros"
3201
+ version = "0.1.1"
3202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3203
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3204
+
3205
+ [[package]]
3206
+ name = "tokio"
3207
+ version = "1.49.0"
3208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3209
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
3210
+ dependencies = [
3211
+ "bytes",
3212
+ "libc",
3213
+ "mio",
3214
+ "pin-project-lite",
3215
+ "socket2",
3216
+ "tokio-macros",
3217
+ "windows-sys 0.61.2",
3218
+ ]
3219
+
3220
+ [[package]]
3221
+ name = "tokio-macros"
3222
+ version = "2.6.1"
3223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3224
+ checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
3225
+ dependencies = [
3226
+ "proc-macro2",
3227
+ "quote",
3228
+ "syn",
3229
+ ]
3230
+
3231
+ [[package]]
3232
+ name = "tokio-rustls"
3233
+ version = "0.26.4"
3234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3235
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3236
+ dependencies = [
3237
+ "rustls",
3238
+ "tokio",
3239
+ ]
3240
+
3241
+ [[package]]
3242
+ name = "tokio-util"
3243
+ version = "0.7.18"
3244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3245
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3246
+ dependencies = [
3247
+ "bytes",
3248
+ "futures-core",
3249
+ "futures-sink",
3250
+ "pin-project-lite",
3251
+ "tokio",
3252
+ ]
3253
+
3254
+ [[package]]
3255
+ name = "tower"
3256
+ version = "0.5.3"
3257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3258
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3259
+ dependencies = [
3260
+ "futures-core",
3261
+ "futures-util",
3262
+ "pin-project-lite",
3263
+ "sync_wrapper",
3264
+ "tokio",
3265
+ "tower-layer",
3266
+ "tower-service",
3267
+ ]
3268
+
3269
+ [[package]]
3270
+ name = "tower-http"
3271
+ version = "0.6.8"
3272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3273
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3274
+ dependencies = [
3275
+ "bitflags",
3276
+ "bytes",
3277
+ "futures-util",
3278
+ "http",
3279
+ "http-body",
3280
+ "iri-string",
3281
+ "pin-project-lite",
3282
+ "tower",
3283
+ "tower-layer",
3284
+ "tower-service",
3285
+ ]
3286
+
3287
+ [[package]]
3288
+ name = "tower-layer"
3289
+ version = "0.3.3"
3290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3291
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3292
+
3293
+ [[package]]
3294
+ name = "tower-service"
3295
+ version = "0.3.3"
3296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3297
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3298
+
3299
+ [[package]]
3300
+ name = "tracing"
3301
+ version = "0.1.44"
3302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3303
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3304
+ dependencies = [
3305
+ "pin-project-lite",
3306
+ "tracing-attributes",
3307
+ "tracing-core",
3308
+ ]
3309
+
3310
+ [[package]]
3311
+ name = "tracing-attributes"
3312
+ version = "0.1.31"
3313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3314
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3315
+ dependencies = [
3316
+ "proc-macro2",
3317
+ "quote",
3318
+ "syn",
3319
+ ]
3320
+
3321
+ [[package]]
3322
+ name = "tracing-core"
3323
+ version = "0.1.36"
3324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3325
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3326
+ dependencies = [
3327
+ "once_cell",
3328
+ ]
3329
+
3330
+ [[package]]
3331
+ name = "try-lock"
3332
+ version = "0.2.5"
3333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3334
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3335
+
3336
+ [[package]]
3337
+ name = "typenum"
3338
+ version = "1.19.0"
3339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3340
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3341
+
3342
+ [[package]]
3343
+ name = "unicode-ident"
3344
+ version = "1.0.19"
3345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3346
+ checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
3347
+
3348
+ [[package]]
3349
+ name = "unicode-normalization"
3350
+ version = "0.1.25"
3351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3352
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
3353
+ dependencies = [
3354
+ "tinyvec",
3355
+ ]
3356
+
3357
+ [[package]]
3358
+ name = "unicode-reverse"
3359
+ version = "1.0.9"
3360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3361
+ checksum = "4b6f4888ebc23094adfb574fdca9fdc891826287a6397d2cd28802ffd6f20c76"
3362
+ dependencies = [
3363
+ "unicode-segmentation",
3364
+ ]
3365
+
3366
+ [[package]]
3367
+ name = "unicode-segmentation"
3368
+ version = "1.12.0"
3369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3370
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3371
+
3372
+ [[package]]
3373
+ name = "unicode-width"
3374
+ version = "0.2.2"
3375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3376
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3377
+
3378
+ [[package]]
3379
+ name = "unindent"
3380
+ version = "0.2.4"
3381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3382
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3383
+
3384
+ [[package]]
3385
+ name = "untrusted"
3386
+ version = "0.9.0"
3387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3388
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3389
+
3390
+ [[package]]
3391
+ name = "unty"
3392
+ version = "0.0.4"
3393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3394
+ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
3395
+
3396
+ [[package]]
3397
+ name = "url"
3398
+ version = "2.5.8"
3399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3400
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3401
+ dependencies = [
3402
+ "form_urlencoded",
3403
+ "idna",
3404
+ "percent-encoding",
3405
+ "serde",
3406
+ ]
3407
+
3408
+ [[package]]
3409
+ name = "utf8_iter"
3410
+ version = "1.0.4"
3411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3412
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3413
+
3414
+ [[package]]
3415
+ name = "utf8parse"
3416
+ version = "0.2.2"
3417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3418
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3419
+
3420
+ [[package]]
3421
+ name = "uuid"
3422
+ version = "1.20.0"
3423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3424
+ checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
3425
+ dependencies = [
3426
+ "getrandom 0.3.4",
3427
+ "js-sys",
3428
+ "serde_core",
3429
+ "wasm-bindgen",
3430
+ ]
3431
+
3432
+ [[package]]
3433
+ name = "version_check"
3434
+ version = "0.9.5"
3435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3436
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3437
+
3438
+ [[package]]
3439
+ name = "virtue"
3440
+ version = "0.0.18"
3441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3442
+ checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
3443
+
3444
+ [[package]]
3445
+ name = "walkdir"
3446
+ version = "2.5.0"
3447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3448
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3449
+ dependencies = [
3450
+ "same-file",
3451
+ "winapi-util",
3452
+ ]
3453
+
3454
+ [[package]]
3455
+ name = "want"
3456
+ version = "0.3.1"
3457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3458
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3459
+ dependencies = [
3460
+ "try-lock",
3461
+ ]
3462
+
3463
+ [[package]]
3464
+ name = "wasi"
3465
+ version = "0.11.1+wasi-snapshot-preview1"
3466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3467
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3468
+
3469
+ [[package]]
3470
+ name = "wasip2"
3471
+ version = "1.0.2+wasi-0.2.9"
3472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3473
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3474
+ dependencies = [
3475
+ "wit-bindgen",
3476
+ ]
3477
+
3478
+ [[package]]
3479
+ name = "wasm-bindgen"
3480
+ version = "0.2.108"
3481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3482
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
3483
+ dependencies = [
3484
+ "cfg-if",
3485
+ "once_cell",
3486
+ "rustversion",
3487
+ "wasm-bindgen-macro",
3488
+ "wasm-bindgen-shared",
3489
+ ]
3490
+
3491
+ [[package]]
3492
+ name = "wasm-bindgen-futures"
3493
+ version = "0.4.58"
3494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3495
+ checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
3496
+ dependencies = [
3497
+ "cfg-if",
3498
+ "futures-util",
3499
+ "js-sys",
3500
+ "once_cell",
3501
+ "wasm-bindgen",
3502
+ "web-sys",
3503
+ ]
3504
+
3505
+ [[package]]
3506
+ name = "wasm-bindgen-macro"
3507
+ version = "0.2.108"
3508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3509
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
3510
+ dependencies = [
3511
+ "quote",
3512
+ "wasm-bindgen-macro-support",
3513
+ ]
3514
+
3515
+ [[package]]
3516
+ name = "wasm-bindgen-macro-support"
3517
+ version = "0.2.108"
3518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3519
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
3520
+ dependencies = [
3521
+ "bumpalo",
3522
+ "proc-macro2",
3523
+ "quote",
3524
+ "syn",
3525
+ "wasm-bindgen-shared",
3526
+ ]
3527
+
3528
+ [[package]]
3529
+ name = "wasm-bindgen-shared"
3530
+ version = "0.2.108"
3531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3532
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
3533
+ dependencies = [
3534
+ "unicode-ident",
3535
+ ]
3536
+
3537
+ [[package]]
3538
+ name = "wasm-streams"
3539
+ version = "0.4.2"
3540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3541
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3542
+ dependencies = [
3543
+ "futures-util",
3544
+ "js-sys",
3545
+ "wasm-bindgen",
3546
+ "wasm-bindgen-futures",
3547
+ "web-sys",
3548
+ ]
3549
+
3550
+ [[package]]
3551
+ name = "web-sys"
3552
+ version = "0.3.85"
3553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3554
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
3555
+ dependencies = [
3556
+ "js-sys",
3557
+ "wasm-bindgen",
3558
+ ]
3559
+
3560
+ [[package]]
3561
+ name = "web-time"
3562
+ version = "1.1.0"
3563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3564
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3565
+ dependencies = [
3566
+ "js-sys",
3567
+ "wasm-bindgen",
3568
+ ]
3569
+
3570
+ [[package]]
3571
+ name = "winapi"
3572
+ version = "0.3.9"
3573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3574
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3575
+ dependencies = [
3576
+ "winapi-i686-pc-windows-gnu",
3577
+ "winapi-x86_64-pc-windows-gnu",
3578
+ ]
3579
+
3580
+ [[package]]
3581
+ name = "winapi-i686-pc-windows-gnu"
3582
+ version = "0.4.0"
3583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3584
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3585
+
3586
+ [[package]]
3587
+ name = "winapi-util"
3588
+ version = "0.1.11"
3589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3590
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3591
+ dependencies = [
3592
+ "windows-sys 0.61.2",
3593
+ ]
3594
+
3595
+ [[package]]
3596
+ name = "winapi-x86_64-pc-windows-gnu"
3597
+ version = "0.4.0"
3598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3599
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3600
+
3601
+ [[package]]
3602
+ name = "windows-core"
3603
+ version = "0.62.2"
3604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3605
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3606
+ dependencies = [
3607
+ "windows-implement",
3608
+ "windows-interface",
3609
+ "windows-link 0.2.1",
3610
+ "windows-result",
3611
+ "windows-strings",
3612
+ ]
3613
+
3614
+ [[package]]
3615
+ name = "windows-implement"
3616
+ version = "0.60.2"
3617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3618
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3619
+ dependencies = [
3620
+ "proc-macro2",
3621
+ "quote",
3622
+ "syn",
3623
+ ]
3624
+
3625
+ [[package]]
3626
+ name = "windows-interface"
3627
+ version = "0.59.3"
3628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3629
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3630
+ dependencies = [
3631
+ "proc-macro2",
3632
+ "quote",
3633
+ "syn",
3634
+ ]
3635
+
3636
+ [[package]]
3637
+ name = "windows-link"
3638
+ version = "0.1.3"
3639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3640
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
3641
+
3642
+ [[package]]
3643
+ name = "windows-link"
3644
+ version = "0.2.1"
3645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3646
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3647
+
3648
+ [[package]]
3649
+ name = "windows-result"
3650
+ version = "0.4.1"
3651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3652
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3653
+ dependencies = [
3654
+ "windows-link 0.2.1",
3655
+ ]
3656
+
3657
+ [[package]]
3658
+ name = "windows-strings"
3659
+ version = "0.5.1"
3660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3661
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3662
+ dependencies = [
3663
+ "windows-link 0.2.1",
3664
+ ]
3665
+
3666
+ [[package]]
3667
+ name = "windows-sys"
3668
+ version = "0.52.0"
3669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3670
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3671
+ dependencies = [
3672
+ "windows-targets 0.52.6",
3673
+ ]
3674
+
3675
+ [[package]]
3676
+ name = "windows-sys"
3677
+ version = "0.59.0"
3678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3679
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3680
+ dependencies = [
3681
+ "windows-targets 0.52.6",
3682
+ ]
3683
+
3684
+ [[package]]
3685
+ name = "windows-sys"
3686
+ version = "0.60.2"
3687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3688
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3689
+ dependencies = [
3690
+ "windows-targets 0.53.3",
3691
+ ]
3692
+
3693
+ [[package]]
3694
+ name = "windows-sys"
3695
+ version = "0.61.2"
3696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3697
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3698
+ dependencies = [
3699
+ "windows-link 0.2.1",
3700
+ ]
3701
+
3702
+ [[package]]
3703
+ name = "windows-targets"
3704
+ version = "0.52.6"
3705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3706
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3707
+ dependencies = [
3708
+ "windows_aarch64_gnullvm 0.52.6",
3709
+ "windows_aarch64_msvc 0.52.6",
3710
+ "windows_i686_gnu 0.52.6",
3711
+ "windows_i686_gnullvm 0.52.6",
3712
+ "windows_i686_msvc 0.52.6",
3713
+ "windows_x86_64_gnu 0.52.6",
3714
+ "windows_x86_64_gnullvm 0.52.6",
3715
+ "windows_x86_64_msvc 0.52.6",
3716
+ ]
3717
+
3718
+ [[package]]
3719
+ name = "windows-targets"
3720
+ version = "0.53.3"
3721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3722
+ checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
3723
+ dependencies = [
3724
+ "windows-link 0.1.3",
3725
+ "windows_aarch64_gnullvm 0.53.0",
3726
+ "windows_aarch64_msvc 0.53.0",
3727
+ "windows_i686_gnu 0.53.0",
3728
+ "windows_i686_gnullvm 0.53.0",
3729
+ "windows_i686_msvc 0.53.0",
3730
+ "windows_x86_64_gnu 0.53.0",
3731
+ "windows_x86_64_gnullvm 0.53.0",
3732
+ "windows_x86_64_msvc 0.53.0",
3733
+ ]
3734
+
3735
+ [[package]]
3736
+ name = "windows_aarch64_gnullvm"
3737
+ version = "0.52.6"
3738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3739
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3740
+
3741
+ [[package]]
3742
+ name = "windows_aarch64_gnullvm"
3743
+ version = "0.53.0"
3744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3745
+ checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
3746
+
3747
+ [[package]]
3748
+ name = "windows_aarch64_msvc"
3749
+ version = "0.52.6"
3750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3751
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3752
+
3753
+ [[package]]
3754
+ name = "windows_aarch64_msvc"
3755
+ version = "0.53.0"
3756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3757
+ checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
3758
+
3759
+ [[package]]
3760
+ name = "windows_i686_gnu"
3761
+ version = "0.52.6"
3762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3763
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3764
+
3765
+ [[package]]
3766
+ name = "windows_i686_gnu"
3767
+ version = "0.53.0"
3768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3769
+ checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
3770
+
3771
+ [[package]]
3772
+ name = "windows_i686_gnullvm"
3773
+ version = "0.52.6"
3774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3775
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3776
+
3777
+ [[package]]
3778
+ name = "windows_i686_gnullvm"
3779
+ version = "0.53.0"
3780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3781
+ checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
3782
+
3783
+ [[package]]
3784
+ name = "windows_i686_msvc"
3785
+ version = "0.52.6"
3786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3787
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3788
+
3789
+ [[package]]
3790
+ name = "windows_i686_msvc"
3791
+ version = "0.53.0"
3792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3793
+ checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
3794
+
3795
+ [[package]]
3796
+ name = "windows_x86_64_gnu"
3797
+ version = "0.52.6"
3798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3799
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3800
+
3801
+ [[package]]
3802
+ name = "windows_x86_64_gnu"
3803
+ version = "0.53.0"
3804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3805
+ checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
3806
+
3807
+ [[package]]
3808
+ name = "windows_x86_64_gnullvm"
3809
+ version = "0.52.6"
3810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3811
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3812
+
3813
+ [[package]]
3814
+ name = "windows_x86_64_gnullvm"
3815
+ version = "0.53.0"
3816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3817
+ checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
3818
+
3819
+ [[package]]
3820
+ name = "windows_x86_64_msvc"
3821
+ version = "0.52.6"
3822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3823
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3824
+
3825
+ [[package]]
3826
+ name = "windows_x86_64_msvc"
3827
+ version = "0.53.0"
3828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3829
+ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
3830
+
3831
+ [[package]]
3832
+ name = "wit-bindgen"
3833
+ version = "0.51.0"
3834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3835
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3836
+
3837
+ [[package]]
3838
+ name = "writeable"
3839
+ version = "0.6.2"
3840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3841
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3842
+
3843
+ [[package]]
3844
+ name = "xxhash-rust"
3845
+ version = "0.8.15"
3846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3847
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
3848
+
3849
+ [[package]]
3850
+ name = "yoke"
3851
+ version = "0.8.1"
3852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3853
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3854
+ dependencies = [
3855
+ "stable_deref_trait",
3856
+ "yoke-derive",
3857
+ "zerofrom",
3858
+ ]
3859
+
3860
+ [[package]]
3861
+ name = "yoke-derive"
3862
+ version = "0.8.1"
3863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3864
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3865
+ dependencies = [
3866
+ "proc-macro2",
3867
+ "quote",
3868
+ "syn",
3869
+ "synstructure",
3870
+ ]
3871
+
3872
+ [[package]]
3873
+ name = "zerocopy"
3874
+ version = "0.8.38"
3875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3876
+ checksum = "57cf3aa6855b23711ee9852dfc97dfaa51c45feaba5b645d0c777414d494a961"
3877
+ dependencies = [
3878
+ "zerocopy-derive",
3879
+ ]
3880
+
3881
+ [[package]]
3882
+ name = "zerocopy-derive"
3883
+ version = "0.8.38"
3884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3885
+ checksum = "8a616990af1a287837c4fe6596ad77ef57948f787e46ce28e166facc0cc1cb75"
3886
+ dependencies = [
3887
+ "proc-macro2",
3888
+ "quote",
3889
+ "syn",
3890
+ ]
3891
+
3892
+ [[package]]
3893
+ name = "zerofrom"
3894
+ version = "0.1.6"
3895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3896
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3897
+ dependencies = [
3898
+ "zerofrom-derive",
3899
+ ]
3900
+
3901
+ [[package]]
3902
+ name = "zerofrom-derive"
3903
+ version = "0.1.6"
3904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3905
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3906
+ dependencies = [
3907
+ "proc-macro2",
3908
+ "quote",
3909
+ "syn",
3910
+ "synstructure",
3911
+ ]
3912
+
3913
+ [[package]]
3914
+ name = "zeroize"
3915
+ version = "1.8.2"
3916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3917
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3918
+
3919
+ [[package]]
3920
+ name = "zerotrie"
3921
+ version = "0.2.3"
3922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3923
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3924
+ dependencies = [
3925
+ "displaydoc",
3926
+ "yoke",
3927
+ "zerofrom",
3928
+ ]
3929
+
3930
+ [[package]]
3931
+ name = "zerovec"
3932
+ version = "0.11.5"
3933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3934
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3935
+ dependencies = [
3936
+ "yoke",
3937
+ "zerofrom",
3938
+ "zerovec-derive",
3939
+ ]
3940
+
3941
+ [[package]]
3942
+ name = "zerovec-derive"
3943
+ version = "0.11.2"
3944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3945
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3946
+ dependencies = [
3947
+ "proc-macro2",
3948
+ "quote",
3949
+ "syn",
3950
+ ]
3951
+
3952
+ [[package]]
3953
+ name = "zmij"
3954
+ version = "1.0.18"
3955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3956
+ checksum = "1966f8ac2c1f76987d69a74d0e0f929241c10e78136434e3be70ff7f58f64214"
3957
+
3958
+ [[package]]
3959
+ name = "zstd"
3960
+ version = "0.13.3"
3961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3962
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3963
+ dependencies = [
3964
+ "zstd-safe",
3965
+ ]
3966
+
3967
+ [[package]]
3968
+ name = "zstd-safe"
3969
+ version = "7.2.4"
3970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3971
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
3972
+ dependencies = [
3973
+ "zstd-sys",
3974
+ ]
3975
+
3976
+ [[package]]
3977
+ name = "zstd-sys"
3978
+ version = "2.0.16+zstd.1.5.7"
3979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3980
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
3981
+ dependencies = [
3982
+ "cc",
3983
+ "pkg-config",
3984
+ ]