polars-cv 0.5.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (189) hide show
  1. polars_cv-0.5.0/Cargo.lock +4651 -0
  2. polars_cv-0.5.0/Cargo.toml +15 -0
  3. polars_cv-0.5.0/PKG-INFO +89 -0
  4. polars_cv-0.5.0/README.md +68 -0
  5. polars_cv-0.5.0/polars-cv/.pre-commit-config.yaml +33 -0
  6. polars_cv-0.5.0/polars-cv/.vscode/settings.json +4 -0
  7. polars_cv-0.5.0/polars-cv/Cargo.toml +64 -0
  8. polars_cv-0.5.0/polars-cv/README.md +68 -0
  9. polars_cv-0.5.0/polars-cv/benchmarks/README.md +323 -0
  10. polars_cv-0.5.0/polars-cv/benchmarks/__init__.py +10 -0
  11. polars_cv-0.5.0/polars-cv/benchmarks/conftest.py +120 -0
  12. polars_cv-0.5.0/polars-cv/benchmarks/frameworks/__init__.py +89 -0
  13. polars_cv-0.5.0/polars-cv/benchmarks/frameworks/base.py +413 -0
  14. polars_cv-0.5.0/polars-cv/benchmarks/frameworks/opencv_adapter.py +271 -0
  15. polars_cv-0.5.0/polars-cv/benchmarks/frameworks/pillow_adapter.py +298 -0
  16. polars_cv-0.5.0/polars-cv/benchmarks/frameworks/polars_cv_adapter.py +681 -0
  17. polars_cv-0.5.0/polars-cv/benchmarks/frameworks/torchvision_adapter.py +454 -0
  18. polars_cv-0.5.0/polars-cv/benchmarks/inference_pipeline_comparison.py +840 -0
  19. polars_cv-0.5.0/polars-cv/benchmarks/run_benchmarks.py +378 -0
  20. polars_cv-0.5.0/polars-cv/benchmarks/scenarios/__init__.py +23 -0
  21. polars_cv-0.5.0/polars-cv/benchmarks/scenarios/e2e_workflow.py +469 -0
  22. polars_cv-0.5.0/polars-cv/benchmarks/scenarios/pipelines.py +456 -0
  23. polars_cv-0.5.0/polars-cv/benchmarks/scenarios/single_ops.py +419 -0
  24. polars_cv-0.5.0/polars-cv/benchmarks/scenarios/zero_copy_ingestion.py +406 -0
  25. polars_cv-0.5.0/polars-cv/benchmarks/utils/__init__.py +45 -0
  26. polars_cv-0.5.0/polars-cv/benchmarks/utils/data_gen.py +503 -0
  27. polars_cv-0.5.0/polars-cv/benchmarks/utils/memory.py +239 -0
  28. polars_cv-0.5.0/polars-cv/benchmarks/utils/results.py +414 -0
  29. polars_cv-0.5.0/polars-cv/benchmarks/utils/validation.py +386 -0
  30. polars_cv-0.5.0/polars-cv/docs/api/functions.md +129 -0
  31. polars_cv-0.5.0/polars-cv/docs/api/geometry.md +102 -0
  32. polars_cv-0.5.0/polars-cv/docs/api/lazy.md +28 -0
  33. polars_cv-0.5.0/polars-cv/docs/api/pipeline.md +25 -0
  34. polars_cv-0.5.0/polars-cv/docs/getting-started/installation.md +93 -0
  35. polars_cv-0.5.0/polars-cv/docs/getting-started/quickstart.md +106 -0
  36. polars_cv-0.5.0/polars-cv/docs/index.md +41 -0
  37. polars_cv-0.5.0/polars-cv/docs/user-guide/composition/binary-ops.md +194 -0
  38. polars_cv-0.5.0/polars-cv/docs/user-guide/composition/chaining.md +183 -0
  39. polars_cv-0.5.0/polars-cv/docs/user-guide/composition/multi-output.md +185 -0
  40. polars_cv-0.5.0/polars-cv/docs/user-guide/concepts/domains.md +84 -0
  41. polars_cv-0.5.0/polars-cv/docs/user-guide/concepts/pipelines.md +87 -0
  42. polars_cv-0.5.0/polars-cv/docs/user-guide/operations/geometry.md +77 -0
  43. polars_cv-0.5.0/polars-cv/docs/user-guide/operations/hashing.md +53 -0
  44. polars_cv-0.5.0/polars-cv/docs/user-guide/operations/image-ops.md +81 -0
  45. polars_cv-0.5.0/polars-cv/docs/user-guide/operations/reductions.md +55 -0
  46. polars_cv-0.5.0/polars-cv/mkdocs.yml +95 -0
  47. polars_cv-0.5.0/polars-cv/notebooks/demo_comprehensive.ipynb +2788 -0
  48. polars_cv-0.5.0/polars-cv/notebooks/demo_comprehensive.py +2252 -0
  49. polars_cv-0.5.0/polars-cv/python/polars_cv/__init__.py +379 -0
  50. polars_cv-0.5.0/polars-cv/python/polars_cv/_graph.py +684 -0
  51. polars_cv-0.5.0/polars-cv/python/polars_cv/_graph_viz.py +178 -0
  52. polars_cv-0.5.0/polars-cv/python/polars_cv/_types.py +634 -0
  53. polars_cv-0.5.0/polars-cv/python/polars_cv/expressions.py +152 -0
  54. polars_cv-0.5.0/polars-cv/python/polars_cv/geometry/__init__.py +66 -0
  55. polars_cv-0.5.0/polars-cv/python/polars_cv/geometry/contours.py +401 -0
  56. polars_cv-0.5.0/polars-cv/python/polars_cv/geometry/points.py +209 -0
  57. polars_cv-0.5.0/polars-cv/python/polars_cv/geometry/schemas.py +283 -0
  58. polars_cv-0.5.0/polars-cv/python/polars_cv/geometry/validation.py +206 -0
  59. polars_cv-0.5.0/polars-cv/python/polars_cv/lazy.py +885 -0
  60. polars_cv-0.5.0/polars-cv/python/polars_cv/pipeline.py +2444 -0
  61. polars_cv-0.5.0/polars-cv/python/polars_cv/py.typed +3 -0
  62. polars_cv-0.5.0/polars-cv/scripts/test_multiple_python.py +294 -0
  63. polars_cv-0.5.0/polars-cv/src/cloud.rs +392 -0
  64. polars_cv-0.5.0/polars-cv/src/contour.rs +904 -0
  65. polars_cv-0.5.0/polars-cv/src/execute.rs +1226 -0
  66. polars_cv-0.5.0/polars-cv/src/graph/decode.rs +982 -0
  67. polars_cv-0.5.0/polars-cv/src/graph/encode.rs +901 -0
  68. polars_cv-0.5.0/polars-cv/src/graph/mod.rs +20 -0
  69. polars_cv-0.5.0/polars-cv/src/graph/types.rs +1009 -0
  70. polars_cv-0.5.0/polars-cv/src/graph.rs.bak +3411 -0
  71. polars_cv-0.5.0/polars-cv/src/lib.rs +197 -0
  72. polars_cv-0.5.0/polars-cv/src/output.rs +407 -0
  73. polars_cv-0.5.0/polars-cv/src/params.rs +253 -0
  74. polars_cv-0.5.0/polars-cv/src/pipeline.rs +340 -0
  75. polars_cv-0.5.0/polars-cv/tests/__init__.py +2 -0
  76. polars_cv-0.5.0/polars-cv/tests/conftest.py +187 -0
  77. polars_cv-0.5.0/polars-cv/tests/reference/__init__.py +1 -0
  78. polars_cv-0.5.0/polars-cv/tests/reference/conftest.py +220 -0
  79. polars_cv-0.5.0/polars-cv/tests/reference/test_binary_ops_ref.py +539 -0
  80. polars_cv-0.5.0/polars-cv/tests/reference/test_contour_ops_ref.py +321 -0
  81. polars_cv-0.5.0/polars-cv/tests/reference/test_extract_ref.py +251 -0
  82. polars_cv-0.5.0/polars-cv/tests/reference/test_histogram_ref.py +201 -0
  83. polars_cv-0.5.0/polars-cv/tests/reference/test_pairwise_ref.py +309 -0
  84. polars_cv-0.5.0/polars-cv/tests/reference/test_perceptual_hash_ref.py +411 -0
  85. polars_cv-0.5.0/polars-cv/tests/reference/test_rasterize_ref.py +210 -0
  86. polars_cv-0.5.0/polars-cv/tests/reference/test_reductions_ref.py +203 -0
  87. polars_cv-0.5.0/polars-cv/tests/test_contour_plugin.py +638 -0
  88. polars_cv-0.5.0/polars-cv/tests/test_contour_source.py +266 -0
  89. polars_cv-0.5.0/polars-cv/tests/test_cse_optimization.py +403 -0
  90. polars_cv-0.5.0/polars-cv/tests/test_error_handling.py +446 -0
  91. polars_cv-0.5.0/polars-cv/tests/test_geometry_schemas.py +258 -0
  92. polars_cv-0.5.0/polars-cv/tests/test_hash_comparison.py +472 -0
  93. polars_cv-0.5.0/polars-cv/tests/test_http_sources.py +178 -0
  94. polars_cv-0.5.0/polars-cv/tests/test_integration.py +339 -0
  95. polars_cv-0.5.0/polars-cv/tests/test_lazy_composition.py +671 -0
  96. polars_cv-0.5.0/polars-cv/tests/test_lazy_schema.py +138 -0
  97. polars_cv-0.5.0/polars-cv/tests/test_mask_metrics.py +592 -0
  98. polars_cv-0.5.0/polars-cv/tests/test_multi_output.py +300 -0
  99. polars_cv-0.5.0/polars-cv/tests/test_multi_upstream.py +402 -0
  100. polars_cv-0.5.0/polars-cv/tests/test_numpy_helpers.py +277 -0
  101. polars_cv-0.5.0/polars-cv/tests/test_padding.py +487 -0
  102. polars_cv-0.5.0/polars-cv/tests/test_perceptual_hash.py +371 -0
  103. polars_cv-0.5.0/polars-cv/tests/test_pipeline_builder.py +504 -0
  104. polars_cv-0.5.0/polars-cv/tests/test_precompile.py +402 -0
  105. polars_cv-0.5.0/polars-cv/tests/test_resize_enhancements.py +455 -0
  106. polars_cv-0.5.0/polars-cv/tests/test_serialization.py +310 -0
  107. polars_cv-0.5.0/polars-cv/tests/test_sink_typing.py +735 -0
  108. polars_cv-0.5.0/polars-cv/tests/test_source_types.py +270 -0
  109. polars_cv-0.5.0/polars-cv/tests/test_statistical_reductions.py +413 -0
  110. polars_cv-0.5.0/polars-cv/tests/test_typed_nodes.py +546 -0
  111. polars_cv-0.5.0/polars-cv/tests/test_unexposed_ops.py +572 -0
  112. polars_cv-0.5.0/polars-cv/tests/test_unified_graph.py +356 -0
  113. polars_cv-0.5.0/polars-cv/tests/test_zero_copy_output.py +815 -0
  114. polars_cv-0.5.0/polars-cv/tests/test_zero_copy_sources.py +509 -0
  115. polars_cv-0.5.0/polars-cv/uv.lock +4751 -0
  116. polars_cv-0.5.0/pyproject.toml +73 -0
  117. polars_cv-0.5.0/python/polars_cv/__init__.py +379 -0
  118. polars_cv-0.5.0/python/polars_cv/_graph.py +684 -0
  119. polars_cv-0.5.0/python/polars_cv/_graph_viz.py +178 -0
  120. polars_cv-0.5.0/python/polars_cv/_types.py +634 -0
  121. polars_cv-0.5.0/python/polars_cv/expressions.py +152 -0
  122. polars_cv-0.5.0/python/polars_cv/geometry/__init__.py +66 -0
  123. polars_cv-0.5.0/python/polars_cv/geometry/contours.py +401 -0
  124. polars_cv-0.5.0/python/polars_cv/geometry/points.py +209 -0
  125. polars_cv-0.5.0/python/polars_cv/geometry/schemas.py +283 -0
  126. polars_cv-0.5.0/python/polars_cv/geometry/validation.py +206 -0
  127. polars_cv-0.5.0/python/polars_cv/lazy.py +885 -0
  128. polars_cv-0.5.0/python/polars_cv/pipeline.py +2444 -0
  129. polars_cv-0.5.0/python/polars_cv/py.typed +3 -0
  130. polars_cv-0.5.0/view-buffer/.cargo/config.toml +11 -0
  131. polars_cv-0.5.0/view-buffer/Cargo.toml +83 -0
  132. polars_cv-0.5.0/view-buffer/LICENSE +21 -0
  133. polars_cv-0.5.0/view-buffer/README.md +224 -0
  134. polars_cv-0.5.0/view-buffer/examples/comprehensive_demo.rs +391 -0
  135. polars_cv-0.5.0/view-buffer/examples/comprehensive_output.png +0 -0
  136. polars_cv-0.5.0/view-buffer/examples/demo.rs +101 -0
  137. polars_cv-0.5.0/view-buffer/examples/demo_input.png +0 -0
  138. polars_cv-0.5.0/view-buffer/examples/demo_output.png +0 -0
  139. polars_cv-0.5.0/view-buffer/src/core/buffer.rs +1608 -0
  140. polars_cv-0.5.0/view-buffer/src/core/dtype.rs +153 -0
  141. polars_cv-0.5.0/view-buffer/src/core/layout.rs +169 -0
  142. polars_cv-0.5.0/view-buffer/src/core/mod.rs +15 -0
  143. polars_cv-0.5.0/view-buffer/src/execution/mod.rs +19 -0
  144. polars_cv-0.5.0/view-buffer/src/execution/plan.rs +51 -0
  145. polars_cv-0.5.0/view-buffer/src/execution/runner.rs +867 -0
  146. polars_cv-0.5.0/view-buffer/src/execution/tiling.rs +747 -0
  147. polars_cv-0.5.0/view-buffer/src/expr.rs +1107 -0
  148. polars_cv-0.5.0/view-buffer/src/geometry/contour.rs +337 -0
  149. polars_cv-0.5.0/view-buffer/src/geometry/extract.rs +327 -0
  150. polars_cv-0.5.0/view-buffer/src/geometry/measures.rs +316 -0
  151. polars_cv-0.5.0/view-buffer/src/geometry/mod.rs +53 -0
  152. polars_cv-0.5.0/view-buffer/src/geometry/ops.rs +541 -0
  153. polars_cv-0.5.0/view-buffer/src/geometry/pairwise.rs +309 -0
  154. polars_cv-0.5.0/view-buffer/src/geometry/predicates.rs +266 -0
  155. polars_cv-0.5.0/view-buffer/src/geometry/rasterize.rs +240 -0
  156. polars_cv-0.5.0/view-buffer/src/geometry/transforms.rs +394 -0
  157. polars_cv-0.5.0/view-buffer/src/interop/arrow.rs +209 -0
  158. polars_cv-0.5.0/view-buffer/src/interop/arrow_ffi.rs +288 -0
  159. polars_cv-0.5.0/view-buffer/src/interop/image.rs +262 -0
  160. polars_cv-0.5.0/view-buffer/src/interop/mod.rs +45 -0
  161. polars_cv-0.5.0/view-buffer/src/interop/ndarray.rs +142 -0
  162. polars_cv-0.5.0/view-buffer/src/interop/polars.rs +366 -0
  163. polars_cv-0.5.0/view-buffer/src/lib.rs +66 -0
  164. polars_cv-0.5.0/view-buffer/src/ops/affine.rs +42 -0
  165. polars_cv-0.5.0/view-buffer/src/ops/binary.rs +651 -0
  166. polars_cv-0.5.0/view-buffer/src/ops/compute.rs +238 -0
  167. polars_cv-0.5.0/view-buffer/src/ops/cost.rs +159 -0
  168. polars_cv-0.5.0/view-buffer/src/ops/dto.rs +253 -0
  169. polars_cv-0.5.0/view-buffer/src/ops/histogram.rs +264 -0
  170. polars_cv-0.5.0/view-buffer/src/ops/image.rs +183 -0
  171. polars_cv-0.5.0/view-buffer/src/ops/io.rs +222 -0
  172. polars_cv-0.5.0/view-buffer/src/ops/mod.rs +197 -0
  173. polars_cv-0.5.0/view-buffer/src/ops/phash.rs +395 -0
  174. polars_cv-0.5.0/view-buffer/src/ops/reduction.rs +608 -0
  175. polars_cv-0.5.0/view-buffer/src/ops/scalar.rs +93 -0
  176. polars_cv-0.5.0/view-buffer/src/ops/traits.rs +220 -0
  177. polars_cv-0.5.0/view-buffer/src/ops/validation.rs +148 -0
  178. polars_cv-0.5.0/view-buffer/src/ops/view.rs +136 -0
  179. polars_cv-0.5.0/view-buffer/src/protocol.rs +72 -0
  180. polars_cv-0.5.0/view-buffer/tests/clamp_fusion.rs +196 -0
  181. polars_cv-0.5.0/view-buffer/tests/cost_verification.rs +342 -0
  182. polars_cv-0.5.0/view-buffer/tests/fused_ops.rs +69 -0
  183. polars_cv-0.5.0/view-buffer/tests/integration_plan.rs +105 -0
  184. polars_cv-0.5.0/view-buffer/tests/polars_interop.rs +782 -0
  185. polars_cv-0.5.0/view-buffer/tests/rotation.rs +174 -0
  186. polars_cv-0.5.0/view-buffer/tests/strided_ops.rs +419 -0
  187. polars_cv-0.5.0/view-buffer/tests/tiling.rs +590 -0
  188. polars_cv-0.5.0/view-buffer/tests/validation.rs +162 -0
  189. polars_cv-0.5.0/view-buffer/tests/zero_copy.rs +125 -0
@@ -0,0 +1,4651 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "const-random",
19
+ "getrandom 0.3.4",
20
+ "once_cell",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.4"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "aligned"
36
+ version = "0.4.3"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685"
39
+ dependencies = [
40
+ "as-slice",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "aligned-vec"
45
+ version = "0.6.4"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
48
+ dependencies = [
49
+ "equator",
50
+ ]
51
+
52
+ [[package]]
53
+ name = "allocator-api2"
54
+ version = "0.2.21"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
57
+
58
+ [[package]]
59
+ name = "android-tzdata"
60
+ version = "0.1.1"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
63
+
64
+ [[package]]
65
+ name = "android_system_properties"
66
+ version = "0.1.5"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
69
+ dependencies = [
70
+ "libc",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "anyhow"
75
+ version = "1.0.100"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
78
+
79
+ [[package]]
80
+ name = "ar_archive_writer"
81
+ version = "0.2.0"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a"
84
+ dependencies = [
85
+ "object",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "arbitrary"
90
+ version = "1.4.2"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
93
+
94
+ [[package]]
95
+ name = "arg_enum_proc_macro"
96
+ version = "0.3.4"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
99
+ dependencies = [
100
+ "proc-macro2",
101
+ "quote",
102
+ "syn",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "argminmax"
107
+ version = "0.6.3"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
110
+ dependencies = [
111
+ "num-traits",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "array-init-cursor"
116
+ version = "0.2.1"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3"
119
+
120
+ [[package]]
121
+ name = "arrayvec"
122
+ version = "0.7.6"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
125
+
126
+ [[package]]
127
+ name = "arrow"
128
+ version = "53.4.1"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "d3a3ec4fe573f9d1f59d99c085197ef669b00b088ba1d7bb75224732d9357a74"
131
+ dependencies = [
132
+ "arrow-arith",
133
+ "arrow-array",
134
+ "arrow-buffer",
135
+ "arrow-cast",
136
+ "arrow-csv",
137
+ "arrow-data",
138
+ "arrow-ipc",
139
+ "arrow-json",
140
+ "arrow-ord",
141
+ "arrow-row",
142
+ "arrow-schema",
143
+ "arrow-select",
144
+ "arrow-string",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "arrow-arith"
149
+ version = "53.4.1"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "6dcf19f07792d8c7f91086c67b574a79301e367029b17fcf63fb854332246a10"
152
+ dependencies = [
153
+ "arrow-array",
154
+ "arrow-buffer",
155
+ "arrow-data",
156
+ "arrow-schema",
157
+ "chrono",
158
+ "half",
159
+ "num",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "arrow-array"
164
+ version = "53.4.1"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "7845c32b41f7053e37a075b3c2f29c6f5ea1b3ca6e5df7a2d325ee6e1b4a63cf"
167
+ dependencies = [
168
+ "ahash",
169
+ "arrow-buffer",
170
+ "arrow-data",
171
+ "arrow-schema",
172
+ "chrono",
173
+ "half",
174
+ "hashbrown 0.15.5",
175
+ "num",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "arrow-buffer"
180
+ version = "53.4.1"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "5b5c681a99606f3316f2a99d9c8b6fa3aad0b1d34d8f6d7a1b471893940219d8"
183
+ dependencies = [
184
+ "bytes",
185
+ "half",
186
+ "num",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "arrow-cast"
191
+ version = "53.4.1"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "6365f8527d4f87b133eeb862f9b8093c009d41a210b8f101f91aa2392f61daac"
194
+ dependencies = [
195
+ "arrow-array",
196
+ "arrow-buffer",
197
+ "arrow-data",
198
+ "arrow-schema",
199
+ "arrow-select",
200
+ "atoi",
201
+ "base64",
202
+ "chrono",
203
+ "half",
204
+ "lexical-core",
205
+ "num",
206
+ "ryu",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "arrow-csv"
211
+ version = "53.4.1"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "30dac4d23ac769300349197b845e0fd18c7f9f15d260d4659ae6b5a9ca06f586"
214
+ dependencies = [
215
+ "arrow-array",
216
+ "arrow-buffer",
217
+ "arrow-cast",
218
+ "arrow-data",
219
+ "arrow-schema",
220
+ "chrono",
221
+ "csv",
222
+ "csv-core",
223
+ "lazy_static",
224
+ "lexical-core",
225
+ "regex",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "arrow-data"
230
+ version = "53.4.1"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "cd962fc3bf7f60705b25bcaa8eb3318b2545aa1d528656525ebdd6a17a6cd6fb"
233
+ dependencies = [
234
+ "arrow-buffer",
235
+ "arrow-schema",
236
+ "half",
237
+ "num",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "arrow-ipc"
242
+ version = "53.4.1"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "c3527365b24372f9c948f16e53738eb098720eea2093ae73c7af04ac5e30a39b"
245
+ dependencies = [
246
+ "arrow-array",
247
+ "arrow-buffer",
248
+ "arrow-cast",
249
+ "arrow-data",
250
+ "arrow-schema",
251
+ "flatbuffers",
252
+ ]
253
+
254
+ [[package]]
255
+ name = "arrow-json"
256
+ version = "53.4.1"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "acdec0024749fc0d95e025c0b0266d78613727b3b3a5d4cf8ea47eb6d38afdd1"
259
+ dependencies = [
260
+ "arrow-array",
261
+ "arrow-buffer",
262
+ "arrow-cast",
263
+ "arrow-data",
264
+ "arrow-schema",
265
+ "chrono",
266
+ "half",
267
+ "indexmap",
268
+ "lexical-core",
269
+ "num",
270
+ "serde",
271
+ "serde_json",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "arrow-ord"
276
+ version = "53.4.1"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "79af2db0e62a508d34ddf4f76bfd6109b6ecc845257c9cba6f939653668f89ac"
279
+ dependencies = [
280
+ "arrow-array",
281
+ "arrow-buffer",
282
+ "arrow-data",
283
+ "arrow-schema",
284
+ "arrow-select",
285
+ "half",
286
+ "num",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "arrow-row"
291
+ version = "53.4.1"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "da30e9d10e9c52f09ea0cf15086d6d785c11ae8dcc3ea5f16d402221b6ac7735"
294
+ dependencies = [
295
+ "ahash",
296
+ "arrow-array",
297
+ "arrow-buffer",
298
+ "arrow-data",
299
+ "arrow-schema",
300
+ "half",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "arrow-schema"
305
+ version = "53.4.1"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "35b0f9c0c3582dd55db0f136d3b44bfa0189df07adcf7dc7f2f2e74db0f52eb8"
308
+ dependencies = [
309
+ "bitflags 2.10.0",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "arrow-select"
314
+ version = "53.4.1"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "92fc337f01635218493c23da81a364daf38c694b05fc20569c3193c11c561984"
317
+ dependencies = [
318
+ "ahash",
319
+ "arrow-array",
320
+ "arrow-buffer",
321
+ "arrow-data",
322
+ "arrow-schema",
323
+ "num",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "arrow-string"
328
+ version = "53.4.1"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "d596a9fc25dae556672d5069b090331aca8acb93cae426d8b7dcdf1c558fa0ce"
331
+ dependencies = [
332
+ "arrow-array",
333
+ "arrow-buffer",
334
+ "arrow-data",
335
+ "arrow-schema",
336
+ "arrow-select",
337
+ "memchr",
338
+ "num",
339
+ "regex",
340
+ "regex-syntax",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "as-slice"
345
+ version = "0.2.1"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
348
+ dependencies = [
349
+ "stable_deref_trait",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "async-stream"
354
+ version = "0.3.6"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
357
+ dependencies = [
358
+ "async-stream-impl",
359
+ "futures-core",
360
+ "pin-project-lite",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "async-stream-impl"
365
+ version = "0.3.6"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
368
+ dependencies = [
369
+ "proc-macro2",
370
+ "quote",
371
+ "syn",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "async-trait"
376
+ version = "0.1.89"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
379
+ dependencies = [
380
+ "proc-macro2",
381
+ "quote",
382
+ "syn",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "atoi"
387
+ version = "2.0.0"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
390
+ dependencies = [
391
+ "num-traits",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "atoi_simd"
396
+ version = "0.16.1"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "c2a49e05797ca52e312a0c658938b7d00693ef037799ef7187678f212d7684cf"
399
+ dependencies = [
400
+ "debug_unsafe",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "atomic-waker"
405
+ version = "1.1.2"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
408
+
409
+ [[package]]
410
+ name = "autocfg"
411
+ version = "1.5.0"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
414
+
415
+ [[package]]
416
+ name = "av-scenechange"
417
+ version = "0.14.1"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394"
420
+ dependencies = [
421
+ "aligned",
422
+ "anyhow",
423
+ "arg_enum_proc_macro",
424
+ "arrayvec",
425
+ "log",
426
+ "num-rational",
427
+ "num-traits",
428
+ "pastey",
429
+ "rayon",
430
+ "thiserror 2.0.17",
431
+ "v_frame",
432
+ "y4m",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "av1-grain"
437
+ version = "0.2.5"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8"
440
+ dependencies = [
441
+ "anyhow",
442
+ "arrayvec",
443
+ "log",
444
+ "nom",
445
+ "num-rational",
446
+ "v_frame",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "avif-serialize"
451
+ version = "0.8.6"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "47c8fbc0f831f4519fe8b810b6a7a91410ec83031b8233f730a0480029f6a23f"
454
+ dependencies = [
455
+ "arrayvec",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "base64"
460
+ version = "0.22.1"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
463
+
464
+ [[package]]
465
+ name = "bit_field"
466
+ version = "0.10.3"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
469
+
470
+ [[package]]
471
+ name = "bitflags"
472
+ version = "1.3.2"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
475
+
476
+ [[package]]
477
+ name = "bitflags"
478
+ version = "2.10.0"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
481
+
482
+ [[package]]
483
+ name = "bitstream-io"
484
+ version = "4.9.0"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "60d4bd9d1db2c6bdf285e223a7fa369d5ce98ec767dec949c6ca62863ce61757"
487
+ dependencies = [
488
+ "core2",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "block-buffer"
493
+ version = "0.10.4"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
496
+ dependencies = [
497
+ "generic-array",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "built"
502
+ version = "0.8.0"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "f4ad8f11f288f48ca24471bbd51ac257aaeaaa07adae295591266b792902ae64"
505
+
506
+ [[package]]
507
+ name = "bumpalo"
508
+ version = "3.19.1"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
511
+
512
+ [[package]]
513
+ name = "bytemuck"
514
+ version = "1.24.0"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
517
+ dependencies = [
518
+ "bytemuck_derive",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "bytemuck_derive"
523
+ version = "1.10.2"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
526
+ dependencies = [
527
+ "proc-macro2",
528
+ "quote",
529
+ "syn",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "byteorder"
534
+ version = "1.5.0"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
537
+
538
+ [[package]]
539
+ name = "byteorder-lite"
540
+ version = "0.1.0"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
543
+
544
+ [[package]]
545
+ name = "bytes"
546
+ version = "1.11.0"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
549
+ dependencies = [
550
+ "serde",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "castaway"
555
+ version = "0.2.4"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
558
+ dependencies = [
559
+ "rustversion",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "cc"
564
+ version = "1.2.51"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
567
+ dependencies = [
568
+ "find-msvc-tools",
569
+ "jobserver",
570
+ "libc",
571
+ "shlex",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "cfg-if"
576
+ version = "1.0.4"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
579
+
580
+ [[package]]
581
+ name = "cfg_aliases"
582
+ version = "0.2.1"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
585
+
586
+ [[package]]
587
+ name = "chrono"
588
+ version = "0.4.39"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
591
+ dependencies = [
592
+ "android-tzdata",
593
+ "iana-time-zone",
594
+ "num-traits",
595
+ "serde",
596
+ "windows-targets 0.52.6",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "chrono-tz"
601
+ version = "0.10.4"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
604
+ dependencies = [
605
+ "chrono",
606
+ "phf",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "color_quant"
611
+ version = "1.1.0"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
614
+
615
+ [[package]]
616
+ name = "comfy-table"
617
+ version = "7.2.1"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b"
620
+ dependencies = [
621
+ "crossterm",
622
+ "unicode-segmentation",
623
+ "unicode-width",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "compact_str"
628
+ version = "0.8.1"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32"
631
+ dependencies = [
632
+ "castaway",
633
+ "cfg-if",
634
+ "itoa",
635
+ "rustversion",
636
+ "ryu",
637
+ "serde",
638
+ "static_assertions",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "const-random"
643
+ version = "0.1.18"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
646
+ dependencies = [
647
+ "const-random-macro",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "const-random-macro"
652
+ version = "0.1.16"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
655
+ dependencies = [
656
+ "getrandom 0.2.16",
657
+ "once_cell",
658
+ "tiny-keccak",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "core-foundation"
663
+ version = "0.10.1"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
666
+ dependencies = [
667
+ "core-foundation-sys",
668
+ "libc",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "core-foundation-sys"
673
+ version = "0.8.7"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
676
+
677
+ [[package]]
678
+ name = "core2"
679
+ version = "0.4.0"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
682
+ dependencies = [
683
+ "memchr",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "crc32fast"
688
+ version = "1.5.0"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
691
+ dependencies = [
692
+ "cfg-if",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "crossbeam-channel"
697
+ version = "0.5.15"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
700
+ dependencies = [
701
+ "crossbeam-utils",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "crossbeam-deque"
706
+ version = "0.8.6"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
709
+ dependencies = [
710
+ "crossbeam-epoch",
711
+ "crossbeam-utils",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "crossbeam-epoch"
716
+ version = "0.9.18"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
719
+ dependencies = [
720
+ "crossbeam-utils",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "crossbeam-queue"
725
+ version = "0.3.12"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
728
+ dependencies = [
729
+ "crossbeam-utils",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "crossbeam-utils"
734
+ version = "0.8.21"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
737
+
738
+ [[package]]
739
+ name = "crossterm"
740
+ version = "0.29.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
743
+ dependencies = [
744
+ "bitflags 2.10.0",
745
+ "crossterm_winapi",
746
+ "document-features",
747
+ "parking_lot",
748
+ "rustix",
749
+ "winapi",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "crossterm_winapi"
754
+ version = "0.9.1"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
757
+ dependencies = [
758
+ "winapi",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "crunchy"
763
+ version = "0.2.4"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
766
+
767
+ [[package]]
768
+ name = "crypto-common"
769
+ version = "0.1.7"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
772
+ dependencies = [
773
+ "generic-array",
774
+ "typenum",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "csv"
779
+ version = "1.4.0"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
782
+ dependencies = [
783
+ "csv-core",
784
+ "itoa",
785
+ "ryu",
786
+ "serde_core",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "csv-core"
791
+ version = "0.1.13"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
794
+ dependencies = [
795
+ "memchr",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "debug_unsafe"
800
+ version = "0.1.3"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "85d3cef41d236720ed453e102153a53e4cc3d2fde848c0078a50cf249e8e3e5b"
803
+
804
+ [[package]]
805
+ name = "digest"
806
+ version = "0.10.7"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
809
+ dependencies = [
810
+ "block-buffer",
811
+ "crypto-common",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "displaydoc"
816
+ version = "0.2.5"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
819
+ dependencies = [
820
+ "proc-macro2",
821
+ "quote",
822
+ "syn",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "document-features"
827
+ version = "0.2.12"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
830
+ dependencies = [
831
+ "litrs",
832
+ ]
833
+
834
+ [[package]]
835
+ name = "dyn-clone"
836
+ version = "1.0.20"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
839
+
840
+ [[package]]
841
+ name = "either"
842
+ version = "1.15.0"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
845
+
846
+ [[package]]
847
+ name = "enum_dispatch"
848
+ version = "0.3.13"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
851
+ dependencies = [
852
+ "once_cell",
853
+ "proc-macro2",
854
+ "quote",
855
+ "syn",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "equator"
860
+ version = "0.4.2"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
863
+ dependencies = [
864
+ "equator-macro",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "equator-macro"
869
+ version = "0.4.2"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
872
+ dependencies = [
873
+ "proc-macro2",
874
+ "quote",
875
+ "syn",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "equivalent"
880
+ version = "1.0.2"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
883
+
884
+ [[package]]
885
+ name = "errno"
886
+ version = "0.3.14"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
889
+ dependencies = [
890
+ "libc",
891
+ "windows-sys 0.61.2",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "ethnum"
896
+ version = "1.5.2"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "ca81e6b4777c89fd810c25a4be2b1bd93ea034fbe58e6a75216a34c6b82c539b"
899
+
900
+ [[package]]
901
+ name = "exr"
902
+ version = "1.74.0"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be"
905
+ dependencies = [
906
+ "bit_field",
907
+ "half",
908
+ "lebe",
909
+ "miniz_oxide",
910
+ "rayon-core",
911
+ "smallvec",
912
+ "zune-inflate",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "fallible-streaming-iterator"
917
+ version = "0.1.9"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
920
+
921
+ [[package]]
922
+ name = "fast-float2"
923
+ version = "0.2.3"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
926
+
927
+ [[package]]
928
+ name = "fast_image_resize"
929
+ version = "5.6.0"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "6b6e793dfd0ee192d1999c655797ecc956c82d1f6d367be20bf6b81d6a1c87ac"
932
+ dependencies = [
933
+ "cfg-if",
934
+ "document-features",
935
+ "num-traits",
936
+ "thiserror 2.0.17",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "fax"
941
+ version = "0.2.6"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab"
944
+ dependencies = [
945
+ "fax_derive",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "fax_derive"
950
+ version = "0.2.0"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d"
953
+ dependencies = [
954
+ "proc-macro2",
955
+ "quote",
956
+ "syn",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "fdeflate"
961
+ version = "0.3.7"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
964
+ dependencies = [
965
+ "simd-adler32",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "find-msvc-tools"
970
+ version = "0.1.6"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
973
+
974
+ [[package]]
975
+ name = "flatbuffers"
976
+ version = "24.12.23"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "4f1baf0dbf96932ec9a3038d57900329c015b0bfb7b63d904f3bc27e2b02a096"
979
+ dependencies = [
980
+ "bitflags 1.3.2",
981
+ "rustc_version",
982
+ ]
983
+
984
+ [[package]]
985
+ name = "flate2"
986
+ version = "1.1.5"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
989
+ dependencies = [
990
+ "crc32fast",
991
+ "miniz_oxide",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "fnv"
996
+ version = "1.0.7"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
999
+
1000
+ [[package]]
1001
+ name = "foldhash"
1002
+ version = "0.1.5"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1005
+
1006
+ [[package]]
1007
+ name = "form_urlencoded"
1008
+ version = "1.2.2"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1011
+ dependencies = [
1012
+ "percent-encoding",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "futures"
1017
+ version = "0.3.31"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
1020
+ dependencies = [
1021
+ "futures-channel",
1022
+ "futures-core",
1023
+ "futures-executor",
1024
+ "futures-io",
1025
+ "futures-sink",
1026
+ "futures-task",
1027
+ "futures-util",
1028
+ ]
1029
+
1030
+ [[package]]
1031
+ name = "futures-channel"
1032
+ version = "0.3.31"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
1035
+ dependencies = [
1036
+ "futures-core",
1037
+ "futures-sink",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "futures-core"
1042
+ version = "0.3.31"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
1045
+
1046
+ [[package]]
1047
+ name = "futures-executor"
1048
+ version = "0.3.31"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
1051
+ dependencies = [
1052
+ "futures-core",
1053
+ "futures-task",
1054
+ "futures-util",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "futures-io"
1059
+ version = "0.3.31"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
1062
+
1063
+ [[package]]
1064
+ name = "futures-macro"
1065
+ version = "0.3.31"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1068
+ dependencies = [
1069
+ "proc-macro2",
1070
+ "quote",
1071
+ "syn",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "futures-sink"
1076
+ version = "0.3.31"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
1079
+
1080
+ [[package]]
1081
+ name = "futures-task"
1082
+ version = "0.3.31"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
1085
+
1086
+ [[package]]
1087
+ name = "futures-util"
1088
+ version = "0.3.31"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
1091
+ dependencies = [
1092
+ "futures-channel",
1093
+ "futures-core",
1094
+ "futures-io",
1095
+ "futures-macro",
1096
+ "futures-sink",
1097
+ "futures-task",
1098
+ "memchr",
1099
+ "pin-project-lite",
1100
+ "pin-utils",
1101
+ "slab",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "generic-array"
1106
+ version = "0.14.7"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1109
+ dependencies = [
1110
+ "typenum",
1111
+ "version_check",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "getrandom"
1116
+ version = "0.2.16"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1119
+ dependencies = [
1120
+ "cfg-if",
1121
+ "js-sys",
1122
+ "libc",
1123
+ "wasi",
1124
+ "wasm-bindgen",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "getrandom"
1129
+ version = "0.3.4"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1132
+ dependencies = [
1133
+ "cfg-if",
1134
+ "js-sys",
1135
+ "libc",
1136
+ "r-efi",
1137
+ "wasip2",
1138
+ "wasm-bindgen",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "gif"
1143
+ version = "0.14.1"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e"
1146
+ dependencies = [
1147
+ "color_quant",
1148
+ "weezl",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "glob"
1153
+ version = "0.3.3"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1156
+
1157
+ [[package]]
1158
+ name = "h2"
1159
+ version = "0.4.12"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
1162
+ dependencies = [
1163
+ "atomic-waker",
1164
+ "bytes",
1165
+ "fnv",
1166
+ "futures-core",
1167
+ "futures-sink",
1168
+ "http",
1169
+ "indexmap",
1170
+ "slab",
1171
+ "tokio",
1172
+ "tokio-util",
1173
+ "tracing",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "half"
1178
+ version = "2.7.1"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1181
+ dependencies = [
1182
+ "cfg-if",
1183
+ "crunchy",
1184
+ "num-traits",
1185
+ "zerocopy",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "hashbrown"
1190
+ version = "0.14.5"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1193
+ dependencies = [
1194
+ "ahash",
1195
+ "allocator-api2",
1196
+ "rayon",
1197
+ "serde",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "hashbrown"
1202
+ version = "0.15.5"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1205
+ dependencies = [
1206
+ "allocator-api2",
1207
+ "equivalent",
1208
+ "foldhash",
1209
+ "rayon",
1210
+ "serde",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "hashbrown"
1215
+ version = "0.16.1"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1218
+
1219
+ [[package]]
1220
+ name = "heck"
1221
+ version = "0.5.0"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1224
+
1225
+ [[package]]
1226
+ name = "hex"
1227
+ version = "0.4.3"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1230
+
1231
+ [[package]]
1232
+ name = "home"
1233
+ version = "0.5.12"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
1236
+ dependencies = [
1237
+ "windows-sys 0.61.2",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "http"
1242
+ version = "1.4.0"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1245
+ dependencies = [
1246
+ "bytes",
1247
+ "itoa",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "http-body"
1252
+ version = "1.0.1"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1255
+ dependencies = [
1256
+ "bytes",
1257
+ "http",
1258
+ ]
1259
+
1260
+ [[package]]
1261
+ name = "http-body-util"
1262
+ version = "0.1.3"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1265
+ dependencies = [
1266
+ "bytes",
1267
+ "futures-core",
1268
+ "http",
1269
+ "http-body",
1270
+ "pin-project-lite",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "httparse"
1275
+ version = "1.10.1"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1278
+
1279
+ [[package]]
1280
+ name = "humantime"
1281
+ version = "2.3.0"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
1284
+
1285
+ [[package]]
1286
+ name = "hyper"
1287
+ version = "1.8.1"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1290
+ dependencies = [
1291
+ "atomic-waker",
1292
+ "bytes",
1293
+ "futures-channel",
1294
+ "futures-core",
1295
+ "h2",
1296
+ "http",
1297
+ "http-body",
1298
+ "httparse",
1299
+ "itoa",
1300
+ "pin-project-lite",
1301
+ "pin-utils",
1302
+ "smallvec",
1303
+ "tokio",
1304
+ "want",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "hyper-rustls"
1309
+ version = "0.27.7"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1312
+ dependencies = [
1313
+ "http",
1314
+ "hyper",
1315
+ "hyper-util",
1316
+ "rustls",
1317
+ "rustls-native-certs",
1318
+ "rustls-pki-types",
1319
+ "tokio",
1320
+ "tokio-rustls",
1321
+ "tower-service",
1322
+ "webpki-roots",
1323
+ ]
1324
+
1325
+ [[package]]
1326
+ name = "hyper-util"
1327
+ version = "0.1.19"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
1330
+ dependencies = [
1331
+ "base64",
1332
+ "bytes",
1333
+ "futures-channel",
1334
+ "futures-core",
1335
+ "futures-util",
1336
+ "http",
1337
+ "http-body",
1338
+ "hyper",
1339
+ "ipnet",
1340
+ "libc",
1341
+ "percent-encoding",
1342
+ "pin-project-lite",
1343
+ "socket2",
1344
+ "tokio",
1345
+ "tower-service",
1346
+ "tracing",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "iana-time-zone"
1351
+ version = "0.1.64"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1354
+ dependencies = [
1355
+ "android_system_properties",
1356
+ "core-foundation-sys",
1357
+ "iana-time-zone-haiku",
1358
+ "js-sys",
1359
+ "log",
1360
+ "wasm-bindgen",
1361
+ "windows-core 0.62.2",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "iana-time-zone-haiku"
1366
+ version = "0.1.2"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1369
+ dependencies = [
1370
+ "cc",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "icu_collections"
1375
+ version = "2.1.1"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1378
+ dependencies = [
1379
+ "displaydoc",
1380
+ "potential_utf",
1381
+ "yoke",
1382
+ "zerofrom",
1383
+ "zerovec",
1384
+ ]
1385
+
1386
+ [[package]]
1387
+ name = "icu_locale_core"
1388
+ version = "2.1.1"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1391
+ dependencies = [
1392
+ "displaydoc",
1393
+ "litemap",
1394
+ "tinystr",
1395
+ "writeable",
1396
+ "zerovec",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "icu_normalizer"
1401
+ version = "2.1.1"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1404
+ dependencies = [
1405
+ "icu_collections",
1406
+ "icu_normalizer_data",
1407
+ "icu_properties",
1408
+ "icu_provider",
1409
+ "smallvec",
1410
+ "zerovec",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "icu_normalizer_data"
1415
+ version = "2.1.1"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1418
+
1419
+ [[package]]
1420
+ name = "icu_properties"
1421
+ version = "2.1.2"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1424
+ dependencies = [
1425
+ "icu_collections",
1426
+ "icu_locale_core",
1427
+ "icu_properties_data",
1428
+ "icu_provider",
1429
+ "zerotrie",
1430
+ "zerovec",
1431
+ ]
1432
+
1433
+ [[package]]
1434
+ name = "icu_properties_data"
1435
+ version = "2.1.2"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1438
+
1439
+ [[package]]
1440
+ name = "icu_provider"
1441
+ version = "2.1.1"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1444
+ dependencies = [
1445
+ "displaydoc",
1446
+ "icu_locale_core",
1447
+ "writeable",
1448
+ "yoke",
1449
+ "zerofrom",
1450
+ "zerotrie",
1451
+ "zerovec",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "idna"
1456
+ version = "1.1.0"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1459
+ dependencies = [
1460
+ "idna_adapter",
1461
+ "smallvec",
1462
+ "utf8_iter",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "idna_adapter"
1467
+ version = "1.2.1"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1470
+ dependencies = [
1471
+ "icu_normalizer",
1472
+ "icu_properties",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "image"
1477
+ version = "0.25.9"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
1480
+ dependencies = [
1481
+ "bytemuck",
1482
+ "byteorder-lite",
1483
+ "color_quant",
1484
+ "exr",
1485
+ "gif",
1486
+ "image-webp",
1487
+ "moxcms",
1488
+ "num-traits",
1489
+ "png",
1490
+ "qoi",
1491
+ "ravif",
1492
+ "rayon",
1493
+ "rgb",
1494
+ "tiff",
1495
+ "zune-core 0.5.0",
1496
+ "zune-jpeg 0.5.8",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "image-webp"
1501
+ version = "0.2.4"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
1504
+ dependencies = [
1505
+ "byteorder-lite",
1506
+ "quick-error",
1507
+ ]
1508
+
1509
+ [[package]]
1510
+ name = "image_hasher"
1511
+ version = "3.0.0"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "7c191dc6138f559a0177b8413eaf2a37784d8e63c697e247aa3740930f1c9364"
1514
+ dependencies = [
1515
+ "base64",
1516
+ "image",
1517
+ "rustdct",
1518
+ "serde",
1519
+ "transpose",
1520
+ ]
1521
+
1522
+ [[package]]
1523
+ name = "imgref"
1524
+ version = "1.12.0"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "e7c5cedc30da3a610cac6b4ba17597bdf7152cf974e8aab3afb3d54455e371c8"
1527
+
1528
+ [[package]]
1529
+ name = "indexmap"
1530
+ version = "2.12.1"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
1533
+ dependencies = [
1534
+ "equivalent",
1535
+ "hashbrown 0.16.1",
1536
+ "serde",
1537
+ "serde_core",
1538
+ ]
1539
+
1540
+ [[package]]
1541
+ name = "indoc"
1542
+ version = "2.0.7"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1545
+ dependencies = [
1546
+ "rustversion",
1547
+ ]
1548
+
1549
+ [[package]]
1550
+ name = "interpolate_name"
1551
+ version = "0.2.4"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
1554
+ dependencies = [
1555
+ "proc-macro2",
1556
+ "quote",
1557
+ "syn",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "ipnet"
1562
+ version = "2.11.0"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1565
+
1566
+ [[package]]
1567
+ name = "iri-string"
1568
+ version = "0.7.10"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1571
+ dependencies = [
1572
+ "memchr",
1573
+ "serde",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "iter-read"
1578
+ version = "1.1.0"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "071ed4cc1afd86650602c7b11aa2e1ce30762a1c27193201cb5cee9c6ebb1294"
1581
+
1582
+ [[package]]
1583
+ name = "itertools"
1584
+ version = "0.14.0"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1587
+ dependencies = [
1588
+ "either",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "itoa"
1593
+ version = "1.0.17"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1596
+
1597
+ [[package]]
1598
+ name = "jobserver"
1599
+ version = "0.1.34"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1602
+ dependencies = [
1603
+ "getrandom 0.3.4",
1604
+ "libc",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "js-sys"
1609
+ version = "0.3.83"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1612
+ dependencies = [
1613
+ "once_cell",
1614
+ "wasm-bindgen",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "lazy_static"
1619
+ version = "1.5.0"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1622
+
1623
+ [[package]]
1624
+ name = "lebe"
1625
+ version = "0.5.3"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
1628
+
1629
+ [[package]]
1630
+ name = "lexical-core"
1631
+ version = "1.0.6"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
1634
+ dependencies = [
1635
+ "lexical-parse-float",
1636
+ "lexical-parse-integer",
1637
+ "lexical-util",
1638
+ "lexical-write-float",
1639
+ "lexical-write-integer",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "lexical-parse-float"
1644
+ version = "1.0.6"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
1647
+ dependencies = [
1648
+ "lexical-parse-integer",
1649
+ "lexical-util",
1650
+ ]
1651
+
1652
+ [[package]]
1653
+ name = "lexical-parse-integer"
1654
+ version = "1.0.6"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
1657
+ dependencies = [
1658
+ "lexical-util",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "lexical-util"
1663
+ version = "1.0.7"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
1666
+
1667
+ [[package]]
1668
+ name = "lexical-write-float"
1669
+ version = "1.0.6"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
1672
+ dependencies = [
1673
+ "lexical-util",
1674
+ "lexical-write-integer",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "lexical-write-integer"
1679
+ version = "1.0.6"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
1682
+ dependencies = [
1683
+ "lexical-util",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "libc"
1688
+ version = "0.2.178"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
1691
+
1692
+ [[package]]
1693
+ name = "libfuzzer-sys"
1694
+ version = "0.4.10"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "5037190e1f70cbeef565bd267599242926f724d3b8a9f510fd7e0b540cfa4404"
1697
+ dependencies = [
1698
+ "arbitrary",
1699
+ "cc",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "libm"
1704
+ version = "0.2.15"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1707
+
1708
+ [[package]]
1709
+ name = "linux-raw-sys"
1710
+ version = "0.11.0"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1713
+
1714
+ [[package]]
1715
+ name = "litemap"
1716
+ version = "0.8.1"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1719
+
1720
+ [[package]]
1721
+ name = "litrs"
1722
+ version = "1.0.0"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1725
+
1726
+ [[package]]
1727
+ name = "lock_api"
1728
+ version = "0.4.14"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1731
+ dependencies = [
1732
+ "scopeguard",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "log"
1737
+ version = "0.4.29"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1740
+
1741
+ [[package]]
1742
+ name = "loop9"
1743
+ version = "0.1.5"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
1746
+ dependencies = [
1747
+ "imgref",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "lru-slab"
1752
+ version = "0.1.2"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1755
+
1756
+ [[package]]
1757
+ name = "lz4"
1758
+ version = "1.28.1"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
1761
+ dependencies = [
1762
+ "lz4-sys",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "lz4-sys"
1767
+ version = "1.11.1+lz4-1.10.0"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
1770
+ dependencies = [
1771
+ "cc",
1772
+ "libc",
1773
+ ]
1774
+
1775
+ [[package]]
1776
+ name = "matrixmultiply"
1777
+ version = "0.3.10"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1780
+ dependencies = [
1781
+ "autocfg",
1782
+ "rawpointer",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "maybe-rayon"
1787
+ version = "0.1.1"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
1790
+ dependencies = [
1791
+ "cfg-if",
1792
+ "rayon",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "md-5"
1797
+ version = "0.10.6"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1800
+ dependencies = [
1801
+ "cfg-if",
1802
+ "digest",
1803
+ ]
1804
+
1805
+ [[package]]
1806
+ name = "memchr"
1807
+ version = "2.7.6"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1810
+
1811
+ [[package]]
1812
+ name = "memmap2"
1813
+ version = "0.9.9"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
1816
+ dependencies = [
1817
+ "libc",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "memoffset"
1822
+ version = "0.9.1"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1825
+ dependencies = [
1826
+ "autocfg",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "miniz_oxide"
1831
+ version = "0.8.9"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1834
+ dependencies = [
1835
+ "adler2",
1836
+ "simd-adler32",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "mio"
1841
+ version = "1.1.1"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1844
+ dependencies = [
1845
+ "libc",
1846
+ "wasi",
1847
+ "windows-sys 0.61.2",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "moxcms"
1852
+ version = "0.7.11"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97"
1855
+ dependencies = [
1856
+ "num-traits",
1857
+ "pxfm",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "ndarray"
1862
+ version = "0.17.1"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "0c7c9125e8f6f10c9da3aad044cc918cf8784fa34de857b1aa68038eb05a50a9"
1865
+ dependencies = [
1866
+ "matrixmultiply",
1867
+ "num-complex",
1868
+ "num-integer",
1869
+ "num-traits",
1870
+ "portable-atomic",
1871
+ "portable-atomic-util",
1872
+ "rawpointer",
1873
+ ]
1874
+
1875
+ [[package]]
1876
+ name = "new_debug_unreachable"
1877
+ version = "1.0.6"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1880
+
1881
+ [[package]]
1882
+ name = "nom"
1883
+ version = "8.0.0"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
1886
+ dependencies = [
1887
+ "memchr",
1888
+ ]
1889
+
1890
+ [[package]]
1891
+ name = "noop_proc_macro"
1892
+ version = "0.3.0"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
1895
+
1896
+ [[package]]
1897
+ name = "now"
1898
+ version = "0.1.3"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0"
1901
+ dependencies = [
1902
+ "chrono",
1903
+ ]
1904
+
1905
+ [[package]]
1906
+ name = "ntapi"
1907
+ version = "0.4.2"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "c70f219e21142367c70c0b30c6a9e3a14d55b4d12a204d897fbec83a0363f081"
1910
+ dependencies = [
1911
+ "winapi",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "num"
1916
+ version = "0.4.3"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1919
+ dependencies = [
1920
+ "num-bigint",
1921
+ "num-complex",
1922
+ "num-integer",
1923
+ "num-iter",
1924
+ "num-rational",
1925
+ "num-traits",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "num-bigint"
1930
+ version = "0.4.6"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1933
+ dependencies = [
1934
+ "num-integer",
1935
+ "num-traits",
1936
+ ]
1937
+
1938
+ [[package]]
1939
+ name = "num-complex"
1940
+ version = "0.4.6"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1943
+ dependencies = [
1944
+ "num-traits",
1945
+ ]
1946
+
1947
+ [[package]]
1948
+ name = "num-derive"
1949
+ version = "0.4.2"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
1952
+ dependencies = [
1953
+ "proc-macro2",
1954
+ "quote",
1955
+ "syn",
1956
+ ]
1957
+
1958
+ [[package]]
1959
+ name = "num-integer"
1960
+ version = "0.1.46"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1963
+ dependencies = [
1964
+ "num-traits",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "num-iter"
1969
+ version = "0.1.45"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1972
+ dependencies = [
1973
+ "autocfg",
1974
+ "num-integer",
1975
+ "num-traits",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "num-rational"
1980
+ version = "0.4.2"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1983
+ dependencies = [
1984
+ "num-bigint",
1985
+ "num-integer",
1986
+ "num-traits",
1987
+ ]
1988
+
1989
+ [[package]]
1990
+ name = "num-traits"
1991
+ version = "0.2.19"
1992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1993
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1994
+ dependencies = [
1995
+ "autocfg",
1996
+ "libm",
1997
+ ]
1998
+
1999
+ [[package]]
2000
+ name = "object"
2001
+ version = "0.32.2"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
2004
+ dependencies = [
2005
+ "memchr",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "object_store"
2010
+ version = "0.12.4"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "4c1be0c6c22ec0817cdc77d3842f721a17fd30ab6965001415b5402a74e6b740"
2013
+ dependencies = [
2014
+ "async-trait",
2015
+ "base64",
2016
+ "bytes",
2017
+ "chrono",
2018
+ "form_urlencoded",
2019
+ "futures",
2020
+ "http",
2021
+ "http-body-util",
2022
+ "httparse",
2023
+ "humantime",
2024
+ "hyper",
2025
+ "itertools",
2026
+ "md-5",
2027
+ "parking_lot",
2028
+ "percent-encoding",
2029
+ "quick-xml",
2030
+ "rand 0.9.2",
2031
+ "reqwest",
2032
+ "ring",
2033
+ "rustls-pemfile",
2034
+ "serde",
2035
+ "serde_json",
2036
+ "serde_urlencoded",
2037
+ "thiserror 2.0.17",
2038
+ "tokio",
2039
+ "tracing",
2040
+ "url",
2041
+ "walkdir",
2042
+ "wasm-bindgen-futures",
2043
+ "web-time",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "once_cell"
2048
+ version = "1.21.3"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2051
+
2052
+ [[package]]
2053
+ name = "openssl-probe"
2054
+ version = "0.2.0"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "9f50d9b3dabb09ecd771ad0aa242ca6894994c130308ca3d7684634df8037391"
2057
+
2058
+ [[package]]
2059
+ name = "parking_lot"
2060
+ version = "0.12.5"
2061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2062
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2063
+ dependencies = [
2064
+ "lock_api",
2065
+ "parking_lot_core",
2066
+ ]
2067
+
2068
+ [[package]]
2069
+ name = "parking_lot_core"
2070
+ version = "0.9.12"
2071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2072
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2073
+ dependencies = [
2074
+ "cfg-if",
2075
+ "libc",
2076
+ "redox_syscall",
2077
+ "smallvec",
2078
+ "windows-link",
2079
+ ]
2080
+
2081
+ [[package]]
2082
+ name = "paste"
2083
+ version = "1.0.15"
2084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2085
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2086
+
2087
+ [[package]]
2088
+ name = "pastey"
2089
+ version = "0.1.1"
2090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2091
+ checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
2092
+
2093
+ [[package]]
2094
+ name = "percent-encoding"
2095
+ version = "2.3.2"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2098
+
2099
+ [[package]]
2100
+ name = "phf"
2101
+ version = "0.12.1"
2102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2103
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
2104
+ dependencies = [
2105
+ "phf_shared",
2106
+ ]
2107
+
2108
+ [[package]]
2109
+ name = "phf_shared"
2110
+ version = "0.12.1"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
2113
+ dependencies = [
2114
+ "siphasher",
2115
+ ]
2116
+
2117
+ [[package]]
2118
+ name = "pin-project-lite"
2119
+ version = "0.2.16"
2120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2121
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2122
+
2123
+ [[package]]
2124
+ name = "pin-utils"
2125
+ version = "0.1.0"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2128
+
2129
+ [[package]]
2130
+ name = "pkg-config"
2131
+ version = "0.3.32"
2132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2134
+
2135
+ [[package]]
2136
+ name = "planus"
2137
+ version = "0.3.1"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "fc1691dd09e82f428ce8d6310bd6d5da2557c82ff17694d2a32cad7242aea89f"
2140
+ dependencies = [
2141
+ "array-init-cursor",
2142
+ ]
2143
+
2144
+ [[package]]
2145
+ name = "png"
2146
+ version = "0.18.0"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "97baced388464909d42d89643fe4361939af9b7ce7a31ee32a168f832a70f2a0"
2149
+ dependencies = [
2150
+ "bitflags 2.10.0",
2151
+ "crc32fast",
2152
+ "fdeflate",
2153
+ "flate2",
2154
+ "miniz_oxide",
2155
+ ]
2156
+
2157
+ [[package]]
2158
+ name = "polars"
2159
+ version = "0.46.0"
2160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2161
+ checksum = "72571dde488ecccbe799798bf99ab7308ebdb7cf5d95bcc498dbd5a132f0da4d"
2162
+ dependencies = [
2163
+ "getrandom 0.2.16",
2164
+ "polars-arrow",
2165
+ "polars-core",
2166
+ "polars-error",
2167
+ "polars-io",
2168
+ "polars-lazy",
2169
+ "polars-ops",
2170
+ "polars-parquet",
2171
+ "polars-plan",
2172
+ "polars-sql",
2173
+ "polars-time",
2174
+ "polars-utils",
2175
+ "version_check",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "polars-arrow"
2180
+ version = "0.46.0"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "6611c758d52e799761cc25900666b71552e6c929d88052811bc9daad4b3321a8"
2183
+ dependencies = [
2184
+ "ahash",
2185
+ "atoi_simd",
2186
+ "bytemuck",
2187
+ "chrono",
2188
+ "chrono-tz",
2189
+ "dyn-clone",
2190
+ "either",
2191
+ "ethnum",
2192
+ "getrandom 0.2.16",
2193
+ "hashbrown 0.15.5",
2194
+ "itoa",
2195
+ "lz4",
2196
+ "num-traits",
2197
+ "parking_lot",
2198
+ "polars-arrow-format",
2199
+ "polars-error",
2200
+ "polars-schema",
2201
+ "polars-utils",
2202
+ "simdutf8",
2203
+ "streaming-iterator",
2204
+ "strength_reduce",
2205
+ "strum_macros",
2206
+ "version_check",
2207
+ "zstd",
2208
+ ]
2209
+
2210
+ [[package]]
2211
+ name = "polars-arrow-format"
2212
+ version = "0.1.0"
2213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2214
+ checksum = "19b0ef2474af9396b19025b189d96e992311e6a47f90c53cd998b36c4c64b84c"
2215
+ dependencies = [
2216
+ "planus",
2217
+ "serde",
2218
+ ]
2219
+
2220
+ [[package]]
2221
+ name = "polars-compute"
2222
+ version = "0.46.0"
2223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2224
+ checksum = "332f2547dbb27599a8ffe68e56159f5996ba03d1dad0382ccb62c109ceacdeb6"
2225
+ dependencies = [
2226
+ "atoi_simd",
2227
+ "bytemuck",
2228
+ "chrono",
2229
+ "either",
2230
+ "fast-float2",
2231
+ "itoa",
2232
+ "num-traits",
2233
+ "polars-arrow",
2234
+ "polars-error",
2235
+ "polars-utils",
2236
+ "ryu",
2237
+ "strength_reduce",
2238
+ "version_check",
2239
+ ]
2240
+
2241
+ [[package]]
2242
+ name = "polars-core"
2243
+ version = "0.46.0"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "796d06eae7e6e74ed28ea54a8fccc584ebac84e6cf0e1e9ba41ffc807b169a01"
2246
+ dependencies = [
2247
+ "ahash",
2248
+ "bitflags 2.10.0",
2249
+ "bytemuck",
2250
+ "chrono",
2251
+ "chrono-tz",
2252
+ "comfy-table",
2253
+ "either",
2254
+ "hashbrown 0.14.5",
2255
+ "hashbrown 0.15.5",
2256
+ "indexmap",
2257
+ "itoa",
2258
+ "num-traits",
2259
+ "once_cell",
2260
+ "polars-arrow",
2261
+ "polars-compute",
2262
+ "polars-error",
2263
+ "polars-row",
2264
+ "polars-schema",
2265
+ "polars-utils",
2266
+ "rand 0.8.5",
2267
+ "rand_distr",
2268
+ "rayon",
2269
+ "regex",
2270
+ "strum_macros",
2271
+ "thiserror 2.0.17",
2272
+ "version_check",
2273
+ "xxhash-rust",
2274
+ ]
2275
+
2276
+ [[package]]
2277
+ name = "polars-cv"
2278
+ version = "0.5.0"
2279
+ dependencies = [
2280
+ "image",
2281
+ "object_store",
2282
+ "polars",
2283
+ "polars-arrow",
2284
+ "pyo3",
2285
+ "pyo3-polars",
2286
+ "reqwest",
2287
+ "serde",
2288
+ "serde_json",
2289
+ "thiserror 1.0.69",
2290
+ "tokio",
2291
+ "url",
2292
+ "view-buffer",
2293
+ ]
2294
+
2295
+ [[package]]
2296
+ name = "polars-error"
2297
+ version = "0.46.0"
2298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2299
+ checksum = "19d6529cae0d1db5ed690e47de41fac9b35ae0c26d476830c2079f130887b847"
2300
+ dependencies = [
2301
+ "polars-arrow-format",
2302
+ "regex",
2303
+ "simdutf8",
2304
+ "thiserror 2.0.17",
2305
+ ]
2306
+
2307
+ [[package]]
2308
+ name = "polars-expr"
2309
+ version = "0.46.0"
2310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2311
+ checksum = "c8e639991a8ad4fb12880ab44bcc3cf44a5703df003142334d9caf86d77d77e7"
2312
+ dependencies = [
2313
+ "ahash",
2314
+ "bitflags 2.10.0",
2315
+ "hashbrown 0.15.5",
2316
+ "num-traits",
2317
+ "once_cell",
2318
+ "polars-arrow",
2319
+ "polars-compute",
2320
+ "polars-core",
2321
+ "polars-io",
2322
+ "polars-ops",
2323
+ "polars-plan",
2324
+ "polars-row",
2325
+ "polars-time",
2326
+ "polars-utils",
2327
+ "rand 0.8.5",
2328
+ "rayon",
2329
+ ]
2330
+
2331
+ [[package]]
2332
+ name = "polars-ffi"
2333
+ version = "0.46.0"
2334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2335
+ checksum = "a657a2cd278a9f9b40d5eedc5816d5fd0c65619ed2f53f0ff5ff4ef20916d3a8"
2336
+ dependencies = [
2337
+ "polars-arrow",
2338
+ "polars-core",
2339
+ ]
2340
+
2341
+ [[package]]
2342
+ name = "polars-io"
2343
+ version = "0.46.0"
2344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2345
+ checksum = "719a77e94480f6be090512da196e378cbcbeb3584c6fe1134c600aee906e38ab"
2346
+ dependencies = [
2347
+ "ahash",
2348
+ "async-trait",
2349
+ "atoi_simd",
2350
+ "bytes",
2351
+ "chrono",
2352
+ "fast-float2",
2353
+ "futures",
2354
+ "glob",
2355
+ "hashbrown 0.15.5",
2356
+ "home",
2357
+ "itoa",
2358
+ "memchr",
2359
+ "memmap2",
2360
+ "num-traits",
2361
+ "once_cell",
2362
+ "percent-encoding",
2363
+ "polars-arrow",
2364
+ "polars-core",
2365
+ "polars-error",
2366
+ "polars-parquet",
2367
+ "polars-schema",
2368
+ "polars-time",
2369
+ "polars-utils",
2370
+ "rayon",
2371
+ "regex",
2372
+ "ryu",
2373
+ "simdutf8",
2374
+ "tokio",
2375
+ "tokio-util",
2376
+ ]
2377
+
2378
+ [[package]]
2379
+ name = "polars-lazy"
2380
+ version = "0.46.0"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "a0a731a672dfc8ac38c1f73c9a4b2ae38d2fc8ac363bfb64c5f3a3e072ffc5ad"
2383
+ dependencies = [
2384
+ "ahash",
2385
+ "bitflags 2.10.0",
2386
+ "chrono",
2387
+ "memchr",
2388
+ "once_cell",
2389
+ "polars-arrow",
2390
+ "polars-core",
2391
+ "polars-expr",
2392
+ "polars-io",
2393
+ "polars-mem-engine",
2394
+ "polars-ops",
2395
+ "polars-pipe",
2396
+ "polars-plan",
2397
+ "polars-stream",
2398
+ "polars-time",
2399
+ "polars-utils",
2400
+ "rayon",
2401
+ "version_check",
2402
+ ]
2403
+
2404
+ [[package]]
2405
+ name = "polars-mem-engine"
2406
+ version = "0.46.0"
2407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2408
+ checksum = "33442189bcbf2e2559aa7914db3835429030a13f4f18e43af5fba9d1b018cf12"
2409
+ dependencies = [
2410
+ "memmap2",
2411
+ "polars-arrow",
2412
+ "polars-core",
2413
+ "polars-error",
2414
+ "polars-expr",
2415
+ "polars-io",
2416
+ "polars-ops",
2417
+ "polars-plan",
2418
+ "polars-time",
2419
+ "polars-utils",
2420
+ "rayon",
2421
+ ]
2422
+
2423
+ [[package]]
2424
+ name = "polars-ops"
2425
+ version = "0.46.0"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "cbb83218b0c216104f0076cd1a005128be078f958125f3d59b094ee73d78c18e"
2428
+ dependencies = [
2429
+ "ahash",
2430
+ "argminmax",
2431
+ "base64",
2432
+ "bytemuck",
2433
+ "chrono",
2434
+ "chrono-tz",
2435
+ "either",
2436
+ "hashbrown 0.15.5",
2437
+ "hex",
2438
+ "indexmap",
2439
+ "memchr",
2440
+ "num-traits",
2441
+ "once_cell",
2442
+ "polars-arrow",
2443
+ "polars-compute",
2444
+ "polars-core",
2445
+ "polars-error",
2446
+ "polars-schema",
2447
+ "polars-utils",
2448
+ "rayon",
2449
+ "regex",
2450
+ "regex-syntax",
2451
+ "strum_macros",
2452
+ "unicode-normalization",
2453
+ "unicode-reverse",
2454
+ "version_check",
2455
+ ]
2456
+
2457
+ [[package]]
2458
+ name = "polars-parquet"
2459
+ version = "0.46.0"
2460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2461
+ checksum = "5c60ee85535590a38db6c703a21be4cb25342e40f573f070d1e16f9d84a53ac7"
2462
+ dependencies = [
2463
+ "ahash",
2464
+ "async-stream",
2465
+ "base64",
2466
+ "bytemuck",
2467
+ "ethnum",
2468
+ "futures",
2469
+ "hashbrown 0.15.5",
2470
+ "num-traits",
2471
+ "polars-arrow",
2472
+ "polars-compute",
2473
+ "polars-error",
2474
+ "polars-parquet-format",
2475
+ "polars-utils",
2476
+ "simdutf8",
2477
+ "streaming-decompression",
2478
+ ]
2479
+
2480
+ [[package]]
2481
+ name = "polars-parquet-format"
2482
+ version = "0.1.0"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "c025243dcfe8dbc57e94d9f82eb3bef10b565ab180d5b99bed87fd8aea319ce1"
2485
+ dependencies = [
2486
+ "async-trait",
2487
+ "futures",
2488
+ ]
2489
+
2490
+ [[package]]
2491
+ name = "polars-pipe"
2492
+ version = "0.46.0"
2493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2494
+ checksum = "42d238fb76698f56e51ddfa89b135e4eda56a4767c6e8859eed0ab78386fcd52"
2495
+ dependencies = [
2496
+ "crossbeam-channel",
2497
+ "crossbeam-queue",
2498
+ "enum_dispatch",
2499
+ "hashbrown 0.15.5",
2500
+ "num-traits",
2501
+ "once_cell",
2502
+ "polars-arrow",
2503
+ "polars-compute",
2504
+ "polars-core",
2505
+ "polars-expr",
2506
+ "polars-io",
2507
+ "polars-ops",
2508
+ "polars-plan",
2509
+ "polars-row",
2510
+ "polars-utils",
2511
+ "rayon",
2512
+ "uuid",
2513
+ "version_check",
2514
+ ]
2515
+
2516
+ [[package]]
2517
+ name = "polars-plan"
2518
+ version = "0.46.0"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "4f03533a93aa66127fcb909a87153a3c7cfee6f0ae59f497e73d7736208da54c"
2521
+ dependencies = [
2522
+ "ahash",
2523
+ "bitflags 2.10.0",
2524
+ "bytemuck",
2525
+ "bytes",
2526
+ "chrono",
2527
+ "chrono-tz",
2528
+ "either",
2529
+ "hashbrown 0.15.5",
2530
+ "memmap2",
2531
+ "num-traits",
2532
+ "once_cell",
2533
+ "percent-encoding",
2534
+ "polars-arrow",
2535
+ "polars-compute",
2536
+ "polars-core",
2537
+ "polars-io",
2538
+ "polars-ops",
2539
+ "polars-time",
2540
+ "polars-utils",
2541
+ "rayon",
2542
+ "recursive",
2543
+ "regex",
2544
+ "strum_macros",
2545
+ "version_check",
2546
+ ]
2547
+
2548
+ [[package]]
2549
+ name = "polars-row"
2550
+ version = "0.46.0"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "6bf47f7409f8e75328d7d034be390842924eb276716d0458607be0bddb8cc839"
2553
+ dependencies = [
2554
+ "bitflags 2.10.0",
2555
+ "bytemuck",
2556
+ "polars-arrow",
2557
+ "polars-compute",
2558
+ "polars-error",
2559
+ "polars-utils",
2560
+ ]
2561
+
2562
+ [[package]]
2563
+ name = "polars-schema"
2564
+ version = "0.46.0"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "416621ae82b84466cf4ff36838a9b0aeb4a67e76bd3065edc8c9cb7da19b1bc7"
2567
+ dependencies = [
2568
+ "indexmap",
2569
+ "polars-error",
2570
+ "polars-utils",
2571
+ "version_check",
2572
+ ]
2573
+
2574
+ [[package]]
2575
+ name = "polars-sql"
2576
+ version = "0.46.0"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "edaab553b90aa4d6743bb538978e1982368acb58a94408d7dd3299cad49c7083"
2579
+ dependencies = [
2580
+ "hex",
2581
+ "polars-core",
2582
+ "polars-error",
2583
+ "polars-lazy",
2584
+ "polars-ops",
2585
+ "polars-plan",
2586
+ "polars-time",
2587
+ "polars-utils",
2588
+ "rand 0.8.5",
2589
+ "regex",
2590
+ "serde",
2591
+ "sqlparser",
2592
+ ]
2593
+
2594
+ [[package]]
2595
+ name = "polars-stream"
2596
+ version = "0.46.0"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "498997b656c779610c1496b3d96a59fe569ef22a5b81ccfe5325cb3df8dff2fd"
2599
+ dependencies = [
2600
+ "atomic-waker",
2601
+ "crossbeam-deque",
2602
+ "crossbeam-utils",
2603
+ "futures",
2604
+ "memmap2",
2605
+ "parking_lot",
2606
+ "pin-project-lite",
2607
+ "polars-core",
2608
+ "polars-error",
2609
+ "polars-expr",
2610
+ "polars-io",
2611
+ "polars-mem-engine",
2612
+ "polars-ops",
2613
+ "polars-parquet",
2614
+ "polars-plan",
2615
+ "polars-utils",
2616
+ "rand 0.8.5",
2617
+ "rayon",
2618
+ "recursive",
2619
+ "slotmap",
2620
+ "tokio",
2621
+ "version_check",
2622
+ ]
2623
+
2624
+ [[package]]
2625
+ name = "polars-time"
2626
+ version = "0.46.0"
2627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2628
+ checksum = "d192efbdab516d28b3fab1709a969e3385bd5cda050b7c9aa9e2502a01fda879"
2629
+ dependencies = [
2630
+ "atoi_simd",
2631
+ "bytemuck",
2632
+ "chrono",
2633
+ "chrono-tz",
2634
+ "now",
2635
+ "num-traits",
2636
+ "once_cell",
2637
+ "polars-arrow",
2638
+ "polars-compute",
2639
+ "polars-core",
2640
+ "polars-error",
2641
+ "polars-ops",
2642
+ "polars-utils",
2643
+ "rayon",
2644
+ "regex",
2645
+ "strum_macros",
2646
+ ]
2647
+
2648
+ [[package]]
2649
+ name = "polars-utils"
2650
+ version = "0.46.0"
2651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2652
+ checksum = "a8f6c8166a4a7fbc15b87c81645ed9e1f0651ff2e8c96cafc40ac5bf43441a10"
2653
+ dependencies = [
2654
+ "ahash",
2655
+ "bytemuck",
2656
+ "bytes",
2657
+ "compact_str",
2658
+ "hashbrown 0.15.5",
2659
+ "indexmap",
2660
+ "libc",
2661
+ "memmap2",
2662
+ "num-traits",
2663
+ "once_cell",
2664
+ "polars-error",
2665
+ "rand 0.8.5",
2666
+ "raw-cpuid",
2667
+ "rayon",
2668
+ "stacker",
2669
+ "sysinfo",
2670
+ "version_check",
2671
+ ]
2672
+
2673
+ [[package]]
2674
+ name = "portable-atomic"
2675
+ version = "1.12.0"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "f59e70c4aef1e55797c2e8fd94a4f2a973fc972cfde0e0b05f683667b0cd39dd"
2678
+
2679
+ [[package]]
2680
+ name = "portable-atomic-util"
2681
+ version = "0.2.4"
2682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2683
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
2684
+ dependencies = [
2685
+ "portable-atomic",
2686
+ ]
2687
+
2688
+ [[package]]
2689
+ name = "potential_utf"
2690
+ version = "0.1.4"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2693
+ dependencies = [
2694
+ "zerovec",
2695
+ ]
2696
+
2697
+ [[package]]
2698
+ name = "ppv-lite86"
2699
+ version = "0.2.21"
2700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2701
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2702
+ dependencies = [
2703
+ "zerocopy",
2704
+ ]
2705
+
2706
+ [[package]]
2707
+ name = "primal-check"
2708
+ version = "0.3.4"
2709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2710
+ checksum = "dc0d895b311e3af9902528fbb8f928688abbd95872819320517cc24ca6b2bd08"
2711
+ dependencies = [
2712
+ "num-integer",
2713
+ ]
2714
+
2715
+ [[package]]
2716
+ name = "proc-macro2"
2717
+ version = "1.0.103"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
2720
+ dependencies = [
2721
+ "unicode-ident",
2722
+ ]
2723
+
2724
+ [[package]]
2725
+ name = "profiling"
2726
+ version = "1.0.17"
2727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2728
+ checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
2729
+ dependencies = [
2730
+ "profiling-procmacros",
2731
+ ]
2732
+
2733
+ [[package]]
2734
+ name = "profiling-procmacros"
2735
+ version = "1.0.17"
2736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2737
+ checksum = "52717f9a02b6965224f95ca2a81e2e0c5c43baacd28ca057577988930b6c3d5b"
2738
+ dependencies = [
2739
+ "quote",
2740
+ "syn",
2741
+ ]
2742
+
2743
+ [[package]]
2744
+ name = "psm"
2745
+ version = "0.1.28"
2746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2747
+ checksum = "d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01"
2748
+ dependencies = [
2749
+ "ar_archive_writer",
2750
+ "cc",
2751
+ ]
2752
+
2753
+ [[package]]
2754
+ name = "pxfm"
2755
+ version = "0.1.27"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8"
2758
+ dependencies = [
2759
+ "num-traits",
2760
+ ]
2761
+
2762
+ [[package]]
2763
+ name = "pyo3"
2764
+ version = "0.23.5"
2765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2766
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
2767
+ dependencies = [
2768
+ "cfg-if",
2769
+ "indoc",
2770
+ "libc",
2771
+ "memoffset",
2772
+ "once_cell",
2773
+ "portable-atomic",
2774
+ "pyo3-build-config",
2775
+ "pyo3-ffi",
2776
+ "pyo3-macros",
2777
+ "unindent",
2778
+ ]
2779
+
2780
+ [[package]]
2781
+ name = "pyo3-build-config"
2782
+ version = "0.23.5"
2783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2784
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
2785
+ dependencies = [
2786
+ "once_cell",
2787
+ "target-lexicon",
2788
+ ]
2789
+
2790
+ [[package]]
2791
+ name = "pyo3-ffi"
2792
+ version = "0.23.5"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
2795
+ dependencies = [
2796
+ "libc",
2797
+ "pyo3-build-config",
2798
+ ]
2799
+
2800
+ [[package]]
2801
+ name = "pyo3-macros"
2802
+ version = "0.23.5"
2803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2804
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
2805
+ dependencies = [
2806
+ "proc-macro2",
2807
+ "pyo3-macros-backend",
2808
+ "quote",
2809
+ "syn",
2810
+ ]
2811
+
2812
+ [[package]]
2813
+ name = "pyo3-macros-backend"
2814
+ version = "0.23.5"
2815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2816
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
2817
+ dependencies = [
2818
+ "heck",
2819
+ "proc-macro2",
2820
+ "pyo3-build-config",
2821
+ "quote",
2822
+ "syn",
2823
+ ]
2824
+
2825
+ [[package]]
2826
+ name = "pyo3-polars"
2827
+ version = "0.20.0"
2828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2829
+ checksum = "8e7db078e647fbd863d7605d13ef1553c06dd84ba9559f76512d3ca63d5fff20"
2830
+ dependencies = [
2831
+ "libc",
2832
+ "once_cell",
2833
+ "polars",
2834
+ "polars-arrow",
2835
+ "polars-core",
2836
+ "polars-ffi",
2837
+ "polars-plan",
2838
+ "pyo3",
2839
+ "pyo3-polars-derive",
2840
+ "serde",
2841
+ "serde-pickle",
2842
+ "thiserror 1.0.69",
2843
+ ]
2844
+
2845
+ [[package]]
2846
+ name = "pyo3-polars-derive"
2847
+ version = "0.14.0"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "6a247f5b03316e317f42e9a3fec4ff5b26cfa2b05fc2d9e821b7a182c82ef08f"
2850
+ dependencies = [
2851
+ "polars-arrow",
2852
+ "polars-core",
2853
+ "polars-ffi",
2854
+ "polars-plan",
2855
+ "proc-macro2",
2856
+ "quote",
2857
+ "syn",
2858
+ ]
2859
+
2860
+ [[package]]
2861
+ name = "qoi"
2862
+ version = "0.4.1"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
2865
+ dependencies = [
2866
+ "bytemuck",
2867
+ ]
2868
+
2869
+ [[package]]
2870
+ name = "quick-error"
2871
+ version = "2.0.1"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2874
+
2875
+ [[package]]
2876
+ name = "quick-xml"
2877
+ version = "0.38.4"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
2880
+ dependencies = [
2881
+ "memchr",
2882
+ "serde",
2883
+ ]
2884
+
2885
+ [[package]]
2886
+ name = "quinn"
2887
+ version = "0.11.9"
2888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2889
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2890
+ dependencies = [
2891
+ "bytes",
2892
+ "cfg_aliases",
2893
+ "pin-project-lite",
2894
+ "quinn-proto",
2895
+ "quinn-udp",
2896
+ "rustc-hash",
2897
+ "rustls",
2898
+ "socket2",
2899
+ "thiserror 2.0.17",
2900
+ "tokio",
2901
+ "tracing",
2902
+ "web-time",
2903
+ ]
2904
+
2905
+ [[package]]
2906
+ name = "quinn-proto"
2907
+ version = "0.11.13"
2908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2909
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2910
+ dependencies = [
2911
+ "bytes",
2912
+ "getrandom 0.3.4",
2913
+ "lru-slab",
2914
+ "rand 0.9.2",
2915
+ "ring",
2916
+ "rustc-hash",
2917
+ "rustls",
2918
+ "rustls-pki-types",
2919
+ "slab",
2920
+ "thiserror 2.0.17",
2921
+ "tinyvec",
2922
+ "tracing",
2923
+ "web-time",
2924
+ ]
2925
+
2926
+ [[package]]
2927
+ name = "quinn-udp"
2928
+ version = "0.5.14"
2929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2930
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2931
+ dependencies = [
2932
+ "cfg_aliases",
2933
+ "libc",
2934
+ "once_cell",
2935
+ "socket2",
2936
+ "tracing",
2937
+ "windows-sys 0.60.2",
2938
+ ]
2939
+
2940
+ [[package]]
2941
+ name = "quote"
2942
+ version = "1.0.42"
2943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2944
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
2945
+ dependencies = [
2946
+ "proc-macro2",
2947
+ ]
2948
+
2949
+ [[package]]
2950
+ name = "r-efi"
2951
+ version = "5.3.0"
2952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2953
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2954
+
2955
+ [[package]]
2956
+ name = "rand"
2957
+ version = "0.8.5"
2958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2959
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2960
+ dependencies = [
2961
+ "libc",
2962
+ "rand_chacha 0.3.1",
2963
+ "rand_core 0.6.4",
2964
+ ]
2965
+
2966
+ [[package]]
2967
+ name = "rand"
2968
+ version = "0.9.2"
2969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2970
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2971
+ dependencies = [
2972
+ "rand_chacha 0.9.0",
2973
+ "rand_core 0.9.3",
2974
+ ]
2975
+
2976
+ [[package]]
2977
+ name = "rand_chacha"
2978
+ version = "0.3.1"
2979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2980
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2981
+ dependencies = [
2982
+ "ppv-lite86",
2983
+ "rand_core 0.6.4",
2984
+ ]
2985
+
2986
+ [[package]]
2987
+ name = "rand_chacha"
2988
+ version = "0.9.0"
2989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2990
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2991
+ dependencies = [
2992
+ "ppv-lite86",
2993
+ "rand_core 0.9.3",
2994
+ ]
2995
+
2996
+ [[package]]
2997
+ name = "rand_core"
2998
+ version = "0.6.4"
2999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3000
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
3001
+ dependencies = [
3002
+ "getrandom 0.2.16",
3003
+ ]
3004
+
3005
+ [[package]]
3006
+ name = "rand_core"
3007
+ version = "0.9.3"
3008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3009
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
3010
+ dependencies = [
3011
+ "getrandom 0.3.4",
3012
+ ]
3013
+
3014
+ [[package]]
3015
+ name = "rand_distr"
3016
+ version = "0.4.3"
3017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3018
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
3019
+ dependencies = [
3020
+ "num-traits",
3021
+ "rand 0.8.5",
3022
+ ]
3023
+
3024
+ [[package]]
3025
+ name = "rav1e"
3026
+ version = "0.8.1"
3027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3028
+ checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b"
3029
+ dependencies = [
3030
+ "aligned-vec",
3031
+ "arbitrary",
3032
+ "arg_enum_proc_macro",
3033
+ "arrayvec",
3034
+ "av-scenechange",
3035
+ "av1-grain",
3036
+ "bitstream-io",
3037
+ "built",
3038
+ "cfg-if",
3039
+ "interpolate_name",
3040
+ "itertools",
3041
+ "libc",
3042
+ "libfuzzer-sys",
3043
+ "log",
3044
+ "maybe-rayon",
3045
+ "new_debug_unreachable",
3046
+ "noop_proc_macro",
3047
+ "num-derive",
3048
+ "num-traits",
3049
+ "paste",
3050
+ "profiling",
3051
+ "rand 0.9.2",
3052
+ "rand_chacha 0.9.0",
3053
+ "simd_helpers",
3054
+ "thiserror 2.0.17",
3055
+ "v_frame",
3056
+ "wasm-bindgen",
3057
+ ]
3058
+
3059
+ [[package]]
3060
+ name = "ravif"
3061
+ version = "0.12.0"
3062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3063
+ checksum = "ef69c1990ceef18a116855938e74793a5f7496ee907562bd0857b6ac734ab285"
3064
+ dependencies = [
3065
+ "avif-serialize",
3066
+ "imgref",
3067
+ "loop9",
3068
+ "quick-error",
3069
+ "rav1e",
3070
+ "rayon",
3071
+ "rgb",
3072
+ ]
3073
+
3074
+ [[package]]
3075
+ name = "raw-cpuid"
3076
+ version = "11.6.0"
3077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3078
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
3079
+ dependencies = [
3080
+ "bitflags 2.10.0",
3081
+ ]
3082
+
3083
+ [[package]]
3084
+ name = "rawpointer"
3085
+ version = "0.2.1"
3086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3087
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
3088
+
3089
+ [[package]]
3090
+ name = "rayon"
3091
+ version = "1.11.0"
3092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3093
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
3094
+ dependencies = [
3095
+ "either",
3096
+ "rayon-core",
3097
+ ]
3098
+
3099
+ [[package]]
3100
+ name = "rayon-core"
3101
+ version = "1.13.0"
3102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3103
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
3104
+ dependencies = [
3105
+ "crossbeam-deque",
3106
+ "crossbeam-utils",
3107
+ ]
3108
+
3109
+ [[package]]
3110
+ name = "recursive"
3111
+ version = "0.1.1"
3112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3113
+ checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e"
3114
+ dependencies = [
3115
+ "recursive-proc-macro-impl",
3116
+ "stacker",
3117
+ ]
3118
+
3119
+ [[package]]
3120
+ name = "recursive-proc-macro-impl"
3121
+ version = "0.1.1"
3122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3123
+ checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b"
3124
+ dependencies = [
3125
+ "quote",
3126
+ "syn",
3127
+ ]
3128
+
3129
+ [[package]]
3130
+ name = "redox_syscall"
3131
+ version = "0.5.18"
3132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3133
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
3134
+ dependencies = [
3135
+ "bitflags 2.10.0",
3136
+ ]
3137
+
3138
+ [[package]]
3139
+ name = "regex"
3140
+ version = "1.12.2"
3141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3142
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
3143
+ dependencies = [
3144
+ "aho-corasick",
3145
+ "memchr",
3146
+ "regex-automata",
3147
+ "regex-syntax",
3148
+ ]
3149
+
3150
+ [[package]]
3151
+ name = "regex-automata"
3152
+ version = "0.4.13"
3153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3154
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
3155
+ dependencies = [
3156
+ "aho-corasick",
3157
+ "memchr",
3158
+ "regex-syntax",
3159
+ ]
3160
+
3161
+ [[package]]
3162
+ name = "regex-syntax"
3163
+ version = "0.8.8"
3164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3165
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
3166
+
3167
+ [[package]]
3168
+ name = "reqwest"
3169
+ version = "0.12.28"
3170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3171
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
3172
+ dependencies = [
3173
+ "base64",
3174
+ "bytes",
3175
+ "futures-core",
3176
+ "futures-util",
3177
+ "h2",
3178
+ "http",
3179
+ "http-body",
3180
+ "http-body-util",
3181
+ "hyper",
3182
+ "hyper-rustls",
3183
+ "hyper-util",
3184
+ "js-sys",
3185
+ "log",
3186
+ "percent-encoding",
3187
+ "pin-project-lite",
3188
+ "quinn",
3189
+ "rustls",
3190
+ "rustls-native-certs",
3191
+ "rustls-pki-types",
3192
+ "serde",
3193
+ "serde_json",
3194
+ "serde_urlencoded",
3195
+ "sync_wrapper",
3196
+ "tokio",
3197
+ "tokio-rustls",
3198
+ "tokio-util",
3199
+ "tower",
3200
+ "tower-http",
3201
+ "tower-service",
3202
+ "url",
3203
+ "wasm-bindgen",
3204
+ "wasm-bindgen-futures",
3205
+ "wasm-streams",
3206
+ "web-sys",
3207
+ "webpki-roots",
3208
+ ]
3209
+
3210
+ [[package]]
3211
+ name = "rgb"
3212
+ version = "0.8.52"
3213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3214
+ checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce"
3215
+
3216
+ [[package]]
3217
+ name = "ring"
3218
+ version = "0.17.14"
3219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3220
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3221
+ dependencies = [
3222
+ "cc",
3223
+ "cfg-if",
3224
+ "getrandom 0.2.16",
3225
+ "libc",
3226
+ "untrusted",
3227
+ "windows-sys 0.52.0",
3228
+ ]
3229
+
3230
+ [[package]]
3231
+ name = "rustc-hash"
3232
+ version = "2.1.1"
3233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3234
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
3235
+
3236
+ [[package]]
3237
+ name = "rustc_version"
3238
+ version = "0.4.1"
3239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3240
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3241
+ dependencies = [
3242
+ "semver",
3243
+ ]
3244
+
3245
+ [[package]]
3246
+ name = "rustdct"
3247
+ version = "0.7.1"
3248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3249
+ checksum = "8b61555105d6a9bf98797c063c362a1d24ed8ab0431655e38f1cf51e52089551"
3250
+ dependencies = [
3251
+ "rustfft",
3252
+ ]
3253
+
3254
+ [[package]]
3255
+ name = "rustfft"
3256
+ version = "6.4.1"
3257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3258
+ checksum = "21db5f9893e91f41798c88680037dba611ca6674703c1a18601b01a72c8adb89"
3259
+ dependencies = [
3260
+ "num-complex",
3261
+ "num-integer",
3262
+ "num-traits",
3263
+ "primal-check",
3264
+ "strength_reduce",
3265
+ "transpose",
3266
+ ]
3267
+
3268
+ [[package]]
3269
+ name = "rustix"
3270
+ version = "1.1.3"
3271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3272
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
3273
+ dependencies = [
3274
+ "bitflags 2.10.0",
3275
+ "errno",
3276
+ "libc",
3277
+ "linux-raw-sys",
3278
+ "windows-sys 0.61.2",
3279
+ ]
3280
+
3281
+ [[package]]
3282
+ name = "rustls"
3283
+ version = "0.23.35"
3284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3285
+ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
3286
+ dependencies = [
3287
+ "once_cell",
3288
+ "ring",
3289
+ "rustls-pki-types",
3290
+ "rustls-webpki",
3291
+ "subtle",
3292
+ "zeroize",
3293
+ ]
3294
+
3295
+ [[package]]
3296
+ name = "rustls-native-certs"
3297
+ version = "0.8.3"
3298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3299
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
3300
+ dependencies = [
3301
+ "openssl-probe",
3302
+ "rustls-pki-types",
3303
+ "schannel",
3304
+ "security-framework",
3305
+ ]
3306
+
3307
+ [[package]]
3308
+ name = "rustls-pemfile"
3309
+ version = "2.2.0"
3310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3311
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
3312
+ dependencies = [
3313
+ "rustls-pki-types",
3314
+ ]
3315
+
3316
+ [[package]]
3317
+ name = "rustls-pki-types"
3318
+ version = "1.13.2"
3319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3320
+ checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
3321
+ dependencies = [
3322
+ "web-time",
3323
+ "zeroize",
3324
+ ]
3325
+
3326
+ [[package]]
3327
+ name = "rustls-webpki"
3328
+ version = "0.103.8"
3329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3330
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
3331
+ dependencies = [
3332
+ "ring",
3333
+ "rustls-pki-types",
3334
+ "untrusted",
3335
+ ]
3336
+
3337
+ [[package]]
3338
+ name = "rustversion"
3339
+ version = "1.0.22"
3340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3341
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3342
+
3343
+ [[package]]
3344
+ name = "ryu"
3345
+ version = "1.0.22"
3346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3347
+ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
3348
+
3349
+ [[package]]
3350
+ name = "same-file"
3351
+ version = "1.0.6"
3352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3353
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3354
+ dependencies = [
3355
+ "winapi-util",
3356
+ ]
3357
+
3358
+ [[package]]
3359
+ name = "schannel"
3360
+ version = "0.1.28"
3361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3362
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
3363
+ dependencies = [
3364
+ "windows-sys 0.61.2",
3365
+ ]
3366
+
3367
+ [[package]]
3368
+ name = "scopeguard"
3369
+ version = "1.2.0"
3370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3371
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3372
+
3373
+ [[package]]
3374
+ name = "security-framework"
3375
+ version = "3.5.1"
3376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3377
+ checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
3378
+ dependencies = [
3379
+ "bitflags 2.10.0",
3380
+ "core-foundation",
3381
+ "core-foundation-sys",
3382
+ "libc",
3383
+ "security-framework-sys",
3384
+ ]
3385
+
3386
+ [[package]]
3387
+ name = "security-framework-sys"
3388
+ version = "2.15.0"
3389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3390
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
3391
+ dependencies = [
3392
+ "core-foundation-sys",
3393
+ "libc",
3394
+ ]
3395
+
3396
+ [[package]]
3397
+ name = "semver"
3398
+ version = "1.0.27"
3399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3400
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
3401
+
3402
+ [[package]]
3403
+ name = "serde"
3404
+ version = "1.0.228"
3405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3406
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3407
+ dependencies = [
3408
+ "serde_core",
3409
+ "serde_derive",
3410
+ ]
3411
+
3412
+ [[package]]
3413
+ name = "serde-pickle"
3414
+ version = "1.2.0"
3415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3416
+ checksum = "b641fdc8bcf2781ee78b30c599700d64ad4f412976143e4c5d0b9df906bb4843"
3417
+ dependencies = [
3418
+ "byteorder",
3419
+ "iter-read",
3420
+ "num-bigint",
3421
+ "num-traits",
3422
+ "serde",
3423
+ ]
3424
+
3425
+ [[package]]
3426
+ name = "serde_core"
3427
+ version = "1.0.228"
3428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3429
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3430
+ dependencies = [
3431
+ "serde_derive",
3432
+ ]
3433
+
3434
+ [[package]]
3435
+ name = "serde_derive"
3436
+ version = "1.0.228"
3437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3438
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3439
+ dependencies = [
3440
+ "proc-macro2",
3441
+ "quote",
3442
+ "syn",
3443
+ ]
3444
+
3445
+ [[package]]
3446
+ name = "serde_json"
3447
+ version = "1.0.148"
3448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3449
+ checksum = "3084b546a1dd6289475996f182a22aba973866ea8e8b02c51d9f46b1336a22da"
3450
+ dependencies = [
3451
+ "itoa",
3452
+ "memchr",
3453
+ "serde",
3454
+ "serde_core",
3455
+ "zmij",
3456
+ ]
3457
+
3458
+ [[package]]
3459
+ name = "serde_urlencoded"
3460
+ version = "0.7.1"
3461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3462
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3463
+ dependencies = [
3464
+ "form_urlencoded",
3465
+ "itoa",
3466
+ "ryu",
3467
+ "serde",
3468
+ ]
3469
+
3470
+ [[package]]
3471
+ name = "shlex"
3472
+ version = "1.3.0"
3473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3474
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3475
+
3476
+ [[package]]
3477
+ name = "simd-adler32"
3478
+ version = "0.3.8"
3479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3480
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
3481
+
3482
+ [[package]]
3483
+ name = "simd_helpers"
3484
+ version = "0.1.0"
3485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3486
+ checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
3487
+ dependencies = [
3488
+ "quote",
3489
+ ]
3490
+
3491
+ [[package]]
3492
+ name = "simdutf8"
3493
+ version = "0.1.5"
3494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3495
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
3496
+
3497
+ [[package]]
3498
+ name = "siphasher"
3499
+ version = "1.0.1"
3500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3501
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
3502
+
3503
+ [[package]]
3504
+ name = "slab"
3505
+ version = "0.4.11"
3506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3507
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
3508
+
3509
+ [[package]]
3510
+ name = "slotmap"
3511
+ version = "1.1.1"
3512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3513
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
3514
+ dependencies = [
3515
+ "version_check",
3516
+ ]
3517
+
3518
+ [[package]]
3519
+ name = "smallvec"
3520
+ version = "1.15.1"
3521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3522
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3523
+
3524
+ [[package]]
3525
+ name = "socket2"
3526
+ version = "0.6.1"
3527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3528
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
3529
+ dependencies = [
3530
+ "libc",
3531
+ "windows-sys 0.60.2",
3532
+ ]
3533
+
3534
+ [[package]]
3535
+ name = "sqlparser"
3536
+ version = "0.53.0"
3537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3538
+ checksum = "05a528114c392209b3264855ad491fcce534b94a38771b0a0b97a79379275ce8"
3539
+ dependencies = [
3540
+ "log",
3541
+ ]
3542
+
3543
+ [[package]]
3544
+ name = "stable_deref_trait"
3545
+ version = "1.2.1"
3546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3547
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3548
+
3549
+ [[package]]
3550
+ name = "stacker"
3551
+ version = "0.1.22"
3552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3553
+ checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59"
3554
+ dependencies = [
3555
+ "cc",
3556
+ "cfg-if",
3557
+ "libc",
3558
+ "psm",
3559
+ "windows-sys 0.59.0",
3560
+ ]
3561
+
3562
+ [[package]]
3563
+ name = "static_assertions"
3564
+ version = "1.1.0"
3565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3566
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3567
+
3568
+ [[package]]
3569
+ name = "streaming-decompression"
3570
+ version = "0.1.2"
3571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3572
+ checksum = "bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3"
3573
+ dependencies = [
3574
+ "fallible-streaming-iterator",
3575
+ ]
3576
+
3577
+ [[package]]
3578
+ name = "streaming-iterator"
3579
+ version = "0.1.9"
3580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3581
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
3582
+
3583
+ [[package]]
3584
+ name = "strength_reduce"
3585
+ version = "0.2.4"
3586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3587
+ checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
3588
+
3589
+ [[package]]
3590
+ name = "strum_macros"
3591
+ version = "0.26.4"
3592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3593
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
3594
+ dependencies = [
3595
+ "heck",
3596
+ "proc-macro2",
3597
+ "quote",
3598
+ "rustversion",
3599
+ "syn",
3600
+ ]
3601
+
3602
+ [[package]]
3603
+ name = "subtle"
3604
+ version = "2.6.1"
3605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3606
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3607
+
3608
+ [[package]]
3609
+ name = "syn"
3610
+ version = "2.0.111"
3611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3612
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
3613
+ dependencies = [
3614
+ "proc-macro2",
3615
+ "quote",
3616
+ "unicode-ident",
3617
+ ]
3618
+
3619
+ [[package]]
3620
+ name = "sync_wrapper"
3621
+ version = "1.0.2"
3622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3623
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3624
+ dependencies = [
3625
+ "futures-core",
3626
+ ]
3627
+
3628
+ [[package]]
3629
+ name = "synstructure"
3630
+ version = "0.13.2"
3631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3632
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3633
+ dependencies = [
3634
+ "proc-macro2",
3635
+ "quote",
3636
+ "syn",
3637
+ ]
3638
+
3639
+ [[package]]
3640
+ name = "sysinfo"
3641
+ version = "0.33.1"
3642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3643
+ checksum = "4fc858248ea01b66f19d8e8a6d55f41deaf91e9d495246fd01368d99935c6c01"
3644
+ dependencies = [
3645
+ "core-foundation-sys",
3646
+ "libc",
3647
+ "memchr",
3648
+ "ntapi",
3649
+ "windows",
3650
+ ]
3651
+
3652
+ [[package]]
3653
+ name = "target-lexicon"
3654
+ version = "0.12.16"
3655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3656
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3657
+
3658
+ [[package]]
3659
+ name = "thiserror"
3660
+ version = "1.0.69"
3661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3662
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3663
+ dependencies = [
3664
+ "thiserror-impl 1.0.69",
3665
+ ]
3666
+
3667
+ [[package]]
3668
+ name = "thiserror"
3669
+ version = "2.0.17"
3670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3671
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
3672
+ dependencies = [
3673
+ "thiserror-impl 2.0.17",
3674
+ ]
3675
+
3676
+ [[package]]
3677
+ name = "thiserror-impl"
3678
+ version = "1.0.69"
3679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3680
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3681
+ dependencies = [
3682
+ "proc-macro2",
3683
+ "quote",
3684
+ "syn",
3685
+ ]
3686
+
3687
+ [[package]]
3688
+ name = "thiserror-impl"
3689
+ version = "2.0.17"
3690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3691
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
3692
+ dependencies = [
3693
+ "proc-macro2",
3694
+ "quote",
3695
+ "syn",
3696
+ ]
3697
+
3698
+ [[package]]
3699
+ name = "tiff"
3700
+ version = "0.10.3"
3701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3702
+ checksum = "af9605de7fee8d9551863fd692cce7637f548dbd9db9180fcc07ccc6d26c336f"
3703
+ dependencies = [
3704
+ "fax",
3705
+ "flate2",
3706
+ "half",
3707
+ "quick-error",
3708
+ "weezl",
3709
+ "zune-jpeg 0.4.21",
3710
+ ]
3711
+
3712
+ [[package]]
3713
+ name = "tiny-keccak"
3714
+ version = "2.0.2"
3715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3716
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
3717
+ dependencies = [
3718
+ "crunchy",
3719
+ ]
3720
+
3721
+ [[package]]
3722
+ name = "tinystr"
3723
+ version = "0.8.2"
3724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3725
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
3726
+ dependencies = [
3727
+ "displaydoc",
3728
+ "zerovec",
3729
+ ]
3730
+
3731
+ [[package]]
3732
+ name = "tinyvec"
3733
+ version = "1.10.0"
3734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3735
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3736
+ dependencies = [
3737
+ "tinyvec_macros",
3738
+ ]
3739
+
3740
+ [[package]]
3741
+ name = "tinyvec_macros"
3742
+ version = "0.1.1"
3743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3744
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3745
+
3746
+ [[package]]
3747
+ name = "tokio"
3748
+ version = "1.48.0"
3749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3750
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
3751
+ dependencies = [
3752
+ "bytes",
3753
+ "libc",
3754
+ "mio",
3755
+ "pin-project-lite",
3756
+ "socket2",
3757
+ "tokio-macros",
3758
+ "windows-sys 0.61.2",
3759
+ ]
3760
+
3761
+ [[package]]
3762
+ name = "tokio-macros"
3763
+ version = "2.6.0"
3764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3765
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
3766
+ dependencies = [
3767
+ "proc-macro2",
3768
+ "quote",
3769
+ "syn",
3770
+ ]
3771
+
3772
+ [[package]]
3773
+ name = "tokio-rustls"
3774
+ version = "0.26.4"
3775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3776
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3777
+ dependencies = [
3778
+ "rustls",
3779
+ "tokio",
3780
+ ]
3781
+
3782
+ [[package]]
3783
+ name = "tokio-util"
3784
+ version = "0.7.17"
3785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3786
+ checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
3787
+ dependencies = [
3788
+ "bytes",
3789
+ "futures-core",
3790
+ "futures-sink",
3791
+ "pin-project-lite",
3792
+ "tokio",
3793
+ ]
3794
+
3795
+ [[package]]
3796
+ name = "tower"
3797
+ version = "0.5.2"
3798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3799
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3800
+ dependencies = [
3801
+ "futures-core",
3802
+ "futures-util",
3803
+ "pin-project-lite",
3804
+ "sync_wrapper",
3805
+ "tokio",
3806
+ "tower-layer",
3807
+ "tower-service",
3808
+ ]
3809
+
3810
+ [[package]]
3811
+ name = "tower-http"
3812
+ version = "0.6.8"
3813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3814
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3815
+ dependencies = [
3816
+ "bitflags 2.10.0",
3817
+ "bytes",
3818
+ "futures-util",
3819
+ "http",
3820
+ "http-body",
3821
+ "iri-string",
3822
+ "pin-project-lite",
3823
+ "tower",
3824
+ "tower-layer",
3825
+ "tower-service",
3826
+ ]
3827
+
3828
+ [[package]]
3829
+ name = "tower-layer"
3830
+ version = "0.3.3"
3831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3832
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3833
+
3834
+ [[package]]
3835
+ name = "tower-service"
3836
+ version = "0.3.3"
3837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3838
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3839
+
3840
+ [[package]]
3841
+ name = "tracing"
3842
+ version = "0.1.44"
3843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3844
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3845
+ dependencies = [
3846
+ "pin-project-lite",
3847
+ "tracing-attributes",
3848
+ "tracing-core",
3849
+ ]
3850
+
3851
+ [[package]]
3852
+ name = "tracing-attributes"
3853
+ version = "0.1.31"
3854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3855
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3856
+ dependencies = [
3857
+ "proc-macro2",
3858
+ "quote",
3859
+ "syn",
3860
+ ]
3861
+
3862
+ [[package]]
3863
+ name = "tracing-core"
3864
+ version = "0.1.36"
3865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3866
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3867
+ dependencies = [
3868
+ "once_cell",
3869
+ ]
3870
+
3871
+ [[package]]
3872
+ name = "transpose"
3873
+ version = "0.2.3"
3874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3875
+ checksum = "1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e"
3876
+ dependencies = [
3877
+ "num-integer",
3878
+ "strength_reduce",
3879
+ ]
3880
+
3881
+ [[package]]
3882
+ name = "try-lock"
3883
+ version = "0.2.5"
3884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3885
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3886
+
3887
+ [[package]]
3888
+ name = "typenum"
3889
+ version = "1.19.0"
3890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3891
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3892
+
3893
+ [[package]]
3894
+ name = "unicode-ident"
3895
+ version = "1.0.22"
3896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3897
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
3898
+
3899
+ [[package]]
3900
+ name = "unicode-normalization"
3901
+ version = "0.1.25"
3902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3903
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
3904
+ dependencies = [
3905
+ "tinyvec",
3906
+ ]
3907
+
3908
+ [[package]]
3909
+ name = "unicode-reverse"
3910
+ version = "1.0.9"
3911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3912
+ checksum = "4b6f4888ebc23094adfb574fdca9fdc891826287a6397d2cd28802ffd6f20c76"
3913
+ dependencies = [
3914
+ "unicode-segmentation",
3915
+ ]
3916
+
3917
+ [[package]]
3918
+ name = "unicode-segmentation"
3919
+ version = "1.12.0"
3920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3921
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3922
+
3923
+ [[package]]
3924
+ name = "unicode-width"
3925
+ version = "0.2.2"
3926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3927
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3928
+
3929
+ [[package]]
3930
+ name = "unindent"
3931
+ version = "0.2.4"
3932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3933
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3934
+
3935
+ [[package]]
3936
+ name = "untrusted"
3937
+ version = "0.9.0"
3938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3939
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3940
+
3941
+ [[package]]
3942
+ name = "url"
3943
+ version = "2.5.7"
3944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3945
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
3946
+ dependencies = [
3947
+ "form_urlencoded",
3948
+ "idna",
3949
+ "percent-encoding",
3950
+ "serde",
3951
+ ]
3952
+
3953
+ [[package]]
3954
+ name = "utf8_iter"
3955
+ version = "1.0.4"
3956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3957
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3958
+
3959
+ [[package]]
3960
+ name = "uuid"
3961
+ version = "1.19.0"
3962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3963
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
3964
+ dependencies = [
3965
+ "getrandom 0.3.4",
3966
+ "js-sys",
3967
+ "wasm-bindgen",
3968
+ ]
3969
+
3970
+ [[package]]
3971
+ name = "v_frame"
3972
+ version = "0.3.9"
3973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3974
+ checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
3975
+ dependencies = [
3976
+ "aligned-vec",
3977
+ "num-traits",
3978
+ "wasm-bindgen",
3979
+ ]
3980
+
3981
+ [[package]]
3982
+ name = "version_check"
3983
+ version = "0.9.5"
3984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3985
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3986
+
3987
+ [[package]]
3988
+ name = "view-buffer"
3989
+ version = "0.5.0"
3990
+ dependencies = [
3991
+ "anyhow",
3992
+ "arrow",
3993
+ "bytemuck",
3994
+ "fast_image_resize",
3995
+ "image",
3996
+ "image_hasher",
3997
+ "ndarray",
3998
+ "num-traits",
3999
+ "polars-arrow",
4000
+ "serde",
4001
+ "serde_json",
4002
+ "thiserror 1.0.69",
4003
+ ]
4004
+
4005
+ [[package]]
4006
+ name = "walkdir"
4007
+ version = "2.5.0"
4008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4009
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4010
+ dependencies = [
4011
+ "same-file",
4012
+ "winapi-util",
4013
+ ]
4014
+
4015
+ [[package]]
4016
+ name = "want"
4017
+ version = "0.3.1"
4018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4019
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4020
+ dependencies = [
4021
+ "try-lock",
4022
+ ]
4023
+
4024
+ [[package]]
4025
+ name = "wasi"
4026
+ version = "0.11.1+wasi-snapshot-preview1"
4027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4028
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4029
+
4030
+ [[package]]
4031
+ name = "wasip2"
4032
+ version = "1.0.1+wasi-0.2.4"
4033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4034
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
4035
+ dependencies = [
4036
+ "wit-bindgen",
4037
+ ]
4038
+
4039
+ [[package]]
4040
+ name = "wasm-bindgen"
4041
+ version = "0.2.106"
4042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4043
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
4044
+ dependencies = [
4045
+ "cfg-if",
4046
+ "once_cell",
4047
+ "rustversion",
4048
+ "wasm-bindgen-macro",
4049
+ "wasm-bindgen-shared",
4050
+ ]
4051
+
4052
+ [[package]]
4053
+ name = "wasm-bindgen-futures"
4054
+ version = "0.4.56"
4055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4056
+ checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
4057
+ dependencies = [
4058
+ "cfg-if",
4059
+ "js-sys",
4060
+ "once_cell",
4061
+ "wasm-bindgen",
4062
+ "web-sys",
4063
+ ]
4064
+
4065
+ [[package]]
4066
+ name = "wasm-bindgen-macro"
4067
+ version = "0.2.106"
4068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4069
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
4070
+ dependencies = [
4071
+ "quote",
4072
+ "wasm-bindgen-macro-support",
4073
+ ]
4074
+
4075
+ [[package]]
4076
+ name = "wasm-bindgen-macro-support"
4077
+ version = "0.2.106"
4078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4079
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
4080
+ dependencies = [
4081
+ "bumpalo",
4082
+ "proc-macro2",
4083
+ "quote",
4084
+ "syn",
4085
+ "wasm-bindgen-shared",
4086
+ ]
4087
+
4088
+ [[package]]
4089
+ name = "wasm-bindgen-shared"
4090
+ version = "0.2.106"
4091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4092
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
4093
+ dependencies = [
4094
+ "unicode-ident",
4095
+ ]
4096
+
4097
+ [[package]]
4098
+ name = "wasm-streams"
4099
+ version = "0.4.2"
4100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4101
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
4102
+ dependencies = [
4103
+ "futures-util",
4104
+ "js-sys",
4105
+ "wasm-bindgen",
4106
+ "wasm-bindgen-futures",
4107
+ "web-sys",
4108
+ ]
4109
+
4110
+ [[package]]
4111
+ name = "web-sys"
4112
+ version = "0.3.83"
4113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4114
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
4115
+ dependencies = [
4116
+ "js-sys",
4117
+ "wasm-bindgen",
4118
+ ]
4119
+
4120
+ [[package]]
4121
+ name = "web-time"
4122
+ version = "1.1.0"
4123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4124
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4125
+ dependencies = [
4126
+ "js-sys",
4127
+ "wasm-bindgen",
4128
+ ]
4129
+
4130
+ [[package]]
4131
+ name = "webpki-roots"
4132
+ version = "1.0.5"
4133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4134
+ checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c"
4135
+ dependencies = [
4136
+ "rustls-pki-types",
4137
+ ]
4138
+
4139
+ [[package]]
4140
+ name = "weezl"
4141
+ version = "0.1.12"
4142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4143
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
4144
+
4145
+ [[package]]
4146
+ name = "winapi"
4147
+ version = "0.3.9"
4148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4149
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4150
+ dependencies = [
4151
+ "winapi-i686-pc-windows-gnu",
4152
+ "winapi-x86_64-pc-windows-gnu",
4153
+ ]
4154
+
4155
+ [[package]]
4156
+ name = "winapi-i686-pc-windows-gnu"
4157
+ version = "0.4.0"
4158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4159
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4160
+
4161
+ [[package]]
4162
+ name = "winapi-util"
4163
+ version = "0.1.11"
4164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4165
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4166
+ dependencies = [
4167
+ "windows-sys 0.61.2",
4168
+ ]
4169
+
4170
+ [[package]]
4171
+ name = "winapi-x86_64-pc-windows-gnu"
4172
+ version = "0.4.0"
4173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4174
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4175
+
4176
+ [[package]]
4177
+ name = "windows"
4178
+ version = "0.57.0"
4179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4180
+ checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
4181
+ dependencies = [
4182
+ "windows-core 0.57.0",
4183
+ "windows-targets 0.52.6",
4184
+ ]
4185
+
4186
+ [[package]]
4187
+ name = "windows-core"
4188
+ version = "0.57.0"
4189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4190
+ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
4191
+ dependencies = [
4192
+ "windows-implement 0.57.0",
4193
+ "windows-interface 0.57.0",
4194
+ "windows-result 0.1.2",
4195
+ "windows-targets 0.52.6",
4196
+ ]
4197
+
4198
+ [[package]]
4199
+ name = "windows-core"
4200
+ version = "0.62.2"
4201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4202
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4203
+ dependencies = [
4204
+ "windows-implement 0.60.2",
4205
+ "windows-interface 0.59.3",
4206
+ "windows-link",
4207
+ "windows-result 0.4.1",
4208
+ "windows-strings",
4209
+ ]
4210
+
4211
+ [[package]]
4212
+ name = "windows-implement"
4213
+ version = "0.57.0"
4214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4215
+ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
4216
+ dependencies = [
4217
+ "proc-macro2",
4218
+ "quote",
4219
+ "syn",
4220
+ ]
4221
+
4222
+ [[package]]
4223
+ name = "windows-implement"
4224
+ version = "0.60.2"
4225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4226
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4227
+ dependencies = [
4228
+ "proc-macro2",
4229
+ "quote",
4230
+ "syn",
4231
+ ]
4232
+
4233
+ [[package]]
4234
+ name = "windows-interface"
4235
+ version = "0.57.0"
4236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4237
+ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
4238
+ dependencies = [
4239
+ "proc-macro2",
4240
+ "quote",
4241
+ "syn",
4242
+ ]
4243
+
4244
+ [[package]]
4245
+ name = "windows-interface"
4246
+ version = "0.59.3"
4247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4248
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4249
+ dependencies = [
4250
+ "proc-macro2",
4251
+ "quote",
4252
+ "syn",
4253
+ ]
4254
+
4255
+ [[package]]
4256
+ name = "windows-link"
4257
+ version = "0.2.1"
4258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4259
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4260
+
4261
+ [[package]]
4262
+ name = "windows-result"
4263
+ version = "0.1.2"
4264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4265
+ checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
4266
+ dependencies = [
4267
+ "windows-targets 0.52.6",
4268
+ ]
4269
+
4270
+ [[package]]
4271
+ name = "windows-result"
4272
+ version = "0.4.1"
4273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4274
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4275
+ dependencies = [
4276
+ "windows-link",
4277
+ ]
4278
+
4279
+ [[package]]
4280
+ name = "windows-strings"
4281
+ version = "0.5.1"
4282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4283
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4284
+ dependencies = [
4285
+ "windows-link",
4286
+ ]
4287
+
4288
+ [[package]]
4289
+ name = "windows-sys"
4290
+ version = "0.52.0"
4291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4292
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4293
+ dependencies = [
4294
+ "windows-targets 0.52.6",
4295
+ ]
4296
+
4297
+ [[package]]
4298
+ name = "windows-sys"
4299
+ version = "0.59.0"
4300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4301
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4302
+ dependencies = [
4303
+ "windows-targets 0.52.6",
4304
+ ]
4305
+
4306
+ [[package]]
4307
+ name = "windows-sys"
4308
+ version = "0.60.2"
4309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4310
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4311
+ dependencies = [
4312
+ "windows-targets 0.53.5",
4313
+ ]
4314
+
4315
+ [[package]]
4316
+ name = "windows-sys"
4317
+ version = "0.61.2"
4318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4319
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4320
+ dependencies = [
4321
+ "windows-link",
4322
+ ]
4323
+
4324
+ [[package]]
4325
+ name = "windows-targets"
4326
+ version = "0.52.6"
4327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4328
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4329
+ dependencies = [
4330
+ "windows_aarch64_gnullvm 0.52.6",
4331
+ "windows_aarch64_msvc 0.52.6",
4332
+ "windows_i686_gnu 0.52.6",
4333
+ "windows_i686_gnullvm 0.52.6",
4334
+ "windows_i686_msvc 0.52.6",
4335
+ "windows_x86_64_gnu 0.52.6",
4336
+ "windows_x86_64_gnullvm 0.52.6",
4337
+ "windows_x86_64_msvc 0.52.6",
4338
+ ]
4339
+
4340
+ [[package]]
4341
+ name = "windows-targets"
4342
+ version = "0.53.5"
4343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4344
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4345
+ dependencies = [
4346
+ "windows-link",
4347
+ "windows_aarch64_gnullvm 0.53.1",
4348
+ "windows_aarch64_msvc 0.53.1",
4349
+ "windows_i686_gnu 0.53.1",
4350
+ "windows_i686_gnullvm 0.53.1",
4351
+ "windows_i686_msvc 0.53.1",
4352
+ "windows_x86_64_gnu 0.53.1",
4353
+ "windows_x86_64_gnullvm 0.53.1",
4354
+ "windows_x86_64_msvc 0.53.1",
4355
+ ]
4356
+
4357
+ [[package]]
4358
+ name = "windows_aarch64_gnullvm"
4359
+ version = "0.52.6"
4360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4361
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4362
+
4363
+ [[package]]
4364
+ name = "windows_aarch64_gnullvm"
4365
+ version = "0.53.1"
4366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4367
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4368
+
4369
+ [[package]]
4370
+ name = "windows_aarch64_msvc"
4371
+ version = "0.52.6"
4372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4373
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4374
+
4375
+ [[package]]
4376
+ name = "windows_aarch64_msvc"
4377
+ version = "0.53.1"
4378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4379
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4380
+
4381
+ [[package]]
4382
+ name = "windows_i686_gnu"
4383
+ version = "0.52.6"
4384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4385
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4386
+
4387
+ [[package]]
4388
+ name = "windows_i686_gnu"
4389
+ version = "0.53.1"
4390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4391
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4392
+
4393
+ [[package]]
4394
+ name = "windows_i686_gnullvm"
4395
+ version = "0.52.6"
4396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4397
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4398
+
4399
+ [[package]]
4400
+ name = "windows_i686_gnullvm"
4401
+ version = "0.53.1"
4402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4403
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4404
+
4405
+ [[package]]
4406
+ name = "windows_i686_msvc"
4407
+ version = "0.52.6"
4408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4409
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4410
+
4411
+ [[package]]
4412
+ name = "windows_i686_msvc"
4413
+ version = "0.53.1"
4414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4415
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4416
+
4417
+ [[package]]
4418
+ name = "windows_x86_64_gnu"
4419
+ version = "0.52.6"
4420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4421
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4422
+
4423
+ [[package]]
4424
+ name = "windows_x86_64_gnu"
4425
+ version = "0.53.1"
4426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4427
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4428
+
4429
+ [[package]]
4430
+ name = "windows_x86_64_gnullvm"
4431
+ version = "0.52.6"
4432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4433
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4434
+
4435
+ [[package]]
4436
+ name = "windows_x86_64_gnullvm"
4437
+ version = "0.53.1"
4438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4439
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4440
+
4441
+ [[package]]
4442
+ name = "windows_x86_64_msvc"
4443
+ version = "0.52.6"
4444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4445
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4446
+
4447
+ [[package]]
4448
+ name = "windows_x86_64_msvc"
4449
+ version = "0.53.1"
4450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4451
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4452
+
4453
+ [[package]]
4454
+ name = "wit-bindgen"
4455
+ version = "0.46.0"
4456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4457
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
4458
+
4459
+ [[package]]
4460
+ name = "writeable"
4461
+ version = "0.6.2"
4462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4463
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
4464
+
4465
+ [[package]]
4466
+ name = "xxhash-rust"
4467
+ version = "0.8.15"
4468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4469
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
4470
+
4471
+ [[package]]
4472
+ name = "y4m"
4473
+ version = "0.8.0"
4474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4475
+ checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448"
4476
+
4477
+ [[package]]
4478
+ name = "yoke"
4479
+ version = "0.8.1"
4480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4481
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
4482
+ dependencies = [
4483
+ "stable_deref_trait",
4484
+ "yoke-derive",
4485
+ "zerofrom",
4486
+ ]
4487
+
4488
+ [[package]]
4489
+ name = "yoke-derive"
4490
+ version = "0.8.1"
4491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4492
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
4493
+ dependencies = [
4494
+ "proc-macro2",
4495
+ "quote",
4496
+ "syn",
4497
+ "synstructure",
4498
+ ]
4499
+
4500
+ [[package]]
4501
+ name = "zerocopy"
4502
+ version = "0.8.31"
4503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4504
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
4505
+ dependencies = [
4506
+ "zerocopy-derive",
4507
+ ]
4508
+
4509
+ [[package]]
4510
+ name = "zerocopy-derive"
4511
+ version = "0.8.31"
4512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4513
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
4514
+ dependencies = [
4515
+ "proc-macro2",
4516
+ "quote",
4517
+ "syn",
4518
+ ]
4519
+
4520
+ [[package]]
4521
+ name = "zerofrom"
4522
+ version = "0.1.6"
4523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4524
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4525
+ dependencies = [
4526
+ "zerofrom-derive",
4527
+ ]
4528
+
4529
+ [[package]]
4530
+ name = "zerofrom-derive"
4531
+ version = "0.1.6"
4532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4533
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4534
+ dependencies = [
4535
+ "proc-macro2",
4536
+ "quote",
4537
+ "syn",
4538
+ "synstructure",
4539
+ ]
4540
+
4541
+ [[package]]
4542
+ name = "zeroize"
4543
+ version = "1.8.2"
4544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4545
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4546
+
4547
+ [[package]]
4548
+ name = "zerotrie"
4549
+ version = "0.2.3"
4550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4551
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
4552
+ dependencies = [
4553
+ "displaydoc",
4554
+ "yoke",
4555
+ "zerofrom",
4556
+ ]
4557
+
4558
+ [[package]]
4559
+ name = "zerovec"
4560
+ version = "0.11.5"
4561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4562
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
4563
+ dependencies = [
4564
+ "yoke",
4565
+ "zerofrom",
4566
+ "zerovec-derive",
4567
+ ]
4568
+
4569
+ [[package]]
4570
+ name = "zerovec-derive"
4571
+ version = "0.11.2"
4572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4573
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
4574
+ dependencies = [
4575
+ "proc-macro2",
4576
+ "quote",
4577
+ "syn",
4578
+ ]
4579
+
4580
+ [[package]]
4581
+ name = "zmij"
4582
+ version = "1.0.0"
4583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4584
+ checksum = "e6d6085d62852e35540689d1f97ad663e3971fc19cf5eceab364d62c646ea167"
4585
+
4586
+ [[package]]
4587
+ name = "zstd"
4588
+ version = "0.13.3"
4589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4590
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
4591
+ dependencies = [
4592
+ "zstd-safe",
4593
+ ]
4594
+
4595
+ [[package]]
4596
+ name = "zstd-safe"
4597
+ version = "7.2.4"
4598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4599
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4600
+ dependencies = [
4601
+ "zstd-sys",
4602
+ ]
4603
+
4604
+ [[package]]
4605
+ name = "zstd-sys"
4606
+ version = "2.0.16+zstd.1.5.7"
4607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4608
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4609
+ dependencies = [
4610
+ "cc",
4611
+ "pkg-config",
4612
+ ]
4613
+
4614
+ [[package]]
4615
+ name = "zune-core"
4616
+ version = "0.4.12"
4617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4618
+ checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
4619
+
4620
+ [[package]]
4621
+ name = "zune-core"
4622
+ version = "0.5.0"
4623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4624
+ checksum = "111f7d9820f05fd715df3144e254d6fc02ee4088b0644c0ffd0efc9e6d9d2773"
4625
+
4626
+ [[package]]
4627
+ name = "zune-inflate"
4628
+ version = "0.2.54"
4629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4630
+ checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
4631
+ dependencies = [
4632
+ "simd-adler32",
4633
+ ]
4634
+
4635
+ [[package]]
4636
+ name = "zune-jpeg"
4637
+ version = "0.4.21"
4638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4639
+ checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
4640
+ dependencies = [
4641
+ "zune-core 0.4.12",
4642
+ ]
4643
+
4644
+ [[package]]
4645
+ name = "zune-jpeg"
4646
+ version = "0.5.8"
4647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4648
+ checksum = "e35aee689668bf9bd6f6f3a6c60bb29ba1244b3b43adfd50edd554a371da37d5"
4649
+ dependencies = [
4650
+ "zune-core 0.5.0",
4651
+ ]