namidb 0.1.0__tar.gz

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