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