lynxes 1.0.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 (104) hide show
  1. lynxes-1.0.0/Cargo.lock +3042 -0
  2. lynxes-1.0.0/Cargo.toml +46 -0
  3. lynxes-1.0.0/PKG-INFO +33 -0
  4. lynxes-1.0.0/README.md +12 -0
  5. lynxes-1.0.0/crates/lynxes-connect/Cargo.toml +27 -0
  6. lynxes-1.0.0/crates/lynxes-connect/src/connector/arangodb_connector.rs +669 -0
  7. lynxes-1.0.0/crates/lynxes-connect/src/connector/flight_connector.rs +1167 -0
  8. lynxes-1.0.0/crates/lynxes-connect/src/connector/gf_connector.rs +302 -0
  9. lynxes-1.0.0/crates/lynxes-connect/src/connector/mod.rs +34 -0
  10. lynxes-1.0.0/crates/lynxes-connect/src/connector/neo4j_connector.rs +992 -0
  11. lynxes-1.0.0/crates/lynxes-connect/src/connector/sparql_connector.rs +705 -0
  12. lynxes-1.0.0/crates/lynxes-connect/src/connector/trait.rs +97 -0
  13. lynxes-1.0.0/crates/lynxes-connect/src/lib.rs +12 -0
  14. lynxes-1.0.0/crates/lynxes-core/Cargo.toml +72 -0
  15. lynxes-1.0.0/crates/lynxes-core/benches/astar_vs_dijkstra.rs +140 -0
  16. lynxes-1.0.0/crates/lynxes-core/benches/csr_vs_linear.rs +164 -0
  17. lynxes-1.0.0/crates/lynxes-core/benches/in_csr_build.rs +68 -0
  18. lynxes-1.0.0/crates/lynxes-core/benches/parallel_expand.rs +136 -0
  19. lynxes-1.0.0/crates/lynxes-core/benches/terminal_projection.rs +112 -0
  20. lynxes-1.0.0/crates/lynxes-core/src/algo/centrality.rs +455 -0
  21. lynxes-1.0.0/crates/lynxes-core/src/algo/community.rs +377 -0
  22. lynxes-1.0.0/crates/lynxes-core/src/algo/connected_components.rs +219 -0
  23. lynxes-1.0.0/crates/lynxes-core/src/algo/mod.rs +7 -0
  24. lynxes-1.0.0/crates/lynxes-core/src/algo/pagerank.rs +361 -0
  25. lynxes-1.0.0/crates/lynxes-core/src/algo/partition.rs +838 -0
  26. lynxes-1.0.0/crates/lynxes-core/src/algo/shortest_path.rs +969 -0
  27. lynxes-1.0.0/crates/lynxes-core/src/algo/traversal.rs +427 -0
  28. lynxes-1.0.0/crates/lynxes-core/src/connector/mod.rs +3 -0
  29. lynxes-1.0.0/crates/lynxes-core/src/connector/trait.rs +89 -0
  30. lynxes-1.0.0/crates/lynxes-core/src/display/mod.rs +11 -0
  31. lynxes-1.0.0/crates/lynxes-core/src/display/model.rs +140 -0
  32. lynxes-1.0.0/crates/lynxes-core/src/display/profile.rs +328 -0
  33. lynxes-1.0.0/crates/lynxes-core/src/display/projection.rs +486 -0
  34. lynxes-1.0.0/crates/lynxes-core/src/display/summary.rs +80 -0
  35. lynxes-1.0.0/crates/lynxes-core/src/display/width.rs +144 -0
  36. lynxes-1.0.0/crates/lynxes-core/src/error.rs +223 -0
  37. lynxes-1.0.0/crates/lynxes-core/src/frame/csr.rs +209 -0
  38. lynxes-1.0.0/crates/lynxes-core/src/frame/edge_frame.rs +721 -0
  39. lynxes-1.0.0/crates/lynxes-core/src/frame/graph_frame.rs +473 -0
  40. lynxes-1.0.0/crates/lynxes-core/src/frame/mod.rs +9 -0
  41. lynxes-1.0.0/crates/lynxes-core/src/frame/node_frame.rs +570 -0
  42. lynxes-1.0.0/crates/lynxes-core/src/lib.rs +44 -0
  43. lynxes-1.0.0/crates/lynxes-core/src/query/expr.rs +789 -0
  44. lynxes-1.0.0/crates/lynxes-core/src/query/logical_plan.rs +242 -0
  45. lynxes-1.0.0/crates/lynxes-core/src/query/mod.rs +9 -0
  46. lynxes-1.0.0/crates/lynxes-core/src/query/optimizer/early_termination.rs +358 -0
  47. lynxes-1.0.0/crates/lynxes-core/src/query/optimizer/mod.rs +273 -0
  48. lynxes-1.0.0/crates/lynxes-core/src/query/optimizer/partition_parallel.rs +318 -0
  49. lynxes-1.0.0/crates/lynxes-core/src/query/optimizer/predicate_pushdown.rs +461 -0
  50. lynxes-1.0.0/crates/lynxes-core/src/query/optimizer/projection_pushdown.rs +582 -0
  51. lynxes-1.0.0/crates/lynxes-core/src/query/optimizer/subgraph_caching.rs +389 -0
  52. lynxes-1.0.0/crates/lynxes-core/src/query/optimizer/traversal_pruning.rs +372 -0
  53. lynxes-1.0.0/crates/lynxes-core/src/schema/mod.rs +6 -0
  54. lynxes-1.0.0/crates/lynxes-core/src/schema/schema.rs +747 -0
  55. lynxes-1.0.0/crates/lynxes-core/src/schema/types.rs +240 -0
  56. lynxes-1.0.0/crates/lynxes-core/src/types.rs +91 -0
  57. lynxes-1.0.0/crates/lynxes-core/tests/algo_astar.rs +130 -0
  58. lynxes-1.0.0/crates/lynxes-core/tests/algo_betweenness.rs +131 -0
  59. lynxes-1.0.0/crates/lynxes-core/tests/algo_centrality.rs +454 -0
  60. lynxes-1.0.0/crates/lynxes-core/tests/algo_community.rs +168 -0
  61. lynxes-1.0.0/crates/lynxes-core/tests/algo_connected_components.rs +389 -0
  62. lynxes-1.0.0/crates/lynxes-core/tests/algo_k_shortest.rs +120 -0
  63. lynxes-1.0.0/crates/lynxes-core/tests/algo_pagerank.rs +432 -0
  64. lynxes-1.0.0/crates/lynxes-core/tests/algo_shortest_path.rs +391 -0
  65. lynxes-1.0.0/crates/lynxes-core/tests/algo_traversal.rs +382 -0
  66. lynxes-1.0.0/crates/lynxes-core/tests/common/mod.rs +184 -0
  67. lynxes-1.0.0/crates/lynxes-core/tests/connector_arango.rs +263 -0
  68. lynxes-1.0.0/crates/lynxes-core/tests/connector_gf.rs +158 -0
  69. lynxes-1.0.0/crates/lynxes-core/tests/connector_neo4j.rs +262 -0
  70. lynxes-1.0.0/crates/lynxes-core/tests/connector_sparql.rs +282 -0
  71. lynxes-1.0.0/crates/lynxes-core/tests/connector_trait.rs +67 -0
  72. lynxes-1.0.0/crates/lynxes-core/tests/csr_tests.rs +91 -0
  73. lynxes-1.0.0/crates/lynxes-core/tests/display_projection.rs +143 -0
  74. lynxes-1.0.0/crates/lynxes-core/tests/frame_edge.rs +165 -0
  75. lynxes-1.0.0/crates/lynxes-core/tests/frame_graph.rs +108 -0
  76. lynxes-1.0.0/crates/lynxes-core/tests/integration.rs +202 -0
  77. lynxes-1.0.0/crates/lynxes-core/tests/io_gf_parser.rs +181 -0
  78. lynxes-1.0.0/crates/lynxes-core/tests/io_gfb_bytes.rs +90 -0
  79. lynxes-1.0.0/crates/lynxes-core/tests/io_gfb_streaming.rs +149 -0
  80. lynxes-1.0.0/crates/lynxes-core/tests/io_parquet.rs +166 -0
  81. lynxes-1.0.0/crates/lynxes-core/tests/node_frame_tests.rs +328 -0
  82. lynxes-1.0.0/crates/lynxes-core/tests/optimizer.rs +286 -0
  83. lynxes-1.0.0/crates/lynxes-core/tests/query_lazy.rs +273 -0
  84. lynxes-1.0.0/crates/lynxes-io/Cargo.toml +25 -0
  85. lynxes-1.0.0/crates/lynxes-io/src/io/frame_builder.rs +845 -0
  86. lynxes-1.0.0/crates/lynxes-io/src/io/gf_parser.rs +676 -0
  87. lynxes-1.0.0/crates/lynxes-io/src/io/gf_writer.rs +491 -0
  88. lynxes-1.0.0/crates/lynxes-io/src/io/gfb.rs +1103 -0
  89. lynxes-1.0.0/crates/lynxes-io/src/io/graphframe.pest +122 -0
  90. lynxes-1.0.0/crates/lynxes-io/src/io/mod.rs +19 -0
  91. lynxes-1.0.0/crates/lynxes-io/src/io/parquet.rs +159 -0
  92. lynxes-1.0.0/crates/lynxes-io/src/lib.rs +12 -0
  93. lynxes-1.0.0/crates/lynxes-lazy/Cargo.toml +19 -0
  94. lynxes-1.0.0/crates/lynxes-lazy/src/lib.rs +3 -0
  95. lynxes-1.0.0/crates/lynxes-lazy/src/query/executor.rs +2539 -0
  96. lynxes-1.0.0/crates/lynxes-lazy/src/query/lazy_graph_frame.rs +303 -0
  97. lynxes-1.0.0/crates/lynxes-lazy/src/query/mod.rs +4 -0
  98. lynxes-1.0.0/crates/lynxes-plan/Cargo.toml +14 -0
  99. lynxes-1.0.0/crates/lynxes-plan/src/lib.rs +8 -0
  100. lynxes-1.0.0/crates/lynxes-plan/src/query/mod.rs +6 -0
  101. lynxes-1.0.0/crates/lynxes-python/Cargo.toml +20 -0
  102. lynxes-1.0.0/crates/lynxes-python/src/lib.rs +2221 -0
  103. lynxes-1.0.0/pyproject.toml +59 -0
  104. lynxes-1.0.0/src/lynxes/__init__.py +92 -0
@@ -0,0 +1,3042 @@
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 = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "const-random",
19
+ "getrandom 0.3.4",
20
+ "once_cell",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.4"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "alloc-no-stdlib"
36
+ version = "2.0.4"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
39
+
40
+ [[package]]
41
+ name = "alloc-stdlib"
42
+ version = "0.2.2"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
45
+ dependencies = [
46
+ "alloc-no-stdlib",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "allocator-api2"
51
+ version = "0.2.21"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
54
+
55
+ [[package]]
56
+ name = "android-tzdata"
57
+ version = "0.1.1"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
60
+
61
+ [[package]]
62
+ name = "android_system_properties"
63
+ version = "0.1.5"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
66
+ dependencies = [
67
+ "libc",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anes"
72
+ version = "0.1.6"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
75
+
76
+ [[package]]
77
+ name = "anstream"
78
+ version = "1.0.0"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
81
+ dependencies = [
82
+ "anstyle",
83
+ "anstyle-parse",
84
+ "anstyle-query",
85
+ "anstyle-wincon",
86
+ "colorchoice",
87
+ "is_terminal_polyfill",
88
+ "utf8parse",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "anstyle"
93
+ version = "1.0.14"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
96
+
97
+ [[package]]
98
+ name = "anstyle-parse"
99
+ version = "1.0.0"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
102
+ dependencies = [
103
+ "utf8parse",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "anstyle-query"
108
+ version = "1.1.5"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
111
+ dependencies = [
112
+ "windows-sys 0.61.2",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "anstyle-wincon"
117
+ version = "3.0.11"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
120
+ dependencies = [
121
+ "anstyle",
122
+ "once_cell_polyfill",
123
+ "windows-sys 0.61.2",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "anyhow"
128
+ version = "1.0.102"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
131
+
132
+ [[package]]
133
+ name = "arrow"
134
+ version = "53.4.1"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "d3a3ec4fe573f9d1f59d99c085197ef669b00b088ba1d7bb75224732d9357a74"
137
+ dependencies = [
138
+ "arrow-arith",
139
+ "arrow-array",
140
+ "arrow-buffer",
141
+ "arrow-cast",
142
+ "arrow-csv",
143
+ "arrow-data",
144
+ "arrow-ipc",
145
+ "arrow-json",
146
+ "arrow-ord",
147
+ "arrow-row",
148
+ "arrow-schema",
149
+ "arrow-select",
150
+ "arrow-string",
151
+ "pyo3",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "arrow-arith"
156
+ version = "53.4.1"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "6dcf19f07792d8c7f91086c67b574a79301e367029b17fcf63fb854332246a10"
159
+ dependencies = [
160
+ "arrow-array",
161
+ "arrow-buffer",
162
+ "arrow-data",
163
+ "arrow-schema",
164
+ "chrono",
165
+ "half",
166
+ "num",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "arrow-array"
171
+ version = "53.4.1"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "7845c32b41f7053e37a075b3c2f29c6f5ea1b3ca6e5df7a2d325ee6e1b4a63cf"
174
+ dependencies = [
175
+ "ahash",
176
+ "arrow-buffer",
177
+ "arrow-data",
178
+ "arrow-schema",
179
+ "chrono",
180
+ "half",
181
+ "hashbrown 0.15.5",
182
+ "num",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "arrow-buffer"
187
+ version = "53.4.1"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "5b5c681a99606f3316f2a99d9c8b6fa3aad0b1d34d8f6d7a1b471893940219d8"
190
+ dependencies = [
191
+ "bytes",
192
+ "half",
193
+ "num",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "arrow-cast"
198
+ version = "53.4.1"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "6365f8527d4f87b133eeb862f9b8093c009d41a210b8f101f91aa2392f61daac"
201
+ dependencies = [
202
+ "arrow-array",
203
+ "arrow-buffer",
204
+ "arrow-data",
205
+ "arrow-schema",
206
+ "arrow-select",
207
+ "atoi",
208
+ "base64",
209
+ "chrono",
210
+ "half",
211
+ "lexical-core",
212
+ "num",
213
+ "ryu",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "arrow-csv"
218
+ version = "53.4.1"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "30dac4d23ac769300349197b845e0fd18c7f9f15d260d4659ae6b5a9ca06f586"
221
+ dependencies = [
222
+ "arrow-array",
223
+ "arrow-buffer",
224
+ "arrow-cast",
225
+ "arrow-data",
226
+ "arrow-schema",
227
+ "chrono",
228
+ "csv",
229
+ "csv-core",
230
+ "lazy_static",
231
+ "lexical-core",
232
+ "regex",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "arrow-data"
237
+ version = "53.4.1"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "cd962fc3bf7f60705b25bcaa8eb3318b2545aa1d528656525ebdd6a17a6cd6fb"
240
+ dependencies = [
241
+ "arrow-buffer",
242
+ "arrow-schema",
243
+ "half",
244
+ "num",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "arrow-flight"
249
+ version = "53.4.1"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "51e3a40b6ef36f4c17d1fae5af3438c3d6c660401f9ac8a4d921c27d368b8dee"
252
+ dependencies = [
253
+ "arrow-array",
254
+ "arrow-buffer",
255
+ "arrow-cast",
256
+ "arrow-ipc",
257
+ "arrow-schema",
258
+ "base64",
259
+ "bytes",
260
+ "futures",
261
+ "paste",
262
+ "prost",
263
+ "prost-types",
264
+ "tokio",
265
+ "tonic",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "arrow-ipc"
270
+ version = "53.4.1"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "c3527365b24372f9c948f16e53738eb098720eea2093ae73c7af04ac5e30a39b"
273
+ dependencies = [
274
+ "arrow-array",
275
+ "arrow-buffer",
276
+ "arrow-cast",
277
+ "arrow-data",
278
+ "arrow-schema",
279
+ "flatbuffers",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "arrow-json"
284
+ version = "53.4.1"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "acdec0024749fc0d95e025c0b0266d78613727b3b3a5d4cf8ea47eb6d38afdd1"
287
+ dependencies = [
288
+ "arrow-array",
289
+ "arrow-buffer",
290
+ "arrow-cast",
291
+ "arrow-data",
292
+ "arrow-schema",
293
+ "chrono",
294
+ "half",
295
+ "indexmap 2.14.0",
296
+ "lexical-core",
297
+ "num",
298
+ "serde",
299
+ "serde_json",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "arrow-ord"
304
+ version = "53.4.1"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "79af2db0e62a508d34ddf4f76bfd6109b6ecc845257c9cba6f939653668f89ac"
307
+ dependencies = [
308
+ "arrow-array",
309
+ "arrow-buffer",
310
+ "arrow-data",
311
+ "arrow-schema",
312
+ "arrow-select",
313
+ "half",
314
+ "num",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "arrow-row"
319
+ version = "53.4.1"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "da30e9d10e9c52f09ea0cf15086d6d785c11ae8dcc3ea5f16d402221b6ac7735"
322
+ dependencies = [
323
+ "ahash",
324
+ "arrow-array",
325
+ "arrow-buffer",
326
+ "arrow-data",
327
+ "arrow-schema",
328
+ "half",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "arrow-schema"
333
+ version = "53.4.1"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "35b0f9c0c3582dd55db0f136d3b44bfa0189df07adcf7dc7f2f2e74db0f52eb8"
336
+ dependencies = [
337
+ "bitflags 2.11.1",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "arrow-select"
342
+ version = "53.4.1"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "92fc337f01635218493c23da81a364daf38c694b05fc20569c3193c11c561984"
345
+ dependencies = [
346
+ "ahash",
347
+ "arrow-array",
348
+ "arrow-buffer",
349
+ "arrow-data",
350
+ "arrow-schema",
351
+ "num",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "arrow-string"
356
+ version = "53.4.1"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "d596a9fc25dae556672d5069b090331aca8acb93cae426d8b7dcdf1c558fa0ce"
359
+ dependencies = [
360
+ "arrow-array",
361
+ "arrow-buffer",
362
+ "arrow-data",
363
+ "arrow-schema",
364
+ "arrow-select",
365
+ "memchr",
366
+ "num",
367
+ "regex",
368
+ "regex-syntax",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "async-stream"
373
+ version = "0.3.6"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
376
+ dependencies = [
377
+ "async-stream-impl",
378
+ "futures-core",
379
+ "pin-project-lite",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "async-stream-impl"
384
+ version = "0.3.6"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
387
+ dependencies = [
388
+ "proc-macro2",
389
+ "quote",
390
+ "syn",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "async-trait"
395
+ version = "0.1.89"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
398
+ dependencies = [
399
+ "proc-macro2",
400
+ "quote",
401
+ "syn",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "atoi"
406
+ version = "2.0.0"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
409
+ dependencies = [
410
+ "num-traits",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "atomic-waker"
415
+ version = "1.1.2"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
418
+
419
+ [[package]]
420
+ name = "autocfg"
421
+ version = "1.5.0"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
424
+
425
+ [[package]]
426
+ name = "axum"
427
+ version = "0.7.9"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
430
+ dependencies = [
431
+ "async-trait",
432
+ "axum-core",
433
+ "bytes",
434
+ "futures-util",
435
+ "http",
436
+ "http-body",
437
+ "http-body-util",
438
+ "itoa",
439
+ "matchit",
440
+ "memchr",
441
+ "mime",
442
+ "percent-encoding",
443
+ "pin-project-lite",
444
+ "rustversion",
445
+ "serde",
446
+ "sync_wrapper",
447
+ "tower 0.5.3",
448
+ "tower-layer",
449
+ "tower-service",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "axum-core"
454
+ version = "0.4.5"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
457
+ dependencies = [
458
+ "async-trait",
459
+ "bytes",
460
+ "futures-util",
461
+ "http",
462
+ "http-body",
463
+ "http-body-util",
464
+ "mime",
465
+ "pin-project-lite",
466
+ "rustversion",
467
+ "sync_wrapper",
468
+ "tower-layer",
469
+ "tower-service",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "base64"
474
+ version = "0.22.1"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
477
+
478
+ [[package]]
479
+ name = "bitflags"
480
+ version = "1.3.2"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
483
+
484
+ [[package]]
485
+ name = "bitflags"
486
+ version = "2.11.1"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
489
+
490
+ [[package]]
491
+ name = "block-buffer"
492
+ version = "0.10.4"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
495
+ dependencies = [
496
+ "generic-array",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "brotli"
501
+ version = "7.0.0"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
504
+ dependencies = [
505
+ "alloc-no-stdlib",
506
+ "alloc-stdlib",
507
+ "brotli-decompressor",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "brotli-decompressor"
512
+ version = "4.0.3"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
515
+ dependencies = [
516
+ "alloc-no-stdlib",
517
+ "alloc-stdlib",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "bumpalo"
522
+ version = "3.20.2"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
525
+
526
+ [[package]]
527
+ name = "byteorder"
528
+ version = "1.5.0"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
531
+
532
+ [[package]]
533
+ name = "bytes"
534
+ version = "1.11.1"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
537
+
538
+ [[package]]
539
+ name = "cast"
540
+ version = "0.3.0"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
543
+
544
+ [[package]]
545
+ name = "cc"
546
+ version = "1.2.60"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
549
+ dependencies = [
550
+ "find-msvc-tools",
551
+ "jobserver",
552
+ "libc",
553
+ "shlex",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "cfg-if"
558
+ version = "1.0.4"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
561
+
562
+ [[package]]
563
+ name = "chrono"
564
+ version = "0.4.39"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
567
+ dependencies = [
568
+ "android-tzdata",
569
+ "iana-time-zone",
570
+ "num-traits",
571
+ "windows-targets",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "ciborium"
576
+ version = "0.2.2"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
579
+ dependencies = [
580
+ "ciborium-io",
581
+ "ciborium-ll",
582
+ "serde",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "ciborium-io"
587
+ version = "0.2.2"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
590
+
591
+ [[package]]
592
+ name = "ciborium-ll"
593
+ version = "0.2.2"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
596
+ dependencies = [
597
+ "ciborium-io",
598
+ "half",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "clap"
603
+ version = "4.6.1"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
606
+ dependencies = [
607
+ "clap_builder",
608
+ "clap_derive",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "clap_builder"
613
+ version = "4.6.0"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
616
+ dependencies = [
617
+ "anstream",
618
+ "anstyle",
619
+ "clap_lex",
620
+ "strsim",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "clap_derive"
625
+ version = "4.6.1"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
628
+ dependencies = [
629
+ "heck",
630
+ "proc-macro2",
631
+ "quote",
632
+ "syn",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "clap_lex"
637
+ version = "1.1.0"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
640
+
641
+ [[package]]
642
+ name = "colorchoice"
643
+ version = "1.0.5"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
646
+
647
+ [[package]]
648
+ name = "console"
649
+ version = "0.15.11"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
652
+ dependencies = [
653
+ "encode_unicode",
654
+ "libc",
655
+ "once_cell",
656
+ "unicode-width",
657
+ "windows-sys 0.59.0",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "const-random"
662
+ version = "0.1.18"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
665
+ dependencies = [
666
+ "const-random-macro",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "const-random-macro"
671
+ version = "0.1.16"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
674
+ dependencies = [
675
+ "getrandom 0.2.17",
676
+ "once_cell",
677
+ "tiny-keccak",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "core-foundation"
682
+ version = "0.10.1"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
685
+ dependencies = [
686
+ "core-foundation-sys",
687
+ "libc",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "core-foundation-sys"
692
+ version = "0.8.7"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
695
+
696
+ [[package]]
697
+ name = "cpufeatures"
698
+ version = "0.2.17"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
701
+ dependencies = [
702
+ "libc",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "crc32fast"
707
+ version = "1.5.0"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
710
+ dependencies = [
711
+ "cfg-if",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "criterion"
716
+ version = "0.5.1"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
719
+ dependencies = [
720
+ "anes",
721
+ "cast",
722
+ "ciborium",
723
+ "clap",
724
+ "criterion-plot",
725
+ "is-terminal",
726
+ "itertools",
727
+ "num-traits",
728
+ "once_cell",
729
+ "oorandom",
730
+ "plotters",
731
+ "rayon",
732
+ "regex",
733
+ "serde",
734
+ "serde_derive",
735
+ "serde_json",
736
+ "tinytemplate",
737
+ "walkdir",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "criterion-plot"
742
+ version = "0.5.0"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
745
+ dependencies = [
746
+ "cast",
747
+ "itertools",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "crossbeam-deque"
752
+ version = "0.8.6"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
755
+ dependencies = [
756
+ "crossbeam-epoch",
757
+ "crossbeam-utils",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "crossbeam-epoch"
762
+ version = "0.9.18"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
765
+ dependencies = [
766
+ "crossbeam-utils",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "crossbeam-utils"
771
+ version = "0.8.21"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
774
+
775
+ [[package]]
776
+ name = "crunchy"
777
+ version = "0.2.4"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
780
+
781
+ [[package]]
782
+ name = "crypto-common"
783
+ version = "0.1.7"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
786
+ dependencies = [
787
+ "generic-array",
788
+ "typenum",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "csv"
793
+ version = "1.4.0"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
796
+ dependencies = [
797
+ "csv-core",
798
+ "itoa",
799
+ "ryu",
800
+ "serde_core",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "csv-core"
805
+ version = "0.1.13"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
808
+ dependencies = [
809
+ "memchr",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "digest"
814
+ version = "0.10.7"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
817
+ dependencies = [
818
+ "block-buffer",
819
+ "crypto-common",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "either"
824
+ version = "1.15.0"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
827
+
828
+ [[package]]
829
+ name = "encode_unicode"
830
+ version = "1.0.0"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
833
+
834
+ [[package]]
835
+ name = "equivalent"
836
+ version = "1.0.2"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
839
+
840
+ [[package]]
841
+ name = "errno"
842
+ version = "0.3.14"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
845
+ dependencies = [
846
+ "libc",
847
+ "windows-sys 0.61.2",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "find-msvc-tools"
852
+ version = "0.1.9"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
855
+
856
+ [[package]]
857
+ name = "flatbuffers"
858
+ version = "24.12.23"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "4f1baf0dbf96932ec9a3038d57900329c015b0bfb7b63d904f3bc27e2b02a096"
861
+ dependencies = [
862
+ "bitflags 1.3.2",
863
+ "rustc_version",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "flate2"
868
+ version = "1.1.9"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
871
+ dependencies = [
872
+ "crc32fast",
873
+ "miniz_oxide",
874
+ ]
875
+
876
+ [[package]]
877
+ name = "fnv"
878
+ version = "1.0.7"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
881
+
882
+ [[package]]
883
+ name = "futures"
884
+ version = "0.3.32"
885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
886
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
887
+ dependencies = [
888
+ "futures-channel",
889
+ "futures-core",
890
+ "futures-executor",
891
+ "futures-io",
892
+ "futures-sink",
893
+ "futures-task",
894
+ "futures-util",
895
+ ]
896
+
897
+ [[package]]
898
+ name = "futures-channel"
899
+ version = "0.3.32"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
902
+ dependencies = [
903
+ "futures-core",
904
+ "futures-sink",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "futures-core"
909
+ version = "0.3.32"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
912
+
913
+ [[package]]
914
+ name = "futures-executor"
915
+ version = "0.3.32"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
918
+ dependencies = [
919
+ "futures-core",
920
+ "futures-task",
921
+ "futures-util",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "futures-io"
926
+ version = "0.3.32"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
929
+
930
+ [[package]]
931
+ name = "futures-macro"
932
+ version = "0.3.32"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
935
+ dependencies = [
936
+ "proc-macro2",
937
+ "quote",
938
+ "syn",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "futures-sink"
943
+ version = "0.3.32"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
946
+
947
+ [[package]]
948
+ name = "futures-task"
949
+ version = "0.3.32"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
952
+
953
+ [[package]]
954
+ name = "futures-util"
955
+ version = "0.3.32"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
958
+ dependencies = [
959
+ "futures-channel",
960
+ "futures-core",
961
+ "futures-io",
962
+ "futures-macro",
963
+ "futures-sink",
964
+ "futures-task",
965
+ "memchr",
966
+ "pin-project-lite",
967
+ "slab",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "generic-array"
972
+ version = "0.14.7"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
975
+ dependencies = [
976
+ "typenum",
977
+ "version_check",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "getrandom"
982
+ version = "0.2.17"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
985
+ dependencies = [
986
+ "cfg-if",
987
+ "libc",
988
+ "wasi",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "getrandom"
993
+ version = "0.3.4"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
996
+ dependencies = [
997
+ "cfg-if",
998
+ "js-sys",
999
+ "libc",
1000
+ "r-efi",
1001
+ "wasip2",
1002
+ "wasm-bindgen",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "h2"
1007
+ version = "0.4.13"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
1010
+ dependencies = [
1011
+ "atomic-waker",
1012
+ "bytes",
1013
+ "fnv",
1014
+ "futures-core",
1015
+ "futures-sink",
1016
+ "http",
1017
+ "indexmap 2.14.0",
1018
+ "slab",
1019
+ "tokio",
1020
+ "tokio-util",
1021
+ "tracing",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "half"
1026
+ version = "2.7.1"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1029
+ dependencies = [
1030
+ "cfg-if",
1031
+ "crunchy",
1032
+ "num-traits",
1033
+ "zerocopy",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "hashbrown"
1038
+ version = "0.12.3"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1041
+
1042
+ [[package]]
1043
+ name = "hashbrown"
1044
+ version = "0.14.5"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1047
+ dependencies = [
1048
+ "ahash",
1049
+ "allocator-api2",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "hashbrown"
1054
+ version = "0.15.5"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1057
+
1058
+ [[package]]
1059
+ name = "hashbrown"
1060
+ version = "0.17.0"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
1063
+
1064
+ [[package]]
1065
+ name = "heck"
1066
+ version = "0.5.0"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1069
+
1070
+ [[package]]
1071
+ name = "hermit-abi"
1072
+ version = "0.5.2"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1075
+
1076
+ [[package]]
1077
+ name = "http"
1078
+ version = "1.4.0"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1081
+ dependencies = [
1082
+ "bytes",
1083
+ "itoa",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "http-body"
1088
+ version = "1.0.1"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1091
+ dependencies = [
1092
+ "bytes",
1093
+ "http",
1094
+ ]
1095
+
1096
+ [[package]]
1097
+ name = "http-body-util"
1098
+ version = "0.1.3"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1101
+ dependencies = [
1102
+ "bytes",
1103
+ "futures-core",
1104
+ "http",
1105
+ "http-body",
1106
+ "pin-project-lite",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "httparse"
1111
+ version = "1.10.1"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1114
+
1115
+ [[package]]
1116
+ name = "httpdate"
1117
+ version = "1.0.3"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1120
+
1121
+ [[package]]
1122
+ name = "hyper"
1123
+ version = "1.9.0"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
1126
+ dependencies = [
1127
+ "atomic-waker",
1128
+ "bytes",
1129
+ "futures-channel",
1130
+ "futures-core",
1131
+ "h2",
1132
+ "http",
1133
+ "http-body",
1134
+ "httparse",
1135
+ "httpdate",
1136
+ "itoa",
1137
+ "pin-project-lite",
1138
+ "smallvec",
1139
+ "tokio",
1140
+ "want",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "hyper-timeout"
1145
+ version = "0.5.2"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1148
+ dependencies = [
1149
+ "hyper",
1150
+ "hyper-util",
1151
+ "pin-project-lite",
1152
+ "tokio",
1153
+ "tower-service",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "hyper-util"
1158
+ version = "0.1.20"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1161
+ dependencies = [
1162
+ "bytes",
1163
+ "futures-channel",
1164
+ "futures-util",
1165
+ "http",
1166
+ "http-body",
1167
+ "hyper",
1168
+ "libc",
1169
+ "pin-project-lite",
1170
+ "socket2 0.6.3",
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 = "indexmap"
1202
+ version = "1.9.3"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1205
+ dependencies = [
1206
+ "autocfg",
1207
+ "hashbrown 0.12.3",
1208
+ ]
1209
+
1210
+ [[package]]
1211
+ name = "indexmap"
1212
+ version = "2.14.0"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1215
+ dependencies = [
1216
+ "equivalent",
1217
+ "hashbrown 0.17.0",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "indicatif"
1222
+ version = "0.17.11"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
1225
+ dependencies = [
1226
+ "console",
1227
+ "number_prefix",
1228
+ "portable-atomic",
1229
+ "unicode-width",
1230
+ "web-time",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "indoc"
1235
+ version = "2.0.7"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1238
+ dependencies = [
1239
+ "rustversion",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "integer-encoding"
1244
+ version = "3.0.4"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
1247
+
1248
+ [[package]]
1249
+ name = "is-terminal"
1250
+ version = "0.4.17"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1253
+ dependencies = [
1254
+ "hermit-abi",
1255
+ "libc",
1256
+ "windows-sys 0.61.2",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "is_terminal_polyfill"
1261
+ version = "1.70.2"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1264
+
1265
+ [[package]]
1266
+ name = "itertools"
1267
+ version = "0.10.5"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1270
+ dependencies = [
1271
+ "either",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "itoa"
1276
+ version = "1.0.18"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1279
+
1280
+ [[package]]
1281
+ name = "jobserver"
1282
+ version = "0.1.34"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1285
+ dependencies = [
1286
+ "getrandom 0.3.4",
1287
+ "libc",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "js-sys"
1292
+ version = "0.3.95"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
1295
+ dependencies = [
1296
+ "cfg-if",
1297
+ "futures-util",
1298
+ "once_cell",
1299
+ "wasm-bindgen",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "lazy_static"
1304
+ version = "1.5.0"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1307
+
1308
+ [[package]]
1309
+ name = "lexical-core"
1310
+ version = "1.0.6"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
1313
+ dependencies = [
1314
+ "lexical-parse-float",
1315
+ "lexical-parse-integer",
1316
+ "lexical-util",
1317
+ "lexical-write-float",
1318
+ "lexical-write-integer",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "lexical-parse-float"
1323
+ version = "1.0.6"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
1326
+ dependencies = [
1327
+ "lexical-parse-integer",
1328
+ "lexical-util",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "lexical-parse-integer"
1333
+ version = "1.0.6"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
1336
+ dependencies = [
1337
+ "lexical-util",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "lexical-util"
1342
+ version = "1.0.7"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
1345
+
1346
+ [[package]]
1347
+ name = "lexical-write-float"
1348
+ version = "1.0.6"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
1351
+ dependencies = [
1352
+ "lexical-util",
1353
+ "lexical-write-integer",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "lexical-write-integer"
1358
+ version = "1.0.6"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
1361
+ dependencies = [
1362
+ "lexical-util",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "libc"
1367
+ version = "0.2.185"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
1370
+
1371
+ [[package]]
1372
+ name = "libm"
1373
+ version = "0.2.16"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1376
+
1377
+ [[package]]
1378
+ name = "lock_api"
1379
+ version = "0.4.14"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1382
+ dependencies = [
1383
+ "scopeguard",
1384
+ ]
1385
+
1386
+ [[package]]
1387
+ name = "log"
1388
+ version = "0.4.29"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1391
+
1392
+ [[package]]
1393
+ name = "lynxes"
1394
+ version = "1.0.0"
1395
+ dependencies = [
1396
+ "lynxes-connect",
1397
+ "lynxes-core",
1398
+ "lynxes-io",
1399
+ "lynxes-lazy",
1400
+ "lynxes-plan",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "lynxes-cli"
1405
+ version = "1.0.0"
1406
+ dependencies = [
1407
+ "anyhow",
1408
+ "arrow-array",
1409
+ "arrow-schema",
1410
+ "clap",
1411
+ "indicatif",
1412
+ "lynxes-connect",
1413
+ "lynxes-core",
1414
+ "lynxes-io",
1415
+ "lynxes-lazy",
1416
+ "lynxes-plan",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "lynxes-connect"
1421
+ version = "1.0.0"
1422
+ dependencies = [
1423
+ "arrow-array",
1424
+ "arrow-flight",
1425
+ "arrow-ipc",
1426
+ "arrow-schema",
1427
+ "base64",
1428
+ "futures",
1429
+ "lynxes-core",
1430
+ "lynxes-io",
1431
+ "lynxes-lazy",
1432
+ "lynxes-plan",
1433
+ "prost",
1434
+ "serde",
1435
+ "serde_json",
1436
+ "tokio",
1437
+ "tokio-stream",
1438
+ "tonic",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "lynxes-core"
1443
+ version = "1.0.0"
1444
+ dependencies = [
1445
+ "ahash",
1446
+ "arrow",
1447
+ "arrow-array",
1448
+ "arrow-flight",
1449
+ "arrow-ipc",
1450
+ "arrow-schema",
1451
+ "base64",
1452
+ "chrono",
1453
+ "criterion",
1454
+ "futures",
1455
+ "futures-core",
1456
+ "getrandom 0.3.4",
1457
+ "hashbrown 0.14.5",
1458
+ "js-sys",
1459
+ "lynxes-connect",
1460
+ "lynxes-io",
1461
+ "lynxes-lazy",
1462
+ "lz4_flex",
1463
+ "parquet",
1464
+ "pest",
1465
+ "pest_derive",
1466
+ "prost",
1467
+ "rayon",
1468
+ "serde",
1469
+ "serde-wasm-bindgen",
1470
+ "serde_json",
1471
+ "thiserror",
1472
+ "tokio",
1473
+ "tokio-stream",
1474
+ "tonic",
1475
+ "wasm-bindgen",
1476
+ "wasm-bindgen-futures",
1477
+ "web-sys",
1478
+ "zstd",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "lynxes-io"
1483
+ version = "1.0.0"
1484
+ dependencies = [
1485
+ "arrow",
1486
+ "arrow-array",
1487
+ "arrow-ipc",
1488
+ "arrow-schema",
1489
+ "chrono",
1490
+ "futures-core",
1491
+ "lynxes-core",
1492
+ "lz4_flex",
1493
+ "parquet",
1494
+ "pest",
1495
+ "pest_derive",
1496
+ "serde",
1497
+ "serde_json",
1498
+ "zstd",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "lynxes-lazy"
1503
+ version = "1.0.0"
1504
+ dependencies = [
1505
+ "arrow",
1506
+ "arrow-array",
1507
+ "arrow-schema",
1508
+ "hashbrown 0.14.5",
1509
+ "lynxes-core",
1510
+ "lynxes-io",
1511
+ "lynxes-plan",
1512
+ "rayon",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "lynxes-plan"
1517
+ version = "1.0.0"
1518
+ dependencies = [
1519
+ "arrow-schema",
1520
+ "hashbrown 0.14.5",
1521
+ "lynxes-core",
1522
+ "serde",
1523
+ "serde_json",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "lynxes-python"
1528
+ version = "1.0.0"
1529
+ dependencies = [
1530
+ "arrow",
1531
+ "lynxes-connect",
1532
+ "lynxes-core",
1533
+ "lynxes-io",
1534
+ "lynxes-lazy",
1535
+ "lynxes-plan",
1536
+ "pyo3",
1537
+ ]
1538
+
1539
+ [[package]]
1540
+ name = "lz4_flex"
1541
+ version = "0.11.6"
1542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1543
+ checksum = "373f5eceeeab7925e0c1098212f2fbc4d416adec9d35051a6ab251e824c1854a"
1544
+ dependencies = [
1545
+ "twox-hash 2.1.2",
1546
+ ]
1547
+
1548
+ [[package]]
1549
+ name = "matchit"
1550
+ version = "0.7.3"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1553
+
1554
+ [[package]]
1555
+ name = "memchr"
1556
+ version = "2.8.0"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1559
+
1560
+ [[package]]
1561
+ name = "memoffset"
1562
+ version = "0.9.1"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1565
+ dependencies = [
1566
+ "autocfg",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "mime"
1571
+ version = "0.3.17"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1574
+
1575
+ [[package]]
1576
+ name = "miniz_oxide"
1577
+ version = "0.8.9"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1580
+ dependencies = [
1581
+ "adler2",
1582
+ "simd-adler32",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "mio"
1587
+ version = "1.2.0"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1590
+ dependencies = [
1591
+ "libc",
1592
+ "wasi",
1593
+ "windows-sys 0.61.2",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "num"
1598
+ version = "0.4.3"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1601
+ dependencies = [
1602
+ "num-bigint",
1603
+ "num-complex",
1604
+ "num-integer",
1605
+ "num-iter",
1606
+ "num-rational",
1607
+ "num-traits",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "num-bigint"
1612
+ version = "0.4.6"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1615
+ dependencies = [
1616
+ "num-integer",
1617
+ "num-traits",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "num-complex"
1622
+ version = "0.4.6"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1625
+ dependencies = [
1626
+ "num-traits",
1627
+ ]
1628
+
1629
+ [[package]]
1630
+ name = "num-integer"
1631
+ version = "0.1.46"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1634
+ dependencies = [
1635
+ "num-traits",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "num-iter"
1640
+ version = "0.1.45"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1643
+ dependencies = [
1644
+ "autocfg",
1645
+ "num-integer",
1646
+ "num-traits",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "num-rational"
1651
+ version = "0.4.2"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1654
+ dependencies = [
1655
+ "num-bigint",
1656
+ "num-integer",
1657
+ "num-traits",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "num-traits"
1662
+ version = "0.2.19"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1665
+ dependencies = [
1666
+ "autocfg",
1667
+ "libm",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "number_prefix"
1672
+ version = "0.4.0"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1675
+
1676
+ [[package]]
1677
+ name = "once_cell"
1678
+ version = "1.21.4"
1679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1681
+
1682
+ [[package]]
1683
+ name = "once_cell_polyfill"
1684
+ version = "1.70.2"
1685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1686
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1687
+
1688
+ [[package]]
1689
+ name = "oorandom"
1690
+ version = "11.1.5"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1693
+
1694
+ [[package]]
1695
+ name = "openssl-probe"
1696
+ version = "0.2.1"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1699
+
1700
+ [[package]]
1701
+ name = "ordered-float"
1702
+ version = "2.10.1"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
1705
+ dependencies = [
1706
+ "num-traits",
1707
+ ]
1708
+
1709
+ [[package]]
1710
+ name = "parking_lot"
1711
+ version = "0.12.5"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1714
+ dependencies = [
1715
+ "lock_api",
1716
+ "parking_lot_core",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "parking_lot_core"
1721
+ version = "0.9.12"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1724
+ dependencies = [
1725
+ "cfg-if",
1726
+ "libc",
1727
+ "redox_syscall",
1728
+ "smallvec",
1729
+ "windows-link",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "parquet"
1734
+ version = "53.4.1"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "2f8cf58b29782a7add991f655ff42929e31a7859f5319e53db9e39a714cb113c"
1737
+ dependencies = [
1738
+ "ahash",
1739
+ "arrow-array",
1740
+ "arrow-buffer",
1741
+ "arrow-cast",
1742
+ "arrow-data",
1743
+ "arrow-ipc",
1744
+ "arrow-schema",
1745
+ "arrow-select",
1746
+ "base64",
1747
+ "brotli",
1748
+ "bytes",
1749
+ "chrono",
1750
+ "flate2",
1751
+ "half",
1752
+ "hashbrown 0.15.5",
1753
+ "lz4_flex",
1754
+ "num",
1755
+ "num-bigint",
1756
+ "paste",
1757
+ "seq-macro",
1758
+ "snap",
1759
+ "thrift",
1760
+ "twox-hash 1.6.3",
1761
+ "zstd",
1762
+ "zstd-sys",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "paste"
1767
+ version = "1.0.15"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1770
+
1771
+ [[package]]
1772
+ name = "percent-encoding"
1773
+ version = "2.3.2"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1776
+
1777
+ [[package]]
1778
+ name = "pest"
1779
+ version = "2.8.6"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
1782
+ dependencies = [
1783
+ "memchr",
1784
+ "ucd-trie",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "pest_derive"
1789
+ version = "2.8.6"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
1792
+ dependencies = [
1793
+ "pest",
1794
+ "pest_generator",
1795
+ ]
1796
+
1797
+ [[package]]
1798
+ name = "pest_generator"
1799
+ version = "2.8.6"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
1802
+ dependencies = [
1803
+ "pest",
1804
+ "pest_meta",
1805
+ "proc-macro2",
1806
+ "quote",
1807
+ "syn",
1808
+ ]
1809
+
1810
+ [[package]]
1811
+ name = "pest_meta"
1812
+ version = "2.8.6"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
1815
+ dependencies = [
1816
+ "pest",
1817
+ "sha2",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "pin-project"
1822
+ version = "1.1.11"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517"
1825
+ dependencies = [
1826
+ "pin-project-internal",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "pin-project-internal"
1831
+ version = "1.1.11"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6"
1834
+ dependencies = [
1835
+ "proc-macro2",
1836
+ "quote",
1837
+ "syn",
1838
+ ]
1839
+
1840
+ [[package]]
1841
+ name = "pin-project-lite"
1842
+ version = "0.2.17"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1845
+
1846
+ [[package]]
1847
+ name = "pkg-config"
1848
+ version = "0.3.33"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1851
+
1852
+ [[package]]
1853
+ name = "plotters"
1854
+ version = "0.3.7"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1857
+ dependencies = [
1858
+ "num-traits",
1859
+ "plotters-backend",
1860
+ "plotters-svg",
1861
+ "wasm-bindgen",
1862
+ "web-sys",
1863
+ ]
1864
+
1865
+ [[package]]
1866
+ name = "plotters-backend"
1867
+ version = "0.3.7"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1870
+
1871
+ [[package]]
1872
+ name = "plotters-svg"
1873
+ version = "0.3.7"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1876
+ dependencies = [
1877
+ "plotters-backend",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "portable-atomic"
1882
+ version = "1.13.1"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1885
+
1886
+ [[package]]
1887
+ name = "ppv-lite86"
1888
+ version = "0.2.21"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1891
+ dependencies = [
1892
+ "zerocopy",
1893
+ ]
1894
+
1895
+ [[package]]
1896
+ name = "proc-macro2"
1897
+ version = "1.0.106"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1900
+ dependencies = [
1901
+ "unicode-ident",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "prost"
1906
+ version = "0.13.5"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
1909
+ dependencies = [
1910
+ "bytes",
1911
+ "prost-derive",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "prost-derive"
1916
+ version = "0.13.5"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
1919
+ dependencies = [
1920
+ "anyhow",
1921
+ "itertools",
1922
+ "proc-macro2",
1923
+ "quote",
1924
+ "syn",
1925
+ ]
1926
+
1927
+ [[package]]
1928
+ name = "prost-types"
1929
+ version = "0.13.5"
1930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1931
+ checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
1932
+ dependencies = [
1933
+ "prost",
1934
+ ]
1935
+
1936
+ [[package]]
1937
+ name = "pyo3"
1938
+ version = "0.22.6"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
1941
+ dependencies = [
1942
+ "cfg-if",
1943
+ "indoc",
1944
+ "libc",
1945
+ "memoffset",
1946
+ "once_cell",
1947
+ "portable-atomic",
1948
+ "pyo3-build-config",
1949
+ "pyo3-ffi",
1950
+ "pyo3-macros",
1951
+ "unindent",
1952
+ ]
1953
+
1954
+ [[package]]
1955
+ name = "pyo3-build-config"
1956
+ version = "0.22.6"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
1959
+ dependencies = [
1960
+ "once_cell",
1961
+ "target-lexicon",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "pyo3-ffi"
1966
+ version = "0.22.6"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
1969
+ dependencies = [
1970
+ "libc",
1971
+ "pyo3-build-config",
1972
+ ]
1973
+
1974
+ [[package]]
1975
+ name = "pyo3-macros"
1976
+ version = "0.22.6"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
1979
+ dependencies = [
1980
+ "proc-macro2",
1981
+ "pyo3-macros-backend",
1982
+ "quote",
1983
+ "syn",
1984
+ ]
1985
+
1986
+ [[package]]
1987
+ name = "pyo3-macros-backend"
1988
+ version = "0.22.6"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
1991
+ dependencies = [
1992
+ "heck",
1993
+ "proc-macro2",
1994
+ "pyo3-build-config",
1995
+ "quote",
1996
+ "syn",
1997
+ ]
1998
+
1999
+ [[package]]
2000
+ name = "quote"
2001
+ version = "1.0.45"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2004
+ dependencies = [
2005
+ "proc-macro2",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "r-efi"
2010
+ version = "5.3.0"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2013
+
2014
+ [[package]]
2015
+ name = "rand"
2016
+ version = "0.8.6"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
2019
+ dependencies = [
2020
+ "libc",
2021
+ "rand_chacha",
2022
+ "rand_core",
2023
+ ]
2024
+
2025
+ [[package]]
2026
+ name = "rand_chacha"
2027
+ version = "0.3.1"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2030
+ dependencies = [
2031
+ "ppv-lite86",
2032
+ "rand_core",
2033
+ ]
2034
+
2035
+ [[package]]
2036
+ name = "rand_core"
2037
+ version = "0.6.4"
2038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2040
+ dependencies = [
2041
+ "getrandom 0.2.17",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "rayon"
2046
+ version = "1.12.0"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2049
+ dependencies = [
2050
+ "either",
2051
+ "rayon-core",
2052
+ ]
2053
+
2054
+ [[package]]
2055
+ name = "rayon-core"
2056
+ version = "1.13.0"
2057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2058
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2059
+ dependencies = [
2060
+ "crossbeam-deque",
2061
+ "crossbeam-utils",
2062
+ ]
2063
+
2064
+ [[package]]
2065
+ name = "redox_syscall"
2066
+ version = "0.5.18"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2069
+ dependencies = [
2070
+ "bitflags 2.11.1",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "regex"
2075
+ version = "1.12.3"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2078
+ dependencies = [
2079
+ "aho-corasick",
2080
+ "memchr",
2081
+ "regex-automata",
2082
+ "regex-syntax",
2083
+ ]
2084
+
2085
+ [[package]]
2086
+ name = "regex-automata"
2087
+ version = "0.4.14"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2090
+ dependencies = [
2091
+ "aho-corasick",
2092
+ "memchr",
2093
+ "regex-syntax",
2094
+ ]
2095
+
2096
+ [[package]]
2097
+ name = "regex-syntax"
2098
+ version = "0.8.10"
2099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2100
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2101
+
2102
+ [[package]]
2103
+ name = "ring"
2104
+ version = "0.17.14"
2105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2106
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2107
+ dependencies = [
2108
+ "cc",
2109
+ "cfg-if",
2110
+ "getrandom 0.2.17",
2111
+ "libc",
2112
+ "untrusted",
2113
+ "windows-sys 0.52.0",
2114
+ ]
2115
+
2116
+ [[package]]
2117
+ name = "rustc_version"
2118
+ version = "0.4.1"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2121
+ dependencies = [
2122
+ "semver",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "rustls"
2127
+ version = "0.23.38"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "69f9466fb2c14ea04357e91413efb882e2a6d4a406e625449bc0a5d360d53a21"
2130
+ dependencies = [
2131
+ "log",
2132
+ "once_cell",
2133
+ "ring",
2134
+ "rustls-pki-types",
2135
+ "rustls-webpki",
2136
+ "subtle",
2137
+ "zeroize",
2138
+ ]
2139
+
2140
+ [[package]]
2141
+ name = "rustls-native-certs"
2142
+ version = "0.8.3"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
2145
+ dependencies = [
2146
+ "openssl-probe",
2147
+ "rustls-pki-types",
2148
+ "schannel",
2149
+ "security-framework",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "rustls-pemfile"
2154
+ version = "2.2.0"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2157
+ dependencies = [
2158
+ "rustls-pki-types",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "rustls-pki-types"
2163
+ version = "1.14.0"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2166
+ dependencies = [
2167
+ "zeroize",
2168
+ ]
2169
+
2170
+ [[package]]
2171
+ name = "rustls-webpki"
2172
+ version = "0.103.12"
2173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2174
+ checksum = "8279bb85272c9f10811ae6a6c547ff594d6a7f3c6c6b02ee9726d1d0dcfcdd06"
2175
+ dependencies = [
2176
+ "ring",
2177
+ "rustls-pki-types",
2178
+ "untrusted",
2179
+ ]
2180
+
2181
+ [[package]]
2182
+ name = "rustversion"
2183
+ version = "1.0.22"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2186
+
2187
+ [[package]]
2188
+ name = "ryu"
2189
+ version = "1.0.23"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2192
+
2193
+ [[package]]
2194
+ name = "same-file"
2195
+ version = "1.0.6"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2198
+ dependencies = [
2199
+ "winapi-util",
2200
+ ]
2201
+
2202
+ [[package]]
2203
+ name = "schannel"
2204
+ version = "0.1.29"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2207
+ dependencies = [
2208
+ "windows-sys 0.61.2",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "scopeguard"
2213
+ version = "1.2.0"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2216
+
2217
+ [[package]]
2218
+ name = "security-framework"
2219
+ version = "3.7.0"
2220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2221
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2222
+ dependencies = [
2223
+ "bitflags 2.11.1",
2224
+ "core-foundation",
2225
+ "core-foundation-sys",
2226
+ "libc",
2227
+ "security-framework-sys",
2228
+ ]
2229
+
2230
+ [[package]]
2231
+ name = "security-framework-sys"
2232
+ version = "2.17.0"
2233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2234
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2235
+ dependencies = [
2236
+ "core-foundation-sys",
2237
+ "libc",
2238
+ ]
2239
+
2240
+ [[package]]
2241
+ name = "semver"
2242
+ version = "1.0.28"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2245
+
2246
+ [[package]]
2247
+ name = "seq-macro"
2248
+ version = "0.3.6"
2249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2251
+
2252
+ [[package]]
2253
+ name = "serde"
2254
+ version = "1.0.228"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2257
+ dependencies = [
2258
+ "serde_core",
2259
+ "serde_derive",
2260
+ ]
2261
+
2262
+ [[package]]
2263
+ name = "serde-wasm-bindgen"
2264
+ version = "0.6.5"
2265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2266
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
2267
+ dependencies = [
2268
+ "js-sys",
2269
+ "serde",
2270
+ "wasm-bindgen",
2271
+ ]
2272
+
2273
+ [[package]]
2274
+ name = "serde_core"
2275
+ version = "1.0.228"
2276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2277
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2278
+ dependencies = [
2279
+ "serde_derive",
2280
+ ]
2281
+
2282
+ [[package]]
2283
+ name = "serde_derive"
2284
+ version = "1.0.228"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2287
+ dependencies = [
2288
+ "proc-macro2",
2289
+ "quote",
2290
+ "syn",
2291
+ ]
2292
+
2293
+ [[package]]
2294
+ name = "serde_json"
2295
+ version = "1.0.149"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2298
+ dependencies = [
2299
+ "itoa",
2300
+ "memchr",
2301
+ "serde",
2302
+ "serde_core",
2303
+ "zmij",
2304
+ ]
2305
+
2306
+ [[package]]
2307
+ name = "sha2"
2308
+ version = "0.10.9"
2309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2310
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2311
+ dependencies = [
2312
+ "cfg-if",
2313
+ "cpufeatures",
2314
+ "digest",
2315
+ ]
2316
+
2317
+ [[package]]
2318
+ name = "shlex"
2319
+ version = "1.3.0"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2322
+
2323
+ [[package]]
2324
+ name = "signal-hook-registry"
2325
+ version = "1.4.8"
2326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2328
+ dependencies = [
2329
+ "errno",
2330
+ "libc",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "simd-adler32"
2335
+ version = "0.3.9"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
2338
+
2339
+ [[package]]
2340
+ name = "slab"
2341
+ version = "0.4.12"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2344
+
2345
+ [[package]]
2346
+ name = "smallvec"
2347
+ version = "1.15.1"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2350
+
2351
+ [[package]]
2352
+ name = "snap"
2353
+ version = "1.1.1"
2354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2355
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
2356
+
2357
+ [[package]]
2358
+ name = "socket2"
2359
+ version = "0.5.10"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2362
+ dependencies = [
2363
+ "libc",
2364
+ "windows-sys 0.52.0",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "socket2"
2369
+ version = "0.6.3"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2372
+ dependencies = [
2373
+ "libc",
2374
+ "windows-sys 0.61.2",
2375
+ ]
2376
+
2377
+ [[package]]
2378
+ name = "static_assertions"
2379
+ version = "1.1.0"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2382
+
2383
+ [[package]]
2384
+ name = "strsim"
2385
+ version = "0.11.1"
2386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2387
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2388
+
2389
+ [[package]]
2390
+ name = "subtle"
2391
+ version = "2.6.1"
2392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2393
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2394
+
2395
+ [[package]]
2396
+ name = "syn"
2397
+ version = "2.0.117"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2400
+ dependencies = [
2401
+ "proc-macro2",
2402
+ "quote",
2403
+ "unicode-ident",
2404
+ ]
2405
+
2406
+ [[package]]
2407
+ name = "sync_wrapper"
2408
+ version = "1.0.2"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2411
+
2412
+ [[package]]
2413
+ name = "target-lexicon"
2414
+ version = "0.12.16"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2417
+
2418
+ [[package]]
2419
+ name = "thiserror"
2420
+ version = "1.0.69"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2423
+ dependencies = [
2424
+ "thiserror-impl",
2425
+ ]
2426
+
2427
+ [[package]]
2428
+ name = "thiserror-impl"
2429
+ version = "1.0.69"
2430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2431
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2432
+ dependencies = [
2433
+ "proc-macro2",
2434
+ "quote",
2435
+ "syn",
2436
+ ]
2437
+
2438
+ [[package]]
2439
+ name = "thrift"
2440
+ version = "0.17.0"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
2443
+ dependencies = [
2444
+ "byteorder",
2445
+ "integer-encoding",
2446
+ "ordered-float",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "tiny-keccak"
2451
+ version = "2.0.2"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
2454
+ dependencies = [
2455
+ "crunchy",
2456
+ ]
2457
+
2458
+ [[package]]
2459
+ name = "tinytemplate"
2460
+ version = "1.2.1"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2463
+ dependencies = [
2464
+ "serde",
2465
+ "serde_json",
2466
+ ]
2467
+
2468
+ [[package]]
2469
+ name = "tokio"
2470
+ version = "1.52.1"
2471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2472
+ checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
2473
+ dependencies = [
2474
+ "bytes",
2475
+ "libc",
2476
+ "mio",
2477
+ "parking_lot",
2478
+ "pin-project-lite",
2479
+ "signal-hook-registry",
2480
+ "socket2 0.6.3",
2481
+ "tokio-macros",
2482
+ "windows-sys 0.61.2",
2483
+ ]
2484
+
2485
+ [[package]]
2486
+ name = "tokio-macros"
2487
+ version = "2.7.0"
2488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2489
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2490
+ dependencies = [
2491
+ "proc-macro2",
2492
+ "quote",
2493
+ "syn",
2494
+ ]
2495
+
2496
+ [[package]]
2497
+ name = "tokio-rustls"
2498
+ version = "0.26.4"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2501
+ dependencies = [
2502
+ "rustls",
2503
+ "tokio",
2504
+ ]
2505
+
2506
+ [[package]]
2507
+ name = "tokio-stream"
2508
+ version = "0.1.18"
2509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2510
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2511
+ dependencies = [
2512
+ "futures-core",
2513
+ "pin-project-lite",
2514
+ "tokio",
2515
+ ]
2516
+
2517
+ [[package]]
2518
+ name = "tokio-util"
2519
+ version = "0.7.18"
2520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2521
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2522
+ dependencies = [
2523
+ "bytes",
2524
+ "futures-core",
2525
+ "futures-sink",
2526
+ "pin-project-lite",
2527
+ "tokio",
2528
+ ]
2529
+
2530
+ [[package]]
2531
+ name = "tonic"
2532
+ version = "0.12.3"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
2535
+ dependencies = [
2536
+ "async-stream",
2537
+ "async-trait",
2538
+ "axum",
2539
+ "base64",
2540
+ "bytes",
2541
+ "h2",
2542
+ "http",
2543
+ "http-body",
2544
+ "http-body-util",
2545
+ "hyper",
2546
+ "hyper-timeout",
2547
+ "hyper-util",
2548
+ "percent-encoding",
2549
+ "pin-project",
2550
+ "prost",
2551
+ "rustls-native-certs",
2552
+ "rustls-pemfile",
2553
+ "socket2 0.5.10",
2554
+ "tokio",
2555
+ "tokio-rustls",
2556
+ "tokio-stream",
2557
+ "tower 0.4.13",
2558
+ "tower-layer",
2559
+ "tower-service",
2560
+ "tracing",
2561
+ ]
2562
+
2563
+ [[package]]
2564
+ name = "tower"
2565
+ version = "0.4.13"
2566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2567
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2568
+ dependencies = [
2569
+ "futures-core",
2570
+ "futures-util",
2571
+ "indexmap 1.9.3",
2572
+ "pin-project",
2573
+ "pin-project-lite",
2574
+ "rand",
2575
+ "slab",
2576
+ "tokio",
2577
+ "tokio-util",
2578
+ "tower-layer",
2579
+ "tower-service",
2580
+ "tracing",
2581
+ ]
2582
+
2583
+ [[package]]
2584
+ name = "tower"
2585
+ version = "0.5.3"
2586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2587
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2588
+ dependencies = [
2589
+ "futures-core",
2590
+ "futures-util",
2591
+ "pin-project-lite",
2592
+ "sync_wrapper",
2593
+ "tower-layer",
2594
+ "tower-service",
2595
+ ]
2596
+
2597
+ [[package]]
2598
+ name = "tower-layer"
2599
+ version = "0.3.3"
2600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2601
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2602
+
2603
+ [[package]]
2604
+ name = "tower-service"
2605
+ version = "0.3.3"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2608
+
2609
+ [[package]]
2610
+ name = "tracing"
2611
+ version = "0.1.44"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2614
+ dependencies = [
2615
+ "pin-project-lite",
2616
+ "tracing-attributes",
2617
+ "tracing-core",
2618
+ ]
2619
+
2620
+ [[package]]
2621
+ name = "tracing-attributes"
2622
+ version = "0.1.31"
2623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2624
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2625
+ dependencies = [
2626
+ "proc-macro2",
2627
+ "quote",
2628
+ "syn",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "tracing-core"
2633
+ version = "0.1.36"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2636
+ dependencies = [
2637
+ "once_cell",
2638
+ ]
2639
+
2640
+ [[package]]
2641
+ name = "try-lock"
2642
+ version = "0.2.5"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2645
+
2646
+ [[package]]
2647
+ name = "twox-hash"
2648
+ version = "1.6.3"
2649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2650
+ checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
2651
+ dependencies = [
2652
+ "cfg-if",
2653
+ "static_assertions",
2654
+ ]
2655
+
2656
+ [[package]]
2657
+ name = "twox-hash"
2658
+ version = "2.1.2"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
2661
+
2662
+ [[package]]
2663
+ name = "typenum"
2664
+ version = "1.19.0"
2665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2666
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2667
+
2668
+ [[package]]
2669
+ name = "ucd-trie"
2670
+ version = "0.1.7"
2671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2672
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
2673
+
2674
+ [[package]]
2675
+ name = "unicode-ident"
2676
+ version = "1.0.24"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2679
+
2680
+ [[package]]
2681
+ name = "unicode-width"
2682
+ version = "0.2.2"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2685
+
2686
+ [[package]]
2687
+ name = "unindent"
2688
+ version = "0.2.4"
2689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2690
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2691
+
2692
+ [[package]]
2693
+ name = "untrusted"
2694
+ version = "0.9.0"
2695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2696
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2697
+
2698
+ [[package]]
2699
+ name = "utf8parse"
2700
+ version = "0.2.2"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2703
+
2704
+ [[package]]
2705
+ name = "version_check"
2706
+ version = "0.9.5"
2707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2708
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2709
+
2710
+ [[package]]
2711
+ name = "walkdir"
2712
+ version = "2.5.0"
2713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2714
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2715
+ dependencies = [
2716
+ "same-file",
2717
+ "winapi-util",
2718
+ ]
2719
+
2720
+ [[package]]
2721
+ name = "want"
2722
+ version = "0.3.1"
2723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2724
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2725
+ dependencies = [
2726
+ "try-lock",
2727
+ ]
2728
+
2729
+ [[package]]
2730
+ name = "wasi"
2731
+ version = "0.11.1+wasi-snapshot-preview1"
2732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2733
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2734
+
2735
+ [[package]]
2736
+ name = "wasip2"
2737
+ version = "1.0.2+wasi-0.2.9"
2738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2739
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2740
+ dependencies = [
2741
+ "wit-bindgen",
2742
+ ]
2743
+
2744
+ [[package]]
2745
+ name = "wasm-bindgen"
2746
+ version = "0.2.118"
2747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2748
+ checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
2749
+ dependencies = [
2750
+ "cfg-if",
2751
+ "once_cell",
2752
+ "rustversion",
2753
+ "wasm-bindgen-macro",
2754
+ "wasm-bindgen-shared",
2755
+ ]
2756
+
2757
+ [[package]]
2758
+ name = "wasm-bindgen-futures"
2759
+ version = "0.4.68"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "f371d383f2fb139252e0bfac3b81b265689bf45b6874af544ffa4c975ac1ebf8"
2762
+ dependencies = [
2763
+ "js-sys",
2764
+ "wasm-bindgen",
2765
+ ]
2766
+
2767
+ [[package]]
2768
+ name = "wasm-bindgen-macro"
2769
+ version = "0.2.118"
2770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2771
+ checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
2772
+ dependencies = [
2773
+ "quote",
2774
+ "wasm-bindgen-macro-support",
2775
+ ]
2776
+
2777
+ [[package]]
2778
+ name = "wasm-bindgen-macro-support"
2779
+ version = "0.2.118"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
2782
+ dependencies = [
2783
+ "bumpalo",
2784
+ "proc-macro2",
2785
+ "quote",
2786
+ "syn",
2787
+ "wasm-bindgen-shared",
2788
+ ]
2789
+
2790
+ [[package]]
2791
+ name = "wasm-bindgen-shared"
2792
+ version = "0.2.118"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
2795
+ dependencies = [
2796
+ "unicode-ident",
2797
+ ]
2798
+
2799
+ [[package]]
2800
+ name = "web-sys"
2801
+ version = "0.3.95"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
2804
+ dependencies = [
2805
+ "js-sys",
2806
+ "wasm-bindgen",
2807
+ ]
2808
+
2809
+ [[package]]
2810
+ name = "web-time"
2811
+ version = "1.1.0"
2812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2813
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2814
+ dependencies = [
2815
+ "js-sys",
2816
+ "wasm-bindgen",
2817
+ ]
2818
+
2819
+ [[package]]
2820
+ name = "winapi-util"
2821
+ version = "0.1.11"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2824
+ dependencies = [
2825
+ "windows-sys 0.61.2",
2826
+ ]
2827
+
2828
+ [[package]]
2829
+ name = "windows-core"
2830
+ version = "0.62.2"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2833
+ dependencies = [
2834
+ "windows-implement",
2835
+ "windows-interface",
2836
+ "windows-link",
2837
+ "windows-result",
2838
+ "windows-strings",
2839
+ ]
2840
+
2841
+ [[package]]
2842
+ name = "windows-implement"
2843
+ version = "0.60.2"
2844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2845
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2846
+ dependencies = [
2847
+ "proc-macro2",
2848
+ "quote",
2849
+ "syn",
2850
+ ]
2851
+
2852
+ [[package]]
2853
+ name = "windows-interface"
2854
+ version = "0.59.3"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2857
+ dependencies = [
2858
+ "proc-macro2",
2859
+ "quote",
2860
+ "syn",
2861
+ ]
2862
+
2863
+ [[package]]
2864
+ name = "windows-link"
2865
+ version = "0.2.1"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2868
+
2869
+ [[package]]
2870
+ name = "windows-result"
2871
+ version = "0.4.1"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2874
+ dependencies = [
2875
+ "windows-link",
2876
+ ]
2877
+
2878
+ [[package]]
2879
+ name = "windows-strings"
2880
+ version = "0.5.1"
2881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2882
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2883
+ dependencies = [
2884
+ "windows-link",
2885
+ ]
2886
+
2887
+ [[package]]
2888
+ name = "windows-sys"
2889
+ version = "0.52.0"
2890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2891
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2892
+ dependencies = [
2893
+ "windows-targets",
2894
+ ]
2895
+
2896
+ [[package]]
2897
+ name = "windows-sys"
2898
+ version = "0.59.0"
2899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2900
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2901
+ dependencies = [
2902
+ "windows-targets",
2903
+ ]
2904
+
2905
+ [[package]]
2906
+ name = "windows-sys"
2907
+ version = "0.61.2"
2908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2909
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2910
+ dependencies = [
2911
+ "windows-link",
2912
+ ]
2913
+
2914
+ [[package]]
2915
+ name = "windows-targets"
2916
+ version = "0.52.6"
2917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2918
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2919
+ dependencies = [
2920
+ "windows_aarch64_gnullvm",
2921
+ "windows_aarch64_msvc",
2922
+ "windows_i686_gnu",
2923
+ "windows_i686_gnullvm",
2924
+ "windows_i686_msvc",
2925
+ "windows_x86_64_gnu",
2926
+ "windows_x86_64_gnullvm",
2927
+ "windows_x86_64_msvc",
2928
+ ]
2929
+
2930
+ [[package]]
2931
+ name = "windows_aarch64_gnullvm"
2932
+ version = "0.52.6"
2933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2934
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2935
+
2936
+ [[package]]
2937
+ name = "windows_aarch64_msvc"
2938
+ version = "0.52.6"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2941
+
2942
+ [[package]]
2943
+ name = "windows_i686_gnu"
2944
+ version = "0.52.6"
2945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2946
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2947
+
2948
+ [[package]]
2949
+ name = "windows_i686_gnullvm"
2950
+ version = "0.52.6"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2953
+
2954
+ [[package]]
2955
+ name = "windows_i686_msvc"
2956
+ version = "0.52.6"
2957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2958
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2959
+
2960
+ [[package]]
2961
+ name = "windows_x86_64_gnu"
2962
+ version = "0.52.6"
2963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2964
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2965
+
2966
+ [[package]]
2967
+ name = "windows_x86_64_gnullvm"
2968
+ version = "0.52.6"
2969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2970
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2971
+
2972
+ [[package]]
2973
+ name = "windows_x86_64_msvc"
2974
+ version = "0.52.6"
2975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2976
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2977
+
2978
+ [[package]]
2979
+ name = "wit-bindgen"
2980
+ version = "0.51.0"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2983
+
2984
+ [[package]]
2985
+ name = "zerocopy"
2986
+ version = "0.8.48"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2989
+ dependencies = [
2990
+ "zerocopy-derive",
2991
+ ]
2992
+
2993
+ [[package]]
2994
+ name = "zerocopy-derive"
2995
+ version = "0.8.48"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2998
+ dependencies = [
2999
+ "proc-macro2",
3000
+ "quote",
3001
+ "syn",
3002
+ ]
3003
+
3004
+ [[package]]
3005
+ name = "zeroize"
3006
+ version = "1.8.2"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3009
+
3010
+ [[package]]
3011
+ name = "zmij"
3012
+ version = "1.0.21"
3013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3014
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
3015
+
3016
+ [[package]]
3017
+ name = "zstd"
3018
+ version = "0.13.3"
3019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3020
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3021
+ dependencies = [
3022
+ "zstd-safe",
3023
+ ]
3024
+
3025
+ [[package]]
3026
+ name = "zstd-safe"
3027
+ version = "7.2.1"
3028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3029
+ checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
3030
+ dependencies = [
3031
+ "zstd-sys",
3032
+ ]
3033
+
3034
+ [[package]]
3035
+ name = "zstd-sys"
3036
+ version = "2.0.13+zstd.1.5.6"
3037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3038
+ checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
3039
+ dependencies = [
3040
+ "cc",
3041
+ "pkg-config",
3042
+ ]