akquant 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of akquant might be problematic. Click here for more details.

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