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