nextstat-cli 0.9.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (480) hide show
  1. nextstat_cli-0.9.8/Cargo.lock +4119 -0
  2. nextstat_cli-0.9.8/Cargo.toml +125 -0
  3. nextstat_cli-0.9.8/PKG-INFO +46 -0
  4. nextstat_cli-0.9.8/README.md +30 -0
  5. nextstat_cli-0.9.8/crates/ns-ad/Cargo.toml +29 -0
  6. nextstat_cli-0.9.8/crates/ns-ad/benches/ad_benchmark.rs +91 -0
  7. nextstat_cli-0.9.8/crates/ns-ad/src/dual.rs +539 -0
  8. nextstat_cli-0.9.8/crates/ns-ad/src/dual32.rs +220 -0
  9. nextstat_cli-0.9.8/crates/ns-ad/src/lib.rs +16 -0
  10. nextstat_cli-0.9.8/crates/ns-ad/src/scalar.rs +269 -0
  11. nextstat_cli-0.9.8/crates/ns-ad/src/tape.rs +644 -0
  12. nextstat_cli-0.9.8/crates/ns-cli/Cargo.toml +53 -0
  13. nextstat_cli-0.9.8/crates/ns-cli/src/analysis_spec.rs +862 -0
  14. nextstat_cli-0.9.8/crates/ns-cli/src/churn.rs +1355 -0
  15. nextstat_cli-0.9.8/crates/ns-cli/src/convert.rs +119 -0
  16. nextstat_cli-0.9.8/crates/ns-cli/src/discover.rs +104 -0
  17. nextstat_cli-0.9.8/crates/ns-cli/src/main.rs +14742 -0
  18. nextstat_cli-0.9.8/crates/ns-cli/src/report.rs +240 -0
  19. nextstat_cli-0.9.8/crates/ns-cli/src/run.rs +561 -0
  20. nextstat_cli-0.9.8/crates/ns-cli/src/survival.rs +717 -0
  21. nextstat_cli-0.9.8/crates/ns-cli/src/unbinned_gpu.rs +2169 -0
  22. nextstat_cli-0.9.8/crates/ns-cli/src/unbinned_spec.rs +5 -0
  23. nextstat_cli-0.9.8/crates/ns-cli/src/validation_report.rs +868 -0
  24. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_build_hists.rs +82 -0
  25. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_bundle.rs +139 -0
  26. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_bundle_more_commands.rs +225 -0
  27. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_churn.rs +134 -0
  28. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_config_schema.rs +68 -0
  29. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_export_histfactory.rs +85 -0
  30. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_fit.rs +251 -0
  31. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_hs3_scope.rs +96 -0
  32. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_import_histfactory.rs +110 -0
  33. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_import_trex_config.rs +218 -0
  34. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_limits.rs +219 -0
  35. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_report.rs +93 -0
  36. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_report_deterministic.rs +77 -0
  37. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_report_golden.rs +205 -0
  38. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_run_analysis_spec.rs +898 -0
  39. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_run_histfactory_smoke.rs +72 -0
  40. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_survival.rs +239 -0
  41. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_timeseries.rs +454 -0
  42. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_trex_import_config.rs +144 -0
  43. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_unbinned_binned_baseline.rs +328 -0
  44. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_unbinned_dcr_baseline.rs +249 -0
  45. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_unbinned_fit.rs +5355 -0
  46. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_validate.rs +242 -0
  47. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_validation_report.rs +195 -0
  48. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_viz.rs +96 -0
  49. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_viz_corr.rs +96 -0
  50. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_viz_distributions.rs +133 -0
  51. nextstat_cli-0.9.8/crates/ns-cli/tests/cli_viz_pulls.rs +106 -0
  52. nextstat_cli-0.9.8/crates/ns-cli/tests/phase3_1_tutorial_smoke.rs +183 -0
  53. nextstat_cli-0.9.8/crates/ns-compute/Cargo.toml +72 -0
  54. nextstat_cli-0.9.8/crates/ns-compute/benches/flow_batch_nll.rs +226 -0
  55. nextstat_cli-0.9.8/crates/ns-compute/benches/flow_nll_f32_vs_f64.rs +188 -0
  56. nextstat_cli-0.9.8/crates/ns-compute/benches/poisson_nll_full.rs +344 -0
  57. nextstat_cli-0.9.8/crates/ns-compute/benches/simd_benchmark.rs +108 -0
  58. nextstat_cli-0.9.8/crates/ns-compute/build.rs +358 -0
  59. nextstat_cli-0.9.8/crates/ns-compute/examples/glm_cublas_eval.rs +121 -0
  60. nextstat_cli-0.9.8/crates/ns-compute/kernels/batch_nll_grad.cu +420 -0
  61. nextstat_cli-0.9.8/crates/ns-compute/kernels/batch_nll_grad.metal +527 -0
  62. nextstat_cli-0.9.8/crates/ns-compute/kernels/common.cuh +156 -0
  63. nextstat_cli-0.9.8/crates/ns-compute/kernels/differentiable_nll_grad.cu +302 -0
  64. nextstat_cli-0.9.8/crates/ns-compute/kernels/differentiable_nll_grad.metal +433 -0
  65. nextstat_cli-0.9.8/crates/ns-compute/kernels/fault_tree_mc.cu +225 -0
  66. nextstat_cli-0.9.8/crates/ns-compute/kernels/fault_tree_mc.metal +218 -0
  67. nextstat_cli-0.9.8/crates/ns-compute/kernels/flow_nll_reduce.cu +767 -0
  68. nextstat_cli-0.9.8/crates/ns-compute/kernels/glm_cublas_aux.cu +58 -0
  69. nextstat_cli-0.9.8/crates/ns-compute/kernels/mams_engine.cuh +1023 -0
  70. nextstat_cli-0.9.8/crates/ns-compute/kernels/mams_leapfrog.cu +1458 -0
  71. nextstat_cli-0.9.8/crates/ns-compute/kernels/mams_leapfrog.metal +1875 -0
  72. nextstat_cli-0.9.8/crates/ns-compute/kernels/unbinned_common.cuh +1101 -0
  73. nextstat_cli-0.9.8/crates/ns-compute/kernels/unbinned_lbfgs_fit.cu +1097 -0
  74. nextstat_cli-0.9.8/crates/ns-compute/kernels/unbinned_nll_grad.cu +2275 -0
  75. nextstat_cli-0.9.8/crates/ns-compute/kernels/unbinned_nll_grad.metal +3940 -0
  76. nextstat_cli-0.9.8/crates/ns-compute/kernels/unbinned_weight_sys.cu +135 -0
  77. nextstat_cli-0.9.8/crates/ns-compute/src/accelerate.rs +715 -0
  78. nextstat_cli-0.9.8/crates/ns-compute/src/checksums.rs +21 -0
  79. nextstat_cli-0.9.8/crates/ns-compute/src/cpu.rs +76 -0
  80. nextstat_cli-0.9.8/crates/ns-compute/src/cuda.rs +24 -0
  81. nextstat_cli-0.9.8/crates/ns-compute/src/cuda_batch.rs +392 -0
  82. nextstat_cli-0.9.8/crates/ns-compute/src/cuda_flow_batch.rs +613 -0
  83. nextstat_cli-0.9.8/crates/ns-compute/src/cuda_flow_nll.rs +642 -0
  84. nextstat_cli-0.9.8/crates/ns-compute/src/cuda_glm_cublas.rs +349 -0
  85. nextstat_cli-0.9.8/crates/ns-compute/src/cuda_mams.rs +1379 -0
  86. nextstat_cli-0.9.8/crates/ns-compute/src/cuda_parquet.rs +263 -0
  87. nextstat_cli-0.9.8/crates/ns-compute/src/cuda_types.rs +173 -0
  88. nextstat_cli-0.9.8/crates/ns-compute/src/cuda_unbinned.rs +335 -0
  89. nextstat_cli-0.9.8/crates/ns-compute/src/cuda_unbinned_batch.rs +1157 -0
  90. nextstat_cli-0.9.8/crates/ns-compute/src/cuda_unbinned_toy.rs +495 -0
  91. nextstat_cli-0.9.8/crates/ns-compute/src/cuda_unbinned_weight_sys.rs +195 -0
  92. nextstat_cli-0.9.8/crates/ns-compute/src/differentiable.rs +475 -0
  93. nextstat_cli-0.9.8/crates/ns-compute/src/fault_tree_cuda.rs +188 -0
  94. nextstat_cli-0.9.8/crates/ns-compute/src/fault_tree_metal.rs +227 -0
  95. nextstat_cli-0.9.8/crates/ns-compute/src/gpu_accel.rs +27 -0
  96. nextstat_cli-0.9.8/crates/ns-compute/src/lib.rs +430 -0
  97. nextstat_cli-0.9.8/crates/ns-compute/src/mams_trait.rs +113 -0
  98. nextstat_cli-0.9.8/crates/ns-compute/src/metal.rs +24 -0
  99. nextstat_cli-0.9.8/crates/ns-compute/src/metal_batch.rs +432 -0
  100. nextstat_cli-0.9.8/crates/ns-compute/src/metal_differentiable.rs +373 -0
  101. nextstat_cli-0.9.8/crates/ns-compute/src/metal_kernel_cache.rs +74 -0
  102. nextstat_cli-0.9.8/crates/ns-compute/src/metal_mams.rs +1214 -0
  103. nextstat_cli-0.9.8/crates/ns-compute/src/metal_parquet.rs +275 -0
  104. nextstat_cli-0.9.8/crates/ns-compute/src/metal_types.rs +141 -0
  105. nextstat_cli-0.9.8/crates/ns-compute/src/metal_unbinned.rs +434 -0
  106. nextstat_cli-0.9.8/crates/ns-compute/src/metal_unbinned_batch.rs +680 -0
  107. nextstat_cli-0.9.8/crates/ns-compute/src/metal_unbinned_toy.rs +996 -0
  108. nextstat_cli-0.9.8/crates/ns-compute/src/nvrtc_mams.rs +184 -0
  109. nextstat_cli-0.9.8/crates/ns-compute/src/simd.rs +1184 -0
  110. nextstat_cli-0.9.8/crates/ns-compute/src/unbinned_types.rs +186 -0
  111. nextstat_cli-0.9.8/crates/ns-compute/tests/flow_cuda_ep_iobinding.rs +89 -0
  112. nextstat_cli-0.9.8/crates/ns-compute/tests/unbinned_gpu_parity.rs +1321 -0
  113. nextstat_cli-0.9.8/crates/ns-compute/tests/unbinned_toy_sampler_smoke.rs +416 -0
  114. nextstat_cli-0.9.8/crates/ns-compute/tests/unbinned_weight_sys_cuda.rs +104 -0
  115. nextstat_cli-0.9.8/crates/ns-core/Cargo.toml +28 -0
  116. nextstat_cli-0.9.8/crates/ns-core/benches/core_benchmark.rs +54 -0
  117. nextstat_cli-0.9.8/crates/ns-core/src/error.rs +38 -0
  118. nextstat_cli-0.9.8/crates/ns-core/src/lib.rs +35 -0
  119. nextstat_cli-0.9.8/crates/ns-core/src/traits.rs +222 -0
  120. nextstat_cli-0.9.8/crates/ns-core/src/types.rs +188 -0
  121. nextstat_cli-0.9.8/crates/ns-inference/Cargo.toml +79 -0
  122. nextstat_cli-0.9.8/crates/ns-inference/benches/em_benchmark.rs +153 -0
  123. nextstat_cli-0.9.8/crates/ns-inference/benches/glm_fit_predict_benchmark.rs +372 -0
  124. nextstat_cli-0.9.8/crates/ns-inference/benches/hier_benchmark.rs +106 -0
  125. nextstat_cli-0.9.8/crates/ns-inference/benches/hypotest_benchmark.rs +52 -0
  126. nextstat_cli-0.9.8/crates/ns-inference/benches/kalman_benchmark.rs +108 -0
  127. nextstat_cli-0.9.8/crates/ns-inference/benches/mle_benchmark.rs +120 -0
  128. nextstat_cli-0.9.8/crates/ns-inference/benches/nuts_benchmark.rs +136 -0
  129. nextstat_cli-0.9.8/crates/ns-inference/benches/regression_benchmark.rs +148 -0
  130. nextstat_cli-0.9.8/crates/ns-inference/src/adapt.rs +652 -0
  131. nextstat_cli-0.9.8/crates/ns-inference/src/artifacts.rs +737 -0
  132. nextstat_cli-0.9.8/crates/ns-inference/src/batch.rs +248 -0
  133. nextstat_cli-0.9.8/crates/ns-inference/src/bioequivalence.rs +1585 -0
  134. nextstat_cli-0.9.8/crates/ns-inference/src/bootstrap_ci.rs +301 -0
  135. nextstat_cli-0.9.8/crates/ns-inference/src/builder.rs +1748 -0
  136. nextstat_cli-0.9.8/crates/ns-inference/src/chain.rs +176 -0
  137. nextstat_cli-0.9.8/crates/ns-inference/src/chain_ladder.rs +757 -0
  138. nextstat_cli-0.9.8/crates/ns-inference/src/churn.rs +2956 -0
  139. nextstat_cli-0.9.8/crates/ns-inference/src/competing_risks.rs +1101 -0
  140. nextstat_cli-0.9.8/crates/ns-inference/src/diagnostics.rs +845 -0
  141. nextstat_cli-0.9.8/crates/ns-inference/src/differentiable.rs +336 -0
  142. nextstat_cli-0.9.8/crates/ns-inference/src/dosing.rs +1030 -0
  143. nextstat_cli-0.9.8/crates/ns-inference/src/econometrics/aipw.rs +372 -0
  144. nextstat_cli-0.9.8/crates/ns-inference/src/econometrics/did.rs +486 -0
  145. nextstat_cli-0.9.8/crates/ns-inference/src/econometrics/hdfe.rs +457 -0
  146. nextstat_cli-0.9.8/crates/ns-inference/src/econometrics/iv.rs +391 -0
  147. nextstat_cli-0.9.8/crates/ns-inference/src/econometrics/mod.rs +23 -0
  148. nextstat_cli-0.9.8/crates/ns-inference/src/econometrics/panel.rs +406 -0
  149. nextstat_cli-0.9.8/crates/ns-inference/src/eight_schools.rs +338 -0
  150. nextstat_cli-0.9.8/crates/ns-inference/src/evt.rs +742 -0
  151. nextstat_cli-0.9.8/crates/ns-inference/src/fault_tree_mc.rs +2300 -0
  152. nextstat_cli-0.9.8/crates/ns-inference/src/foce.rs +6573 -0
  153. nextstat_cli-0.9.8/crates/ns-inference/src/gpu_batch.rs +259 -0
  154. nextstat_cli-0.9.8/crates/ns-inference/src/gpu_flow_session.rs +350 -0
  155. nextstat_cli-0.9.8/crates/ns-inference/src/gpu_session.rs +282 -0
  156. nextstat_cli-0.9.8/crates/ns-inference/src/hmc.rs +492 -0
  157. nextstat_cli-0.9.8/crates/ns-inference/src/hybrid.rs +629 -0
  158. nextstat_cli-0.9.8/crates/ns-inference/src/hypotest.rs +727 -0
  159. nextstat_cli-0.9.8/crates/ns-inference/src/laplace.rs +139 -0
  160. nextstat_cli-0.9.8/crates/ns-inference/src/laps.rs +2129 -0
  161. nextstat_cli-0.9.8/crates/ns-inference/src/lbfgs.rs +785 -0
  162. nextstat_cli-0.9.8/crates/ns-inference/src/lib.rs +334 -0
  163. nextstat_cli-0.9.8/crates/ns-inference/src/lmm.rs +1131 -0
  164. nextstat_cli-0.9.8/crates/ns-inference/src/mams.rs +1430 -0
  165. nextstat_cli-0.9.8/crates/ns-inference/src/meta_analysis.rs +530 -0
  166. nextstat_cli-0.9.8/crates/ns-inference/src/metal_batch.rs +419 -0
  167. nextstat_cli-0.9.8/crates/ns-inference/src/metal_differentiable.rs +226 -0
  168. nextstat_cli-0.9.8/crates/ns-inference/src/mle.rs +2659 -0
  169. nextstat_cli-0.9.8/crates/ns-inference/src/nonmem.rs +433 -0
  170. nextstat_cli-0.9.8/crates/ns-inference/src/npde.rs +244 -0
  171. nextstat_cli-0.9.8/crates/ns-inference/src/nuts.rs +2391 -0
  172. nextstat_cli-0.9.8/crates/ns-inference/src/ode.rs +159 -0
  173. nextstat_cli-0.9.8/crates/ns-inference/src/ode_adaptive.rs +1342 -0
  174. nextstat_cli-0.9.8/crates/ns-inference/src/ode_dde.rs +276 -0
  175. nextstat_cli-0.9.8/crates/ns-inference/src/ode_pk.rs +1227 -0
  176. nextstat_cli-0.9.8/crates/ns-inference/src/optimizer.rs +1071 -0
  177. nextstat_cli-0.9.8/crates/ns-inference/src/ordinal.rs +573 -0
  178. nextstat_cli-0.9.8/crates/ns-inference/src/pd.rs +691 -0
  179. nextstat_cli-0.9.8/crates/ns-inference/src/perf_hints.rs +19 -0
  180. nextstat_cli-0.9.8/crates/ns-inference/src/pk.rs +4521 -0
  181. nextstat_cli-0.9.8/crates/ns-inference/src/posterior.rs +1207 -0
  182. nextstat_cli-0.9.8/crates/ns-inference/src/profile_likelihood.rs +1344 -0
  183. nextstat_cli-0.9.8/crates/ns-inference/src/regression.rs +1583 -0
  184. nextstat_cli-0.9.8/crates/ns-inference/src/saem.rs +3392 -0
  185. nextstat_cli-0.9.8/crates/ns-inference/src/scm.rs +1419 -0
  186. nextstat_cli-0.9.8/crates/ns-inference/src/sequential.rs +664 -0
  187. nextstat_cli-0.9.8/crates/ns-inference/src/survival.rs +2894 -0
  188. nextstat_cli-0.9.8/crates/ns-inference/src/timeseries/em.rs +567 -0
  189. nextstat_cli-0.9.8/crates/ns-inference/src/timeseries/forecast.rs +235 -0
  190. nextstat_cli-0.9.8/crates/ns-inference/src/timeseries/internal.rs +11 -0
  191. nextstat_cli-0.9.8/crates/ns-inference/src/timeseries/kalman.rs +986 -0
  192. nextstat_cli-0.9.8/crates/ns-inference/src/timeseries/mod.rs +21 -0
  193. nextstat_cli-0.9.8/crates/ns-inference/src/timeseries/params.rs +93 -0
  194. nextstat_cli-0.9.8/crates/ns-inference/src/timeseries/simulate.rs +231 -0
  195. nextstat_cli-0.9.8/crates/ns-inference/src/timeseries/volatility.rs +1167 -0
  196. nextstat_cli-0.9.8/crates/ns-inference/src/toybased.rs +1562 -0
  197. nextstat_cli-0.9.8/crates/ns-inference/src/toys.rs +84 -0
  198. nextstat_cli-0.9.8/crates/ns-inference/src/transforms.rs +9 -0
  199. nextstat_cli-0.9.8/crates/ns-inference/src/trial_simulation.rs +1030 -0
  200. nextstat_cli-0.9.8/crates/ns-inference/src/tweedie.rs +662 -0
  201. nextstat_cli-0.9.8/crates/ns-inference/src/unbinned_batch_cpu.rs +260 -0
  202. nextstat_cli-0.9.8/crates/ns-inference/src/unbinned_gpu_batch.rs +1936 -0
  203. nextstat_cli-0.9.8/crates/ns-inference/src/universal_tests.rs +154 -0
  204. nextstat_cli-0.9.8/crates/ns-inference/src/vpc.rs +859 -0
  205. nextstat_cli-0.9.8/crates/ns-inference/src/xpt.rs +1381 -0
  206. nextstat_cli-0.9.8/crates/ns-inference/tests/gpu_flow_session_test.rs +682 -0
  207. nextstat_cli-0.9.8/crates/ns-inference/tests/laps_benchmark.rs +68 -0
  208. nextstat_cli-0.9.8/crates/ns-inference/tests/laps_glm_n5000_gate.rs +91 -0
  209. nextstat_cli-0.9.8/crates/ns-inference/tests/laps_jit_test.rs +611 -0
  210. nextstat_cli-0.9.8/crates/ns-inference/tests/laps_nan_potential_test.rs +45 -0
  211. nextstat_cli-0.9.8/crates/ns-inference/tests/mams_cpu_benchmark.rs +197 -0
  212. nextstat_cli-0.9.8/crates/ns-inference/tests/mams_warmup_benchmark.rs +256 -0
  213. nextstat_cli-0.9.8/crates/ns-inference/tests/nonmem_parity.rs +1177 -0
  214. nextstat_cli-0.9.8/crates/ns-inference/tests/parameter_recovery.rs +619 -0
  215. nextstat_cli-0.9.8/crates/ns-inference/tests/pharma_benchmark.rs +383 -0
  216. nextstat_cli-0.9.8/crates/ns-inference/tests/phase3_benchmark.rs +346 -0
  217. nextstat_cli-0.9.8/crates/ns-prob/Cargo.toml +25 -0
  218. nextstat_cli-0.9.8/crates/ns-prob/benches/distributions_benchmark.rs +62 -0
  219. nextstat_cli-0.9.8/crates/ns-prob/src/bernoulli.rs +78 -0
  220. nextstat_cli-0.9.8/crates/ns-prob/src/beta.rs +86 -0
  221. nextstat_cli-0.9.8/crates/ns-prob/src/binomial.rs +83 -0
  222. nextstat_cli-0.9.8/crates/ns-prob/src/distributions.rs +112 -0
  223. nextstat_cli-0.9.8/crates/ns-prob/src/exponential.rs +44 -0
  224. nextstat_cli-0.9.8/crates/ns-prob/src/gamma.rs +79 -0
  225. nextstat_cli-0.9.8/crates/ns-prob/src/lib.rs +22 -0
  226. nextstat_cli-0.9.8/crates/ns-prob/src/math.rs +141 -0
  227. nextstat_cli-0.9.8/crates/ns-prob/src/neg_binomial.rs +79 -0
  228. nextstat_cli-0.9.8/crates/ns-prob/src/normal.rs +48 -0
  229. nextstat_cli-0.9.8/crates/ns-prob/src/poisson.rs +57 -0
  230. nextstat_cli-0.9.8/crates/ns-prob/src/student_t.rs +55 -0
  231. nextstat_cli-0.9.8/crates/ns-prob/src/transforms.rs +712 -0
  232. nextstat_cli-0.9.8/crates/ns-prob/src/weibull.rs +63 -0
  233. nextstat_cli-0.9.8/crates/ns-root/Cargo.toml +36 -0
  234. nextstat_cli-0.9.8/crates/ns-root/benches/branch_reader_bench.rs +423 -0
  235. nextstat_cli-0.9.8/crates/ns-root/examples/bench_expr.rs +122 -0
  236. nextstat_cli-0.9.8/crates/ns-root/examples/bench_zstd.rs +166 -0
  237. nextstat_cli-0.9.8/crates/ns-root/src/basket.rs +83 -0
  238. nextstat_cli-0.9.8/crates/ns-root/src/bin/accuracy_gate.rs +365 -0
  239. nextstat_cli-0.9.8/crates/ns-root/src/bin/dump_basket_tail.rs +49 -0
  240. nextstat_cli-0.9.8/crates/ns-root/src/bin/root_accuracy_gate.rs +1345 -0
  241. nextstat_cli-0.9.8/crates/ns-root/src/branch_reader.rs +1553 -0
  242. nextstat_cli-0.9.8/crates/ns-root/src/cache.rs +404 -0
  243. nextstat_cli-0.9.8/crates/ns-root/src/chained_slice.rs +269 -0
  244. nextstat_cli-0.9.8/crates/ns-root/src/datasource.rs +33 -0
  245. nextstat_cli-0.9.8/crates/ns-root/src/decompress.rs +359 -0
  246. nextstat_cli-0.9.8/crates/ns-root/src/directory.rs +89 -0
  247. nextstat_cli-0.9.8/crates/ns-root/src/error.rs +69 -0
  248. nextstat_cli-0.9.8/crates/ns-root/src/expr.rs +3733 -0
  249. nextstat_cli-0.9.8/crates/ns-root/src/file.rs +2244 -0
  250. nextstat_cli-0.9.8/crates/ns-root/src/filler.rs +635 -0
  251. nextstat_cli-0.9.8/crates/ns-root/src/histogram.rs +39 -0
  252. nextstat_cli-0.9.8/crates/ns-root/src/key.rs +95 -0
  253. nextstat_cli-0.9.8/crates/ns-root/src/lazy_branch_reader.rs +447 -0
  254. nextstat_cli-0.9.8/crates/ns-root/src/lib.rs +75 -0
  255. nextstat_cli-0.9.8/crates/ns-root/src/objects/mod.rs +31 -0
  256. nextstat_cli-0.9.8/crates/ns-root/src/objects/th1.rs +307 -0
  257. nextstat_cli-0.9.8/crates/ns-root/src/objects/ttree.rs +635 -0
  258. nextstat_cli-0.9.8/crates/ns-root/src/rbuffer.rs +277 -0
  259. nextstat_cli-0.9.8/crates/ns-root/src/rntuple.rs +1679 -0
  260. nextstat_cli-0.9.8/crates/ns-root/src/tree.rs +84 -0
  261. nextstat_cli-0.9.8/crates/ns-root/tests/branch_reader_cache_bench.rs +307 -0
  262. nextstat_cli-0.9.8/crates/ns-root/tests/lazy_branch_reader.rs +165 -0
  263. nextstat_cli-0.9.8/crates/ns-root/tests/read_fixed_array_tree.rs +68 -0
  264. nextstat_cli-0.9.8/crates/ns-root/tests/read_histograms.rs +162 -0
  265. nextstat_cli-0.9.8/crates/ns-root/tests/read_tree.rs +247 -0
  266. nextstat_cli-0.9.8/crates/ns-root/tests/read_unsplit_vector_tree.rs +53 -0
  267. nextstat_cli-0.9.8/crates/ns-root/tests/read_unsplit_vector_tree_small.rs +53 -0
  268. nextstat_cli-0.9.8/crates/ns-root/tests/read_vector_tree.rs +45 -0
  269. nextstat_cli-0.9.8/crates/ns-root/tests/rntuple_discovery.rs +864 -0
  270. nextstat_cli-0.9.8/crates/ns-root/tests/rntuple_perf_gate.rs +146 -0
  271. nextstat_cli-0.9.8/crates/ns-root/tests/trex_expr_corpus.rs +59 -0
  272. nextstat_cli-0.9.8/crates/ns-root/tests/zstd_block_bench.rs +144 -0
  273. nextstat_cli-0.9.8/crates/ns-translate/Cargo.toml +64 -0
  274. nextstat_cli-0.9.8/crates/ns-translate/benches/model_benchmark.rs +134 -0
  275. nextstat_cli-0.9.8/crates/ns-translate/benches/nll_benchmark.rs +37 -0
  276. nextstat_cli-0.9.8/crates/ns-translate/benches/parquet_read.rs +212 -0
  277. nextstat_cli-0.9.8/crates/ns-translate/src/arrow/export.rs +388 -0
  278. nextstat_cli-0.9.8/crates/ns-translate/src/arrow/ingest.rs +636 -0
  279. nextstat_cli-0.9.8/crates/ns-translate/src/arrow/mod.rs +63 -0
  280. nextstat_cli-0.9.8/crates/ns-translate/src/arrow/parquet.rs +676 -0
  281. nextstat_cli-0.9.8/crates/ns-translate/src/arrow/results.rs +173 -0
  282. nextstat_cli-0.9.8/crates/ns-translate/src/arrow/tests.rs +965 -0
  283. nextstat_cli-0.9.8/crates/ns-translate/src/arrow/unbinned.rs +168 -0
  284. nextstat_cli-0.9.8/crates/ns-translate/src/cabinetry/convert.rs +231 -0
  285. nextstat_cli-0.9.8/crates/ns-translate/src/cabinetry/mod.rs +26 -0
  286. nextstat_cli-0.9.8/crates/ns-translate/src/cabinetry/schema.rs +176 -0
  287. nextstat_cli-0.9.8/crates/ns-translate/src/cabinetry/tests.rs +164 -0
  288. nextstat_cli-0.9.8/crates/ns-translate/src/histfactory/builder.rs +737 -0
  289. nextstat_cli-0.9.8/crates/ns-translate/src/histfactory/channel.rs +250 -0
  290. nextstat_cli-0.9.8/crates/ns-translate/src/histfactory/combination.rs +148 -0
  291. nextstat_cli-0.9.8/crates/ns-translate/src/histfactory/mod.rs +17 -0
  292. nextstat_cli-0.9.8/crates/ns-translate/src/histfactory/tests.rs +364 -0
  293. nextstat_cli-0.9.8/crates/ns-translate/src/hs3/convert.rs +398 -0
  294. nextstat_cli-0.9.8/crates/ns-translate/src/hs3/detect.rs +78 -0
  295. nextstat_cli-0.9.8/crates/ns-translate/src/hs3/export.rs +1416 -0
  296. nextstat_cli-0.9.8/crates/ns-translate/src/hs3/mod.rs +24 -0
  297. nextstat_cli-0.9.8/crates/ns-translate/src/hs3/resolve.rs +416 -0
  298. nextstat_cli-0.9.8/crates/ns-translate/src/hs3/schema.rs +740 -0
  299. nextstat_cli-0.9.8/crates/ns-translate/src/hs3/tests.rs +1331 -0
  300. nextstat_cli-0.9.8/crates/ns-translate/src/lib.rs +31 -0
  301. nextstat_cli-0.9.8/crates/ns-translate/src/ntuple/config.rs +204 -0
  302. nextstat_cli-0.9.8/crates/ns-translate/src/ntuple/mod.rs +10 -0
  303. nextstat_cli-0.9.8/crates/ns-translate/src/ntuple/processor.rs +455 -0
  304. nextstat_cli-0.9.8/crates/ns-translate/src/pyhf/audit.rs +228 -0
  305. nextstat_cli-0.9.8/crates/ns-translate/src/pyhf/mod.rs +15 -0
  306. nextstat_cli-0.9.8/crates/ns-translate/src/pyhf/model.rs +5252 -0
  307. nextstat_cli-0.9.8/crates/ns-translate/src/pyhf/patchset.rs +154 -0
  308. nextstat_cli-0.9.8/crates/ns-translate/src/pyhf/schema.rs +558 -0
  309. nextstat_cli-0.9.8/crates/ns-translate/src/pyhf/simplemodels.rs +153 -0
  310. nextstat_cli-0.9.8/crates/ns-translate/src/pyhf/tests.rs +1224 -0
  311. nextstat_cli-0.9.8/crates/ns-translate/src/pyhf/xml_export.rs +216 -0
  312. nextstat_cli-0.9.8/crates/ns-translate/src/trex/mod.rs +4544 -0
  313. nextstat_cli-0.9.8/crates/ns-translate/tests/arrow_modifiers_roundtrip.rs +95 -0
  314. nextstat_cli-0.9.8/crates/ns-translate/tests/ntuple_systematics.rs +129 -0
  315. nextstat_cli-0.9.8/crates/ns-translate/tests/parquet_external_zstd.rs +195 -0
  316. nextstat_cli-0.9.8/crates/ns-translate/tests/wasm_smoke.rs +38 -0
  317. nextstat_cli-0.9.8/crates/ns-unbinned/Cargo.toml +55 -0
  318. nextstat_cli-0.9.8/crates/ns-unbinned/benches/unbinned_nll.rs +348 -0
  319. nextstat_cli-0.9.8/crates/ns-unbinned/src/event_parquet.rs +879 -0
  320. nextstat_cli-0.9.8/crates/ns-unbinned/src/event_store.rs +632 -0
  321. nextstat_cli-0.9.8/crates/ns-unbinned/src/fused_kernel.rs +1492 -0
  322. nextstat_cli-0.9.8/crates/ns-unbinned/src/interp.rs +81 -0
  323. nextstat_cli-0.9.8/crates/ns-unbinned/src/lib.rs +44 -0
  324. nextstat_cli-0.9.8/crates/ns-unbinned/src/math.rs +46 -0
  325. nextstat_cli-0.9.8/crates/ns-unbinned/src/model.rs +1041 -0
  326. nextstat_cli-0.9.8/crates/ns-unbinned/src/normalize.rs +670 -0
  327. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/argus.rs +302 -0
  328. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/chebyshev.rs +346 -0
  329. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/crystal_ball.rs +881 -0
  330. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/dcr.rs +226 -0
  331. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/exponential.rs +237 -0
  332. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/flow.rs +1426 -0
  333. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/flow_manifest.rs +132 -0
  334. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/gaussian.rs +251 -0
  335. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/histogram.rs +291 -0
  336. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/horizontal_morphing_kde.rs +602 -0
  337. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/kde.rs +309 -0
  338. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/kde_nd.rs +406 -0
  339. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/mod.rs +109 -0
  340. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/morphing_histogram.rs +429 -0
  341. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/morphing_kde.rs +485 -0
  342. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/product.rs +240 -0
  343. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/spline.rs +423 -0
  344. nextstat_cli-0.9.8/crates/ns-unbinned/src/pdf/voigtian.rs +334 -0
  345. nextstat_cli-0.9.8/crates/ns-unbinned/src/spec.rs +2205 -0
  346. nextstat_cli-0.9.8/crates/ns-unbinned/src/tests.rs +1351 -0
  347. nextstat_cli-0.9.8/crates/ns-unbinned/tests/dcr_integration.rs +289 -0
  348. nextstat_cli-0.9.8/crates/ns-unbinned/tests/flow_grad_integration.rs +169 -0
  349. nextstat_cli-0.9.8/crates/ns-unbinned/tests/flow_integration.rs +351 -0
  350. nextstat_cli-0.9.8/crates/ns-unbinned/tests/wasm_smoke.rs +51 -0
  351. nextstat_cli-0.9.8/crates/ns-viz/Cargo.toml +24 -0
  352. nextstat_cli-0.9.8/crates/ns-viz/src/cls.rs +91 -0
  353. nextstat_cli-0.9.8/crates/ns-viz/src/contour.rs +345 -0
  354. nextstat_cli-0.9.8/crates/ns-viz/src/corr.rs +105 -0
  355. nextstat_cli-0.9.8/crates/ns-viz/src/distributions.rs +597 -0
  356. nextstat_cli-0.9.8/crates/ns-viz/src/gammas.rs +155 -0
  357. nextstat_cli-0.9.8/crates/ns-viz/src/injection.rs +183 -0
  358. nextstat_cli-0.9.8/crates/ns-viz/src/lib.rs +82 -0
  359. nextstat_cli-0.9.8/crates/ns-viz/src/morphing.rs +177 -0
  360. nextstat_cli-0.9.8/crates/ns-viz/src/pie.rs +69 -0
  361. nextstat_cli-0.9.8/crates/ns-viz/src/profile.rs +70 -0
  362. nextstat_cli-0.9.8/crates/ns-viz/src/pulls.rs +142 -0
  363. nextstat_cli-0.9.8/crates/ns-viz/src/ranking.rs +41 -0
  364. nextstat_cli-0.9.8/crates/ns-viz/src/separation.rs +152 -0
  365. nextstat_cli-0.9.8/crates/ns-viz/src/significance.rs +165 -0
  366. nextstat_cli-0.9.8/crates/ns-viz/src/summary.rs +57 -0
  367. nextstat_cli-0.9.8/crates/ns-viz/src/uncertainty.rs +162 -0
  368. nextstat_cli-0.9.8/crates/ns-viz/src/unfolding.rs +329 -0
  369. nextstat_cli-0.9.8/crates/ns-viz/src/yields.rs +130 -0
  370. nextstat_cli-0.9.8/crates/ns-viz/tests/trex_report_artifacts.rs +271 -0
  371. nextstat_cli-0.9.8/crates/ns-viz-render/Cargo.toml +44 -0
  372. nextstat_cli-0.9.8/crates/ns-viz-render/fonts/Inter-Bold.ttf +0 -0
  373. nextstat_cli-0.9.8/crates/ns-viz-render/fonts/Inter-Italic.ttf +0 -0
  374. nextstat_cli-0.9.8/crates/ns-viz-render/fonts/Inter-Regular.ttf +0 -0
  375. nextstat_cli-0.9.8/crates/ns-viz-render/fonts/LICENSE-Inter.txt +92 -0
  376. nextstat_cli-0.9.8/crates/ns-viz-render/src/canvas.rs +464 -0
  377. nextstat_cli-0.9.8/crates/ns-viz-render/src/color.rs +165 -0
  378. nextstat_cli-0.9.8/crates/ns-viz-render/src/config.rs +231 -0
  379. nextstat_cli-0.9.8/crates/ns-viz-render/src/font.rs +76 -0
  380. nextstat_cli-0.9.8/crates/ns-viz-render/src/header.rs +64 -0
  381. nextstat_cli-0.9.8/crates/ns-viz-render/src/layout/axes.rs +220 -0
  382. nextstat_cli-0.9.8/crates/ns-viz-render/src/layout/legend.rs +106 -0
  383. nextstat_cli-0.9.8/crates/ns-viz-render/src/layout/margins.rs +77 -0
  384. nextstat_cli-0.9.8/crates/ns-viz-render/src/layout/mod.rs +4 -0
  385. nextstat_cli-0.9.8/crates/ns-viz-render/src/layout/multi_panel.rs +48 -0
  386. nextstat_cli-0.9.8/crates/ns-viz-render/src/lib.rs +154 -0
  387. nextstat_cli-0.9.8/crates/ns-viz-render/src/output/mod.rs +7 -0
  388. nextstat_cli-0.9.8/crates/ns-viz-render/src/output/pdf.rs +15 -0
  389. nextstat_cli-0.9.8/crates/ns-viz-render/src/output/png.rs +27 -0
  390. nextstat_cli-0.9.8/crates/ns-viz-render/src/output/svg.rs +7 -0
  391. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/axes_draw.rs +182 -0
  392. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/cls_curve.rs +159 -0
  393. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/contour.rs +87 -0
  394. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/corr.rs +119 -0
  395. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/distributions.rs +301 -0
  396. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/gammas.rs +121 -0
  397. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/injection.rs +121 -0
  398. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/mod.rs +19 -0
  399. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/morphing.rs +108 -0
  400. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/pie.rs +116 -0
  401. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/profile.rs +103 -0
  402. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/pulls.rs +147 -0
  403. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/ranking.rs +199 -0
  404. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/separation.rs +123 -0
  405. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/significance.rs +121 -0
  406. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/summary.rs +103 -0
  407. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/uncertainty.rs +117 -0
  408. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/unfolding.rs +188 -0
  409. nextstat_cli-0.9.8/crates/ns-viz-render/src/plots/yields.rs +157 -0
  410. nextstat_cli-0.9.8/crates/ns-viz-render/src/primitives.rs +148 -0
  411. nextstat_cli-0.9.8/crates/ns-viz-render/src/text.rs +63 -0
  412. nextstat_cli-0.9.8/crates/ns-viz-render/src/theme.rs +143 -0
  413. nextstat_cli-0.9.8/crates/ns-zstd/.cargo-ok +1 -0
  414. nextstat_cli-0.9.8/crates/ns-zstd/Cargo.lock +755 -0
  415. nextstat_cli-0.9.8/crates/ns-zstd/Cargo.toml +24 -0
  416. nextstat_cli-0.9.8/crates/ns-zstd/FORK.md +82 -0
  417. nextstat_cli-0.9.8/crates/ns-zstd/examples/profile_decode.rs +104 -0
  418. nextstat_cli-0.9.8/crates/ns-zstd/examples/profile_encode.rs +101 -0
  419. nextstat_cli-0.9.8/crates/ns-zstd/src/bit_io/bit_reader.rs +115 -0
  420. nextstat_cli-0.9.8/crates/ns-zstd/src/bit_io/bit_reader_reverse.rs +205 -0
  421. nextstat_cli-0.9.8/crates/ns-zstd/src/bit_io/bit_writer.rs +352 -0
  422. nextstat_cli-0.9.8/crates/ns-zstd/src/bit_io/mod.rs +9 -0
  423. nextstat_cli-0.9.8/crates/ns-zstd/src/blocks/block.rs +43 -0
  424. nextstat_cli-0.9.8/crates/ns-zstd/src/blocks/literals_section.rs +236 -0
  425. nextstat_cli-0.9.8/crates/ns-zstd/src/blocks/mod.rs +10 -0
  426. nextstat_cli-0.9.8/crates/ns-zstd/src/blocks/sequence_section.rs +162 -0
  427. nextstat_cli-0.9.8/crates/ns-zstd/src/common/mod.rs +21 -0
  428. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/block_decoder.rs +662 -0
  429. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/decode_buffer.rs +425 -0
  430. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/dictionary.rs +104 -0
  431. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/errors.rs +1075 -0
  432. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/flat_decode_buffer.rs +499 -0
  433. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/frame.rs +234 -0
  434. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/frame_decoder.rs +707 -0
  435. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/fused.rs +211 -0
  436. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/literals_section_decoder.rs +326 -0
  437. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/mod.rs +24 -0
  438. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/ringbuffer.rs +862 -0
  439. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/scratch.rs +159 -0
  440. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/sequence_execution.rs +114 -0
  441. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/sequence_section_decoder.rs +648 -0
  442. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/slice_output_buffer.rs +363 -0
  443. nextstat_cli-0.9.8/crates/ns-zstd/src/decoding/streaming_decoder.rs +143 -0
  444. nextstat_cli-0.9.8/crates/ns-zstd/src/encoding/block_header.rs +61 -0
  445. nextstat_cli-0.9.8/crates/ns-zstd/src/encoding/blocks/compressed.rs +820 -0
  446. nextstat_cli-0.9.8/crates/ns-zstd/src/encoding/blocks/mod.rs +8 -0
  447. nextstat_cli-0.9.8/crates/ns-zstd/src/encoding/frame_compressor.rs +629 -0
  448. nextstat_cli-0.9.8/crates/ns-zstd/src/encoding/frame_header.rs +367 -0
  449. nextstat_cli-0.9.8/crates/ns-zstd/src/encoding/levels/default.rs +66 -0
  450. nextstat_cli-0.9.8/crates/ns-zstd/src/encoding/levels/fastest.rs +71 -0
  451. nextstat_cli-0.9.8/crates/ns-zstd/src/encoding/levels/mod.rs +4 -0
  452. nextstat_cli-0.9.8/crates/ns-zstd/src/encoding/match_generator/match_generator_hc.rs +752 -0
  453. nextstat_cli-0.9.8/crates/ns-zstd/src/encoding/match_generator.rs +710 -0
  454. nextstat_cli-0.9.8/crates/ns-zstd/src/encoding/mod.rs +133 -0
  455. nextstat_cli-0.9.8/crates/ns-zstd/src/encoding/streaming_encoder.rs +280 -0
  456. nextstat_cli-0.9.8/crates/ns-zstd/src/encoding/util.rs +60 -0
  457. nextstat_cli-0.9.8/crates/ns-zstd/src/fse/fse_decoder.rs +361 -0
  458. nextstat_cli-0.9.8/crates/ns-zstd/src/fse/fse_encoder.rs +485 -0
  459. nextstat_cli-0.9.8/crates/ns-zstd/src/fse/mod.rs +135 -0
  460. nextstat_cli-0.9.8/crates/ns-zstd/src/huff0/huff0_decoder.rs +402 -0
  461. nextstat_cli-0.9.8/crates/ns-zstd/src/huff0/huff0_encoder.rs +467 -0
  462. nextstat_cli-0.9.8/crates/ns-zstd/src/huff0/mod.rs +84 -0
  463. nextstat_cli-0.9.8/crates/ns-zstd/src/io_nostd.rs +257 -0
  464. nextstat_cli-0.9.8/crates/ns-zstd/src/io_std.rs +3 -0
  465. nextstat_cli-0.9.8/crates/ns-zstd/src/lib.rs +46 -0
  466. nextstat_cli-0.9.8/crates/ns-zstd/test_fixtures/abc.txt.zst +0 -0
  467. nextstat_cli-0.9.8/crates/ns-zstd/tests/decode_fixture.rs +33 -0
  468. nextstat_cli-0.9.8/crates/ns-zstd/tests/decode_profile_libzstd.rs +112 -0
  469. nextstat_cli-0.9.8/crates/ns-zstd/tests/default_beats_fastest.rs +37 -0
  470. nextstat_cli-0.9.8/crates/ns-zstd/tests/default_beats_fastest_on_collision_pattern.rs +37 -0
  471. nextstat_cli-0.9.8/crates/ns-zstd/tests/default_not_worse_than_fastest.rs +36 -0
  472. nextstat_cli-0.9.8/crates/ns-zstd/tests/encode_interop.rs +63 -0
  473. nextstat_cli-0.9.8/crates/ns-zstd/tests/encode_speed_guardrail.rs +83 -0
  474. nextstat_cli-0.9.8/crates/ns-zstd/tests/no_inflation.rs +56 -0
  475. nextstat_cli-0.9.8/crates/ns-zstd/tests/ratio_bench.rs +138 -0
  476. nextstat_cli-0.9.8/crates/ns-zstd/tests/ratio_guardrail.rs +49 -0
  477. nextstat_cli-0.9.8/crates/ns-zstd/tests/streaming_encoder.rs +30 -0
  478. nextstat_cli-0.9.8/crates/ns-zstd/tests/throughput_bench.rs +153 -0
  479. nextstat_cli-0.9.8/crates/ns-zstd/tests/window_descriptor_guardrail.rs +34 -0
  480. nextstat_cli-0.9.8/pyproject.toml +26 -0
@@ -0,0 +1,4119 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ab_glyph"
7
+ version = "0.2.32"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "01c0457472c38ea5bd1c3b5ada5e368271cb550be7a4ca4a0b4634e9913f6cc2"
10
+ dependencies = [
11
+ "ab_glyph_rasterizer",
12
+ "owned_ttf_parser",
13
+ ]
14
+
15
+ [[package]]
16
+ name = "ab_glyph_rasterizer"
17
+ version = "0.1.10"
18
+ source = "registry+https://github.com/rust-lang/crates.io-index"
19
+ checksum = "366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618"
20
+
21
+ [[package]]
22
+ name = "adler2"
23
+ version = "2.0.1"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
26
+
27
+ [[package]]
28
+ name = "ahash"
29
+ version = "0.8.12"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
32
+ dependencies = [
33
+ "cfg-if",
34
+ "const-random",
35
+ "getrandom 0.3.4",
36
+ "once_cell",
37
+ "version_check",
38
+ "zerocopy",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "aho-corasick"
43
+ version = "1.1.4"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
46
+ dependencies = [
47
+ "memchr",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "alloca"
52
+ version = "0.4.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
55
+ dependencies = [
56
+ "cc",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "android_system_properties"
61
+ version = "0.1.5"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
64
+ dependencies = [
65
+ "libc",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anes"
70
+ version = "0.1.6"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
73
+
74
+ [[package]]
75
+ name = "anstream"
76
+ version = "0.6.21"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
79
+ dependencies = [
80
+ "anstyle",
81
+ "anstyle-parse",
82
+ "anstyle-query",
83
+ "anstyle-wincon",
84
+ "colorchoice",
85
+ "is_terminal_polyfill",
86
+ "utf8parse",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "anstyle"
91
+ version = "1.0.13"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
94
+
95
+ [[package]]
96
+ name = "anstyle-parse"
97
+ version = "0.2.7"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
100
+ dependencies = [
101
+ "utf8parse",
102
+ ]
103
+
104
+ [[package]]
105
+ name = "anstyle-query"
106
+ version = "1.1.5"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
109
+ dependencies = [
110
+ "windows-sys 0.61.2",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "anstyle-wincon"
115
+ version = "3.0.11"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
118
+ dependencies = [
119
+ "anstyle",
120
+ "once_cell_polyfill",
121
+ "windows-sys 0.61.2",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "anyhow"
126
+ version = "1.0.101"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
129
+
130
+ [[package]]
131
+ name = "approx"
132
+ version = "0.5.1"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
135
+ dependencies = [
136
+ "num-traits",
137
+ ]
138
+
139
+ [[package]]
140
+ name = "argmin"
141
+ version = "0.11.0"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "e7ab7ca97779074715a402e5e8045fae27e7191acaec9b4c5653276316e9e404"
144
+ dependencies = [
145
+ "anyhow",
146
+ "argmin-math",
147
+ "num-traits",
148
+ "paste",
149
+ "rand_xoshiro",
150
+ "thiserror 2.0.18",
151
+ "web-time",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "argmin-math"
156
+ version = "0.5.1"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "ba6958a87117ff5e1d0d7716856a4303752518012ec4a67a68446b6631a1a54d"
159
+ dependencies = [
160
+ "anyhow",
161
+ "cfg-if",
162
+ "num-complex",
163
+ "num-integer",
164
+ "num-traits",
165
+ "rand",
166
+ "thiserror 2.0.18",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "arrayref"
171
+ version = "0.3.9"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
174
+
175
+ [[package]]
176
+ name = "arrayvec"
177
+ version = "0.7.6"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
180
+
181
+ [[package]]
182
+ name = "arrow"
183
+ version = "57.3.0"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "e4754a624e5ae42081f464514be454b39711daae0458906dacde5f4c632f33a8"
186
+ dependencies = [
187
+ "arrow-arith",
188
+ "arrow-array",
189
+ "arrow-buffer",
190
+ "arrow-cast",
191
+ "arrow-data",
192
+ "arrow-ipc",
193
+ "arrow-ord",
194
+ "arrow-row",
195
+ "arrow-schema",
196
+ "arrow-select",
197
+ "arrow-string",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "arrow-arith"
202
+ version = "57.3.0"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "f7b3141e0ec5145a22d8694ea8b6d6f69305971c4fa1c1a13ef0195aef2d678b"
205
+ dependencies = [
206
+ "arrow-array",
207
+ "arrow-buffer",
208
+ "arrow-data",
209
+ "arrow-schema",
210
+ "chrono",
211
+ "num-traits",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "arrow-array"
216
+ version = "57.3.0"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "4c8955af33b25f3b175ee10af580577280b4bd01f7e823d94c7cdef7cf8c9aef"
219
+ dependencies = [
220
+ "ahash",
221
+ "arrow-buffer",
222
+ "arrow-data",
223
+ "arrow-schema",
224
+ "chrono",
225
+ "half",
226
+ "hashbrown",
227
+ "num-complex",
228
+ "num-integer",
229
+ "num-traits",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "arrow-buffer"
234
+ version = "57.3.0"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "c697ddca96183182f35b3a18e50b9110b11e916d7b7799cbfd4d34662f2c56c2"
237
+ dependencies = [
238
+ "bytes",
239
+ "half",
240
+ "num-bigint",
241
+ "num-traits",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "arrow-cast"
246
+ version = "57.3.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "646bbb821e86fd57189c10b4fcdaa941deaf4181924917b0daa92735baa6ada5"
249
+ dependencies = [
250
+ "arrow-array",
251
+ "arrow-buffer",
252
+ "arrow-data",
253
+ "arrow-ord",
254
+ "arrow-schema",
255
+ "arrow-select",
256
+ "atoi",
257
+ "base64",
258
+ "chrono",
259
+ "half",
260
+ "lexical-core",
261
+ "num-traits",
262
+ "ryu",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "arrow-data"
267
+ version = "57.3.0"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "1fdd994a9d28e6365aa78e15da3f3950c0fdcea6b963a12fa1c391afb637b304"
270
+ dependencies = [
271
+ "arrow-buffer",
272
+ "arrow-schema",
273
+ "half",
274
+ "num-integer",
275
+ "num-traits",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "arrow-ipc"
280
+ version = "57.3.0"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "abf7df950701ab528bf7c0cf7eeadc0445d03ef5d6ffc151eaae6b38a58feff1"
283
+ dependencies = [
284
+ "arrow-array",
285
+ "arrow-buffer",
286
+ "arrow-data",
287
+ "arrow-schema",
288
+ "arrow-select",
289
+ "flatbuffers",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "arrow-ord"
294
+ version = "57.3.0"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "f7d8f1870e03d4cbed632959498bcc84083b5a24bded52905ae1695bd29da45b"
297
+ dependencies = [
298
+ "arrow-array",
299
+ "arrow-buffer",
300
+ "arrow-data",
301
+ "arrow-schema",
302
+ "arrow-select",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "arrow-row"
307
+ version = "57.3.0"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "18228633bad92bff92a95746bbeb16e5fc318e8382b75619dec26db79e4de4c0"
310
+ dependencies = [
311
+ "arrow-array",
312
+ "arrow-buffer",
313
+ "arrow-data",
314
+ "arrow-schema",
315
+ "half",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "arrow-schema"
320
+ version = "57.3.0"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "8c872d36b7bf2a6a6a2b40de9156265f0242910791db366a2c17476ba8330d68"
323
+ dependencies = [
324
+ "bitflags 2.10.0",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "arrow-select"
329
+ version = "57.3.0"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "68bf3e3efbd1278f770d67e5dc410257300b161b93baedb3aae836144edcaf4b"
332
+ dependencies = [
333
+ "ahash",
334
+ "arrow-array",
335
+ "arrow-buffer",
336
+ "arrow-data",
337
+ "arrow-schema",
338
+ "num-traits",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "arrow-string"
343
+ version = "57.3.0"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "85e968097061b3c0e9fe3079cf2e703e487890700546b5b0647f60fca1b5a8d8"
346
+ dependencies = [
347
+ "arrow-array",
348
+ "arrow-buffer",
349
+ "arrow-data",
350
+ "arrow-schema",
351
+ "arrow-select",
352
+ "memchr",
353
+ "num-traits",
354
+ "regex",
355
+ "regex-syntax",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "atoi"
360
+ version = "2.0.0"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
363
+ dependencies = [
364
+ "num-traits",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "atomic-waker"
369
+ version = "1.1.2"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
372
+
373
+ [[package]]
374
+ name = "autocfg"
375
+ version = "1.5.0"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
378
+
379
+ [[package]]
380
+ name = "axum"
381
+ version = "0.8.8"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
384
+ dependencies = [
385
+ "axum-core",
386
+ "bytes",
387
+ "form_urlencoded",
388
+ "futures-util",
389
+ "http",
390
+ "http-body",
391
+ "http-body-util",
392
+ "hyper",
393
+ "hyper-util",
394
+ "itoa",
395
+ "matchit",
396
+ "memchr",
397
+ "mime",
398
+ "percent-encoding",
399
+ "pin-project-lite",
400
+ "serde_core",
401
+ "serde_json",
402
+ "serde_path_to_error",
403
+ "serde_urlencoded",
404
+ "sync_wrapper",
405
+ "tokio",
406
+ "tower",
407
+ "tower-layer",
408
+ "tower-service",
409
+ "tracing",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "axum-core"
414
+ version = "0.5.6"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
417
+ dependencies = [
418
+ "bytes",
419
+ "futures-core",
420
+ "http",
421
+ "http-body",
422
+ "http-body-util",
423
+ "mime",
424
+ "pin-project-lite",
425
+ "sync_wrapper",
426
+ "tower-layer",
427
+ "tower-service",
428
+ "tracing",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "base64"
433
+ version = "0.22.1"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
436
+
437
+ [[package]]
438
+ name = "base64ct"
439
+ version = "1.8.3"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
442
+
443
+ [[package]]
444
+ name = "bit-set"
445
+ version = "0.8.0"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
448
+ dependencies = [
449
+ "bit-vec",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "bit-vec"
454
+ version = "0.8.0"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
457
+
458
+ [[package]]
459
+ name = "bitflags"
460
+ version = "1.3.2"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
463
+
464
+ [[package]]
465
+ name = "bitflags"
466
+ version = "2.10.0"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
469
+
470
+ [[package]]
471
+ name = "block"
472
+ version = "0.1.6"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
475
+
476
+ [[package]]
477
+ name = "block-buffer"
478
+ version = "0.10.4"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
481
+ dependencies = [
482
+ "generic-array",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "bumpalo"
487
+ version = "3.19.1"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
490
+
491
+ [[package]]
492
+ name = "bytemuck"
493
+ version = "1.25.0"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
496
+ dependencies = [
497
+ "bytemuck_derive",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "bytemuck_derive"
502
+ version = "1.10.2"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
505
+ dependencies = [
506
+ "proc-macro2",
507
+ "quote",
508
+ "syn",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "byteorder"
513
+ version = "1.5.0"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
516
+
517
+ [[package]]
518
+ name = "byteorder-lite"
519
+ version = "0.1.0"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
522
+
523
+ [[package]]
524
+ name = "bytes"
525
+ version = "1.11.1"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
528
+
529
+ [[package]]
530
+ name = "cast"
531
+ version = "0.3.0"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
534
+
535
+ [[package]]
536
+ name = "cc"
537
+ version = "1.2.55"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
540
+ dependencies = [
541
+ "find-msvc-tools",
542
+ "jobserver",
543
+ "libc",
544
+ "shlex",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "cfg-if"
549
+ version = "1.0.4"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
552
+
553
+ [[package]]
554
+ name = "chrono"
555
+ version = "0.4.43"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
558
+ dependencies = [
559
+ "iana-time-zone",
560
+ "num-traits",
561
+ "windows-link",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "ciborium"
566
+ version = "0.2.2"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
569
+ dependencies = [
570
+ "ciborium-io",
571
+ "ciborium-ll",
572
+ "serde",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "ciborium-io"
577
+ version = "0.2.2"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
580
+
581
+ [[package]]
582
+ name = "ciborium-ll"
583
+ version = "0.2.2"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
586
+ dependencies = [
587
+ "ciborium-io",
588
+ "half",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "clap"
593
+ version = "4.5.57"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "6899ea499e3fb9305a65d5ebf6e3d2248c5fab291f300ad0a704fbe142eae31a"
596
+ dependencies = [
597
+ "clap_builder",
598
+ "clap_derive",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "clap_builder"
603
+ version = "4.5.57"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "7b12c8b680195a62a8364d16b8447b01b6c2c8f9aaf68bee653be34d4245e238"
606
+ dependencies = [
607
+ "anstream",
608
+ "anstyle",
609
+ "clap_lex",
610
+ "strsim",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "clap_derive"
615
+ version = "4.5.55"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
618
+ dependencies = [
619
+ "heck",
620
+ "proc-macro2",
621
+ "quote",
622
+ "syn",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "clap_lex"
627
+ version = "0.7.7"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
630
+
631
+ [[package]]
632
+ name = "color_quant"
633
+ version = "1.1.0"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
636
+
637
+ [[package]]
638
+ name = "colorchoice"
639
+ version = "1.0.4"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
642
+
643
+ [[package]]
644
+ name = "console_error_panic_hook"
645
+ version = "0.1.7"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
648
+ dependencies = [
649
+ "cfg-if",
650
+ "wasm-bindgen",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "const-random"
655
+ version = "0.1.18"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
658
+ dependencies = [
659
+ "const-random-macro",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "const-random-macro"
664
+ version = "0.1.16"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
667
+ dependencies = [
668
+ "getrandom 0.2.17",
669
+ "once_cell",
670
+ "tiny-keccak",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "core-foundation"
675
+ version = "0.9.4"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
678
+ dependencies = [
679
+ "core-foundation-sys",
680
+ "libc",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "core-foundation-sys"
685
+ version = "0.8.7"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
688
+
689
+ [[package]]
690
+ name = "core-graphics-types"
691
+ version = "0.1.3"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
694
+ dependencies = [
695
+ "bitflags 1.3.2",
696
+ "core-foundation",
697
+ "libc",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "core_maths"
702
+ version = "0.1.1"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30"
705
+ dependencies = [
706
+ "libm",
707
+ ]
708
+
709
+ [[package]]
710
+ name = "cpufeatures"
711
+ version = "0.2.17"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
714
+ dependencies = [
715
+ "libc",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "crc"
720
+ version = "3.4.0"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
723
+ dependencies = [
724
+ "crc-catalog",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "crc-catalog"
729
+ version = "2.4.0"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
732
+
733
+ [[package]]
734
+ name = "crc32fast"
735
+ version = "1.5.0"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
738
+ dependencies = [
739
+ "cfg-if",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "criterion"
744
+ version = "0.8.2"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
747
+ dependencies = [
748
+ "alloca",
749
+ "anes",
750
+ "cast",
751
+ "ciborium",
752
+ "clap",
753
+ "criterion-plot",
754
+ "itertools",
755
+ "num-traits",
756
+ "oorandom",
757
+ "page_size",
758
+ "plotters",
759
+ "rayon",
760
+ "regex",
761
+ "serde",
762
+ "serde_json",
763
+ "tinytemplate",
764
+ "walkdir",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "criterion-plot"
769
+ version = "0.8.2"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
772
+ dependencies = [
773
+ "cast",
774
+ "itertools",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "crossbeam-deque"
779
+ version = "0.8.6"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
782
+ dependencies = [
783
+ "crossbeam-epoch",
784
+ "crossbeam-utils",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "crossbeam-epoch"
789
+ version = "0.9.18"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
792
+ dependencies = [
793
+ "crossbeam-utils",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "crossbeam-utils"
798
+ version = "0.8.21"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
801
+
802
+ [[package]]
803
+ name = "crunchy"
804
+ version = "0.2.4"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
807
+
808
+ [[package]]
809
+ name = "crypto-common"
810
+ version = "0.1.7"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
813
+ dependencies = [
814
+ "generic-array",
815
+ "typenum",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "csv"
820
+ version = "1.4.0"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
823
+ dependencies = [
824
+ "csv-core",
825
+ "itoa",
826
+ "ryu",
827
+ "serde_core",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "csv-core"
832
+ version = "0.1.13"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
835
+ dependencies = [
836
+ "memchr",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "cudarc"
841
+ version = "0.19.1"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "60d4882b3e023670c25b8a3e1ac97349070f8e5400807c091b70e0bdad6e9b93"
844
+ dependencies = [
845
+ "libloading",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "data-url"
850
+ version = "0.3.2"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376"
853
+
854
+ [[package]]
855
+ name = "der"
856
+ version = "0.7.10"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
859
+ dependencies = [
860
+ "pem-rfc7468",
861
+ "zeroize",
862
+ ]
863
+
864
+ [[package]]
865
+ name = "digest"
866
+ version = "0.10.7"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
869
+ dependencies = [
870
+ "block-buffer",
871
+ "crypto-common",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "either"
876
+ version = "1.15.0"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
879
+
880
+ [[package]]
881
+ name = "env_filter"
882
+ version = "0.1.4"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
885
+ dependencies = [
886
+ "log",
887
+ "regex",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "env_logger"
892
+ version = "0.11.8"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
895
+ dependencies = [
896
+ "anstream",
897
+ "anstyle",
898
+ "env_filter",
899
+ "jiff",
900
+ "log",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "equivalent"
905
+ version = "1.0.2"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
908
+
909
+ [[package]]
910
+ name = "errno"
911
+ version = "0.3.14"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
914
+ dependencies = [
915
+ "libc",
916
+ "windows-sys 0.61.2",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "euclid"
921
+ version = "0.22.13"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "df61bf483e837f88d5c2291dcf55c67be7e676b3a51acc48db3a7b163b91ed63"
924
+ dependencies = [
925
+ "num-traits",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "fastrand"
930
+ version = "2.3.0"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
933
+
934
+ [[package]]
935
+ name = "fdeflate"
936
+ version = "0.3.7"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
939
+ dependencies = [
940
+ "simd-adler32",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "find-msvc-tools"
945
+ version = "0.1.9"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
948
+
949
+ [[package]]
950
+ name = "flatbuffers"
951
+ version = "25.12.19"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
954
+ dependencies = [
955
+ "bitflags 2.10.0",
956
+ "rustc_version",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "flate2"
961
+ version = "1.1.9"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
964
+ dependencies = [
965
+ "crc32fast",
966
+ "miniz_oxide",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "float-cmp"
971
+ version = "0.9.0"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
974
+
975
+ [[package]]
976
+ name = "fnv"
977
+ version = "1.0.7"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
980
+
981
+ [[package]]
982
+ name = "font-types"
983
+ version = "0.10.1"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "39a654f404bbcbd48ea58c617c2993ee91d1cb63727a37bf2323a4edeed1b8c5"
986
+ dependencies = [
987
+ "bytemuck",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "fontconfig-parser"
992
+ version = "0.5.8"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "bbc773e24e02d4ddd8395fd30dc147524273a83e54e0f312d986ea30de5f5646"
995
+ dependencies = [
996
+ "roxmltree 0.20.0",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "fontdb"
1001
+ version = "0.21.0"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "37be9fc20d966be438cd57a45767f73349477fb0f85ce86e000557f787298afb"
1004
+ dependencies = [
1005
+ "fontconfig-parser",
1006
+ "log",
1007
+ "memmap2",
1008
+ "slotmap",
1009
+ "tinyvec",
1010
+ "ttf-parser 0.24.1",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "foreign-types"
1015
+ version = "0.3.2"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
1018
+ dependencies = [
1019
+ "foreign-types-shared 0.1.1",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "foreign-types"
1024
+ version = "0.5.0"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
1027
+ dependencies = [
1028
+ "foreign-types-macros",
1029
+ "foreign-types-shared 0.3.1",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "foreign-types-macros"
1034
+ version = "0.2.3"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
1037
+ dependencies = [
1038
+ "proc-macro2",
1039
+ "quote",
1040
+ "syn",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "foreign-types-shared"
1045
+ version = "0.1.1"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
1048
+
1049
+ [[package]]
1050
+ name = "foreign-types-shared"
1051
+ version = "0.3.1"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
1054
+
1055
+ [[package]]
1056
+ name = "form_urlencoded"
1057
+ version = "1.2.2"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1060
+ dependencies = [
1061
+ "percent-encoding",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "futures-channel"
1066
+ version = "0.3.31"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
1069
+ dependencies = [
1070
+ "futures-core",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "futures-core"
1075
+ version = "0.3.31"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
1078
+
1079
+ [[package]]
1080
+ name = "futures-task"
1081
+ version = "0.3.31"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
1084
+
1085
+ [[package]]
1086
+ name = "futures-util"
1087
+ version = "0.3.31"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
1090
+ dependencies = [
1091
+ "futures-core",
1092
+ "futures-task",
1093
+ "pin-project-lite",
1094
+ "pin-utils",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "generic-array"
1099
+ version = "0.14.7"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1102
+ dependencies = [
1103
+ "typenum",
1104
+ "version_check",
1105
+ ]
1106
+
1107
+ [[package]]
1108
+ name = "getrandom"
1109
+ version = "0.2.17"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1112
+ dependencies = [
1113
+ "cfg-if",
1114
+ "libc",
1115
+ "wasi",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "getrandom"
1120
+ version = "0.3.4"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1123
+ dependencies = [
1124
+ "cfg-if",
1125
+ "js-sys",
1126
+ "libc",
1127
+ "r-efi",
1128
+ "wasip2",
1129
+ "wasm-bindgen",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "gif"
1134
+ version = "0.13.3"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b"
1137
+ dependencies = [
1138
+ "color_quant",
1139
+ "weezl",
1140
+ ]
1141
+
1142
+ [[package]]
1143
+ name = "gif"
1144
+ version = "0.14.1"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e"
1147
+ dependencies = [
1148
+ "color_quant",
1149
+ "weezl",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "glam"
1154
+ version = "0.14.0"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "333928d5eb103c5d4050533cec0384302db6be8ef7d3cebd30ec6a35350353da"
1157
+
1158
+ [[package]]
1159
+ name = "glam"
1160
+ version = "0.15.2"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "3abb554f8ee44336b72d522e0a7fe86a29e09f839a36022fa869a7dfe941a54b"
1163
+
1164
+ [[package]]
1165
+ name = "glam"
1166
+ version = "0.16.0"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "4126c0479ccf7e8664c36a2d719f5f2c140fbb4f9090008098d2c291fa5b3f16"
1169
+
1170
+ [[package]]
1171
+ name = "glam"
1172
+ version = "0.17.3"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "e01732b97afd8508eee3333a541b9f7610f454bb818669e66e90f5f57c93a776"
1175
+
1176
+ [[package]]
1177
+ name = "glam"
1178
+ version = "0.18.0"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "525a3e490ba77b8e326fb67d4b44b4bd2f920f44d4cc73ccec50adc68e3bee34"
1181
+
1182
+ [[package]]
1183
+ name = "glam"
1184
+ version = "0.19.0"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "2b8509e6791516e81c1a630d0bd7fbac36d2fa8712a9da8662e716b52d5051ca"
1187
+
1188
+ [[package]]
1189
+ name = "glam"
1190
+ version = "0.20.5"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "f43e957e744be03f5801a55472f593d43fabdebf25a4585db250f04d86b1675f"
1193
+
1194
+ [[package]]
1195
+ name = "glam"
1196
+ version = "0.21.3"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "518faa5064866338b013ff9b2350dc318e14cc4fcd6cb8206d7e7c9886c98815"
1199
+
1200
+ [[package]]
1201
+ name = "glam"
1202
+ version = "0.22.0"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "12f597d56c1bd55a811a1be189459e8fad2bbc272616375602443bdfb37fa774"
1205
+
1206
+ [[package]]
1207
+ name = "glam"
1208
+ version = "0.23.0"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "8e4afd9ad95555081e109fe1d21f2a30c691b5f0919c67dfa690a2e1eb6bd51c"
1211
+
1212
+ [[package]]
1213
+ name = "glam"
1214
+ version = "0.24.2"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "b5418c17512bdf42730f9032c74e1ae39afc408745ebb2acf72fbc4691c17945"
1217
+
1218
+ [[package]]
1219
+ name = "glam"
1220
+ version = "0.25.0"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "151665d9be52f9bb40fc7966565d39666f2d1e69233571b71b87791c7e0528b3"
1223
+
1224
+ [[package]]
1225
+ name = "glam"
1226
+ version = "0.27.0"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "9e05e7e6723e3455f4818c7b26e855439f7546cf617ef669d1adedb8669e5cb9"
1229
+
1230
+ [[package]]
1231
+ name = "glam"
1232
+ version = "0.28.0"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "779ae4bf7e8421cf91c0b3b64e7e8b40b862fba4d393f59150042de7c4965a94"
1235
+
1236
+ [[package]]
1237
+ name = "glam"
1238
+ version = "0.29.3"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee"
1241
+
1242
+ [[package]]
1243
+ name = "glam"
1244
+ version = "0.30.10"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "19fc433e8437a212d1b6f1e68c7824af3aed907da60afa994e7f542d18d12aa9"
1247
+
1248
+ [[package]]
1249
+ name = "half"
1250
+ version = "2.7.1"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1253
+ dependencies = [
1254
+ "cfg-if",
1255
+ "crunchy",
1256
+ "num-traits",
1257
+ "zerocopy",
1258
+ ]
1259
+
1260
+ [[package]]
1261
+ name = "hashbrown"
1262
+ version = "0.16.1"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1265
+
1266
+ [[package]]
1267
+ name = "heck"
1268
+ version = "0.5.0"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1271
+
1272
+ [[package]]
1273
+ name = "hmac-sha256"
1274
+ version = "1.1.13"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "d0f0ae375a85536cac3a243e3a9cda80a47910348abdea7e2c22f8ec556d586d"
1277
+
1278
+ [[package]]
1279
+ name = "http"
1280
+ version = "1.4.0"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1283
+ dependencies = [
1284
+ "bytes",
1285
+ "itoa",
1286
+ ]
1287
+
1288
+ [[package]]
1289
+ name = "http-body"
1290
+ version = "1.0.1"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1293
+ dependencies = [
1294
+ "bytes",
1295
+ "http",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "http-body-util"
1300
+ version = "0.1.3"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1303
+ dependencies = [
1304
+ "bytes",
1305
+ "futures-core",
1306
+ "http",
1307
+ "http-body",
1308
+ "pin-project-lite",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "httparse"
1313
+ version = "1.10.1"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1316
+
1317
+ [[package]]
1318
+ name = "httpdate"
1319
+ version = "1.0.3"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1322
+
1323
+ [[package]]
1324
+ name = "hyper"
1325
+ version = "1.8.1"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1328
+ dependencies = [
1329
+ "atomic-waker",
1330
+ "bytes",
1331
+ "futures-channel",
1332
+ "futures-core",
1333
+ "http",
1334
+ "http-body",
1335
+ "httparse",
1336
+ "httpdate",
1337
+ "itoa",
1338
+ "pin-project-lite",
1339
+ "pin-utils",
1340
+ "smallvec",
1341
+ "tokio",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "hyper-util"
1346
+ version = "0.1.20"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1349
+ dependencies = [
1350
+ "bytes",
1351
+ "http",
1352
+ "http-body",
1353
+ "hyper",
1354
+ "pin-project-lite",
1355
+ "tokio",
1356
+ "tower-service",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "iana-time-zone"
1361
+ version = "0.1.65"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1364
+ dependencies = [
1365
+ "android_system_properties",
1366
+ "core-foundation-sys",
1367
+ "iana-time-zone-haiku",
1368
+ "js-sys",
1369
+ "log",
1370
+ "wasm-bindgen",
1371
+ "windows-core",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "iana-time-zone-haiku"
1376
+ version = "0.1.2"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1379
+ dependencies = [
1380
+ "cc",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "image"
1385
+ version = "0.25.9"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
1388
+ dependencies = [
1389
+ "bytemuck",
1390
+ "byteorder-lite",
1391
+ "color_quant",
1392
+ "gif 0.14.1",
1393
+ "moxcms",
1394
+ "num-traits",
1395
+ "png 0.18.1",
1396
+ "zune-core 0.5.1",
1397
+ "zune-jpeg 0.5.12",
1398
+ ]
1399
+
1400
+ [[package]]
1401
+ name = "image-webp"
1402
+ version = "0.1.3"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "f79afb8cbee2ef20f59ccd477a218c12a93943d075b492015ecb1bb81f8ee904"
1405
+ dependencies = [
1406
+ "byteorder-lite",
1407
+ "quick-error 2.0.1",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "imagesize"
1412
+ version = "0.13.0"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "edcd27d72f2f071c64249075f42e205ff93c9a4c5f6c6da53e79ed9f9832c285"
1415
+
1416
+ [[package]]
1417
+ name = "indexmap"
1418
+ version = "2.13.0"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1421
+ dependencies = [
1422
+ "equivalent",
1423
+ "hashbrown",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "integer-encoding"
1428
+ version = "3.0.4"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
1431
+
1432
+ [[package]]
1433
+ name = "is_terminal_polyfill"
1434
+ version = "1.70.2"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1437
+
1438
+ [[package]]
1439
+ name = "itertools"
1440
+ version = "0.13.0"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1443
+ dependencies = [
1444
+ "either",
1445
+ ]
1446
+
1447
+ [[package]]
1448
+ name = "itoa"
1449
+ version = "1.0.17"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1452
+
1453
+ [[package]]
1454
+ name = "jiff"
1455
+ version = "0.2.19"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "d89a5b5e10d5a9ad6e5d1f4bd58225f655d6fe9767575a5e8ac5a6fe64e04495"
1458
+ dependencies = [
1459
+ "jiff-static",
1460
+ "log",
1461
+ "portable-atomic",
1462
+ "portable-atomic-util",
1463
+ "serde_core",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "jiff-static"
1468
+ version = "0.2.19"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "ff7a39c8862fc1369215ccf0a8f12dd4598c7f6484704359f0351bd617034dbf"
1471
+ dependencies = [
1472
+ "proc-macro2",
1473
+ "quote",
1474
+ "syn",
1475
+ ]
1476
+
1477
+ [[package]]
1478
+ name = "jobserver"
1479
+ version = "0.1.34"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1482
+ dependencies = [
1483
+ "getrandom 0.3.4",
1484
+ "libc",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "js-sys"
1489
+ version = "0.3.85"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
1492
+ dependencies = [
1493
+ "once_cell",
1494
+ "wasm-bindgen",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "json-patch"
1499
+ version = "4.1.0"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "f300e415e2134745ef75f04562dd0145405c2f7fd92065db029ac4b16b57fe90"
1502
+ dependencies = [
1503
+ "jsonptr",
1504
+ "serde",
1505
+ "serde_json",
1506
+ "thiserror 1.0.69",
1507
+ ]
1508
+
1509
+ [[package]]
1510
+ name = "jsonptr"
1511
+ version = "0.7.1"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "a5a3cc660ba5d72bce0b3bb295bf20847ccbb40fd423f3f05b61273672e561fe"
1514
+ dependencies = [
1515
+ "serde",
1516
+ "serde_json",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "kurbo"
1521
+ version = "0.11.3"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "c62026ae44756f8a599ba21140f350303d4f08dcdcc71b5ad9c9bb8128c13c62"
1524
+ dependencies = [
1525
+ "arrayvec",
1526
+ "euclid",
1527
+ "smallvec",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "kurbo"
1532
+ version = "0.12.0"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "ce9729cc38c18d86123ab736fd2e7151763ba226ac2490ec092d1dd148825e32"
1535
+ dependencies = [
1536
+ "arrayvec",
1537
+ "euclid",
1538
+ "smallvec",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "lazy_static"
1543
+ version = "1.5.0"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1546
+
1547
+ [[package]]
1548
+ name = "lexical-core"
1549
+ version = "1.0.6"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
1552
+ dependencies = [
1553
+ "lexical-parse-float",
1554
+ "lexical-parse-integer",
1555
+ "lexical-util",
1556
+ "lexical-write-float",
1557
+ "lexical-write-integer",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "lexical-parse-float"
1562
+ version = "1.0.6"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
1565
+ dependencies = [
1566
+ "lexical-parse-integer",
1567
+ "lexical-util",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "lexical-parse-integer"
1572
+ version = "1.0.6"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
1575
+ dependencies = [
1576
+ "lexical-util",
1577
+ ]
1578
+
1579
+ [[package]]
1580
+ name = "lexical-util"
1581
+ version = "1.0.7"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
1584
+
1585
+ [[package]]
1586
+ name = "lexical-write-float"
1587
+ version = "1.0.6"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
1590
+ dependencies = [
1591
+ "lexical-util",
1592
+ "lexical-write-integer",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "lexical-write-integer"
1597
+ version = "1.0.6"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
1600
+ dependencies = [
1601
+ "lexical-util",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "libc"
1606
+ version = "0.2.180"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
1609
+
1610
+ [[package]]
1611
+ name = "libloading"
1612
+ version = "0.9.0"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
1615
+ dependencies = [
1616
+ "cfg-if",
1617
+ "windows-link",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "libm"
1622
+ version = "0.2.16"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1625
+
1626
+ [[package]]
1627
+ name = "linux-raw-sys"
1628
+ version = "0.11.0"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1631
+
1632
+ [[package]]
1633
+ name = "lock_api"
1634
+ version = "0.4.14"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1637
+ dependencies = [
1638
+ "scopeguard",
1639
+ ]
1640
+
1641
+ [[package]]
1642
+ name = "log"
1643
+ version = "0.4.29"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1646
+
1647
+ [[package]]
1648
+ name = "lz4_flex"
1649
+ version = "0.11.5"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
1652
+ dependencies = [
1653
+ "twox-hash",
1654
+ ]
1655
+
1656
+ [[package]]
1657
+ name = "lzma-rs"
1658
+ version = "0.3.0"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
1661
+ dependencies = [
1662
+ "byteorder",
1663
+ "crc",
1664
+ ]
1665
+
1666
+ [[package]]
1667
+ name = "lzma-rust2"
1668
+ version = "0.15.7"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "1670343e58806300d87950e3401e820b519b9384281bbabfb15e3636689ffd69"
1671
+
1672
+ [[package]]
1673
+ name = "malloc_buf"
1674
+ version = "0.0.6"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
1677
+ dependencies = [
1678
+ "libc",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "matchers"
1683
+ version = "0.2.0"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1686
+ dependencies = [
1687
+ "regex-automata",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "matchit"
1692
+ version = "0.8.4"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1695
+
1696
+ [[package]]
1697
+ name = "matrixmultiply"
1698
+ version = "0.3.10"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1701
+ dependencies = [
1702
+ "autocfg",
1703
+ "rawpointer",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "memchr"
1708
+ version = "2.8.0"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1711
+
1712
+ [[package]]
1713
+ name = "memmap2"
1714
+ version = "0.9.9"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
1717
+ dependencies = [
1718
+ "libc",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "metal"
1723
+ version = "0.30.0"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "9c3572083504c43e14aec05447f8a3d57cce0f66d7a3c1b9058572eca4d70ab9"
1726
+ dependencies = [
1727
+ "bitflags 2.10.0",
1728
+ "block",
1729
+ "core-graphics-types",
1730
+ "foreign-types 0.5.0",
1731
+ "log",
1732
+ "objc",
1733
+ "paste",
1734
+ ]
1735
+
1736
+ [[package]]
1737
+ name = "mime"
1738
+ version = "0.3.17"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1741
+
1742
+ [[package]]
1743
+ name = "miniz_oxide"
1744
+ version = "0.8.9"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1747
+ dependencies = [
1748
+ "adler2",
1749
+ "simd-adler32",
1750
+ ]
1751
+
1752
+ [[package]]
1753
+ name = "mio"
1754
+ version = "1.1.1"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1757
+ dependencies = [
1758
+ "libc",
1759
+ "wasi",
1760
+ "windows-sys 0.61.2",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "moxcms"
1765
+ version = "0.7.11"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97"
1768
+ dependencies = [
1769
+ "num-traits",
1770
+ "pxfm",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "nalgebra"
1775
+ version = "0.34.1"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "c4d5b3eff5cd580f93da45e64715e8c20a3996342f1e466599cf7a267a0c2f5f"
1778
+ dependencies = [
1779
+ "approx",
1780
+ "glam 0.14.0",
1781
+ "glam 0.15.2",
1782
+ "glam 0.16.0",
1783
+ "glam 0.17.3",
1784
+ "glam 0.18.0",
1785
+ "glam 0.19.0",
1786
+ "glam 0.20.5",
1787
+ "glam 0.21.3",
1788
+ "glam 0.22.0",
1789
+ "glam 0.23.0",
1790
+ "glam 0.24.2",
1791
+ "glam 0.25.0",
1792
+ "glam 0.27.0",
1793
+ "glam 0.28.0",
1794
+ "glam 0.29.3",
1795
+ "glam 0.30.10",
1796
+ "matrixmultiply",
1797
+ "nalgebra-macros",
1798
+ "num-complex",
1799
+ "num-rational",
1800
+ "num-traits",
1801
+ "simba",
1802
+ "typenum",
1803
+ ]
1804
+
1805
+ [[package]]
1806
+ name = "nalgebra-macros"
1807
+ version = "0.3.0"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "973e7178a678cfd059ccec50887658d482ce16b0aa9da3888ddeab5cd5eb4889"
1810
+ dependencies = [
1811
+ "proc-macro2",
1812
+ "quote",
1813
+ "syn",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "native-tls"
1818
+ version = "0.2.14"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
1821
+ dependencies = [
1822
+ "libc",
1823
+ "log",
1824
+ "openssl",
1825
+ "openssl-probe",
1826
+ "openssl-sys",
1827
+ "schannel",
1828
+ "security-framework",
1829
+ "security-framework-sys",
1830
+ "tempfile",
1831
+ ]
1832
+
1833
+ [[package]]
1834
+ name = "ndarray"
1835
+ version = "0.17.2"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
1838
+ dependencies = [
1839
+ "matrixmultiply",
1840
+ "num-complex",
1841
+ "num-integer",
1842
+ "num-traits",
1843
+ "portable-atomic",
1844
+ "portable-atomic-util",
1845
+ "rawpointer",
1846
+ "serde",
1847
+ ]
1848
+
1849
+ [[package]]
1850
+ name = "ns-ad"
1851
+ version = "0.9.8"
1852
+ dependencies = [
1853
+ "approx",
1854
+ "criterion",
1855
+ "env_logger",
1856
+ "log",
1857
+ "ndarray",
1858
+ "ns-core",
1859
+ "num-traits",
1860
+ "proptest",
1861
+ "thiserror 2.0.18",
1862
+ ]
1863
+
1864
+ [[package]]
1865
+ name = "ns-cli"
1866
+ version = "0.9.8"
1867
+ dependencies = [
1868
+ "anyhow",
1869
+ "arrow",
1870
+ "chrono",
1871
+ "clap",
1872
+ "csv",
1873
+ "nalgebra",
1874
+ "ns-compute",
1875
+ "ns-core",
1876
+ "ns-inference",
1877
+ "ns-root",
1878
+ "ns-translate",
1879
+ "ns-unbinned",
1880
+ "ns-viz",
1881
+ "ns-viz-render",
1882
+ "rand",
1883
+ "rayon",
1884
+ "serde",
1885
+ "serde_json",
1886
+ "serde_yaml_ng",
1887
+ "sha2",
1888
+ "statrs",
1889
+ "tracing",
1890
+ "tracing-subscriber",
1891
+ ]
1892
+
1893
+ [[package]]
1894
+ name = "ns-compute"
1895
+ version = "0.9.8"
1896
+ dependencies = [
1897
+ "approx",
1898
+ "block",
1899
+ "criterion",
1900
+ "cudarc",
1901
+ "env_logger",
1902
+ "log",
1903
+ "metal",
1904
+ "ndarray",
1905
+ "ns-core",
1906
+ "ns-unbinned",
1907
+ "objc",
1908
+ "proptest",
1909
+ "rayon",
1910
+ "sha2",
1911
+ "statrs",
1912
+ "thiserror 2.0.18",
1913
+ "wide 1.1.1",
1914
+ ]
1915
+
1916
+ [[package]]
1917
+ name = "ns-core"
1918
+ version = "0.9.8"
1919
+ dependencies = [
1920
+ "approx",
1921
+ "criterion",
1922
+ "env_logger",
1923
+ "log",
1924
+ "proptest",
1925
+ "serde",
1926
+ "serde_json",
1927
+ "thiserror 2.0.18",
1928
+ ]
1929
+
1930
+ [[package]]
1931
+ name = "ns-inference"
1932
+ version = "0.9.8"
1933
+ dependencies = [
1934
+ "approx",
1935
+ "argmin",
1936
+ "argmin-math",
1937
+ "criterion",
1938
+ "env_logger",
1939
+ "getrandom 0.3.4",
1940
+ "log",
1941
+ "nalgebra",
1942
+ "ndarray",
1943
+ "ns-ad",
1944
+ "ns-compute",
1945
+ "ns-core",
1946
+ "ns-prob",
1947
+ "ns-translate",
1948
+ "rand",
1949
+ "rand_distr",
1950
+ "rayon",
1951
+ "serde",
1952
+ "serde_json",
1953
+ "statrs",
1954
+ "thiserror 2.0.18",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "ns-prob"
1959
+ version = "0.9.8"
1960
+ dependencies = [
1961
+ "approx",
1962
+ "criterion",
1963
+ "ns-core",
1964
+ "proptest",
1965
+ "statrs",
1966
+ ]
1967
+
1968
+ [[package]]
1969
+ name = "ns-py"
1970
+ version = "0.9.8"
1971
+ dependencies = [
1972
+ "nalgebra",
1973
+ "ns-ad",
1974
+ "ns-compute",
1975
+ "ns-core",
1976
+ "ns-inference",
1977
+ "ns-root",
1978
+ "ns-translate",
1979
+ "ns-unbinned",
1980
+ "ns-viz",
1981
+ "ns-viz-render",
1982
+ "pyo3",
1983
+ "rayon",
1984
+ "serde_json",
1985
+ ]
1986
+
1987
+ [[package]]
1988
+ name = "ns-root"
1989
+ version = "0.9.8"
1990
+ dependencies = [
1991
+ "approx",
1992
+ "criterion",
1993
+ "flate2",
1994
+ "log",
1995
+ "lz4_flex",
1996
+ "lzma-rs",
1997
+ "memmap2",
1998
+ "ns-zstd",
1999
+ "rayon",
2000
+ "serde",
2001
+ "serde_json",
2002
+ "thiserror 2.0.18",
2003
+ "zstd-safe",
2004
+ ]
2005
+
2006
+ [[package]]
2007
+ name = "ns-server"
2008
+ version = "0.9.8"
2009
+ dependencies = [
2010
+ "anyhow",
2011
+ "axum",
2012
+ "clap",
2013
+ "http-body-util",
2014
+ "ns-compute",
2015
+ "ns-core",
2016
+ "ns-inference",
2017
+ "ns-translate",
2018
+ "ns-unbinned",
2019
+ "rayon",
2020
+ "serde",
2021
+ "serde_json",
2022
+ "sha2",
2023
+ "statrs",
2024
+ "tokio",
2025
+ "tower",
2026
+ "tower-http",
2027
+ "tracing",
2028
+ "tracing-subscriber",
2029
+ ]
2030
+
2031
+ [[package]]
2032
+ name = "ns-translate"
2033
+ version = "0.9.8"
2034
+ dependencies = [
2035
+ "approx",
2036
+ "arrow",
2037
+ "bytes",
2038
+ "criterion",
2039
+ "json-patch",
2040
+ "log",
2041
+ "memmap2",
2042
+ "ns-ad",
2043
+ "ns-compute",
2044
+ "ns-core",
2045
+ "ns-root",
2046
+ "ns-unbinned",
2047
+ "parquet",
2048
+ "proptest",
2049
+ "rayon",
2050
+ "roxmltree 0.21.1",
2051
+ "serde",
2052
+ "serde_json",
2053
+ "serde_yaml_ng",
2054
+ "sha2",
2055
+ "statrs",
2056
+ "thiserror 2.0.18",
2057
+ ]
2058
+
2059
+ [[package]]
2060
+ name = "ns-unbinned"
2061
+ version = "0.9.8"
2062
+ dependencies = [
2063
+ "anyhow",
2064
+ "approx",
2065
+ "arrow",
2066
+ "bytes",
2067
+ "criterion",
2068
+ "getrandom 0.3.4",
2069
+ "ns-core",
2070
+ "ns-inference",
2071
+ "ns-root",
2072
+ "ns-translate",
2073
+ "ort",
2074
+ "parquet",
2075
+ "rand",
2076
+ "rand_distr",
2077
+ "rayon",
2078
+ "serde",
2079
+ "serde_json",
2080
+ "serde_yaml_ng",
2081
+ "statrs",
2082
+ "wide 1.1.1",
2083
+ ]
2084
+
2085
+ [[package]]
2086
+ name = "ns-viz"
2087
+ version = "0.9.8"
2088
+ dependencies = [
2089
+ "approx",
2090
+ "ns-core",
2091
+ "ns-inference",
2092
+ "ns-translate",
2093
+ "serde",
2094
+ "serde_json",
2095
+ "statrs",
2096
+ "thiserror 2.0.18",
2097
+ ]
2098
+
2099
+ [[package]]
2100
+ name = "ns-viz-render"
2101
+ version = "0.9.8"
2102
+ dependencies = [
2103
+ "ab_glyph",
2104
+ "approx",
2105
+ "base64",
2106
+ "ns-core",
2107
+ "ns-viz",
2108
+ "resvg",
2109
+ "serde",
2110
+ "serde_json",
2111
+ "serde_yaml_ng",
2112
+ "svg2pdf",
2113
+ "thiserror 2.0.18",
2114
+ "tiny-skia",
2115
+ "usvg",
2116
+ ]
2117
+
2118
+ [[package]]
2119
+ name = "ns-wasm"
2120
+ version = "0.9.8"
2121
+ dependencies = [
2122
+ "console_error_panic_hook",
2123
+ "js-sys",
2124
+ "ns-core",
2125
+ "ns-inference",
2126
+ "ns-translate",
2127
+ "rand",
2128
+ "rand_distr",
2129
+ "serde",
2130
+ "serde-wasm-bindgen",
2131
+ "serde_json",
2132
+ "wasm-bindgen",
2133
+ "web-time",
2134
+ ]
2135
+
2136
+ [[package]]
2137
+ name = "ns-zstd"
2138
+ version = "0.8.2"
2139
+ dependencies = [
2140
+ "twox-hash",
2141
+ "zstd-safe",
2142
+ ]
2143
+
2144
+ [[package]]
2145
+ name = "nu-ansi-term"
2146
+ version = "0.50.3"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2149
+ dependencies = [
2150
+ "windows-sys 0.61.2",
2151
+ ]
2152
+
2153
+ [[package]]
2154
+ name = "num-bigint"
2155
+ version = "0.4.6"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2158
+ dependencies = [
2159
+ "num-integer",
2160
+ "num-traits",
2161
+ ]
2162
+
2163
+ [[package]]
2164
+ name = "num-complex"
2165
+ version = "0.4.6"
2166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2167
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
2168
+ dependencies = [
2169
+ "num-traits",
2170
+ ]
2171
+
2172
+ [[package]]
2173
+ name = "num-integer"
2174
+ version = "0.1.46"
2175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2176
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2177
+ dependencies = [
2178
+ "num-traits",
2179
+ ]
2180
+
2181
+ [[package]]
2182
+ name = "num-rational"
2183
+ version = "0.4.2"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
2186
+ dependencies = [
2187
+ "num-bigint",
2188
+ "num-integer",
2189
+ "num-traits",
2190
+ ]
2191
+
2192
+ [[package]]
2193
+ name = "num-traits"
2194
+ version = "0.2.19"
2195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2196
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2197
+ dependencies = [
2198
+ "autocfg",
2199
+ "libm",
2200
+ ]
2201
+
2202
+ [[package]]
2203
+ name = "objc"
2204
+ version = "0.2.7"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
2207
+ dependencies = [
2208
+ "malloc_buf",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "once_cell"
2213
+ version = "1.21.3"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2216
+
2217
+ [[package]]
2218
+ name = "once_cell_polyfill"
2219
+ version = "1.70.2"
2220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2221
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2222
+
2223
+ [[package]]
2224
+ name = "oorandom"
2225
+ version = "11.1.5"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
2228
+
2229
+ [[package]]
2230
+ name = "openssl"
2231
+ version = "0.10.75"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
2234
+ dependencies = [
2235
+ "bitflags 2.10.0",
2236
+ "cfg-if",
2237
+ "foreign-types 0.3.2",
2238
+ "libc",
2239
+ "once_cell",
2240
+ "openssl-macros",
2241
+ "openssl-sys",
2242
+ ]
2243
+
2244
+ [[package]]
2245
+ name = "openssl-macros"
2246
+ version = "0.1.1"
2247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2248
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2249
+ dependencies = [
2250
+ "proc-macro2",
2251
+ "quote",
2252
+ "syn",
2253
+ ]
2254
+
2255
+ [[package]]
2256
+ name = "openssl-probe"
2257
+ version = "0.1.6"
2258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2259
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
2260
+
2261
+ [[package]]
2262
+ name = "openssl-sys"
2263
+ version = "0.9.111"
2264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2265
+ checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
2266
+ dependencies = [
2267
+ "cc",
2268
+ "libc",
2269
+ "pkg-config",
2270
+ "vcpkg",
2271
+ ]
2272
+
2273
+ [[package]]
2274
+ name = "ordered-float"
2275
+ version = "2.10.1"
2276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2277
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
2278
+ dependencies = [
2279
+ "num-traits",
2280
+ ]
2281
+
2282
+ [[package]]
2283
+ name = "ort"
2284
+ version = "2.0.0-rc.11"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "4a5df903c0d2c07b56950f1058104ab0c8557159f2741782223704de9be73c3c"
2287
+ dependencies = [
2288
+ "ndarray",
2289
+ "ort-sys",
2290
+ "smallvec",
2291
+ "tracing",
2292
+ "ureq",
2293
+ ]
2294
+
2295
+ [[package]]
2296
+ name = "ort-sys"
2297
+ version = "2.0.0-rc.11"
2298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2299
+ checksum = "06503bb33f294c5f1ba484011e053bfa6ae227074bdb841e9863492dc5960d4b"
2300
+ dependencies = [
2301
+ "hmac-sha256",
2302
+ "lzma-rust2",
2303
+ "ureq",
2304
+ ]
2305
+
2306
+ [[package]]
2307
+ name = "owned_ttf_parser"
2308
+ version = "0.25.1"
2309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2310
+ checksum = "36820e9051aca1014ddc75770aab4d68bc1e9e632f0f5627c4086bc216fb583b"
2311
+ dependencies = [
2312
+ "ttf-parser 0.25.1",
2313
+ ]
2314
+
2315
+ [[package]]
2316
+ name = "page_size"
2317
+ version = "0.6.0"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
2320
+ dependencies = [
2321
+ "libc",
2322
+ "winapi",
2323
+ ]
2324
+
2325
+ [[package]]
2326
+ name = "parking_lot"
2327
+ version = "0.12.5"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2330
+ dependencies = [
2331
+ "lock_api",
2332
+ "parking_lot_core",
2333
+ ]
2334
+
2335
+ [[package]]
2336
+ name = "parking_lot_core"
2337
+ version = "0.9.12"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2340
+ dependencies = [
2341
+ "cfg-if",
2342
+ "libc",
2343
+ "redox_syscall",
2344
+ "smallvec",
2345
+ "windows-link",
2346
+ ]
2347
+
2348
+ [[package]]
2349
+ name = "parquet"
2350
+ version = "57.3.0"
2351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2352
+ checksum = "6ee96b29972a257b855ff2341b37e61af5f12d6af1158b6dcdb5b31ea07bb3cb"
2353
+ dependencies = [
2354
+ "ahash",
2355
+ "arrow-array",
2356
+ "arrow-buffer",
2357
+ "arrow-cast",
2358
+ "arrow-data",
2359
+ "arrow-ipc",
2360
+ "arrow-schema",
2361
+ "arrow-select",
2362
+ "base64",
2363
+ "bytes",
2364
+ "chrono",
2365
+ "half",
2366
+ "hashbrown",
2367
+ "num-bigint",
2368
+ "num-integer",
2369
+ "num-traits",
2370
+ "paste",
2371
+ "seq-macro",
2372
+ "snap",
2373
+ "thrift",
2374
+ "twox-hash",
2375
+ "zstd",
2376
+ ]
2377
+
2378
+ [[package]]
2379
+ name = "paste"
2380
+ version = "1.0.15"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2383
+
2384
+ [[package]]
2385
+ name = "pdf-writer"
2386
+ version = "0.12.1"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "5df03c7d216de06f93f398ef06f1385a60f2c597bb96f8195c8d98e08a26b1d5"
2389
+ dependencies = [
2390
+ "bitflags 2.10.0",
2391
+ "itoa",
2392
+ "memchr",
2393
+ "ryu",
2394
+ ]
2395
+
2396
+ [[package]]
2397
+ name = "pem-rfc7468"
2398
+ version = "0.7.0"
2399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2400
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
2401
+ dependencies = [
2402
+ "base64ct",
2403
+ ]
2404
+
2405
+ [[package]]
2406
+ name = "percent-encoding"
2407
+ version = "2.3.2"
2408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2409
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2410
+
2411
+ [[package]]
2412
+ name = "pico-args"
2413
+ version = "0.5.0"
2414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2415
+ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
2416
+
2417
+ [[package]]
2418
+ name = "pin-project-lite"
2419
+ version = "0.2.16"
2420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2421
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2422
+
2423
+ [[package]]
2424
+ name = "pin-utils"
2425
+ version = "0.1.0"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2428
+
2429
+ [[package]]
2430
+ name = "pkg-config"
2431
+ version = "0.3.32"
2432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2433
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2434
+
2435
+ [[package]]
2436
+ name = "plotters"
2437
+ version = "0.3.7"
2438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2439
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
2440
+ dependencies = [
2441
+ "num-traits",
2442
+ "plotters-backend",
2443
+ "plotters-svg",
2444
+ "wasm-bindgen",
2445
+ "web-sys",
2446
+ ]
2447
+
2448
+ [[package]]
2449
+ name = "plotters-backend"
2450
+ version = "0.3.7"
2451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
2453
+
2454
+ [[package]]
2455
+ name = "plotters-svg"
2456
+ version = "0.3.7"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
2459
+ dependencies = [
2460
+ "plotters-backend",
2461
+ ]
2462
+
2463
+ [[package]]
2464
+ name = "png"
2465
+ version = "0.17.16"
2466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2467
+ checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
2468
+ dependencies = [
2469
+ "bitflags 1.3.2",
2470
+ "crc32fast",
2471
+ "fdeflate",
2472
+ "flate2",
2473
+ "miniz_oxide",
2474
+ ]
2475
+
2476
+ [[package]]
2477
+ name = "png"
2478
+ version = "0.18.1"
2479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2480
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
2481
+ dependencies = [
2482
+ "bitflags 2.10.0",
2483
+ "crc32fast",
2484
+ "fdeflate",
2485
+ "flate2",
2486
+ "miniz_oxide",
2487
+ ]
2488
+
2489
+ [[package]]
2490
+ name = "portable-atomic"
2491
+ version = "1.13.1"
2492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2493
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2494
+
2495
+ [[package]]
2496
+ name = "portable-atomic-util"
2497
+ version = "0.2.5"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
2500
+ dependencies = [
2501
+ "portable-atomic",
2502
+ ]
2503
+
2504
+ [[package]]
2505
+ name = "ppv-lite86"
2506
+ version = "0.2.21"
2507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2508
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2509
+ dependencies = [
2510
+ "zerocopy",
2511
+ ]
2512
+
2513
+ [[package]]
2514
+ name = "proc-macro2"
2515
+ version = "1.0.106"
2516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2517
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2518
+ dependencies = [
2519
+ "unicode-ident",
2520
+ ]
2521
+
2522
+ [[package]]
2523
+ name = "proptest"
2524
+ version = "1.10.0"
2525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2526
+ checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532"
2527
+ dependencies = [
2528
+ "bit-set",
2529
+ "bit-vec",
2530
+ "bitflags 2.10.0",
2531
+ "num-traits",
2532
+ "rand",
2533
+ "rand_chacha",
2534
+ "rand_xorshift",
2535
+ "regex-syntax",
2536
+ "rusty-fork",
2537
+ "tempfile",
2538
+ "unarray",
2539
+ ]
2540
+
2541
+ [[package]]
2542
+ name = "pxfm"
2543
+ version = "0.1.27"
2544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2545
+ checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8"
2546
+ dependencies = [
2547
+ "num-traits",
2548
+ ]
2549
+
2550
+ [[package]]
2551
+ name = "pyo3"
2552
+ version = "0.28.0"
2553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2554
+ checksum = "fcf3ccafdf54c050be48a3a086d372f77ba6615f5057211607cd30e5ac5cec6d"
2555
+ dependencies = [
2556
+ "libc",
2557
+ "once_cell",
2558
+ "portable-atomic",
2559
+ "pyo3-build-config",
2560
+ "pyo3-ffi",
2561
+ "pyo3-macros",
2562
+ ]
2563
+
2564
+ [[package]]
2565
+ name = "pyo3-build-config"
2566
+ version = "0.28.0"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "972720a441c91fd9c49f212a1d2d74c6e3803b231ebc8d66c51efbd7ccab11c8"
2569
+ dependencies = [
2570
+ "target-lexicon",
2571
+ ]
2572
+
2573
+ [[package]]
2574
+ name = "pyo3-ffi"
2575
+ version = "0.28.0"
2576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2577
+ checksum = "5994456d9dab8934d600d3867571b6410f24fbd6002570ad56356733eb54859b"
2578
+ dependencies = [
2579
+ "libc",
2580
+ "pyo3-build-config",
2581
+ ]
2582
+
2583
+ [[package]]
2584
+ name = "pyo3-macros"
2585
+ version = "0.28.0"
2586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2587
+ checksum = "11ce9cc8d81b3c4969748807604d92b4eef363c5bb82b1a1bdb34ec6f1093a18"
2588
+ dependencies = [
2589
+ "proc-macro2",
2590
+ "pyo3-macros-backend",
2591
+ "quote",
2592
+ "syn",
2593
+ ]
2594
+
2595
+ [[package]]
2596
+ name = "pyo3-macros-backend"
2597
+ version = "0.28.0"
2598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2599
+ checksum = "eaf4b60036a154d23282679b658e3cc7d88d3b8c9a40b43824785f232d2e1b98"
2600
+ dependencies = [
2601
+ "heck",
2602
+ "proc-macro2",
2603
+ "pyo3-build-config",
2604
+ "quote",
2605
+ "syn",
2606
+ ]
2607
+
2608
+ [[package]]
2609
+ name = "quick-error"
2610
+ version = "1.2.3"
2611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2612
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2613
+
2614
+ [[package]]
2615
+ name = "quick-error"
2616
+ version = "2.0.1"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2619
+
2620
+ [[package]]
2621
+ name = "quote"
2622
+ version = "1.0.44"
2623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2624
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
2625
+ dependencies = [
2626
+ "proc-macro2",
2627
+ ]
2628
+
2629
+ [[package]]
2630
+ name = "r-efi"
2631
+ version = "5.3.0"
2632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2633
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2634
+
2635
+ [[package]]
2636
+ name = "rand"
2637
+ version = "0.9.2"
2638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2639
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2640
+ dependencies = [
2641
+ "rand_chacha",
2642
+ "rand_core",
2643
+ ]
2644
+
2645
+ [[package]]
2646
+ name = "rand_chacha"
2647
+ version = "0.9.0"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2650
+ dependencies = [
2651
+ "ppv-lite86",
2652
+ "rand_core",
2653
+ ]
2654
+
2655
+ [[package]]
2656
+ name = "rand_core"
2657
+ version = "0.9.5"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2660
+ dependencies = [
2661
+ "getrandom 0.3.4",
2662
+ ]
2663
+
2664
+ [[package]]
2665
+ name = "rand_distr"
2666
+ version = "0.5.1"
2667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2668
+ checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
2669
+ dependencies = [
2670
+ "num-traits",
2671
+ "rand",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "rand_xorshift"
2676
+ version = "0.4.0"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
2679
+ dependencies = [
2680
+ "rand_core",
2681
+ ]
2682
+
2683
+ [[package]]
2684
+ name = "rand_xoshiro"
2685
+ version = "0.7.0"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "f703f4665700daf5512dcca5f43afa6af89f09db47fb56be587f80636bda2d41"
2688
+ dependencies = [
2689
+ "rand_core",
2690
+ ]
2691
+
2692
+ [[package]]
2693
+ name = "rawpointer"
2694
+ version = "0.2.1"
2695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2696
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2697
+
2698
+ [[package]]
2699
+ name = "rayon"
2700
+ version = "1.11.0"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2703
+ dependencies = [
2704
+ "either",
2705
+ "rayon-core",
2706
+ ]
2707
+
2708
+ [[package]]
2709
+ name = "rayon-core"
2710
+ version = "1.13.0"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2713
+ dependencies = [
2714
+ "crossbeam-deque",
2715
+ "crossbeam-utils",
2716
+ ]
2717
+
2718
+ [[package]]
2719
+ name = "read-fonts"
2720
+ version = "0.35.0"
2721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2722
+ checksum = "6717cf23b488adf64b9d711329542ba34de147df262370221940dfabc2c91358"
2723
+ dependencies = [
2724
+ "bytemuck",
2725
+ "font-types",
2726
+ ]
2727
+
2728
+ [[package]]
2729
+ name = "redox_syscall"
2730
+ version = "0.5.18"
2731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2732
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2733
+ dependencies = [
2734
+ "bitflags 2.10.0",
2735
+ ]
2736
+
2737
+ [[package]]
2738
+ name = "regex"
2739
+ version = "1.12.3"
2740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2741
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2742
+ dependencies = [
2743
+ "aho-corasick",
2744
+ "memchr",
2745
+ "regex-automata",
2746
+ "regex-syntax",
2747
+ ]
2748
+
2749
+ [[package]]
2750
+ name = "regex-automata"
2751
+ version = "0.4.14"
2752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2753
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2754
+ dependencies = [
2755
+ "aho-corasick",
2756
+ "memchr",
2757
+ "regex-syntax",
2758
+ ]
2759
+
2760
+ [[package]]
2761
+ name = "regex-syntax"
2762
+ version = "0.8.9"
2763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2764
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
2765
+
2766
+ [[package]]
2767
+ name = "resvg"
2768
+ version = "0.43.0"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "c7314563c59c7ce31c18e23ad3dd092c37b928a0fa4e1c0a1a6504351ab411d1"
2771
+ dependencies = [
2772
+ "gif 0.13.3",
2773
+ "image-webp",
2774
+ "log",
2775
+ "pico-args",
2776
+ "rgb",
2777
+ "svgtypes",
2778
+ "tiny-skia",
2779
+ "usvg",
2780
+ "zune-jpeg 0.4.21",
2781
+ ]
2782
+
2783
+ [[package]]
2784
+ name = "rgb"
2785
+ version = "0.8.52"
2786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2787
+ checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce"
2788
+ dependencies = [
2789
+ "bytemuck",
2790
+ ]
2791
+
2792
+ [[package]]
2793
+ name = "roxmltree"
2794
+ version = "0.20.0"
2795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2796
+ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
2797
+
2798
+ [[package]]
2799
+ name = "roxmltree"
2800
+ version = "0.21.1"
2801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2802
+ checksum = "f1964b10c76125c36f8afe190065a4bf9a87bf324842c05701330bba9f1cacbb"
2803
+ dependencies = [
2804
+ "memchr",
2805
+ ]
2806
+
2807
+ [[package]]
2808
+ name = "rustc-hash"
2809
+ version = "2.1.1"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2812
+
2813
+ [[package]]
2814
+ name = "rustc_version"
2815
+ version = "0.4.1"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2818
+ dependencies = [
2819
+ "semver",
2820
+ ]
2821
+
2822
+ [[package]]
2823
+ name = "rustix"
2824
+ version = "1.1.3"
2825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2826
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
2827
+ dependencies = [
2828
+ "bitflags 2.10.0",
2829
+ "errno",
2830
+ "libc",
2831
+ "linux-raw-sys",
2832
+ "windows-sys 0.61.2",
2833
+ ]
2834
+
2835
+ [[package]]
2836
+ name = "rustls-pki-types"
2837
+ version = "1.14.0"
2838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2839
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2840
+ dependencies = [
2841
+ "zeroize",
2842
+ ]
2843
+
2844
+ [[package]]
2845
+ name = "rustversion"
2846
+ version = "1.0.22"
2847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2848
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2849
+
2850
+ [[package]]
2851
+ name = "rusty-fork"
2852
+ version = "0.3.1"
2853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2854
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
2855
+ dependencies = [
2856
+ "fnv",
2857
+ "quick-error 1.2.3",
2858
+ "tempfile",
2859
+ "wait-timeout",
2860
+ ]
2861
+
2862
+ [[package]]
2863
+ name = "rustybuzz"
2864
+ version = "0.18.0"
2865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2866
+ checksum = "c85d1ccd519e61834798eb52c4e886e8c2d7d698dd3d6ce0b1b47eb8557f1181"
2867
+ dependencies = [
2868
+ "bitflags 2.10.0",
2869
+ "bytemuck",
2870
+ "core_maths",
2871
+ "log",
2872
+ "smallvec",
2873
+ "ttf-parser 0.24.1",
2874
+ "unicode-bidi-mirroring",
2875
+ "unicode-ccc",
2876
+ "unicode-properties",
2877
+ "unicode-script",
2878
+ ]
2879
+
2880
+ [[package]]
2881
+ name = "ryu"
2882
+ version = "1.0.23"
2883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2884
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2885
+
2886
+ [[package]]
2887
+ name = "safe_arch"
2888
+ version = "0.7.4"
2889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2890
+ checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
2891
+ dependencies = [
2892
+ "bytemuck",
2893
+ ]
2894
+
2895
+ [[package]]
2896
+ name = "safe_arch"
2897
+ version = "1.0.0"
2898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2899
+ checksum = "1f7caad094bd561859bcd467734a720c3c1f5d1f338995351fefe2190c45efed"
2900
+ dependencies = [
2901
+ "bytemuck",
2902
+ ]
2903
+
2904
+ [[package]]
2905
+ name = "same-file"
2906
+ version = "1.0.6"
2907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2908
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2909
+ dependencies = [
2910
+ "winapi-util",
2911
+ ]
2912
+
2913
+ [[package]]
2914
+ name = "schannel"
2915
+ version = "0.1.28"
2916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2917
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2918
+ dependencies = [
2919
+ "windows-sys 0.61.2",
2920
+ ]
2921
+
2922
+ [[package]]
2923
+ name = "scopeguard"
2924
+ version = "1.2.0"
2925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2926
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2927
+
2928
+ [[package]]
2929
+ name = "security-framework"
2930
+ version = "2.11.1"
2931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2932
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2933
+ dependencies = [
2934
+ "bitflags 2.10.0",
2935
+ "core-foundation",
2936
+ "core-foundation-sys",
2937
+ "libc",
2938
+ "security-framework-sys",
2939
+ ]
2940
+
2941
+ [[package]]
2942
+ name = "security-framework-sys"
2943
+ version = "2.15.0"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
2946
+ dependencies = [
2947
+ "core-foundation-sys",
2948
+ "libc",
2949
+ ]
2950
+
2951
+ [[package]]
2952
+ name = "semver"
2953
+ version = "1.0.27"
2954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2955
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2956
+
2957
+ [[package]]
2958
+ name = "seq-macro"
2959
+ version = "0.3.6"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2962
+
2963
+ [[package]]
2964
+ name = "serde"
2965
+ version = "1.0.228"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2968
+ dependencies = [
2969
+ "serde_core",
2970
+ "serde_derive",
2971
+ ]
2972
+
2973
+ [[package]]
2974
+ name = "serde-wasm-bindgen"
2975
+ version = "0.6.5"
2976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2977
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
2978
+ dependencies = [
2979
+ "js-sys",
2980
+ "serde",
2981
+ "wasm-bindgen",
2982
+ ]
2983
+
2984
+ [[package]]
2985
+ name = "serde_core"
2986
+ version = "1.0.228"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2989
+ dependencies = [
2990
+ "serde_derive",
2991
+ ]
2992
+
2993
+ [[package]]
2994
+ name = "serde_derive"
2995
+ version = "1.0.228"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2998
+ dependencies = [
2999
+ "proc-macro2",
3000
+ "quote",
3001
+ "syn",
3002
+ ]
3003
+
3004
+ [[package]]
3005
+ name = "serde_json"
3006
+ version = "1.0.149"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
3009
+ dependencies = [
3010
+ "itoa",
3011
+ "memchr",
3012
+ "serde",
3013
+ "serde_core",
3014
+ "zmij",
3015
+ ]
3016
+
3017
+ [[package]]
3018
+ name = "serde_path_to_error"
3019
+ version = "0.1.20"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
3022
+ dependencies = [
3023
+ "itoa",
3024
+ "serde",
3025
+ "serde_core",
3026
+ ]
3027
+
3028
+ [[package]]
3029
+ name = "serde_urlencoded"
3030
+ version = "0.7.1"
3031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3032
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3033
+ dependencies = [
3034
+ "form_urlencoded",
3035
+ "itoa",
3036
+ "ryu",
3037
+ "serde",
3038
+ ]
3039
+
3040
+ [[package]]
3041
+ name = "serde_yaml_ng"
3042
+ version = "0.10.0"
3043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3044
+ checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f"
3045
+ dependencies = [
3046
+ "indexmap",
3047
+ "itoa",
3048
+ "ryu",
3049
+ "serde",
3050
+ "unsafe-libyaml",
3051
+ ]
3052
+
3053
+ [[package]]
3054
+ name = "sha2"
3055
+ version = "0.10.9"
3056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3057
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3058
+ dependencies = [
3059
+ "cfg-if",
3060
+ "cpufeatures",
3061
+ "digest",
3062
+ ]
3063
+
3064
+ [[package]]
3065
+ name = "sharded-slab"
3066
+ version = "0.1.7"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3069
+ dependencies = [
3070
+ "lazy_static",
3071
+ ]
3072
+
3073
+ [[package]]
3074
+ name = "shlex"
3075
+ version = "1.3.0"
3076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3077
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3078
+
3079
+ [[package]]
3080
+ name = "signal-hook-registry"
3081
+ version = "1.4.8"
3082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3083
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
3084
+ dependencies = [
3085
+ "errno",
3086
+ "libc",
3087
+ ]
3088
+
3089
+ [[package]]
3090
+ name = "simba"
3091
+ version = "0.9.1"
3092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3093
+ checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
3094
+ dependencies = [
3095
+ "approx",
3096
+ "num-complex",
3097
+ "num-traits",
3098
+ "paste",
3099
+ "wide 0.7.33",
3100
+ ]
3101
+
3102
+ [[package]]
3103
+ name = "simd-adler32"
3104
+ version = "0.3.8"
3105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3106
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
3107
+
3108
+ [[package]]
3109
+ name = "simplecss"
3110
+ version = "0.2.2"
3111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3112
+ checksum = "7a9c6883ca9c3c7c90e888de77b7a5c849c779d25d74a1269b0218b14e8b136c"
3113
+ dependencies = [
3114
+ "log",
3115
+ ]
3116
+
3117
+ [[package]]
3118
+ name = "siphasher"
3119
+ version = "1.0.2"
3120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3121
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
3122
+
3123
+ [[package]]
3124
+ name = "skrifa"
3125
+ version = "0.37.0"
3126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3127
+ checksum = "8c31071dedf532758ecf3fed987cdb4bd9509f900e026ab684b4ecb81ea49841"
3128
+ dependencies = [
3129
+ "bytemuck",
3130
+ "read-fonts",
3131
+ ]
3132
+
3133
+ [[package]]
3134
+ name = "slotmap"
3135
+ version = "1.1.1"
3136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3137
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
3138
+ dependencies = [
3139
+ "version_check",
3140
+ ]
3141
+
3142
+ [[package]]
3143
+ name = "smallvec"
3144
+ version = "1.15.1"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3147
+
3148
+ [[package]]
3149
+ name = "snap"
3150
+ version = "1.1.1"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
3153
+
3154
+ [[package]]
3155
+ name = "socket2"
3156
+ version = "0.6.2"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
3159
+ dependencies = [
3160
+ "libc",
3161
+ "windows-sys 0.60.2",
3162
+ ]
3163
+
3164
+ [[package]]
3165
+ name = "socks"
3166
+ version = "0.3.4"
3167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3168
+ checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
3169
+ dependencies = [
3170
+ "byteorder",
3171
+ "libc",
3172
+ "winapi",
3173
+ ]
3174
+
3175
+ [[package]]
3176
+ name = "statrs"
3177
+ version = "0.18.0"
3178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3179
+ checksum = "2a3fe7c28c6512e766b0874335db33c94ad7b8f9054228ae1c2abd47ce7d335e"
3180
+ dependencies = [
3181
+ "approx",
3182
+ "num-traits",
3183
+ ]
3184
+
3185
+ [[package]]
3186
+ name = "strict-num"
3187
+ version = "0.1.1"
3188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3189
+ checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
3190
+ dependencies = [
3191
+ "float-cmp",
3192
+ ]
3193
+
3194
+ [[package]]
3195
+ name = "strsim"
3196
+ version = "0.11.1"
3197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3198
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3199
+
3200
+ [[package]]
3201
+ name = "subsetter"
3202
+ version = "0.2.3"
3203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3204
+ checksum = "cb6895a12ac5599bb6057362f00e8a3cf1daab4df33f553a55690a44e4fed8d0"
3205
+ dependencies = [
3206
+ "kurbo 0.12.0",
3207
+ "rustc-hash",
3208
+ "skrifa",
3209
+ "write-fonts",
3210
+ ]
3211
+
3212
+ [[package]]
3213
+ name = "svg2pdf"
3214
+ version = "0.12.0"
3215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3216
+ checksum = "5014c9dadcf318fb7ef8c16438e95abcc9de1ae24d60d5bccc64c55100c50364"
3217
+ dependencies = [
3218
+ "fontdb",
3219
+ "image",
3220
+ "log",
3221
+ "miniz_oxide",
3222
+ "once_cell",
3223
+ "pdf-writer",
3224
+ "resvg",
3225
+ "siphasher",
3226
+ "subsetter",
3227
+ "tiny-skia",
3228
+ "ttf-parser 0.24.1",
3229
+ "usvg",
3230
+ ]
3231
+
3232
+ [[package]]
3233
+ name = "svgtypes"
3234
+ version = "0.15.3"
3235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3236
+ checksum = "68c7541fff44b35860c1a7a47a7cadf3e4a304c457b58f9870d9706ece028afc"
3237
+ dependencies = [
3238
+ "kurbo 0.11.3",
3239
+ "siphasher",
3240
+ ]
3241
+
3242
+ [[package]]
3243
+ name = "syn"
3244
+ version = "2.0.114"
3245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3246
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
3247
+ dependencies = [
3248
+ "proc-macro2",
3249
+ "quote",
3250
+ "unicode-ident",
3251
+ ]
3252
+
3253
+ [[package]]
3254
+ name = "sync_wrapper"
3255
+ version = "1.0.2"
3256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3257
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3258
+
3259
+ [[package]]
3260
+ name = "target-lexicon"
3261
+ version = "0.13.4"
3262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3263
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
3264
+
3265
+ [[package]]
3266
+ name = "tempfile"
3267
+ version = "3.24.0"
3268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3269
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
3270
+ dependencies = [
3271
+ "fastrand",
3272
+ "getrandom 0.3.4",
3273
+ "once_cell",
3274
+ "rustix",
3275
+ "windows-sys 0.61.2",
3276
+ ]
3277
+
3278
+ [[package]]
3279
+ name = "thiserror"
3280
+ version = "1.0.69"
3281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3282
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3283
+ dependencies = [
3284
+ "thiserror-impl 1.0.69",
3285
+ ]
3286
+
3287
+ [[package]]
3288
+ name = "thiserror"
3289
+ version = "2.0.18"
3290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3291
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3292
+ dependencies = [
3293
+ "thiserror-impl 2.0.18",
3294
+ ]
3295
+
3296
+ [[package]]
3297
+ name = "thiserror-impl"
3298
+ version = "1.0.69"
3299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3300
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3301
+ dependencies = [
3302
+ "proc-macro2",
3303
+ "quote",
3304
+ "syn",
3305
+ ]
3306
+
3307
+ [[package]]
3308
+ name = "thiserror-impl"
3309
+ version = "2.0.18"
3310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3311
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3312
+ dependencies = [
3313
+ "proc-macro2",
3314
+ "quote",
3315
+ "syn",
3316
+ ]
3317
+
3318
+ [[package]]
3319
+ name = "thread_local"
3320
+ version = "1.1.9"
3321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3322
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3323
+ dependencies = [
3324
+ "cfg-if",
3325
+ ]
3326
+
3327
+ [[package]]
3328
+ name = "thrift"
3329
+ version = "0.17.0"
3330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3331
+ checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
3332
+ dependencies = [
3333
+ "byteorder",
3334
+ "integer-encoding",
3335
+ "ordered-float",
3336
+ ]
3337
+
3338
+ [[package]]
3339
+ name = "tiny-keccak"
3340
+ version = "2.0.2"
3341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3342
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
3343
+ dependencies = [
3344
+ "crunchy",
3345
+ ]
3346
+
3347
+ [[package]]
3348
+ name = "tiny-skia"
3349
+ version = "0.11.4"
3350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3351
+ checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
3352
+ dependencies = [
3353
+ "arrayref",
3354
+ "arrayvec",
3355
+ "bytemuck",
3356
+ "cfg-if",
3357
+ "log",
3358
+ "png 0.17.16",
3359
+ "tiny-skia-path",
3360
+ ]
3361
+
3362
+ [[package]]
3363
+ name = "tiny-skia-path"
3364
+ version = "0.11.4"
3365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3366
+ checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
3367
+ dependencies = [
3368
+ "arrayref",
3369
+ "bytemuck",
3370
+ "strict-num",
3371
+ ]
3372
+
3373
+ [[package]]
3374
+ name = "tinytemplate"
3375
+ version = "1.2.1"
3376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3377
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3378
+ dependencies = [
3379
+ "serde",
3380
+ "serde_json",
3381
+ ]
3382
+
3383
+ [[package]]
3384
+ name = "tinyvec"
3385
+ version = "1.10.0"
3386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3387
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3388
+ dependencies = [
3389
+ "tinyvec_macros",
3390
+ ]
3391
+
3392
+ [[package]]
3393
+ name = "tinyvec_macros"
3394
+ version = "0.1.1"
3395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3396
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3397
+
3398
+ [[package]]
3399
+ name = "tokio"
3400
+ version = "1.49.0"
3401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3402
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
3403
+ dependencies = [
3404
+ "bytes",
3405
+ "libc",
3406
+ "mio",
3407
+ "parking_lot",
3408
+ "pin-project-lite",
3409
+ "signal-hook-registry",
3410
+ "socket2",
3411
+ "tokio-macros",
3412
+ "windows-sys 0.61.2",
3413
+ ]
3414
+
3415
+ [[package]]
3416
+ name = "tokio-macros"
3417
+ version = "2.6.0"
3418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3419
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
3420
+ dependencies = [
3421
+ "proc-macro2",
3422
+ "quote",
3423
+ "syn",
3424
+ ]
3425
+
3426
+ [[package]]
3427
+ name = "tower"
3428
+ version = "0.5.3"
3429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3430
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3431
+ dependencies = [
3432
+ "futures-core",
3433
+ "futures-util",
3434
+ "pin-project-lite",
3435
+ "sync_wrapper",
3436
+ "tokio",
3437
+ "tower-layer",
3438
+ "tower-service",
3439
+ "tracing",
3440
+ ]
3441
+
3442
+ [[package]]
3443
+ name = "tower-http"
3444
+ version = "0.6.8"
3445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3446
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3447
+ dependencies = [
3448
+ "bitflags 2.10.0",
3449
+ "bytes",
3450
+ "http",
3451
+ "http-body",
3452
+ "pin-project-lite",
3453
+ "tower-layer",
3454
+ "tower-service",
3455
+ "tracing",
3456
+ ]
3457
+
3458
+ [[package]]
3459
+ name = "tower-layer"
3460
+ version = "0.3.3"
3461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3462
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3463
+
3464
+ [[package]]
3465
+ name = "tower-service"
3466
+ version = "0.3.3"
3467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3468
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3469
+
3470
+ [[package]]
3471
+ name = "tracing"
3472
+ version = "0.1.44"
3473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3474
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3475
+ dependencies = [
3476
+ "log",
3477
+ "pin-project-lite",
3478
+ "tracing-attributes",
3479
+ "tracing-core",
3480
+ ]
3481
+
3482
+ [[package]]
3483
+ name = "tracing-attributes"
3484
+ version = "0.1.31"
3485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3486
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3487
+ dependencies = [
3488
+ "proc-macro2",
3489
+ "quote",
3490
+ "syn",
3491
+ ]
3492
+
3493
+ [[package]]
3494
+ name = "tracing-core"
3495
+ version = "0.1.36"
3496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3497
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3498
+ dependencies = [
3499
+ "once_cell",
3500
+ "valuable",
3501
+ ]
3502
+
3503
+ [[package]]
3504
+ name = "tracing-log"
3505
+ version = "0.2.0"
3506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3507
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3508
+ dependencies = [
3509
+ "log",
3510
+ "once_cell",
3511
+ "tracing-core",
3512
+ ]
3513
+
3514
+ [[package]]
3515
+ name = "tracing-subscriber"
3516
+ version = "0.3.22"
3517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3518
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
3519
+ dependencies = [
3520
+ "matchers",
3521
+ "nu-ansi-term",
3522
+ "once_cell",
3523
+ "regex-automata",
3524
+ "sharded-slab",
3525
+ "smallvec",
3526
+ "thread_local",
3527
+ "tracing",
3528
+ "tracing-core",
3529
+ "tracing-log",
3530
+ ]
3531
+
3532
+ [[package]]
3533
+ name = "ttf-parser"
3534
+ version = "0.24.1"
3535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3536
+ checksum = "5be21190ff5d38e8b4a2d3b6a3ae57f612cc39c96e83cedeaf7abc338a8bac4a"
3537
+ dependencies = [
3538
+ "core_maths",
3539
+ ]
3540
+
3541
+ [[package]]
3542
+ name = "ttf-parser"
3543
+ version = "0.25.1"
3544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3545
+ checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
3546
+
3547
+ [[package]]
3548
+ name = "twox-hash"
3549
+ version = "2.1.2"
3550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3551
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
3552
+
3553
+ [[package]]
3554
+ name = "typenum"
3555
+ version = "1.19.0"
3556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3557
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3558
+
3559
+ [[package]]
3560
+ name = "unarray"
3561
+ version = "0.1.4"
3562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3563
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
3564
+
3565
+ [[package]]
3566
+ name = "unicode-bidi"
3567
+ version = "0.3.18"
3568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3569
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
3570
+
3571
+ [[package]]
3572
+ name = "unicode-bidi-mirroring"
3573
+ version = "0.3.0"
3574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3575
+ checksum = "64af057ad7466495ca113126be61838d8af947f41d93a949980b2389a118082f"
3576
+
3577
+ [[package]]
3578
+ name = "unicode-ccc"
3579
+ version = "0.3.0"
3580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3581
+ checksum = "260bc6647b3893a9a90668360803a15f96b85a5257b1c3a0c3daf6ae2496de42"
3582
+
3583
+ [[package]]
3584
+ name = "unicode-ident"
3585
+ version = "1.0.22"
3586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3587
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
3588
+
3589
+ [[package]]
3590
+ name = "unicode-properties"
3591
+ version = "0.1.4"
3592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3593
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
3594
+
3595
+ [[package]]
3596
+ name = "unicode-script"
3597
+ version = "0.5.8"
3598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3599
+ checksum = "383ad40bb927465ec0ce7720e033cb4ca06912855fc35db31b5755d0de75b1ee"
3600
+
3601
+ [[package]]
3602
+ name = "unicode-vo"
3603
+ version = "0.1.0"
3604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3605
+ checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
3606
+
3607
+ [[package]]
3608
+ name = "unsafe-libyaml"
3609
+ version = "0.2.11"
3610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3611
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
3612
+
3613
+ [[package]]
3614
+ name = "ureq"
3615
+ version = "3.2.0"
3616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3617
+ checksum = "fdc97a28575b85cfedf2a7e7d3cc64b3e11bd8ac766666318003abbacc7a21fc"
3618
+ dependencies = [
3619
+ "base64",
3620
+ "der",
3621
+ "log",
3622
+ "native-tls",
3623
+ "percent-encoding",
3624
+ "rustls-pki-types",
3625
+ "socks",
3626
+ "ureq-proto",
3627
+ "utf-8",
3628
+ "webpki-root-certs",
3629
+ ]
3630
+
3631
+ [[package]]
3632
+ name = "ureq-proto"
3633
+ version = "0.5.3"
3634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3635
+ checksum = "d81f9efa9df032be5934a46a068815a10a042b494b6a58cb0a1a97bb5467ed6f"
3636
+ dependencies = [
3637
+ "base64",
3638
+ "http",
3639
+ "httparse",
3640
+ "log",
3641
+ ]
3642
+
3643
+ [[package]]
3644
+ name = "usvg"
3645
+ version = "0.43.0"
3646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3647
+ checksum = "6803057b5cbb426e9fb8ce2216f3a9b4ca1dd2c705ba3cbebc13006e437735fd"
3648
+ dependencies = [
3649
+ "base64",
3650
+ "data-url",
3651
+ "flate2",
3652
+ "fontdb",
3653
+ "imagesize",
3654
+ "kurbo 0.11.3",
3655
+ "log",
3656
+ "pico-args",
3657
+ "roxmltree 0.20.0",
3658
+ "rustybuzz",
3659
+ "simplecss",
3660
+ "siphasher",
3661
+ "strict-num",
3662
+ "svgtypes",
3663
+ "tiny-skia-path",
3664
+ "unicode-bidi",
3665
+ "unicode-script",
3666
+ "unicode-vo",
3667
+ "xmlwriter",
3668
+ ]
3669
+
3670
+ [[package]]
3671
+ name = "utf-8"
3672
+ version = "0.7.6"
3673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3674
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3675
+
3676
+ [[package]]
3677
+ name = "utf8parse"
3678
+ version = "0.2.2"
3679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3680
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3681
+
3682
+ [[package]]
3683
+ name = "valuable"
3684
+ version = "0.1.1"
3685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3686
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3687
+
3688
+ [[package]]
3689
+ name = "vcpkg"
3690
+ version = "0.2.15"
3691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3692
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3693
+
3694
+ [[package]]
3695
+ name = "version_check"
3696
+ version = "0.9.5"
3697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3698
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3699
+
3700
+ [[package]]
3701
+ name = "wait-timeout"
3702
+ version = "0.2.1"
3703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3704
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3705
+ dependencies = [
3706
+ "libc",
3707
+ ]
3708
+
3709
+ [[package]]
3710
+ name = "walkdir"
3711
+ version = "2.5.0"
3712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3713
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3714
+ dependencies = [
3715
+ "same-file",
3716
+ "winapi-util",
3717
+ ]
3718
+
3719
+ [[package]]
3720
+ name = "wasi"
3721
+ version = "0.11.1+wasi-snapshot-preview1"
3722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3723
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3724
+
3725
+ [[package]]
3726
+ name = "wasip2"
3727
+ version = "1.0.2+wasi-0.2.9"
3728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3729
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3730
+ dependencies = [
3731
+ "wit-bindgen",
3732
+ ]
3733
+
3734
+ [[package]]
3735
+ name = "wasm-bindgen"
3736
+ version = "0.2.108"
3737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3738
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
3739
+ dependencies = [
3740
+ "cfg-if",
3741
+ "once_cell",
3742
+ "rustversion",
3743
+ "wasm-bindgen-macro",
3744
+ "wasm-bindgen-shared",
3745
+ ]
3746
+
3747
+ [[package]]
3748
+ name = "wasm-bindgen-macro"
3749
+ version = "0.2.108"
3750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3751
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
3752
+ dependencies = [
3753
+ "quote",
3754
+ "wasm-bindgen-macro-support",
3755
+ ]
3756
+
3757
+ [[package]]
3758
+ name = "wasm-bindgen-macro-support"
3759
+ version = "0.2.108"
3760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3761
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
3762
+ dependencies = [
3763
+ "bumpalo",
3764
+ "proc-macro2",
3765
+ "quote",
3766
+ "syn",
3767
+ "wasm-bindgen-shared",
3768
+ ]
3769
+
3770
+ [[package]]
3771
+ name = "wasm-bindgen-shared"
3772
+ version = "0.2.108"
3773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3774
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
3775
+ dependencies = [
3776
+ "unicode-ident",
3777
+ ]
3778
+
3779
+ [[package]]
3780
+ name = "web-sys"
3781
+ version = "0.3.85"
3782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3783
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
3784
+ dependencies = [
3785
+ "js-sys",
3786
+ "wasm-bindgen",
3787
+ ]
3788
+
3789
+ [[package]]
3790
+ name = "web-time"
3791
+ version = "1.1.0"
3792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3793
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3794
+ dependencies = [
3795
+ "js-sys",
3796
+ "wasm-bindgen",
3797
+ ]
3798
+
3799
+ [[package]]
3800
+ name = "webpki-root-certs"
3801
+ version = "1.0.5"
3802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3803
+ checksum = "36a29fc0408b113f68cf32637857ab740edfafdf460c326cd2afaa2d84cc05dc"
3804
+ dependencies = [
3805
+ "rustls-pki-types",
3806
+ ]
3807
+
3808
+ [[package]]
3809
+ name = "weezl"
3810
+ version = "0.1.12"
3811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3812
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
3813
+
3814
+ [[package]]
3815
+ name = "wide"
3816
+ version = "0.7.33"
3817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3818
+ checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
3819
+ dependencies = [
3820
+ "bytemuck",
3821
+ "safe_arch 0.7.4",
3822
+ ]
3823
+
3824
+ [[package]]
3825
+ name = "wide"
3826
+ version = "1.1.1"
3827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3828
+ checksum = "ac11b009ebeae802ed758530b6496784ebfee7a87b9abfbcaf3bbe25b814eb25"
3829
+ dependencies = [
3830
+ "bytemuck",
3831
+ "safe_arch 1.0.0",
3832
+ ]
3833
+
3834
+ [[package]]
3835
+ name = "winapi"
3836
+ version = "0.3.9"
3837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3838
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3839
+ dependencies = [
3840
+ "winapi-i686-pc-windows-gnu",
3841
+ "winapi-x86_64-pc-windows-gnu",
3842
+ ]
3843
+
3844
+ [[package]]
3845
+ name = "winapi-i686-pc-windows-gnu"
3846
+ version = "0.4.0"
3847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3848
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3849
+
3850
+ [[package]]
3851
+ name = "winapi-util"
3852
+ version = "0.1.11"
3853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3854
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3855
+ dependencies = [
3856
+ "windows-sys 0.61.2",
3857
+ ]
3858
+
3859
+ [[package]]
3860
+ name = "winapi-x86_64-pc-windows-gnu"
3861
+ version = "0.4.0"
3862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3863
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3864
+
3865
+ [[package]]
3866
+ name = "windows-core"
3867
+ version = "0.62.2"
3868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3869
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3870
+ dependencies = [
3871
+ "windows-implement",
3872
+ "windows-interface",
3873
+ "windows-link",
3874
+ "windows-result",
3875
+ "windows-strings",
3876
+ ]
3877
+
3878
+ [[package]]
3879
+ name = "windows-implement"
3880
+ version = "0.60.2"
3881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3882
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3883
+ dependencies = [
3884
+ "proc-macro2",
3885
+ "quote",
3886
+ "syn",
3887
+ ]
3888
+
3889
+ [[package]]
3890
+ name = "windows-interface"
3891
+ version = "0.59.3"
3892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3893
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3894
+ dependencies = [
3895
+ "proc-macro2",
3896
+ "quote",
3897
+ "syn",
3898
+ ]
3899
+
3900
+ [[package]]
3901
+ name = "windows-link"
3902
+ version = "0.2.1"
3903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3904
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3905
+
3906
+ [[package]]
3907
+ name = "windows-result"
3908
+ version = "0.4.1"
3909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3910
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3911
+ dependencies = [
3912
+ "windows-link",
3913
+ ]
3914
+
3915
+ [[package]]
3916
+ name = "windows-strings"
3917
+ version = "0.5.1"
3918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3919
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3920
+ dependencies = [
3921
+ "windows-link",
3922
+ ]
3923
+
3924
+ [[package]]
3925
+ name = "windows-sys"
3926
+ version = "0.60.2"
3927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3928
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3929
+ dependencies = [
3930
+ "windows-targets",
3931
+ ]
3932
+
3933
+ [[package]]
3934
+ name = "windows-sys"
3935
+ version = "0.61.2"
3936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3937
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3938
+ dependencies = [
3939
+ "windows-link",
3940
+ ]
3941
+
3942
+ [[package]]
3943
+ name = "windows-targets"
3944
+ version = "0.53.5"
3945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3946
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3947
+ dependencies = [
3948
+ "windows-link",
3949
+ "windows_aarch64_gnullvm",
3950
+ "windows_aarch64_msvc",
3951
+ "windows_i686_gnu",
3952
+ "windows_i686_gnullvm",
3953
+ "windows_i686_msvc",
3954
+ "windows_x86_64_gnu",
3955
+ "windows_x86_64_gnullvm",
3956
+ "windows_x86_64_msvc",
3957
+ ]
3958
+
3959
+ [[package]]
3960
+ name = "windows_aarch64_gnullvm"
3961
+ version = "0.53.1"
3962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3963
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3964
+
3965
+ [[package]]
3966
+ name = "windows_aarch64_msvc"
3967
+ version = "0.53.1"
3968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3969
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3970
+
3971
+ [[package]]
3972
+ name = "windows_i686_gnu"
3973
+ version = "0.53.1"
3974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3975
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3976
+
3977
+ [[package]]
3978
+ name = "windows_i686_gnullvm"
3979
+ version = "0.53.1"
3980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3981
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3982
+
3983
+ [[package]]
3984
+ name = "windows_i686_msvc"
3985
+ version = "0.53.1"
3986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3987
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3988
+
3989
+ [[package]]
3990
+ name = "windows_x86_64_gnu"
3991
+ version = "0.53.1"
3992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3993
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3994
+
3995
+ [[package]]
3996
+ name = "windows_x86_64_gnullvm"
3997
+ version = "0.53.1"
3998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3999
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4000
+
4001
+ [[package]]
4002
+ name = "windows_x86_64_msvc"
4003
+ version = "0.53.1"
4004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4005
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4006
+
4007
+ [[package]]
4008
+ name = "wit-bindgen"
4009
+ version = "0.51.0"
4010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4011
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4012
+
4013
+ [[package]]
4014
+ name = "write-fonts"
4015
+ version = "0.43.0"
4016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4017
+ checksum = "886614b5ce857341226aa091f3c285e450683894acaaa7887f366c361efef79d"
4018
+ dependencies = [
4019
+ "font-types",
4020
+ "indexmap",
4021
+ "kurbo 0.12.0",
4022
+ "log",
4023
+ "read-fonts",
4024
+ ]
4025
+
4026
+ [[package]]
4027
+ name = "xmlwriter"
4028
+ version = "0.1.0"
4029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4030
+ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
4031
+
4032
+ [[package]]
4033
+ name = "zerocopy"
4034
+ version = "0.8.39"
4035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4036
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
4037
+ dependencies = [
4038
+ "zerocopy-derive",
4039
+ ]
4040
+
4041
+ [[package]]
4042
+ name = "zerocopy-derive"
4043
+ version = "0.8.39"
4044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4045
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
4046
+ dependencies = [
4047
+ "proc-macro2",
4048
+ "quote",
4049
+ "syn",
4050
+ ]
4051
+
4052
+ [[package]]
4053
+ name = "zeroize"
4054
+ version = "1.8.2"
4055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4056
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4057
+
4058
+ [[package]]
4059
+ name = "zmij"
4060
+ version = "1.0.20"
4061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4062
+ checksum = "4de98dfa5d5b7fef4ee834d0073d560c9ca7b6c46a71d058c48db7960f8cfaf7"
4063
+
4064
+ [[package]]
4065
+ name = "zstd"
4066
+ version = "0.13.3"
4067
+ dependencies = [
4068
+ "ns-zstd",
4069
+ "zstd-safe",
4070
+ ]
4071
+
4072
+ [[package]]
4073
+ name = "zstd-safe"
4074
+ version = "7.2.4"
4075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4076
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4077
+ dependencies = [
4078
+ "zstd-sys",
4079
+ ]
4080
+
4081
+ [[package]]
4082
+ name = "zstd-sys"
4083
+ version = "2.0.16+zstd.1.5.7"
4084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4085
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4086
+ dependencies = [
4087
+ "cc",
4088
+ "pkg-config",
4089
+ ]
4090
+
4091
+ [[package]]
4092
+ name = "zune-core"
4093
+ version = "0.4.12"
4094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4095
+ checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
4096
+
4097
+ [[package]]
4098
+ name = "zune-core"
4099
+ version = "0.5.1"
4100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4101
+ checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
4102
+
4103
+ [[package]]
4104
+ name = "zune-jpeg"
4105
+ version = "0.4.21"
4106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4107
+ checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
4108
+ dependencies = [
4109
+ "zune-core 0.4.12",
4110
+ ]
4111
+
4112
+ [[package]]
4113
+ name = "zune-jpeg"
4114
+ version = "0.5.12"
4115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4116
+ checksum = "410e9ecef634c709e3831c2cfdb8d9c32164fae1c67496d5b68fff728eec37fe"
4117
+ dependencies = [
4118
+ "zune-core 0.5.1",
4119
+ ]