ferrum-viz 0.8.2__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.
- ferrum_viz-0.8.2/Cargo.lock +4330 -0
- ferrum_viz-0.8.2/Cargo.toml +86 -0
- ferrum_viz-0.8.2/LICENSE +21 -0
- ferrum_viz-0.8.2/NOTICE +6 -0
- ferrum_viz-0.8.2/PKG-INFO +129 -0
- ferrum_viz-0.8.2/README.md +85 -0
- ferrum_viz-0.8.2/crates/ferrum-core/Cargo.toml +43 -0
- ferrum_viz-0.8.2/crates/ferrum-core/assets/fonts/Inter-OFL.txt +92 -0
- ferrum_viz-0.8.2/crates/ferrum-core/assets/fonts/Inter-Regular.ttf +0 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/diagnostics.rs +270 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/layout/axis.rs +612 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/layout/binding.rs +160 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/layout/facet.rs +271 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/layout/geometry.rs +183 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/layout/legend.rs +699 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/layout/mod.rs +1007 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/layout/panel.rs +125 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/layout/text_metrics.rs +93 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/lib.rs +68 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/projection.rs +236 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/pyo3_serde.rs +38 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/arrow_cast.rs +312 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/binding.rs +803 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/color/categorical.rs +96 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/color/continuous.rs +345 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/color/mod.rs +10 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/compositor.rs +433 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/config.rs +28 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/draw.rs +599 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/embed_font.rs +30 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/font.rs +68 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/format.rs +137 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/grid_compose.rs +270 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/arc.rs +201 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/area.rs +352 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/axis.rs +194 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/bar.rs +716 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/geoshape.rs +511 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/image.rs +659 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/label.rs +351 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/legend.rs +201 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/line.rs +443 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/mod.rs +22 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/point.rs +839 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/polygon.rs +461 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/rect.rs +703 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/ribbon.rs +388 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/rule.rs +336 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/segment.rs +169 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/strip_title.rs +71 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/text.rs +346 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/marks/tick.rs +336 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/mod.rs +974 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/pack_instances.rs +585 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/palette.rs +195 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/png.rs +56 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/position.rs +949 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/prepare.rs +1601 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/rasterize.rs +74 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/scale_resolve.rs +1692 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/scene_build.rs +618 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/svg.rs +712 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/render/svg_walk.rs +366 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/scale/core.rs +205 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/scale/linear.rs +289 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/scale/log.rs +329 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/scale/mod.rs +9 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/scale/ordinal.rs +219 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/scale/quantile.rs +168 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/scale/symlog.rs +253 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/scale/threshold.rs +141 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/scale/ticks.rs +303 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/scale/time.rs +237 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/spec/chart.rs +879 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/spec/coord.rs +191 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/spec/data_ref.rs +33 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/spec/encoding.rs +1021 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/spec/layer.rs +155 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/spec/mark.rs +149 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/spec/mark_style.rs +136 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/spec/mod.rs +14 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/spec/position.rs +170 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/spec/title.rs +88 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/aggregate.rs +505 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/bin.rs +781 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/bin_2d.rs +627 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/box_stats.rs +534 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/context.rs +22 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/contour.rs +934 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/core.rs +480 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/error_extent.rs +565 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/fixtures/generate_linkage_refs.py +63 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/fixtures/generate_stat_refs.py +223 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/fixtures/linkage_refs.json +662 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/fixtures/requirements-fixtures.txt +5 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/fixtures/stat_refs.json +1173 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/glm.rs +895 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/hex.rs +680 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/identity.rs +54 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/kde.rs +656 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/kde_2d.rs +484 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/letter_value.rs +627 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/linalg.rs +404 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/linkage.rs +1103 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/logistic.rs +628 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/mod.rs +34 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/outliers.rs +353 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/qq.rs +645 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/raster.rs +856 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/reference_line.rs +182 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/reorder.rs +213 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/residuals.rs +116 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/robust.rs +879 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/smooth.rs +1300 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/stats.rs +1441 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/summary.rs +627 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/swarm.rs +816 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/unpivot.rs +350 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transform/violin.rs +794 -0
- ferrum_viz-0.8.2/crates/ferrum-core/src/transport.rs +164 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/bug_hunt_draw.rs +364 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/bug_hunt_layout.rs +606 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/bug_hunt_marks_rendering.rs +255 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/bug_hunt_projection.rs +438 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/bug_hunt_scale_stat.rs +278 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/bug_hunt_stats_transforms.rs +574 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/golden/area_filled.svg +1 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/golden/bar_grouped.svg +1 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/golden/faceted_scatter.png +0 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/golden/faceted_scatter.svg +1 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/golden/line_simple.svg +1 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/golden/scatter_color.png +0 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/golden/scatter_color.svg +1 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/golden/scatter_minimal.png.sha256 +1 -0
- ferrum_viz-0.8.2/crates/ferrum-core/tests/golden/scatter_minimal.svg +1 -0
- ferrum_viz-0.8.2/crates/ferrum-scene/Cargo.toml +8 -0
- ferrum_viz-0.8.2/crates/ferrum-scene/src/error.rs +20 -0
- ferrum_viz-0.8.2/crates/ferrum-scene/src/lib.rs +91 -0
- ferrum_viz-0.8.2/crates/ferrum-scene/src/selection.rs +133 -0
- ferrum_viz-0.8.2/crates/ferrum-scene/src/types.rs +369 -0
- ferrum_viz-0.8.2/pyproject.toml +108 -0
- ferrum_viz-0.8.2/src/ferrum/__init__.py +470 -0
- ferrum_viz-0.8.2/src/ferrum/_coerce.py +211 -0
- ferrum_viz-0.8.2/src/ferrum/_core.pyi +643 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/__init__.py +12 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/_rank_helpers.py +74 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/deps.py +53 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/precomputed.py +490 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/schemas.py +229 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/source.py +162 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/sources/__init__.py +19 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/sources/_base.py +204 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/sources/_classification.py +678 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/sources/_clustering.py +244 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/sources/_compared.py +151 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/sources/_importance.py +354 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/sources/_predictions.py +118 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/sources/_ranking.py +65 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/sources/_selection.py +236 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/visualizers/__init__.py +105 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/visualizers/base.py +188 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/visualizers/classification.py +351 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/visualizers/classification_extra.py +228 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/visualizers/clustering.py +429 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/visualizers/explanation.py +431 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/visualizers/ranking.py +322 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/visualizers/regression.py +198 -0
- ferrum_viz-0.8.2/src/ferrum/_diagnostics/visualizers/selection.py +407 -0
- ferrum_viz-0.8.2/src/ferrum/_direct_label.py +125 -0
- ferrum_viz-0.8.2/src/ferrum/_html.py +189 -0
- ferrum_viz-0.8.2/src/ferrum/_interactive.py +253 -0
- ferrum_viz-0.8.2/src/ferrum/_layer.py +66 -0
- ferrum_viz-0.8.2/src/ferrum/_metric_labels.py +388 -0
- ferrum_viz-0.8.2/src/ferrum/_metrics_fmt.py +28 -0
- ferrum_viz-0.8.2/src/ferrum/_overrides.py +138 -0
- ferrum_viz-0.8.2/src/ferrum/_render.py +326 -0
- ferrum_viz-0.8.2/src/ferrum/_scale_share.py +198 -0
- ferrum_viz-0.8.2/src/ferrum/_sentinels.py +39 -0
- ferrum_viz-0.8.2/src/ferrum/_shorthand.py +88 -0
- ferrum_viz-0.8.2/src/ferrum/_spec_view.py +58 -0
- ferrum_viz-0.8.2/src/ferrum/_warn.py +73 -0
- ferrum_viz-0.8.2/src/ferrum/_wasm/ferrum-anywidget.js +369 -0
- ferrum_viz-0.8.2/src/ferrum/_wasm/ferrum-interactive.css +41 -0
- ferrum_viz-0.8.2/src/ferrum/_wasm/ferrum-interactive.js +232 -0
- ferrum_viz-0.8.2/src/ferrum/_wasm/ferrum_wasm.js +1742 -0
- ferrum_viz-0.8.2/src/ferrum/_wasm/ferrum_wasm_bg.wasm +0 -0
- ferrum_viz-0.8.2/src/ferrum/annotations.py +290 -0
- ferrum_viz-0.8.2/src/ferrum/chart.py +4823 -0
- ferrum_viz-0.8.2/src/ferrum/composition.py +1136 -0
- ferrum_viz-0.8.2/src/ferrum/coord.py +214 -0
- ferrum_viz-0.8.2/src/ferrum/display.py +148 -0
- ferrum_viz-0.8.2/src/ferrum/encoding/__init__.py +175 -0
- ferrum_viz-0.8.2/src/ferrum/encoding/_scale.py +81 -0
- ferrum_viz-0.8.2/src/ferrum/encoding/appearance.py +365 -0
- ferrum_viz-0.8.2/src/ferrum/encoding/base.py +160 -0
- ferrum_viz-0.8.2/src/ferrum/encoding/facet.py +105 -0
- ferrum_viz-0.8.2/src/ferrum/encoding/positional.py +369 -0
- ferrum_viz-0.8.2/src/ferrum/encoding/text.py +263 -0
- ferrum_viz-0.8.2/src/ferrum/layer.py +50 -0
- ferrum_viz-0.8.2/src/ferrum/marks/__init__.py +9 -0
- ferrum_viz-0.8.2/src/ferrum/marks/_mark_kwargs.py +132 -0
- ferrum_viz-0.8.2/src/ferrum/marks/base.py +188 -0
- ferrum_viz-0.8.2/src/ferrum/marks/composite.py +598 -0
- ferrum_viz-0.8.2/src/ferrum/marks/diagnostic/__init__.py +75 -0
- ferrum_viz-0.8.2/src/ferrum/marks/diagnostic/_classification.py +453 -0
- ferrum_viz-0.8.2/src/ferrum/marks/diagnostic/_clustering.py +264 -0
- ferrum_viz-0.8.2/src/ferrum/marks/diagnostic/_explanation.py +390 -0
- ferrum_viz-0.8.2/src/ferrum/marks/diagnostic/_ranking.py +144 -0
- ferrum_viz-0.8.2/src/ferrum/marks/diagnostic/_regression.py +141 -0
- ferrum_viz-0.8.2/src/ferrum/marks/diagnostic/_selection.py +293 -0
- ferrum_viz-0.8.2/src/ferrum/marks/heavy_stat.py +854 -0
- ferrum_viz-0.8.2/src/ferrum/marks/statistical.py +565 -0
- ferrum_viz-0.8.2/src/ferrum/plots/__init__.py +113 -0
- ferrum_viz-0.8.2/src/ferrum/plots/_helpers.py +284 -0
- ferrum_viz-0.8.2/src/ferrum/plots/classification.py +1823 -0
- ferrum_viz-0.8.2/src/ferrum/plots/clustering.py +876 -0
- ferrum_viz-0.8.2/src/ferrum/plots/distribution.py +737 -0
- ferrum_viz-0.8.2/src/ferrum/plots/explanation.py +1121 -0
- ferrum_viz-0.8.2/src/ferrum/plots/matrix.py +1030 -0
- ferrum_viz-0.8.2/src/ferrum/plots/model_selection.py +679 -0
- ferrum_viz-0.8.2/src/ferrum/plots/ranking.py +1019 -0
- ferrum_viz-0.8.2/src/ferrum/plots/regression.py +1288 -0
- ferrum_viz-0.8.2/src/ferrum/position.py +353 -0
- ferrum_viz-0.8.2/src/ferrum/py.typed +0 -0
- ferrum_viz-0.8.2/src/ferrum/render_config.py +41 -0
- ferrum_viz-0.8.2/src/ferrum/repeat.py +88 -0
- ferrum_viz-0.8.2/src/ferrum/schemes.py +47 -0
- ferrum_viz-0.8.2/src/ferrum/selection.py +489 -0
- ferrum_viz-0.8.2/src/ferrum/themes/__init__.py +271 -0
- ferrum_viz-0.8.2/src/ferrum/themes/_defaults.py +110 -0
- ferrum_viz-0.8.2/src/ferrum/themes/builtins.py +242 -0
- ferrum_viz-0.8.2/src/ferrum/title.py +77 -0
|
@@ -0,0 +1,4330 @@
|
|
|
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 = "allocator-api2"
|
|
36
|
+
version = "0.2.21"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "android_system_properties"
|
|
42
|
+
version = "0.1.5"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"libc",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "anes"
|
|
51
|
+
version = "0.1.6"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "ann-search-rs"
|
|
57
|
+
version = "0.2.15"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "89ab79fa0ad824cfc7a0e39bc629edd5cf355afc16fe702be754c605d1607f27"
|
|
60
|
+
dependencies = [
|
|
61
|
+
"approx",
|
|
62
|
+
"clap",
|
|
63
|
+
"document-features",
|
|
64
|
+
"faer 0.23.2",
|
|
65
|
+
"faer-traits 0.23.2",
|
|
66
|
+
"fixedbitset",
|
|
67
|
+
"num-traits",
|
|
68
|
+
"rand 0.9.4",
|
|
69
|
+
"rand_distr",
|
|
70
|
+
"rayon",
|
|
71
|
+
"rdst",
|
|
72
|
+
"rustc-hash 2.1.2",
|
|
73
|
+
"thousands",
|
|
74
|
+
"wide",
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "anstream"
|
|
79
|
+
version = "1.0.0"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
82
|
+
dependencies = [
|
|
83
|
+
"anstyle",
|
|
84
|
+
"anstyle-parse",
|
|
85
|
+
"anstyle-query",
|
|
86
|
+
"anstyle-wincon",
|
|
87
|
+
"colorchoice",
|
|
88
|
+
"is_terminal_polyfill",
|
|
89
|
+
"utf8parse",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "anstyle"
|
|
94
|
+
version = "1.0.14"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "anstyle-parse"
|
|
100
|
+
version = "1.0.0"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
103
|
+
dependencies = [
|
|
104
|
+
"utf8parse",
|
|
105
|
+
]
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "anstyle-query"
|
|
109
|
+
version = "1.1.5"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
112
|
+
dependencies = [
|
|
113
|
+
"windows-sys 0.61.2",
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "anstyle-wincon"
|
|
118
|
+
version = "3.0.11"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
121
|
+
dependencies = [
|
|
122
|
+
"anstyle",
|
|
123
|
+
"once_cell_polyfill",
|
|
124
|
+
"windows-sys 0.61.2",
|
|
125
|
+
]
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "approx"
|
|
129
|
+
version = "0.5.1"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
132
|
+
dependencies = [
|
|
133
|
+
"num-traits",
|
|
134
|
+
]
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "arbitrary-chunks"
|
|
138
|
+
version = "0.4.1"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "2ad8689a486416c401ea15715a4694de30054248ec627edbf31f49cb64ee4086"
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "arrayref"
|
|
144
|
+
version = "0.3.9"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "arrayvec"
|
|
150
|
+
version = "0.7.6"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "arrow"
|
|
156
|
+
version = "58.2.0"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "607e64bb911ee4f90483e044fe78f175989148c2892e659a2cd25429e782ec54"
|
|
159
|
+
dependencies = [
|
|
160
|
+
"arrow-arith",
|
|
161
|
+
"arrow-array",
|
|
162
|
+
"arrow-buffer",
|
|
163
|
+
"arrow-cast",
|
|
164
|
+
"arrow-data",
|
|
165
|
+
"arrow-ipc",
|
|
166
|
+
"arrow-ord",
|
|
167
|
+
"arrow-row",
|
|
168
|
+
"arrow-schema",
|
|
169
|
+
"arrow-select",
|
|
170
|
+
"arrow-string",
|
|
171
|
+
]
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "arrow-arith"
|
|
175
|
+
version = "58.2.0"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "e754319ed8a85d817fe7adf183227e0b5308b82790a737b426c1124626b48118"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"arrow-array",
|
|
180
|
+
"arrow-buffer",
|
|
181
|
+
"arrow-data",
|
|
182
|
+
"arrow-schema",
|
|
183
|
+
"chrono",
|
|
184
|
+
"num-traits",
|
|
185
|
+
]
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "arrow-array"
|
|
189
|
+
version = "58.2.0"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "841321891f247aa86c6112c80d83d89cb36e0addd020fa2425085b8eb6c3f579"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"ahash",
|
|
194
|
+
"arrow-buffer",
|
|
195
|
+
"arrow-data",
|
|
196
|
+
"arrow-schema",
|
|
197
|
+
"chrono",
|
|
198
|
+
"chrono-tz",
|
|
199
|
+
"half",
|
|
200
|
+
"hashbrown 0.17.1",
|
|
201
|
+
"num-complex",
|
|
202
|
+
"num-integer",
|
|
203
|
+
"num-traits",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "arrow-buffer"
|
|
208
|
+
version = "58.2.0"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "f955dfb73fae000425f49c8226d2044dab60fb7ad4af1e24f961756354d996c9"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"bytes",
|
|
213
|
+
"half",
|
|
214
|
+
"num-bigint",
|
|
215
|
+
"num-traits",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "arrow-cast"
|
|
220
|
+
version = "58.2.0"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "ca5e686972523798f76bef355145bc1ae25a84c731e650268d31ab763c701663"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"arrow-array",
|
|
225
|
+
"arrow-buffer",
|
|
226
|
+
"arrow-data",
|
|
227
|
+
"arrow-ord",
|
|
228
|
+
"arrow-schema",
|
|
229
|
+
"arrow-select",
|
|
230
|
+
"atoi",
|
|
231
|
+
"base64",
|
|
232
|
+
"chrono",
|
|
233
|
+
"comfy-table",
|
|
234
|
+
"half",
|
|
235
|
+
"lexical-core",
|
|
236
|
+
"num-traits",
|
|
237
|
+
"ryu",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "arrow-data"
|
|
242
|
+
version = "58.2.0"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "db3b5846209775b6dc8056d77ff9a032b27043383dd5488abd0b663e265b9373"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"arrow-buffer",
|
|
247
|
+
"arrow-schema",
|
|
248
|
+
"half",
|
|
249
|
+
"num-integer",
|
|
250
|
+
"num-traits",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "arrow-ipc"
|
|
255
|
+
version = "58.2.0"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "fd8907ddd8f9fbabf91ec2c85c1d81fe2874e336d2443eb36373595e28b98dd5"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"arrow-array",
|
|
260
|
+
"arrow-buffer",
|
|
261
|
+
"arrow-data",
|
|
262
|
+
"arrow-schema",
|
|
263
|
+
"arrow-select",
|
|
264
|
+
"flatbuffers",
|
|
265
|
+
]
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "arrow-ord"
|
|
269
|
+
version = "58.2.0"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "efa70d9d6b1356f1fb9f1f651b84a725b7e0abb93f188cf7d31f14abfa2f2e6f"
|
|
272
|
+
dependencies = [
|
|
273
|
+
"arrow-array",
|
|
274
|
+
"arrow-buffer",
|
|
275
|
+
"arrow-data",
|
|
276
|
+
"arrow-schema",
|
|
277
|
+
"arrow-select",
|
|
278
|
+
]
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "arrow-row"
|
|
282
|
+
version = "58.2.0"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "faec88a945338192beffbbd4be0def70135422930caa244ac3cec0cd213b26b4"
|
|
285
|
+
dependencies = [
|
|
286
|
+
"arrow-array",
|
|
287
|
+
"arrow-buffer",
|
|
288
|
+
"arrow-data",
|
|
289
|
+
"arrow-schema",
|
|
290
|
+
"half",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "arrow-schema"
|
|
295
|
+
version = "58.2.0"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "18aa020f6bc8e5201dcd2d4b7f98c68f8a410ef37128263243e6ff2a47a67d4f"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"bitflags",
|
|
300
|
+
]
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "arrow-select"
|
|
304
|
+
version = "58.2.0"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "a657ab5132e9c8ca3b24eb15a823d0ced38017fe3930ff50167466b02e2d592c"
|
|
307
|
+
dependencies = [
|
|
308
|
+
"ahash",
|
|
309
|
+
"arrow-array",
|
|
310
|
+
"arrow-buffer",
|
|
311
|
+
"arrow-data",
|
|
312
|
+
"arrow-schema",
|
|
313
|
+
"num-traits",
|
|
314
|
+
]
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "arrow-string"
|
|
318
|
+
version = "58.2.0"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "f6de2efbbd1a9f9780ceb8d1ff5d20421b35863b361e3386b4f571f1fc69fcb8"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"arrow-array",
|
|
323
|
+
"arrow-buffer",
|
|
324
|
+
"arrow-data",
|
|
325
|
+
"arrow-schema",
|
|
326
|
+
"arrow-select",
|
|
327
|
+
"memchr",
|
|
328
|
+
"num-traits",
|
|
329
|
+
"regex",
|
|
330
|
+
"regex-syntax",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "as-slice"
|
|
335
|
+
version = "0.1.5"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "45403b49e3954a4b8428a0ac21a4b7afadccf92bfd96273f1a58cd4812496ae0"
|
|
338
|
+
dependencies = [
|
|
339
|
+
"generic-array 0.12.4",
|
|
340
|
+
"generic-array 0.13.3",
|
|
341
|
+
"generic-array 0.14.7",
|
|
342
|
+
"stable_deref_trait",
|
|
343
|
+
]
|
|
344
|
+
|
|
345
|
+
[[package]]
|
|
346
|
+
name = "atoi"
|
|
347
|
+
version = "2.0.0"
|
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
350
|
+
dependencies = [
|
|
351
|
+
"num-traits",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "atomic-polyfill"
|
|
356
|
+
version = "1.0.3"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"critical-section",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "atomic-wait"
|
|
365
|
+
version = "1.1.0"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "a55b94919229f2c42292fd71ffa4b75e83193bffdd77b1e858cd55fd2d0b0ea8"
|
|
368
|
+
dependencies = [
|
|
369
|
+
"libc",
|
|
370
|
+
"windows-sys 0.42.0",
|
|
371
|
+
]
|
|
372
|
+
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "autocfg"
|
|
375
|
+
version = "1.5.0"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "base64"
|
|
381
|
+
version = "0.22.1"
|
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "bit-set"
|
|
387
|
+
version = "0.9.1"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "34ddef2995421ab6a5c779542c81ee77c115206f4ad9d5a8e05f4ff49716a3dd"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"bit-vec",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "bit-vec"
|
|
396
|
+
version = "0.9.1"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "b71798fca2c1fe1086445a7258a4bc81e6e49dcd24c8d0dd9a1e57395b603f51"
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "bitflags"
|
|
402
|
+
version = "2.11.1"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "block-buffer"
|
|
408
|
+
version = "0.10.4"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
411
|
+
dependencies = [
|
|
412
|
+
"generic-array 0.14.7",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "block-pseudorand"
|
|
417
|
+
version = "0.1.2"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "2097358495d244a0643746f4d13eedba4608137008cf9dec54e53a3b700115a6"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"chiapos-chacha8",
|
|
422
|
+
"nanorand",
|
|
423
|
+
]
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "bumpalo"
|
|
427
|
+
version = "3.20.2"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "by_address"
|
|
433
|
+
version = "1.2.1"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "bytemuck"
|
|
439
|
+
version = "1.25.0"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"bytemuck_derive",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "bytemuck_derive"
|
|
448
|
+
version = "1.10.2"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"proc-macro2",
|
|
453
|
+
"quote",
|
|
454
|
+
"syn 2.0.117",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "byteorder"
|
|
459
|
+
version = "1.5.0"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "byteorder-lite"
|
|
465
|
+
version = "0.1.0"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "bytes"
|
|
471
|
+
version = "1.11.1"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
474
|
+
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "cast"
|
|
477
|
+
version = "0.3.0"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "cc"
|
|
483
|
+
version = "1.2.62"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"find-msvc-tools",
|
|
488
|
+
"shlex",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "cfg-if"
|
|
493
|
+
version = "1.0.4"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "cfg_aliases"
|
|
499
|
+
version = "0.2.1"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "chiapos-chacha8"
|
|
505
|
+
version = "0.1.0"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "33f8be573a85f6c2bc1b8e43834c07e32f95e489b914bf856c0549c3c269cd0a"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"rayon",
|
|
510
|
+
]
|
|
511
|
+
|
|
512
|
+
[[package]]
|
|
513
|
+
name = "chrono"
|
|
514
|
+
version = "0.4.44"
|
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
516
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
517
|
+
dependencies = [
|
|
518
|
+
"iana-time-zone",
|
|
519
|
+
"js-sys",
|
|
520
|
+
"num-traits",
|
|
521
|
+
"wasm-bindgen",
|
|
522
|
+
"windows-link",
|
|
523
|
+
]
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "chrono-tz"
|
|
527
|
+
version = "0.10.4"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"chrono",
|
|
532
|
+
"phf 0.12.1",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "ciborium"
|
|
537
|
+
version = "0.2.2"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
540
|
+
dependencies = [
|
|
541
|
+
"ciborium-io",
|
|
542
|
+
"ciborium-ll",
|
|
543
|
+
"serde",
|
|
544
|
+
]
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "ciborium-io"
|
|
548
|
+
version = "0.2.2"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "ciborium-ll"
|
|
554
|
+
version = "0.2.2"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
557
|
+
dependencies = [
|
|
558
|
+
"ciborium-io",
|
|
559
|
+
"half",
|
|
560
|
+
]
|
|
561
|
+
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "clap"
|
|
564
|
+
version = "4.6.1"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
567
|
+
dependencies = [
|
|
568
|
+
"clap_builder",
|
|
569
|
+
"clap_derive",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "clap_builder"
|
|
574
|
+
version = "4.6.0"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"anstream",
|
|
579
|
+
"anstyle",
|
|
580
|
+
"clap_lex",
|
|
581
|
+
"strsim",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "clap_derive"
|
|
586
|
+
version = "4.6.1"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"heck",
|
|
591
|
+
"proc-macro2",
|
|
592
|
+
"quote",
|
|
593
|
+
"syn 2.0.117",
|
|
594
|
+
]
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "clap_lex"
|
|
598
|
+
version = "1.1.0"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "codespan-reporting"
|
|
604
|
+
version = "0.13.1"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"unicode-width",
|
|
609
|
+
]
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "color_quant"
|
|
613
|
+
version = "1.1.0"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "colorchoice"
|
|
619
|
+
version = "1.0.5"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "colorous"
|
|
625
|
+
version = "1.0.16"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "e4e18bf7a165bf7028fde98609a0f1e8f7498d762a212598e6c891f6893556ec"
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "comfy-table"
|
|
631
|
+
version = "7.2.2"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"unicode-segmentation",
|
|
636
|
+
"unicode-width",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "console_error_panic_hook"
|
|
641
|
+
version = "0.1.7"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
|
|
644
|
+
dependencies = [
|
|
645
|
+
"cfg-if",
|
|
646
|
+
"wasm-bindgen",
|
|
647
|
+
]
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "const-random"
|
|
651
|
+
version = "0.1.18"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
654
|
+
dependencies = [
|
|
655
|
+
"const-random-macro",
|
|
656
|
+
]
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "const-random-macro"
|
|
660
|
+
version = "0.1.16"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
663
|
+
dependencies = [
|
|
664
|
+
"getrandom 0.2.17",
|
|
665
|
+
"once_cell",
|
|
666
|
+
"tiny-keccak",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "core-foundation-sys"
|
|
671
|
+
version = "0.8.7"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "core_maths"
|
|
677
|
+
version = "0.1.1"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30"
|
|
680
|
+
dependencies = [
|
|
681
|
+
"libm",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "cpufeatures"
|
|
686
|
+
version = "0.2.17"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"libc",
|
|
691
|
+
]
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "crc32fast"
|
|
695
|
+
version = "1.5.0"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"cfg-if",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "criterion"
|
|
704
|
+
version = "0.5.1"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"anes",
|
|
709
|
+
"cast",
|
|
710
|
+
"ciborium",
|
|
711
|
+
"clap",
|
|
712
|
+
"criterion-plot",
|
|
713
|
+
"is-terminal",
|
|
714
|
+
"itertools",
|
|
715
|
+
"num-traits",
|
|
716
|
+
"once_cell",
|
|
717
|
+
"oorandom",
|
|
718
|
+
"plotters",
|
|
719
|
+
"rayon",
|
|
720
|
+
"regex",
|
|
721
|
+
"serde",
|
|
722
|
+
"serde_derive",
|
|
723
|
+
"serde_json",
|
|
724
|
+
"tinytemplate",
|
|
725
|
+
"walkdir",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "criterion-plot"
|
|
730
|
+
version = "0.5.0"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
733
|
+
dependencies = [
|
|
734
|
+
"cast",
|
|
735
|
+
"itertools",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "critical-section"
|
|
740
|
+
version = "1.2.0"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "crossbeam"
|
|
746
|
+
version = "0.8.4"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
|
|
749
|
+
dependencies = [
|
|
750
|
+
"crossbeam-channel",
|
|
751
|
+
"crossbeam-deque",
|
|
752
|
+
"crossbeam-epoch",
|
|
753
|
+
"crossbeam-queue",
|
|
754
|
+
"crossbeam-utils",
|
|
755
|
+
]
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "crossbeam-channel"
|
|
759
|
+
version = "0.5.15"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
762
|
+
dependencies = [
|
|
763
|
+
"crossbeam-utils",
|
|
764
|
+
]
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "crossbeam-deque"
|
|
768
|
+
version = "0.8.6"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"crossbeam-epoch",
|
|
773
|
+
"crossbeam-utils",
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "crossbeam-epoch"
|
|
778
|
+
version = "0.9.18"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"crossbeam-utils",
|
|
783
|
+
]
|
|
784
|
+
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "crossbeam-queue"
|
|
787
|
+
version = "0.3.12"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
790
|
+
dependencies = [
|
|
791
|
+
"crossbeam-utils",
|
|
792
|
+
]
|
|
793
|
+
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "crossbeam-utils"
|
|
796
|
+
version = "0.8.21"
|
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
799
|
+
|
|
800
|
+
[[package]]
|
|
801
|
+
name = "crunchy"
|
|
802
|
+
version = "0.2.4"
|
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
805
|
+
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "crypto-common"
|
|
808
|
+
version = "0.1.7"
|
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
811
|
+
dependencies = [
|
|
812
|
+
"generic-array 0.14.7",
|
|
813
|
+
"typenum",
|
|
814
|
+
]
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "data-url"
|
|
818
|
+
version = "0.3.2"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376"
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "defer"
|
|
824
|
+
version = "0.2.1"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "930c7171c8df9fb1782bdf9b918ed9ed2d33d1d22300abb754f9085bc48bf8e8"
|
|
827
|
+
|
|
828
|
+
[[package]]
|
|
829
|
+
name = "digest"
|
|
830
|
+
version = "0.10.7"
|
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
833
|
+
dependencies = [
|
|
834
|
+
"block-buffer",
|
|
835
|
+
"crypto-common",
|
|
836
|
+
]
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "dlib"
|
|
840
|
+
version = "0.5.3"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "ab8ecd87370524b461f8557c119c405552c396ed91fc0a8eec68679eab26f94a"
|
|
843
|
+
dependencies = [
|
|
844
|
+
"libloading",
|
|
845
|
+
]
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "document-features"
|
|
849
|
+
version = "0.2.12"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
852
|
+
dependencies = [
|
|
853
|
+
"litrs",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "dyn-stack"
|
|
858
|
+
version = "0.13.2"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "1c4713e43e2886ba72b8271aa66c93d722116acf7a75555cce11dcde84388fe8"
|
|
861
|
+
dependencies = [
|
|
862
|
+
"bytemuck",
|
|
863
|
+
"dyn-stack-macros",
|
|
864
|
+
]
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "dyn-stack-macros"
|
|
868
|
+
version = "0.1.3"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "e1d926b4d407d372f141f93bb444696142c29d32962ccbd3531117cf3aa0bfa9"
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "either"
|
|
874
|
+
version = "1.15.0"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "enum-as-inner"
|
|
880
|
+
version = "0.6.1"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
|
|
883
|
+
dependencies = [
|
|
884
|
+
"heck",
|
|
885
|
+
"proc-macro2",
|
|
886
|
+
"quote",
|
|
887
|
+
"syn 2.0.117",
|
|
888
|
+
]
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "equator"
|
|
892
|
+
version = "0.2.2"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "c35da53b5a021d2484a7cc49b2ac7f2d840f8236a286f84202369bd338d761ea"
|
|
895
|
+
dependencies = [
|
|
896
|
+
"equator-macro 0.2.1",
|
|
897
|
+
]
|
|
898
|
+
|
|
899
|
+
[[package]]
|
|
900
|
+
name = "equator"
|
|
901
|
+
version = "0.4.2"
|
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
903
|
+
checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
|
|
904
|
+
dependencies = [
|
|
905
|
+
"equator-macro 0.4.2",
|
|
906
|
+
]
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "equator"
|
|
910
|
+
version = "0.6.0"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "02da895aab06bbebefb6b2595f6d637b18c9ff629b4cd840965bb3164e4194b0"
|
|
913
|
+
dependencies = [
|
|
914
|
+
"equator-macro 0.6.0",
|
|
915
|
+
]
|
|
916
|
+
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "equator-macro"
|
|
919
|
+
version = "0.2.1"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc"
|
|
922
|
+
dependencies = [
|
|
923
|
+
"proc-macro2",
|
|
924
|
+
"quote",
|
|
925
|
+
"syn 2.0.117",
|
|
926
|
+
]
|
|
927
|
+
|
|
928
|
+
[[package]]
|
|
929
|
+
name = "equator-macro"
|
|
930
|
+
version = "0.4.2"
|
|
931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
+
checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
|
|
933
|
+
dependencies = [
|
|
934
|
+
"proc-macro2",
|
|
935
|
+
"quote",
|
|
936
|
+
"syn 2.0.117",
|
|
937
|
+
]
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "equator-macro"
|
|
941
|
+
version = "0.6.0"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "2b14b339eb76d07f052cdbad76ca7c1310e56173a138095d3bf42a23c06ef5d8"
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "equivalent"
|
|
947
|
+
version = "1.0.2"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "euclid"
|
|
953
|
+
version = "0.22.14"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "f1a05365e3b1c6d1650318537c7460c6923f1abdd272ad6842baa2b509957a06"
|
|
956
|
+
dependencies = [
|
|
957
|
+
"num-traits",
|
|
958
|
+
]
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "faer"
|
|
962
|
+
version = "0.23.2"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "3cb922206162d9405f9fc059052b3f997bdc92745da7bfd620645f5092df20d1"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"bytemuck",
|
|
967
|
+
"dyn-stack",
|
|
968
|
+
"equator 0.4.2",
|
|
969
|
+
"faer-macros",
|
|
970
|
+
"faer-traits 0.23.2",
|
|
971
|
+
"gemm 0.18.2",
|
|
972
|
+
"generativity",
|
|
973
|
+
"libm",
|
|
974
|
+
"nano-gemm 0.1.3",
|
|
975
|
+
"npyz",
|
|
976
|
+
"num-complex",
|
|
977
|
+
"num-traits",
|
|
978
|
+
"private-gemm-x86",
|
|
979
|
+
"pulp 0.21.5",
|
|
980
|
+
"rand 0.9.4",
|
|
981
|
+
"rand_distr",
|
|
982
|
+
"rayon",
|
|
983
|
+
"reborrow",
|
|
984
|
+
"spindle",
|
|
985
|
+
]
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "faer"
|
|
989
|
+
version = "0.24.0"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "02d2ecfb80b6f8b0c569e36988a052e64b14d8def9d372390b014e8bf79f299a"
|
|
992
|
+
dependencies = [
|
|
993
|
+
"bytemuck",
|
|
994
|
+
"dyn-stack",
|
|
995
|
+
"equator 0.6.0",
|
|
996
|
+
"faer-traits 0.24.0",
|
|
997
|
+
"gemm 0.19.0",
|
|
998
|
+
"generativity",
|
|
999
|
+
"libm",
|
|
1000
|
+
"nano-gemm 0.2.2",
|
|
1001
|
+
"npyz",
|
|
1002
|
+
"num-complex",
|
|
1003
|
+
"num-traits",
|
|
1004
|
+
"private-gemm-x86",
|
|
1005
|
+
"pulp 0.22.2",
|
|
1006
|
+
"rand 0.9.4",
|
|
1007
|
+
"rand_distr",
|
|
1008
|
+
"rayon",
|
|
1009
|
+
"reborrow",
|
|
1010
|
+
"spindle",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "faer-macros"
|
|
1015
|
+
version = "0.22.1"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "2cc4b8cd876795d3b19ddfd59b03faa303c0b8adb9af6e188e81fc647c485bb9"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"proc-macro2",
|
|
1020
|
+
"quote",
|
|
1021
|
+
"syn 2.0.117",
|
|
1022
|
+
]
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "faer-traits"
|
|
1026
|
+
version = "0.23.2"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "24b69235b5f54416286c485fb047f2f499fc935a4eee2caadf4757f3c94c7b62"
|
|
1029
|
+
dependencies = [
|
|
1030
|
+
"bytemuck",
|
|
1031
|
+
"dyn-stack",
|
|
1032
|
+
"faer-macros",
|
|
1033
|
+
"generativity",
|
|
1034
|
+
"libm",
|
|
1035
|
+
"num-complex",
|
|
1036
|
+
"num-traits",
|
|
1037
|
+
"pulp 0.21.5",
|
|
1038
|
+
"qd 0.7.7",
|
|
1039
|
+
"reborrow",
|
|
1040
|
+
]
|
|
1041
|
+
|
|
1042
|
+
[[package]]
|
|
1043
|
+
name = "faer-traits"
|
|
1044
|
+
version = "0.24.0"
|
|
1045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
+
checksum = "b87d23ed7ab1f26c0cba0e5b9e061a796fbb7dc170fa8bee6970055a1308bb0f"
|
|
1047
|
+
dependencies = [
|
|
1048
|
+
"bytemuck",
|
|
1049
|
+
"dyn-stack",
|
|
1050
|
+
"generativity",
|
|
1051
|
+
"libm",
|
|
1052
|
+
"num-complex",
|
|
1053
|
+
"num-traits",
|
|
1054
|
+
"pulp 0.22.2",
|
|
1055
|
+
"qd 0.8.0",
|
|
1056
|
+
"reborrow",
|
|
1057
|
+
]
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "fast-srgb8"
|
|
1061
|
+
version = "1.0.0"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1"
|
|
1064
|
+
|
|
1065
|
+
[[package]]
|
|
1066
|
+
name = "fdeflate"
|
|
1067
|
+
version = "0.3.7"
|
|
1068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
+
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
1070
|
+
dependencies = [
|
|
1071
|
+
"simd-adler32",
|
|
1072
|
+
]
|
|
1073
|
+
|
|
1074
|
+
[[package]]
|
|
1075
|
+
name = "ferrum-core"
|
|
1076
|
+
version = "0.8.2"
|
|
1077
|
+
dependencies = [
|
|
1078
|
+
"arrow",
|
|
1079
|
+
"base64",
|
|
1080
|
+
"chrono",
|
|
1081
|
+
"colorous",
|
|
1082
|
+
"faer 0.23.2",
|
|
1083
|
+
"faer 0.24.0",
|
|
1084
|
+
"ferrum-scene",
|
|
1085
|
+
"fontdue",
|
|
1086
|
+
"geojson",
|
|
1087
|
+
"kodama",
|
|
1088
|
+
"manifolds-rs",
|
|
1089
|
+
"palette",
|
|
1090
|
+
"png",
|
|
1091
|
+
"pyo3",
|
|
1092
|
+
"pyo3-arrow",
|
|
1093
|
+
"rand 0.8.6",
|
|
1094
|
+
"rand_chacha 0.3.1",
|
|
1095
|
+
"resvg",
|
|
1096
|
+
"serde",
|
|
1097
|
+
"serde_json",
|
|
1098
|
+
"sha2",
|
|
1099
|
+
"tiny-skia",
|
|
1100
|
+
"twox-hash",
|
|
1101
|
+
"usvg",
|
|
1102
|
+
]
|
|
1103
|
+
|
|
1104
|
+
[[package]]
|
|
1105
|
+
name = "ferrum-scene"
|
|
1106
|
+
version = "0.8.2"
|
|
1107
|
+
dependencies = [
|
|
1108
|
+
"serde",
|
|
1109
|
+
"serde_json",
|
|
1110
|
+
]
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "ferrum-wasm"
|
|
1114
|
+
version = "0.8.2"
|
|
1115
|
+
dependencies = [
|
|
1116
|
+
"base64",
|
|
1117
|
+
"bytemuck",
|
|
1118
|
+
"console_error_panic_hook",
|
|
1119
|
+
"ferrum-scene",
|
|
1120
|
+
"js-sys",
|
|
1121
|
+
"lyon",
|
|
1122
|
+
"png",
|
|
1123
|
+
"raw-window-handle",
|
|
1124
|
+
"serde",
|
|
1125
|
+
"serde_json",
|
|
1126
|
+
"wasm-bindgen",
|
|
1127
|
+
"wasm-bindgen-futures",
|
|
1128
|
+
"web-sys",
|
|
1129
|
+
"wgpu",
|
|
1130
|
+
]
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "find-msvc-tools"
|
|
1134
|
+
version = "0.1.9"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "fixedbitset"
|
|
1140
|
+
version = "0.5.7"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
1143
|
+
|
|
1144
|
+
[[package]]
|
|
1145
|
+
name = "flatbuffers"
|
|
1146
|
+
version = "25.12.19"
|
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
+
checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
|
|
1149
|
+
dependencies = [
|
|
1150
|
+
"bitflags",
|
|
1151
|
+
"rustc_version",
|
|
1152
|
+
]
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "flate2"
|
|
1156
|
+
version = "1.1.9"
|
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
1159
|
+
dependencies = [
|
|
1160
|
+
"crc32fast",
|
|
1161
|
+
"miniz_oxide",
|
|
1162
|
+
]
|
|
1163
|
+
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "float-cmp"
|
|
1166
|
+
version = "0.9.0"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
|
1169
|
+
|
|
1170
|
+
[[package]]
|
|
1171
|
+
name = "float_next_after"
|
|
1172
|
+
version = "1.0.0"
|
|
1173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
|
+
checksum = "8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8"
|
|
1175
|
+
|
|
1176
|
+
[[package]]
|
|
1177
|
+
name = "foldhash"
|
|
1178
|
+
version = "0.1.5"
|
|
1179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1180
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "foldhash"
|
|
1184
|
+
version = "0.2.0"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "fontconfig-parser"
|
|
1190
|
+
version = "0.5.8"
|
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
+
checksum = "bbc773e24e02d4ddd8395fd30dc147524273a83e54e0f312d986ea30de5f5646"
|
|
1193
|
+
dependencies = [
|
|
1194
|
+
"roxmltree 0.20.0",
|
|
1195
|
+
]
|
|
1196
|
+
|
|
1197
|
+
[[package]]
|
|
1198
|
+
name = "fontdb"
|
|
1199
|
+
version = "0.23.0"
|
|
1200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
+
checksum = "457e789b3d1202543297a350643cf459f836cade38934e7a4cf6a39e7cde2905"
|
|
1202
|
+
dependencies = [
|
|
1203
|
+
"fontconfig-parser",
|
|
1204
|
+
"log",
|
|
1205
|
+
"memmap2",
|
|
1206
|
+
"slotmap",
|
|
1207
|
+
"tinyvec",
|
|
1208
|
+
"ttf-parser 0.25.1",
|
|
1209
|
+
]
|
|
1210
|
+
|
|
1211
|
+
[[package]]
|
|
1212
|
+
name = "fontdue"
|
|
1213
|
+
version = "0.9.3"
|
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
+
checksum = "2e57e16b3fe8ff4364c0661fdaac543fb38b29ea9bc9c2f45612d90adf931d2b"
|
|
1216
|
+
dependencies = [
|
|
1217
|
+
"hashbrown 0.15.5",
|
|
1218
|
+
"ttf-parser 0.21.1",
|
|
1219
|
+
]
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "futures-core"
|
|
1223
|
+
version = "0.3.32"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "futures-task"
|
|
1229
|
+
version = "0.3.32"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "futures-util"
|
|
1235
|
+
version = "0.3.32"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
1238
|
+
dependencies = [
|
|
1239
|
+
"futures-core",
|
|
1240
|
+
"futures-task",
|
|
1241
|
+
"pin-project-lite",
|
|
1242
|
+
"slab",
|
|
1243
|
+
]
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "gemm"
|
|
1247
|
+
version = "0.18.2"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "ab96b703d31950f1aeddded248bc95543c9efc7ac9c4a21fda8703a83ee35451"
|
|
1250
|
+
dependencies = [
|
|
1251
|
+
"dyn-stack",
|
|
1252
|
+
"gemm-c32 0.18.2",
|
|
1253
|
+
"gemm-c64 0.18.2",
|
|
1254
|
+
"gemm-common 0.18.2",
|
|
1255
|
+
"gemm-f16 0.18.2",
|
|
1256
|
+
"gemm-f32 0.18.2",
|
|
1257
|
+
"gemm-f64 0.18.2",
|
|
1258
|
+
"num-complex",
|
|
1259
|
+
"num-traits",
|
|
1260
|
+
"paste",
|
|
1261
|
+
"raw-cpuid",
|
|
1262
|
+
"seq-macro",
|
|
1263
|
+
]
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "gemm"
|
|
1267
|
+
version = "0.19.0"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "aa0673db364b12263d103b68337a68fbecc541d6f6b61ba72fe438654709eacb"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"dyn-stack",
|
|
1272
|
+
"gemm-c32 0.19.0",
|
|
1273
|
+
"gemm-c64 0.19.0",
|
|
1274
|
+
"gemm-common 0.19.0",
|
|
1275
|
+
"gemm-f16 0.19.0",
|
|
1276
|
+
"gemm-f32 0.19.0",
|
|
1277
|
+
"gemm-f64 0.19.0",
|
|
1278
|
+
"num-complex",
|
|
1279
|
+
"num-traits",
|
|
1280
|
+
"paste",
|
|
1281
|
+
"raw-cpuid",
|
|
1282
|
+
"seq-macro",
|
|
1283
|
+
]
|
|
1284
|
+
|
|
1285
|
+
[[package]]
|
|
1286
|
+
name = "gemm-c32"
|
|
1287
|
+
version = "0.18.2"
|
|
1288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
+
checksum = "f6db9fd9f40421d00eea9dd0770045a5603b8d684654816637732463f4073847"
|
|
1290
|
+
dependencies = [
|
|
1291
|
+
"dyn-stack",
|
|
1292
|
+
"gemm-common 0.18.2",
|
|
1293
|
+
"num-complex",
|
|
1294
|
+
"num-traits",
|
|
1295
|
+
"paste",
|
|
1296
|
+
"raw-cpuid",
|
|
1297
|
+
"seq-macro",
|
|
1298
|
+
]
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "gemm-c32"
|
|
1302
|
+
version = "0.19.0"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "086936dbdcb99e37aad81d320f98f670e53c1e55a98bee70573e83f95beb128c"
|
|
1305
|
+
dependencies = [
|
|
1306
|
+
"dyn-stack",
|
|
1307
|
+
"gemm-common 0.19.0",
|
|
1308
|
+
"num-complex",
|
|
1309
|
+
"num-traits",
|
|
1310
|
+
"paste",
|
|
1311
|
+
"raw-cpuid",
|
|
1312
|
+
"seq-macro",
|
|
1313
|
+
]
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "gemm-c64"
|
|
1317
|
+
version = "0.18.2"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "dfcad8a3d35a43758330b635d02edad980c1e143dc2f21e6fd25f9e4eada8edf"
|
|
1320
|
+
dependencies = [
|
|
1321
|
+
"dyn-stack",
|
|
1322
|
+
"gemm-common 0.18.2",
|
|
1323
|
+
"num-complex",
|
|
1324
|
+
"num-traits",
|
|
1325
|
+
"paste",
|
|
1326
|
+
"raw-cpuid",
|
|
1327
|
+
"seq-macro",
|
|
1328
|
+
]
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "gemm-c64"
|
|
1332
|
+
version = "0.19.0"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "20c8aeeeec425959bda4d9827664029ba1501a90a0d1e6228e48bef741db3a3f"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"dyn-stack",
|
|
1337
|
+
"gemm-common 0.19.0",
|
|
1338
|
+
"num-complex",
|
|
1339
|
+
"num-traits",
|
|
1340
|
+
"paste",
|
|
1341
|
+
"raw-cpuid",
|
|
1342
|
+
"seq-macro",
|
|
1343
|
+
]
|
|
1344
|
+
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "gemm-common"
|
|
1347
|
+
version = "0.18.2"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "a352d4a69cbe938b9e2a9cb7a3a63b7e72f9349174a2752a558a8a563510d0f3"
|
|
1350
|
+
dependencies = [
|
|
1351
|
+
"bytemuck",
|
|
1352
|
+
"dyn-stack",
|
|
1353
|
+
"half",
|
|
1354
|
+
"libm",
|
|
1355
|
+
"num-complex",
|
|
1356
|
+
"num-traits",
|
|
1357
|
+
"once_cell",
|
|
1358
|
+
"paste",
|
|
1359
|
+
"pulp 0.21.5",
|
|
1360
|
+
"raw-cpuid",
|
|
1361
|
+
"rayon",
|
|
1362
|
+
"seq-macro",
|
|
1363
|
+
"sysctl",
|
|
1364
|
+
]
|
|
1365
|
+
|
|
1366
|
+
[[package]]
|
|
1367
|
+
name = "gemm-common"
|
|
1368
|
+
version = "0.19.0"
|
|
1369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1370
|
+
checksum = "88027625910cc9b1085aaaa1c4bc46bb3a36aad323452b33c25b5e4e7c8e2a3e"
|
|
1371
|
+
dependencies = [
|
|
1372
|
+
"bytemuck",
|
|
1373
|
+
"dyn-stack",
|
|
1374
|
+
"half",
|
|
1375
|
+
"libm",
|
|
1376
|
+
"num-complex",
|
|
1377
|
+
"num-traits",
|
|
1378
|
+
"once_cell",
|
|
1379
|
+
"paste",
|
|
1380
|
+
"pulp 0.22.2",
|
|
1381
|
+
"raw-cpuid",
|
|
1382
|
+
"rayon",
|
|
1383
|
+
"seq-macro",
|
|
1384
|
+
"sysctl",
|
|
1385
|
+
]
|
|
1386
|
+
|
|
1387
|
+
[[package]]
|
|
1388
|
+
name = "gemm-f16"
|
|
1389
|
+
version = "0.18.2"
|
|
1390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1391
|
+
checksum = "cff95ae3259432f3c3410eaa919033cd03791d81cebd18018393dc147952e109"
|
|
1392
|
+
dependencies = [
|
|
1393
|
+
"dyn-stack",
|
|
1394
|
+
"gemm-common 0.18.2",
|
|
1395
|
+
"gemm-f32 0.18.2",
|
|
1396
|
+
"half",
|
|
1397
|
+
"num-complex",
|
|
1398
|
+
"num-traits",
|
|
1399
|
+
"paste",
|
|
1400
|
+
"raw-cpuid",
|
|
1401
|
+
"rayon",
|
|
1402
|
+
"seq-macro",
|
|
1403
|
+
]
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "gemm-f16"
|
|
1407
|
+
version = "0.19.0"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "e3df7a55202e6cd6739d82ae3399c8e0c7e1402859b30e4cb780e61525d9486e"
|
|
1410
|
+
dependencies = [
|
|
1411
|
+
"dyn-stack",
|
|
1412
|
+
"gemm-common 0.19.0",
|
|
1413
|
+
"gemm-f32 0.19.0",
|
|
1414
|
+
"half",
|
|
1415
|
+
"num-complex",
|
|
1416
|
+
"num-traits",
|
|
1417
|
+
"paste",
|
|
1418
|
+
"raw-cpuid",
|
|
1419
|
+
"rayon",
|
|
1420
|
+
"seq-macro",
|
|
1421
|
+
]
|
|
1422
|
+
|
|
1423
|
+
[[package]]
|
|
1424
|
+
name = "gemm-f32"
|
|
1425
|
+
version = "0.18.2"
|
|
1426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
|
+
checksum = "bc8d3d4385393304f407392f754cd2dc4b315d05063f62cf09f47b58de276864"
|
|
1428
|
+
dependencies = [
|
|
1429
|
+
"dyn-stack",
|
|
1430
|
+
"gemm-common 0.18.2",
|
|
1431
|
+
"num-complex",
|
|
1432
|
+
"num-traits",
|
|
1433
|
+
"paste",
|
|
1434
|
+
"raw-cpuid",
|
|
1435
|
+
"seq-macro",
|
|
1436
|
+
]
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "gemm-f32"
|
|
1440
|
+
version = "0.19.0"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "02e0b8c9da1fbec6e3e3ab2ce6bc259ef18eb5f6f0d3e4edf54b75f9fd41a81c"
|
|
1443
|
+
dependencies = [
|
|
1444
|
+
"dyn-stack",
|
|
1445
|
+
"gemm-common 0.19.0",
|
|
1446
|
+
"num-complex",
|
|
1447
|
+
"num-traits",
|
|
1448
|
+
"paste",
|
|
1449
|
+
"raw-cpuid",
|
|
1450
|
+
"seq-macro",
|
|
1451
|
+
]
|
|
1452
|
+
|
|
1453
|
+
[[package]]
|
|
1454
|
+
name = "gemm-f64"
|
|
1455
|
+
version = "0.18.2"
|
|
1456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
+
checksum = "35b2a4f76ce4b8b16eadc11ccf2e083252d8237c1b589558a49b0183545015bd"
|
|
1458
|
+
dependencies = [
|
|
1459
|
+
"dyn-stack",
|
|
1460
|
+
"gemm-common 0.18.2",
|
|
1461
|
+
"num-complex",
|
|
1462
|
+
"num-traits",
|
|
1463
|
+
"paste",
|
|
1464
|
+
"raw-cpuid",
|
|
1465
|
+
"seq-macro",
|
|
1466
|
+
]
|
|
1467
|
+
|
|
1468
|
+
[[package]]
|
|
1469
|
+
name = "gemm-f64"
|
|
1470
|
+
version = "0.19.0"
|
|
1471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
+
checksum = "056131e8f2a521bfab322f804ccd652520c79700d81209e9d9275bbdecaadc6a"
|
|
1473
|
+
dependencies = [
|
|
1474
|
+
"dyn-stack",
|
|
1475
|
+
"gemm-common 0.19.0",
|
|
1476
|
+
"num-complex",
|
|
1477
|
+
"num-traits",
|
|
1478
|
+
"paste",
|
|
1479
|
+
"raw-cpuid",
|
|
1480
|
+
"seq-macro",
|
|
1481
|
+
]
|
|
1482
|
+
|
|
1483
|
+
[[package]]
|
|
1484
|
+
name = "generativity"
|
|
1485
|
+
version = "1.2.1"
|
|
1486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1487
|
+
checksum = "d2c81fb5260e37854d09d5c87183309fd8c555b75289427884b25660bc87a85e"
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "generator"
|
|
1491
|
+
version = "0.8.8"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"cc",
|
|
1496
|
+
"cfg-if",
|
|
1497
|
+
"libc",
|
|
1498
|
+
"log",
|
|
1499
|
+
"rustversion",
|
|
1500
|
+
"windows-link",
|
|
1501
|
+
"windows-result",
|
|
1502
|
+
]
|
|
1503
|
+
|
|
1504
|
+
[[package]]
|
|
1505
|
+
name = "generic-array"
|
|
1506
|
+
version = "0.12.4"
|
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
+
checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
|
|
1509
|
+
dependencies = [
|
|
1510
|
+
"typenum",
|
|
1511
|
+
]
|
|
1512
|
+
|
|
1513
|
+
[[package]]
|
|
1514
|
+
name = "generic-array"
|
|
1515
|
+
version = "0.13.3"
|
|
1516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
+
checksum = "f797e67af32588215eaaab8327027ee8e71b9dd0b2b26996aedf20c030fce309"
|
|
1518
|
+
dependencies = [
|
|
1519
|
+
"typenum",
|
|
1520
|
+
]
|
|
1521
|
+
|
|
1522
|
+
[[package]]
|
|
1523
|
+
name = "generic-array"
|
|
1524
|
+
version = "0.14.7"
|
|
1525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1527
|
+
dependencies = [
|
|
1528
|
+
"typenum",
|
|
1529
|
+
"version_check",
|
|
1530
|
+
]
|
|
1531
|
+
|
|
1532
|
+
[[package]]
|
|
1533
|
+
name = "geo-types"
|
|
1534
|
+
version = "0.7.19"
|
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
+
checksum = "94776032c45f950d30a13af6113c2ad5625316c9abfbccee4dd5a6695f8fe0f5"
|
|
1537
|
+
dependencies = [
|
|
1538
|
+
"approx",
|
|
1539
|
+
"num-traits",
|
|
1540
|
+
"rstar 0.10.0",
|
|
1541
|
+
"rstar 0.11.0",
|
|
1542
|
+
"rstar 0.12.2",
|
|
1543
|
+
"rstar 0.8.4",
|
|
1544
|
+
"rstar 0.9.3",
|
|
1545
|
+
"serde",
|
|
1546
|
+
]
|
|
1547
|
+
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "geojson"
|
|
1550
|
+
version = "0.24.2"
|
|
1551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
+
checksum = "e26f3c45b36fccc9cf2805e61d4da6bc4bbd5a3a9589b01afa3a40eff703bd79"
|
|
1553
|
+
dependencies = [
|
|
1554
|
+
"geo-types",
|
|
1555
|
+
"log",
|
|
1556
|
+
"serde",
|
|
1557
|
+
"serde_json",
|
|
1558
|
+
"thiserror 2.0.18",
|
|
1559
|
+
]
|
|
1560
|
+
|
|
1561
|
+
[[package]]
|
|
1562
|
+
name = "getrandom"
|
|
1563
|
+
version = "0.2.17"
|
|
1564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1565
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
1566
|
+
dependencies = [
|
|
1567
|
+
"cfg-if",
|
|
1568
|
+
"libc",
|
|
1569
|
+
"wasi",
|
|
1570
|
+
]
|
|
1571
|
+
|
|
1572
|
+
[[package]]
|
|
1573
|
+
name = "getrandom"
|
|
1574
|
+
version = "0.3.4"
|
|
1575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1576
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1577
|
+
dependencies = [
|
|
1578
|
+
"cfg-if",
|
|
1579
|
+
"libc",
|
|
1580
|
+
"r-efi",
|
|
1581
|
+
"wasip2",
|
|
1582
|
+
]
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "gif"
|
|
1586
|
+
version = "0.14.2"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
|
|
1589
|
+
dependencies = [
|
|
1590
|
+
"color_quant",
|
|
1591
|
+
"weezl",
|
|
1592
|
+
]
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "gl_generator"
|
|
1596
|
+
version = "0.14.0"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
|
|
1599
|
+
dependencies = [
|
|
1600
|
+
"khronos_api",
|
|
1601
|
+
"log",
|
|
1602
|
+
"xml-rs",
|
|
1603
|
+
]
|
|
1604
|
+
|
|
1605
|
+
[[package]]
|
|
1606
|
+
name = "glow"
|
|
1607
|
+
version = "0.17.0"
|
|
1608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
+
checksum = "29038e1c483364cc6bb3cf78feee1816002e127c331a1eec55a4d202b9e1adb5"
|
|
1610
|
+
dependencies = [
|
|
1611
|
+
"js-sys",
|
|
1612
|
+
"slotmap",
|
|
1613
|
+
"wasm-bindgen",
|
|
1614
|
+
"web-sys",
|
|
1615
|
+
]
|
|
1616
|
+
|
|
1617
|
+
[[package]]
|
|
1618
|
+
name = "glutin_wgl_sys"
|
|
1619
|
+
version = "0.6.1"
|
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
+
checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e"
|
|
1622
|
+
dependencies = [
|
|
1623
|
+
"gl_generator",
|
|
1624
|
+
]
|
|
1625
|
+
|
|
1626
|
+
[[package]]
|
|
1627
|
+
name = "half"
|
|
1628
|
+
version = "2.7.1"
|
|
1629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1630
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1631
|
+
dependencies = [
|
|
1632
|
+
"bytemuck",
|
|
1633
|
+
"cfg-if",
|
|
1634
|
+
"crunchy",
|
|
1635
|
+
"num-traits",
|
|
1636
|
+
"zerocopy",
|
|
1637
|
+
]
|
|
1638
|
+
|
|
1639
|
+
[[package]]
|
|
1640
|
+
name = "hash32"
|
|
1641
|
+
version = "0.1.1"
|
|
1642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
|
+
checksum = "d4041af86e63ac4298ce40e5cca669066e75b6f1aa3390fe2561ffa5e1d9f4cc"
|
|
1644
|
+
dependencies = [
|
|
1645
|
+
"byteorder",
|
|
1646
|
+
]
|
|
1647
|
+
|
|
1648
|
+
[[package]]
|
|
1649
|
+
name = "hash32"
|
|
1650
|
+
version = "0.2.1"
|
|
1651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1652
|
+
checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
|
|
1653
|
+
dependencies = [
|
|
1654
|
+
"byteorder",
|
|
1655
|
+
]
|
|
1656
|
+
|
|
1657
|
+
[[package]]
|
|
1658
|
+
name = "hash32"
|
|
1659
|
+
version = "0.3.1"
|
|
1660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1661
|
+
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
|
|
1662
|
+
dependencies = [
|
|
1663
|
+
"byteorder",
|
|
1664
|
+
]
|
|
1665
|
+
|
|
1666
|
+
[[package]]
|
|
1667
|
+
name = "hashbrown"
|
|
1668
|
+
version = "0.15.5"
|
|
1669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1671
|
+
dependencies = [
|
|
1672
|
+
"allocator-api2",
|
|
1673
|
+
"equivalent",
|
|
1674
|
+
"foldhash 0.1.5",
|
|
1675
|
+
]
|
|
1676
|
+
|
|
1677
|
+
[[package]]
|
|
1678
|
+
name = "hashbrown"
|
|
1679
|
+
version = "0.16.1"
|
|
1680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1681
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1682
|
+
dependencies = [
|
|
1683
|
+
"foldhash 0.2.0",
|
|
1684
|
+
]
|
|
1685
|
+
|
|
1686
|
+
[[package]]
|
|
1687
|
+
name = "hashbrown"
|
|
1688
|
+
version = "0.17.1"
|
|
1689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1690
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1691
|
+
|
|
1692
|
+
[[package]]
|
|
1693
|
+
name = "heapless"
|
|
1694
|
+
version = "0.6.1"
|
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
+
checksum = "634bd4d29cbf24424d0a4bfcbf80c6960129dc24424752a7d1d1390607023422"
|
|
1697
|
+
dependencies = [
|
|
1698
|
+
"as-slice",
|
|
1699
|
+
"generic-array 0.14.7",
|
|
1700
|
+
"hash32 0.1.1",
|
|
1701
|
+
"stable_deref_trait",
|
|
1702
|
+
]
|
|
1703
|
+
|
|
1704
|
+
[[package]]
|
|
1705
|
+
name = "heapless"
|
|
1706
|
+
version = "0.7.17"
|
|
1707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
+
checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
|
|
1709
|
+
dependencies = [
|
|
1710
|
+
"atomic-polyfill",
|
|
1711
|
+
"hash32 0.2.1",
|
|
1712
|
+
"rustc_version",
|
|
1713
|
+
"spin",
|
|
1714
|
+
"stable_deref_trait",
|
|
1715
|
+
]
|
|
1716
|
+
|
|
1717
|
+
[[package]]
|
|
1718
|
+
name = "heapless"
|
|
1719
|
+
version = "0.8.0"
|
|
1720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1721
|
+
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
|
1722
|
+
dependencies = [
|
|
1723
|
+
"hash32 0.3.1",
|
|
1724
|
+
"stable_deref_trait",
|
|
1725
|
+
]
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "heck"
|
|
1729
|
+
version = "0.5.0"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1732
|
+
|
|
1733
|
+
[[package]]
|
|
1734
|
+
name = "hermit-abi"
|
|
1735
|
+
version = "0.5.2"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "hexf-parse"
|
|
1741
|
+
version = "0.2.1"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "iana-time-zone"
|
|
1747
|
+
version = "0.1.65"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
1750
|
+
dependencies = [
|
|
1751
|
+
"android_system_properties",
|
|
1752
|
+
"core-foundation-sys",
|
|
1753
|
+
"iana-time-zone-haiku",
|
|
1754
|
+
"js-sys",
|
|
1755
|
+
"log",
|
|
1756
|
+
"wasm-bindgen",
|
|
1757
|
+
"windows-core",
|
|
1758
|
+
]
|
|
1759
|
+
|
|
1760
|
+
[[package]]
|
|
1761
|
+
name = "iana-time-zone-haiku"
|
|
1762
|
+
version = "0.1.2"
|
|
1763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1764
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1765
|
+
dependencies = [
|
|
1766
|
+
"cc",
|
|
1767
|
+
]
|
|
1768
|
+
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "image-webp"
|
|
1771
|
+
version = "0.2.4"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
|
|
1774
|
+
dependencies = [
|
|
1775
|
+
"byteorder-lite",
|
|
1776
|
+
"quick-error",
|
|
1777
|
+
]
|
|
1778
|
+
|
|
1779
|
+
[[package]]
|
|
1780
|
+
name = "imagesize"
|
|
1781
|
+
version = "0.14.0"
|
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
+
checksum = "09e54e57b4c48b40f7aec75635392b12b3421fa26fe8b4332e63138ed278459c"
|
|
1784
|
+
|
|
1785
|
+
[[package]]
|
|
1786
|
+
name = "indexmap"
|
|
1787
|
+
version = "2.14.0"
|
|
1788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1790
|
+
dependencies = [
|
|
1791
|
+
"equivalent",
|
|
1792
|
+
"hashbrown 0.17.1",
|
|
1793
|
+
]
|
|
1794
|
+
|
|
1795
|
+
[[package]]
|
|
1796
|
+
name = "interpol"
|
|
1797
|
+
version = "0.2.1"
|
|
1798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
+
checksum = "eb58032ba748f4010d15912a1855a8a0b1ba9eaad3395b0c171c09b3b356ae50"
|
|
1800
|
+
dependencies = [
|
|
1801
|
+
"proc-macro2",
|
|
1802
|
+
"quote",
|
|
1803
|
+
"syn 1.0.109",
|
|
1804
|
+
]
|
|
1805
|
+
|
|
1806
|
+
[[package]]
|
|
1807
|
+
name = "is-terminal"
|
|
1808
|
+
version = "0.4.17"
|
|
1809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1811
|
+
dependencies = [
|
|
1812
|
+
"hermit-abi",
|
|
1813
|
+
"libc",
|
|
1814
|
+
"windows-sys 0.61.2",
|
|
1815
|
+
]
|
|
1816
|
+
|
|
1817
|
+
[[package]]
|
|
1818
|
+
name = "is_terminal_polyfill"
|
|
1819
|
+
version = "1.70.2"
|
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1822
|
+
|
|
1823
|
+
[[package]]
|
|
1824
|
+
name = "itertools"
|
|
1825
|
+
version = "0.10.5"
|
|
1826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1828
|
+
dependencies = [
|
|
1829
|
+
"either",
|
|
1830
|
+
]
|
|
1831
|
+
|
|
1832
|
+
[[package]]
|
|
1833
|
+
name = "itoa"
|
|
1834
|
+
version = "1.0.18"
|
|
1835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1837
|
+
|
|
1838
|
+
[[package]]
|
|
1839
|
+
name = "jni-sys"
|
|
1840
|
+
version = "0.3.1"
|
|
1841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1842
|
+
checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
|
|
1843
|
+
dependencies = [
|
|
1844
|
+
"jni-sys 0.4.1",
|
|
1845
|
+
]
|
|
1846
|
+
|
|
1847
|
+
[[package]]
|
|
1848
|
+
name = "jni-sys"
|
|
1849
|
+
version = "0.4.1"
|
|
1850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
1852
|
+
dependencies = [
|
|
1853
|
+
"jni-sys-macros",
|
|
1854
|
+
]
|
|
1855
|
+
|
|
1856
|
+
[[package]]
|
|
1857
|
+
name = "jni-sys-macros"
|
|
1858
|
+
version = "0.4.1"
|
|
1859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
1861
|
+
dependencies = [
|
|
1862
|
+
"quote",
|
|
1863
|
+
"syn 2.0.117",
|
|
1864
|
+
]
|
|
1865
|
+
|
|
1866
|
+
[[package]]
|
|
1867
|
+
name = "js-sys"
|
|
1868
|
+
version = "0.3.98"
|
|
1869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1870
|
+
checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
|
|
1871
|
+
dependencies = [
|
|
1872
|
+
"cfg-if",
|
|
1873
|
+
"futures-util",
|
|
1874
|
+
"once_cell",
|
|
1875
|
+
"wasm-bindgen",
|
|
1876
|
+
]
|
|
1877
|
+
|
|
1878
|
+
[[package]]
|
|
1879
|
+
name = "khronos-egl"
|
|
1880
|
+
version = "6.0.0"
|
|
1881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1882
|
+
checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
|
|
1883
|
+
dependencies = [
|
|
1884
|
+
"libc",
|
|
1885
|
+
"libloading",
|
|
1886
|
+
"pkg-config",
|
|
1887
|
+
]
|
|
1888
|
+
|
|
1889
|
+
[[package]]
|
|
1890
|
+
name = "khronos_api"
|
|
1891
|
+
version = "3.1.0"
|
|
1892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1893
|
+
checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
|
|
1894
|
+
|
|
1895
|
+
[[package]]
|
|
1896
|
+
name = "kodama"
|
|
1897
|
+
version = "0.3.0"
|
|
1898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
|
+
checksum = "f868feceed4703c842925c14232667c5f29c8059d0354154b2d06ec3bf9daf82"
|
|
1900
|
+
|
|
1901
|
+
[[package]]
|
|
1902
|
+
name = "kurbo"
|
|
1903
|
+
version = "0.13.0"
|
|
1904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1905
|
+
checksum = "7564e90fe3c0d5771e1f0bc95322b21baaeaa0d9213fa6a0b61c99f8b17b3bfb"
|
|
1906
|
+
dependencies = [
|
|
1907
|
+
"arrayvec",
|
|
1908
|
+
"euclid",
|
|
1909
|
+
"smallvec",
|
|
1910
|
+
]
|
|
1911
|
+
|
|
1912
|
+
[[package]]
|
|
1913
|
+
name = "lazy_static"
|
|
1914
|
+
version = "1.5.0"
|
|
1915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1916
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1917
|
+
|
|
1918
|
+
[[package]]
|
|
1919
|
+
name = "lexical-core"
|
|
1920
|
+
version = "1.0.6"
|
|
1921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1922
|
+
checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
|
|
1923
|
+
dependencies = [
|
|
1924
|
+
"lexical-parse-float",
|
|
1925
|
+
"lexical-parse-integer",
|
|
1926
|
+
"lexical-util",
|
|
1927
|
+
"lexical-write-float",
|
|
1928
|
+
"lexical-write-integer",
|
|
1929
|
+
]
|
|
1930
|
+
|
|
1931
|
+
[[package]]
|
|
1932
|
+
name = "lexical-parse-float"
|
|
1933
|
+
version = "1.0.6"
|
|
1934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1935
|
+
checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
|
|
1936
|
+
dependencies = [
|
|
1937
|
+
"lexical-parse-integer",
|
|
1938
|
+
"lexical-util",
|
|
1939
|
+
]
|
|
1940
|
+
|
|
1941
|
+
[[package]]
|
|
1942
|
+
name = "lexical-parse-integer"
|
|
1943
|
+
version = "1.0.6"
|
|
1944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1945
|
+
checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
|
|
1946
|
+
dependencies = [
|
|
1947
|
+
"lexical-util",
|
|
1948
|
+
]
|
|
1949
|
+
|
|
1950
|
+
[[package]]
|
|
1951
|
+
name = "lexical-util"
|
|
1952
|
+
version = "1.0.7"
|
|
1953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1954
|
+
checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
1955
|
+
|
|
1956
|
+
[[package]]
|
|
1957
|
+
name = "lexical-write-float"
|
|
1958
|
+
version = "1.0.6"
|
|
1959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1960
|
+
checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
|
|
1961
|
+
dependencies = [
|
|
1962
|
+
"lexical-util",
|
|
1963
|
+
"lexical-write-integer",
|
|
1964
|
+
]
|
|
1965
|
+
|
|
1966
|
+
[[package]]
|
|
1967
|
+
name = "lexical-write-integer"
|
|
1968
|
+
version = "1.0.6"
|
|
1969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1970
|
+
checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
|
|
1971
|
+
dependencies = [
|
|
1972
|
+
"lexical-util",
|
|
1973
|
+
]
|
|
1974
|
+
|
|
1975
|
+
[[package]]
|
|
1976
|
+
name = "libc"
|
|
1977
|
+
version = "0.2.186"
|
|
1978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1979
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1980
|
+
|
|
1981
|
+
[[package]]
|
|
1982
|
+
name = "libloading"
|
|
1983
|
+
version = "0.8.9"
|
|
1984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1985
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1986
|
+
dependencies = [
|
|
1987
|
+
"cfg-if",
|
|
1988
|
+
"windows-link",
|
|
1989
|
+
]
|
|
1990
|
+
|
|
1991
|
+
[[package]]
|
|
1992
|
+
name = "libm"
|
|
1993
|
+
version = "0.2.16"
|
|
1994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1995
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1996
|
+
|
|
1997
|
+
[[package]]
|
|
1998
|
+
name = "litrs"
|
|
1999
|
+
version = "1.0.0"
|
|
2000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2001
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
2002
|
+
|
|
2003
|
+
[[package]]
|
|
2004
|
+
name = "lock_api"
|
|
2005
|
+
version = "0.4.14"
|
|
2006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2007
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
2008
|
+
dependencies = [
|
|
2009
|
+
"scopeguard",
|
|
2010
|
+
]
|
|
2011
|
+
|
|
2012
|
+
[[package]]
|
|
2013
|
+
name = "log"
|
|
2014
|
+
version = "0.4.29"
|
|
2015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
2017
|
+
|
|
2018
|
+
[[package]]
|
|
2019
|
+
name = "loom"
|
|
2020
|
+
version = "0.7.2"
|
|
2021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2022
|
+
checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
|
|
2023
|
+
dependencies = [
|
|
2024
|
+
"cfg-if",
|
|
2025
|
+
"generator",
|
|
2026
|
+
"scoped-tls",
|
|
2027
|
+
"tracing",
|
|
2028
|
+
"tracing-subscriber",
|
|
2029
|
+
]
|
|
2030
|
+
|
|
2031
|
+
[[package]]
|
|
2032
|
+
name = "lyon"
|
|
2033
|
+
version = "1.0.19"
|
|
2034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2035
|
+
checksum = "bd0578bdecb7d6d88987b8b2b1e3a4e2f81df9d0ece1078623324a567904e7b7"
|
|
2036
|
+
dependencies = [
|
|
2037
|
+
"lyon_algorithms",
|
|
2038
|
+
"lyon_tessellation",
|
|
2039
|
+
]
|
|
2040
|
+
|
|
2041
|
+
[[package]]
|
|
2042
|
+
name = "lyon_algorithms"
|
|
2043
|
+
version = "1.0.20"
|
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
+
checksum = "8575c0d003ae459399623c4def180c63b77f343b1a7fee64f249b349e7699a31"
|
|
2046
|
+
dependencies = [
|
|
2047
|
+
"lyon_path",
|
|
2048
|
+
"num-traits",
|
|
2049
|
+
]
|
|
2050
|
+
|
|
2051
|
+
[[package]]
|
|
2052
|
+
name = "lyon_geom"
|
|
2053
|
+
version = "1.0.19"
|
|
2054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2055
|
+
checksum = "4336502e29e32af93cf2dad2214ed6003c17ceb5bd499df77b1de663b9042b92"
|
|
2056
|
+
dependencies = [
|
|
2057
|
+
"arrayvec",
|
|
2058
|
+
"euclid",
|
|
2059
|
+
"num-traits",
|
|
2060
|
+
]
|
|
2061
|
+
|
|
2062
|
+
[[package]]
|
|
2063
|
+
name = "lyon_path"
|
|
2064
|
+
version = "1.0.19"
|
|
2065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
+
checksum = "5c463f9c428b7fc5ec885dcd39ce4aa61e29111d0e33483f6f98c74e89d8621e"
|
|
2067
|
+
dependencies = [
|
|
2068
|
+
"lyon_geom",
|
|
2069
|
+
"num-traits",
|
|
2070
|
+
]
|
|
2071
|
+
|
|
2072
|
+
[[package]]
|
|
2073
|
+
name = "lyon_tessellation"
|
|
2074
|
+
version = "1.0.20"
|
|
2075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2076
|
+
checksum = "8e43b7e44161571868f5c931d12583592c223c5583eef86b08aa02b7048a3552"
|
|
2077
|
+
dependencies = [
|
|
2078
|
+
"float_next_after",
|
|
2079
|
+
"lyon_path",
|
|
2080
|
+
"num-traits",
|
|
2081
|
+
]
|
|
2082
|
+
|
|
2083
|
+
[[package]]
|
|
2084
|
+
name = "manifolds-rs"
|
|
2085
|
+
version = "0.2.4"
|
|
2086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2087
|
+
checksum = "d772c86f2008950a71a9ad4d0fab585964bfdbbb3f92804325569fca62503482"
|
|
2088
|
+
dependencies = [
|
|
2089
|
+
"ann-search-rs",
|
|
2090
|
+
"approx",
|
|
2091
|
+
"faer 0.23.2",
|
|
2092
|
+
"faer-traits 0.23.2",
|
|
2093
|
+
"num-traits",
|
|
2094
|
+
"rand 0.9.4",
|
|
2095
|
+
"rand_distr",
|
|
2096
|
+
"rayon",
|
|
2097
|
+
"rustc-hash 2.1.2",
|
|
2098
|
+
"thiserror 2.0.18",
|
|
2099
|
+
"thousands",
|
|
2100
|
+
]
|
|
2101
|
+
|
|
2102
|
+
[[package]]
|
|
2103
|
+
name = "matchers"
|
|
2104
|
+
version = "0.2.0"
|
|
2105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2106
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
2107
|
+
dependencies = [
|
|
2108
|
+
"regex-automata",
|
|
2109
|
+
]
|
|
2110
|
+
|
|
2111
|
+
[[package]]
|
|
2112
|
+
name = "matrixmultiply"
|
|
2113
|
+
version = "0.3.10"
|
|
2114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2115
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
2116
|
+
dependencies = [
|
|
2117
|
+
"autocfg",
|
|
2118
|
+
"rawpointer",
|
|
2119
|
+
]
|
|
2120
|
+
|
|
2121
|
+
[[package]]
|
|
2122
|
+
name = "memchr"
|
|
2123
|
+
version = "2.8.0"
|
|
2124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2125
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
2126
|
+
|
|
2127
|
+
[[package]]
|
|
2128
|
+
name = "memmap2"
|
|
2129
|
+
version = "0.9.10"
|
|
2130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2131
|
+
checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
|
|
2132
|
+
dependencies = [
|
|
2133
|
+
"libc",
|
|
2134
|
+
]
|
|
2135
|
+
|
|
2136
|
+
[[package]]
|
|
2137
|
+
name = "miniz_oxide"
|
|
2138
|
+
version = "0.8.9"
|
|
2139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2140
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
2141
|
+
dependencies = [
|
|
2142
|
+
"adler2",
|
|
2143
|
+
"simd-adler32",
|
|
2144
|
+
]
|
|
2145
|
+
|
|
2146
|
+
[[package]]
|
|
2147
|
+
name = "naga"
|
|
2148
|
+
version = "29.0.3"
|
|
2149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2150
|
+
checksum = "0dd91265cc2454558f659b3b4b9640f0ddb8cc6521277f166b8a8c181c898079"
|
|
2151
|
+
dependencies = [
|
|
2152
|
+
"arrayvec",
|
|
2153
|
+
"bit-set",
|
|
2154
|
+
"bitflags",
|
|
2155
|
+
"cfg-if",
|
|
2156
|
+
"cfg_aliases",
|
|
2157
|
+
"codespan-reporting",
|
|
2158
|
+
"half",
|
|
2159
|
+
"hashbrown 0.16.1",
|
|
2160
|
+
"hexf-parse",
|
|
2161
|
+
"indexmap",
|
|
2162
|
+
"libm",
|
|
2163
|
+
"log",
|
|
2164
|
+
"num-traits",
|
|
2165
|
+
"once_cell",
|
|
2166
|
+
"rustc-hash 1.1.0",
|
|
2167
|
+
"thiserror 2.0.18",
|
|
2168
|
+
"unicode-ident",
|
|
2169
|
+
]
|
|
2170
|
+
|
|
2171
|
+
[[package]]
|
|
2172
|
+
name = "nano-gemm"
|
|
2173
|
+
version = "0.1.3"
|
|
2174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2175
|
+
checksum = "bb5ba2bea1c00e53de11f6ab5bd0761ba87dc0045d63b0c87ee471d2d3061376"
|
|
2176
|
+
dependencies = [
|
|
2177
|
+
"equator 0.2.2",
|
|
2178
|
+
"nano-gemm-c32 0.1.0",
|
|
2179
|
+
"nano-gemm-c64 0.1.0",
|
|
2180
|
+
"nano-gemm-codegen 0.1.0",
|
|
2181
|
+
"nano-gemm-core 0.1.0",
|
|
2182
|
+
"nano-gemm-f32 0.1.0",
|
|
2183
|
+
"nano-gemm-f64 0.1.0",
|
|
2184
|
+
"num-complex",
|
|
2185
|
+
]
|
|
2186
|
+
|
|
2187
|
+
[[package]]
|
|
2188
|
+
name = "nano-gemm"
|
|
2189
|
+
version = "0.2.2"
|
|
2190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2191
|
+
checksum = "9e04345dc84b498ff89fe0d38543d1f170da9e43a2c2bcee73a0f9069f72d081"
|
|
2192
|
+
dependencies = [
|
|
2193
|
+
"equator 0.2.2",
|
|
2194
|
+
"nano-gemm-c32 0.2.1",
|
|
2195
|
+
"nano-gemm-c64 0.2.1",
|
|
2196
|
+
"nano-gemm-codegen 0.2.1",
|
|
2197
|
+
"nano-gemm-core 0.2.1",
|
|
2198
|
+
"nano-gemm-f32 0.2.1",
|
|
2199
|
+
"nano-gemm-f64 0.2.1",
|
|
2200
|
+
"num-complex",
|
|
2201
|
+
]
|
|
2202
|
+
|
|
2203
|
+
[[package]]
|
|
2204
|
+
name = "nano-gemm-c32"
|
|
2205
|
+
version = "0.1.0"
|
|
2206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2207
|
+
checksum = "a40449e57a5713464c3a1208c4c3301c8d29ee1344711822cf022bc91373a91b"
|
|
2208
|
+
dependencies = [
|
|
2209
|
+
"nano-gemm-codegen 0.1.0",
|
|
2210
|
+
"nano-gemm-core 0.1.0",
|
|
2211
|
+
"num-complex",
|
|
2212
|
+
]
|
|
2213
|
+
|
|
2214
|
+
[[package]]
|
|
2215
|
+
name = "nano-gemm-c32"
|
|
2216
|
+
version = "0.2.1"
|
|
2217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2218
|
+
checksum = "0775b1e2520e64deee8fc78b7732e3091fb7585017c0b0f9f4b451757bbbc562"
|
|
2219
|
+
dependencies = [
|
|
2220
|
+
"nano-gemm-codegen 0.2.1",
|
|
2221
|
+
"nano-gemm-core 0.2.1",
|
|
2222
|
+
"num-complex",
|
|
2223
|
+
]
|
|
2224
|
+
|
|
2225
|
+
[[package]]
|
|
2226
|
+
name = "nano-gemm-c64"
|
|
2227
|
+
version = "0.1.0"
|
|
2228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2229
|
+
checksum = "743a6e6211358fba85d1009616751e4107da86f4c95b24e684ce85f25c25b3bf"
|
|
2230
|
+
dependencies = [
|
|
2231
|
+
"nano-gemm-codegen 0.1.0",
|
|
2232
|
+
"nano-gemm-core 0.1.0",
|
|
2233
|
+
"num-complex",
|
|
2234
|
+
]
|
|
2235
|
+
|
|
2236
|
+
[[package]]
|
|
2237
|
+
name = "nano-gemm-c64"
|
|
2238
|
+
version = "0.2.1"
|
|
2239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2240
|
+
checksum = "9af49a20d58816e6b5ee65f64142e50edb5eba152678d4bb7377fcbf63f8437a"
|
|
2241
|
+
dependencies = [
|
|
2242
|
+
"nano-gemm-codegen 0.2.1",
|
|
2243
|
+
"nano-gemm-core 0.2.1",
|
|
2244
|
+
"num-complex",
|
|
2245
|
+
]
|
|
2246
|
+
|
|
2247
|
+
[[package]]
|
|
2248
|
+
name = "nano-gemm-codegen"
|
|
2249
|
+
version = "0.1.0"
|
|
2250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2251
|
+
checksum = "963bf7c7110d55430169dc74c67096375491ed580cd2ef84842550ac72e781fa"
|
|
2252
|
+
|
|
2253
|
+
[[package]]
|
|
2254
|
+
name = "nano-gemm-codegen"
|
|
2255
|
+
version = "0.2.1"
|
|
2256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2257
|
+
checksum = "6cc8d495c791627779477a2cf5df60049f5b165342610eb0d76bee5ff5c5d74c"
|
|
2258
|
+
|
|
2259
|
+
[[package]]
|
|
2260
|
+
name = "nano-gemm-core"
|
|
2261
|
+
version = "0.1.0"
|
|
2262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2263
|
+
checksum = "fe3fc4f83ae8861bad79dc3c016bd6b0220da5f9de302e07d3112d16efc24aa6"
|
|
2264
|
+
|
|
2265
|
+
[[package]]
|
|
2266
|
+
name = "nano-gemm-core"
|
|
2267
|
+
version = "0.2.1"
|
|
2268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2269
|
+
checksum = "d998dfa644de87a0f8660e5ea511d7cb5c33b5a2d9847b7af57a2565105089f0"
|
|
2270
|
+
|
|
2271
|
+
[[package]]
|
|
2272
|
+
name = "nano-gemm-f32"
|
|
2273
|
+
version = "0.1.0"
|
|
2274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2275
|
+
checksum = "4e3681b7ce35658f79da94b7f62c60a005e29c373c7111ed070e3bf64546a8bb"
|
|
2276
|
+
dependencies = [
|
|
2277
|
+
"nano-gemm-codegen 0.1.0",
|
|
2278
|
+
"nano-gemm-core 0.1.0",
|
|
2279
|
+
]
|
|
2280
|
+
|
|
2281
|
+
[[package]]
|
|
2282
|
+
name = "nano-gemm-f32"
|
|
2283
|
+
version = "0.2.1"
|
|
2284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2285
|
+
checksum = "879d962e79bc8952e4ad21ca4845a21132540ed3f5e01184b2ff7f720e666523"
|
|
2286
|
+
dependencies = [
|
|
2287
|
+
"nano-gemm-codegen 0.2.1",
|
|
2288
|
+
"nano-gemm-core 0.2.1",
|
|
2289
|
+
]
|
|
2290
|
+
|
|
2291
|
+
[[package]]
|
|
2292
|
+
name = "nano-gemm-f64"
|
|
2293
|
+
version = "0.1.0"
|
|
2294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2295
|
+
checksum = "bc1e619ed04d801809e1f63e61b669d380c4119e8b0cdd6ed184c6b111f046d8"
|
|
2296
|
+
dependencies = [
|
|
2297
|
+
"nano-gemm-codegen 0.1.0",
|
|
2298
|
+
"nano-gemm-core 0.1.0",
|
|
2299
|
+
]
|
|
2300
|
+
|
|
2301
|
+
[[package]]
|
|
2302
|
+
name = "nano-gemm-f64"
|
|
2303
|
+
version = "0.2.1"
|
|
2304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2305
|
+
checksum = "b9a513473dce7dc00c7e7c318481ca4494034e76997218d8dad51bd9f007a815"
|
|
2306
|
+
dependencies = [
|
|
2307
|
+
"nano-gemm-codegen 0.2.1",
|
|
2308
|
+
"nano-gemm-core 0.2.1",
|
|
2309
|
+
]
|
|
2310
|
+
|
|
2311
|
+
[[package]]
|
|
2312
|
+
name = "nanorand"
|
|
2313
|
+
version = "0.6.1"
|
|
2314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2315
|
+
checksum = "729eb334247daa1803e0a094d0a5c55711b85571179f5ec6e53eccfdf7008958"
|
|
2316
|
+
|
|
2317
|
+
[[package]]
|
|
2318
|
+
name = "ndarray"
|
|
2319
|
+
version = "0.17.2"
|
|
2320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2321
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
2322
|
+
dependencies = [
|
|
2323
|
+
"matrixmultiply",
|
|
2324
|
+
"num-complex",
|
|
2325
|
+
"num-integer",
|
|
2326
|
+
"num-traits",
|
|
2327
|
+
"portable-atomic",
|
|
2328
|
+
"portable-atomic-util",
|
|
2329
|
+
"rawpointer",
|
|
2330
|
+
]
|
|
2331
|
+
|
|
2332
|
+
[[package]]
|
|
2333
|
+
name = "ndk-sys"
|
|
2334
|
+
version = "0.6.0+11769913"
|
|
2335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2336
|
+
checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
|
|
2337
|
+
dependencies = [
|
|
2338
|
+
"jni-sys 0.3.1",
|
|
2339
|
+
]
|
|
2340
|
+
|
|
2341
|
+
[[package]]
|
|
2342
|
+
name = "npyz"
|
|
2343
|
+
version = "0.8.4"
|
|
2344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2345
|
+
checksum = "9f0e759e014e630f90af745101b614f761306ddc541681e546649068e25ec1b9"
|
|
2346
|
+
dependencies = [
|
|
2347
|
+
"byteorder",
|
|
2348
|
+
"num-bigint",
|
|
2349
|
+
"py_literal",
|
|
2350
|
+
]
|
|
2351
|
+
|
|
2352
|
+
[[package]]
|
|
2353
|
+
name = "nu-ansi-term"
|
|
2354
|
+
version = "0.50.3"
|
|
2355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2356
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
2357
|
+
dependencies = [
|
|
2358
|
+
"windows-sys 0.61.2",
|
|
2359
|
+
]
|
|
2360
|
+
|
|
2361
|
+
[[package]]
|
|
2362
|
+
name = "num-bigint"
|
|
2363
|
+
version = "0.4.6"
|
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
2366
|
+
dependencies = [
|
|
2367
|
+
"num-integer",
|
|
2368
|
+
"num-traits",
|
|
2369
|
+
]
|
|
2370
|
+
|
|
2371
|
+
[[package]]
|
|
2372
|
+
name = "num-complex"
|
|
2373
|
+
version = "0.4.6"
|
|
2374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2375
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
2376
|
+
dependencies = [
|
|
2377
|
+
"bytemuck",
|
|
2378
|
+
"num-traits",
|
|
2379
|
+
"rand 0.8.6",
|
|
2380
|
+
]
|
|
2381
|
+
|
|
2382
|
+
[[package]]
|
|
2383
|
+
name = "num-integer"
|
|
2384
|
+
version = "0.1.46"
|
|
2385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2386
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
2387
|
+
dependencies = [
|
|
2388
|
+
"num-traits",
|
|
2389
|
+
]
|
|
2390
|
+
|
|
2391
|
+
[[package]]
|
|
2392
|
+
name = "num-traits"
|
|
2393
|
+
version = "0.2.19"
|
|
2394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2395
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2396
|
+
dependencies = [
|
|
2397
|
+
"autocfg",
|
|
2398
|
+
"libm",
|
|
2399
|
+
]
|
|
2400
|
+
|
|
2401
|
+
[[package]]
|
|
2402
|
+
name = "num_cpus"
|
|
2403
|
+
version = "1.17.0"
|
|
2404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
2406
|
+
dependencies = [
|
|
2407
|
+
"hermit-abi",
|
|
2408
|
+
"libc",
|
|
2409
|
+
]
|
|
2410
|
+
|
|
2411
|
+
[[package]]
|
|
2412
|
+
name = "numpy"
|
|
2413
|
+
version = "0.28.0"
|
|
2414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2415
|
+
checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
|
|
2416
|
+
dependencies = [
|
|
2417
|
+
"half",
|
|
2418
|
+
"libc",
|
|
2419
|
+
"ndarray",
|
|
2420
|
+
"num-complex",
|
|
2421
|
+
"num-integer",
|
|
2422
|
+
"num-traits",
|
|
2423
|
+
"pyo3",
|
|
2424
|
+
"pyo3-build-config",
|
|
2425
|
+
"rustc-hash 2.1.2",
|
|
2426
|
+
]
|
|
2427
|
+
|
|
2428
|
+
[[package]]
|
|
2429
|
+
name = "objc2"
|
|
2430
|
+
version = "0.6.4"
|
|
2431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
+
checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
|
|
2433
|
+
dependencies = [
|
|
2434
|
+
"objc2-encode",
|
|
2435
|
+
]
|
|
2436
|
+
|
|
2437
|
+
[[package]]
|
|
2438
|
+
name = "objc2-encode"
|
|
2439
|
+
version = "4.1.0"
|
|
2440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2441
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
2442
|
+
|
|
2443
|
+
[[package]]
|
|
2444
|
+
name = "once_cell"
|
|
2445
|
+
version = "1.21.4"
|
|
2446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2447
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
2448
|
+
|
|
2449
|
+
[[package]]
|
|
2450
|
+
name = "once_cell_polyfill"
|
|
2451
|
+
version = "1.70.2"
|
|
2452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2453
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
2454
|
+
|
|
2455
|
+
[[package]]
|
|
2456
|
+
name = "oorandom"
|
|
2457
|
+
version = "11.1.5"
|
|
2458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2459
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
2460
|
+
|
|
2461
|
+
[[package]]
|
|
2462
|
+
name = "palette"
|
|
2463
|
+
version = "0.7.6"
|
|
2464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2465
|
+
checksum = "4cbf71184cc5ecc2e4e1baccdb21026c20e5fc3dcf63028a086131b3ab00b6e6"
|
|
2466
|
+
dependencies = [
|
|
2467
|
+
"approx",
|
|
2468
|
+
"fast-srgb8",
|
|
2469
|
+
"palette_derive",
|
|
2470
|
+
"phf 0.11.3",
|
|
2471
|
+
]
|
|
2472
|
+
|
|
2473
|
+
[[package]]
|
|
2474
|
+
name = "palette_derive"
|
|
2475
|
+
version = "0.7.6"
|
|
2476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2477
|
+
checksum = "f5030daf005bface118c096f510ffb781fc28f9ab6a32ab224d8631be6851d30"
|
|
2478
|
+
dependencies = [
|
|
2479
|
+
"by_address",
|
|
2480
|
+
"proc-macro2",
|
|
2481
|
+
"quote",
|
|
2482
|
+
"syn 2.0.117",
|
|
2483
|
+
]
|
|
2484
|
+
|
|
2485
|
+
[[package]]
|
|
2486
|
+
name = "parking_lot"
|
|
2487
|
+
version = "0.12.5"
|
|
2488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2489
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2490
|
+
dependencies = [
|
|
2491
|
+
"lock_api",
|
|
2492
|
+
"parking_lot_core",
|
|
2493
|
+
]
|
|
2494
|
+
|
|
2495
|
+
[[package]]
|
|
2496
|
+
name = "parking_lot_core"
|
|
2497
|
+
version = "0.9.12"
|
|
2498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2499
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2500
|
+
dependencies = [
|
|
2501
|
+
"cfg-if",
|
|
2502
|
+
"libc",
|
|
2503
|
+
"redox_syscall",
|
|
2504
|
+
"smallvec",
|
|
2505
|
+
"windows-link",
|
|
2506
|
+
]
|
|
2507
|
+
|
|
2508
|
+
[[package]]
|
|
2509
|
+
name = "partition"
|
|
2510
|
+
version = "0.1.2"
|
|
2511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2512
|
+
checksum = "947f833aaa585cf12b8ec7c0476c98784c49f33b861376ffc84ed92adebf2aba"
|
|
2513
|
+
|
|
2514
|
+
[[package]]
|
|
2515
|
+
name = "paste"
|
|
2516
|
+
version = "1.0.15"
|
|
2517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2518
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2519
|
+
|
|
2520
|
+
[[package]]
|
|
2521
|
+
name = "pdqselect"
|
|
2522
|
+
version = "0.1.0"
|
|
2523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2524
|
+
checksum = "4ec91767ecc0a0bbe558ce8c9da33c068066c57ecc8bb8477ef8c1ad3ef77c27"
|
|
2525
|
+
|
|
2526
|
+
[[package]]
|
|
2527
|
+
name = "pest"
|
|
2528
|
+
version = "2.8.6"
|
|
2529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2530
|
+
checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
|
|
2531
|
+
dependencies = [
|
|
2532
|
+
"memchr",
|
|
2533
|
+
"ucd-trie",
|
|
2534
|
+
]
|
|
2535
|
+
|
|
2536
|
+
[[package]]
|
|
2537
|
+
name = "pest_derive"
|
|
2538
|
+
version = "2.8.6"
|
|
2539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2540
|
+
checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
|
|
2541
|
+
dependencies = [
|
|
2542
|
+
"pest",
|
|
2543
|
+
"pest_generator",
|
|
2544
|
+
]
|
|
2545
|
+
|
|
2546
|
+
[[package]]
|
|
2547
|
+
name = "pest_generator"
|
|
2548
|
+
version = "2.8.6"
|
|
2549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2550
|
+
checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
|
|
2551
|
+
dependencies = [
|
|
2552
|
+
"pest",
|
|
2553
|
+
"pest_meta",
|
|
2554
|
+
"proc-macro2",
|
|
2555
|
+
"quote",
|
|
2556
|
+
"syn 2.0.117",
|
|
2557
|
+
]
|
|
2558
|
+
|
|
2559
|
+
[[package]]
|
|
2560
|
+
name = "pest_meta"
|
|
2561
|
+
version = "2.8.6"
|
|
2562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2563
|
+
checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
|
|
2564
|
+
dependencies = [
|
|
2565
|
+
"pest",
|
|
2566
|
+
"sha2",
|
|
2567
|
+
]
|
|
2568
|
+
|
|
2569
|
+
[[package]]
|
|
2570
|
+
name = "phf"
|
|
2571
|
+
version = "0.11.3"
|
|
2572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2573
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
2574
|
+
dependencies = [
|
|
2575
|
+
"phf_macros",
|
|
2576
|
+
"phf_shared 0.11.3",
|
|
2577
|
+
]
|
|
2578
|
+
|
|
2579
|
+
[[package]]
|
|
2580
|
+
name = "phf"
|
|
2581
|
+
version = "0.12.1"
|
|
2582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
+
checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
|
|
2584
|
+
dependencies = [
|
|
2585
|
+
"phf_shared 0.12.1",
|
|
2586
|
+
]
|
|
2587
|
+
|
|
2588
|
+
[[package]]
|
|
2589
|
+
name = "phf_generator"
|
|
2590
|
+
version = "0.11.3"
|
|
2591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2592
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2593
|
+
dependencies = [
|
|
2594
|
+
"phf_shared 0.11.3",
|
|
2595
|
+
"rand 0.8.6",
|
|
2596
|
+
]
|
|
2597
|
+
|
|
2598
|
+
[[package]]
|
|
2599
|
+
name = "phf_macros"
|
|
2600
|
+
version = "0.11.3"
|
|
2601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2602
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
2603
|
+
dependencies = [
|
|
2604
|
+
"phf_generator",
|
|
2605
|
+
"phf_shared 0.11.3",
|
|
2606
|
+
"proc-macro2",
|
|
2607
|
+
"quote",
|
|
2608
|
+
"syn 2.0.117",
|
|
2609
|
+
]
|
|
2610
|
+
|
|
2611
|
+
[[package]]
|
|
2612
|
+
name = "phf_shared"
|
|
2613
|
+
version = "0.11.3"
|
|
2614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2615
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
2616
|
+
dependencies = [
|
|
2617
|
+
"siphasher",
|
|
2618
|
+
]
|
|
2619
|
+
|
|
2620
|
+
[[package]]
|
|
2621
|
+
name = "phf_shared"
|
|
2622
|
+
version = "0.12.1"
|
|
2623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2624
|
+
checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
|
|
2625
|
+
dependencies = [
|
|
2626
|
+
"siphasher",
|
|
2627
|
+
]
|
|
2628
|
+
|
|
2629
|
+
[[package]]
|
|
2630
|
+
name = "pico-args"
|
|
2631
|
+
version = "0.5.0"
|
|
2632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2633
|
+
checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
|
|
2634
|
+
|
|
2635
|
+
[[package]]
|
|
2636
|
+
name = "pin-project-lite"
|
|
2637
|
+
version = "0.2.17"
|
|
2638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2639
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2640
|
+
|
|
2641
|
+
[[package]]
|
|
2642
|
+
name = "pkg-config"
|
|
2643
|
+
version = "0.3.33"
|
|
2644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2645
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
2646
|
+
|
|
2647
|
+
[[package]]
|
|
2648
|
+
name = "plotters"
|
|
2649
|
+
version = "0.3.7"
|
|
2650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2651
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
2652
|
+
dependencies = [
|
|
2653
|
+
"num-traits",
|
|
2654
|
+
"plotters-backend",
|
|
2655
|
+
"plotters-svg",
|
|
2656
|
+
"wasm-bindgen",
|
|
2657
|
+
"web-sys",
|
|
2658
|
+
]
|
|
2659
|
+
|
|
2660
|
+
[[package]]
|
|
2661
|
+
name = "plotters-backend"
|
|
2662
|
+
version = "0.3.7"
|
|
2663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
2665
|
+
|
|
2666
|
+
[[package]]
|
|
2667
|
+
name = "plotters-svg"
|
|
2668
|
+
version = "0.3.7"
|
|
2669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2670
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
2671
|
+
dependencies = [
|
|
2672
|
+
"plotters-backend",
|
|
2673
|
+
]
|
|
2674
|
+
|
|
2675
|
+
[[package]]
|
|
2676
|
+
name = "png"
|
|
2677
|
+
version = "0.18.1"
|
|
2678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2679
|
+
checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
|
|
2680
|
+
dependencies = [
|
|
2681
|
+
"bitflags",
|
|
2682
|
+
"crc32fast",
|
|
2683
|
+
"fdeflate",
|
|
2684
|
+
"flate2",
|
|
2685
|
+
"miniz_oxide",
|
|
2686
|
+
]
|
|
2687
|
+
|
|
2688
|
+
[[package]]
|
|
2689
|
+
name = "portable-atomic"
|
|
2690
|
+
version = "1.13.1"
|
|
2691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2692
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
2693
|
+
|
|
2694
|
+
[[package]]
|
|
2695
|
+
name = "portable-atomic-util"
|
|
2696
|
+
version = "0.2.7"
|
|
2697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2698
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
2699
|
+
dependencies = [
|
|
2700
|
+
"portable-atomic",
|
|
2701
|
+
]
|
|
2702
|
+
|
|
2703
|
+
[[package]]
|
|
2704
|
+
name = "ppv-lite86"
|
|
2705
|
+
version = "0.2.21"
|
|
2706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2708
|
+
dependencies = [
|
|
2709
|
+
"zerocopy",
|
|
2710
|
+
]
|
|
2711
|
+
|
|
2712
|
+
[[package]]
|
|
2713
|
+
name = "private-gemm-x86"
|
|
2714
|
+
version = "0.1.20"
|
|
2715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2716
|
+
checksum = "0af8c3e5087969c323f667ccb4b789fa0954f5aa650550e38e81cf9108be21b5"
|
|
2717
|
+
dependencies = [
|
|
2718
|
+
"crossbeam",
|
|
2719
|
+
"defer",
|
|
2720
|
+
"interpol",
|
|
2721
|
+
"num_cpus",
|
|
2722
|
+
"raw-cpuid",
|
|
2723
|
+
"rayon",
|
|
2724
|
+
"spindle",
|
|
2725
|
+
"sysctl",
|
|
2726
|
+
]
|
|
2727
|
+
|
|
2728
|
+
[[package]]
|
|
2729
|
+
name = "proc-macro2"
|
|
2730
|
+
version = "1.0.106"
|
|
2731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2732
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
2733
|
+
dependencies = [
|
|
2734
|
+
"unicode-ident",
|
|
2735
|
+
]
|
|
2736
|
+
|
|
2737
|
+
[[package]]
|
|
2738
|
+
name = "profiling"
|
|
2739
|
+
version = "1.0.18"
|
|
2740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2741
|
+
checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
|
|
2742
|
+
|
|
2743
|
+
[[package]]
|
|
2744
|
+
name = "pulp"
|
|
2745
|
+
version = "0.21.5"
|
|
2746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2747
|
+
checksum = "96b86df24f0a7ddd5e4b95c94fc9ed8a98f1ca94d3b01bdce2824097e7835907"
|
|
2748
|
+
dependencies = [
|
|
2749
|
+
"bytemuck",
|
|
2750
|
+
"cfg-if",
|
|
2751
|
+
"libm",
|
|
2752
|
+
"num-complex",
|
|
2753
|
+
"reborrow",
|
|
2754
|
+
"version_check",
|
|
2755
|
+
]
|
|
2756
|
+
|
|
2757
|
+
[[package]]
|
|
2758
|
+
name = "pulp"
|
|
2759
|
+
version = "0.22.2"
|
|
2760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2761
|
+
checksum = "2e205bb30d5b916c55e584c22201771bcf2bad9aabd5d4127f38387140c38632"
|
|
2762
|
+
dependencies = [
|
|
2763
|
+
"bytemuck",
|
|
2764
|
+
"cfg-if",
|
|
2765
|
+
"libm",
|
|
2766
|
+
"num-complex",
|
|
2767
|
+
"paste",
|
|
2768
|
+
"pulp-wasm-simd-flag",
|
|
2769
|
+
"raw-cpuid",
|
|
2770
|
+
"reborrow",
|
|
2771
|
+
"version_check",
|
|
2772
|
+
]
|
|
2773
|
+
|
|
2774
|
+
[[package]]
|
|
2775
|
+
name = "pulp-wasm-simd-flag"
|
|
2776
|
+
version = "0.1.0"
|
|
2777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2778
|
+
checksum = "40e24eee682d89fb193496edf918a7f407d30175b2e785fe057e4392dfd182e0"
|
|
2779
|
+
|
|
2780
|
+
[[package]]
|
|
2781
|
+
name = "py_literal"
|
|
2782
|
+
version = "0.4.0"
|
|
2783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2784
|
+
checksum = "102df7a3d46db9d3891f178dcc826dc270a6746277a9ae6436f8d29fd490a8e1"
|
|
2785
|
+
dependencies = [
|
|
2786
|
+
"num-bigint",
|
|
2787
|
+
"num-complex",
|
|
2788
|
+
"num-traits",
|
|
2789
|
+
"pest",
|
|
2790
|
+
"pest_derive",
|
|
2791
|
+
]
|
|
2792
|
+
|
|
2793
|
+
[[package]]
|
|
2794
|
+
name = "pyo3"
|
|
2795
|
+
version = "0.28.3"
|
|
2796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2797
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
2798
|
+
dependencies = [
|
|
2799
|
+
"chrono",
|
|
2800
|
+
"chrono-tz",
|
|
2801
|
+
"indexmap",
|
|
2802
|
+
"libc",
|
|
2803
|
+
"once_cell",
|
|
2804
|
+
"portable-atomic",
|
|
2805
|
+
"pyo3-build-config",
|
|
2806
|
+
"pyo3-ffi",
|
|
2807
|
+
"pyo3-macros",
|
|
2808
|
+
]
|
|
2809
|
+
|
|
2810
|
+
[[package]]
|
|
2811
|
+
name = "pyo3-arrow"
|
|
2812
|
+
version = "0.17.0"
|
|
2813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2814
|
+
checksum = "0360400036dda3db3d69102ef7e9646e4cd946c75a2d1d41fb8fd39879312636"
|
|
2815
|
+
dependencies = [
|
|
2816
|
+
"arrow-array",
|
|
2817
|
+
"arrow-buffer",
|
|
2818
|
+
"arrow-cast",
|
|
2819
|
+
"arrow-data",
|
|
2820
|
+
"arrow-schema",
|
|
2821
|
+
"arrow-select",
|
|
2822
|
+
"chrono",
|
|
2823
|
+
"chrono-tz",
|
|
2824
|
+
"half",
|
|
2825
|
+
"indexmap",
|
|
2826
|
+
"numpy",
|
|
2827
|
+
"pyo3",
|
|
2828
|
+
"thiserror 1.0.69",
|
|
2829
|
+
]
|
|
2830
|
+
|
|
2831
|
+
[[package]]
|
|
2832
|
+
name = "pyo3-build-config"
|
|
2833
|
+
version = "0.28.3"
|
|
2834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2835
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
2836
|
+
dependencies = [
|
|
2837
|
+
"target-lexicon",
|
|
2838
|
+
]
|
|
2839
|
+
|
|
2840
|
+
[[package]]
|
|
2841
|
+
name = "pyo3-ffi"
|
|
2842
|
+
version = "0.28.3"
|
|
2843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2844
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
2845
|
+
dependencies = [
|
|
2846
|
+
"libc",
|
|
2847
|
+
"pyo3-build-config",
|
|
2848
|
+
]
|
|
2849
|
+
|
|
2850
|
+
[[package]]
|
|
2851
|
+
name = "pyo3-macros"
|
|
2852
|
+
version = "0.28.3"
|
|
2853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2854
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
2855
|
+
dependencies = [
|
|
2856
|
+
"proc-macro2",
|
|
2857
|
+
"pyo3-macros-backend",
|
|
2858
|
+
"quote",
|
|
2859
|
+
"syn 2.0.117",
|
|
2860
|
+
]
|
|
2861
|
+
|
|
2862
|
+
[[package]]
|
|
2863
|
+
name = "pyo3-macros-backend"
|
|
2864
|
+
version = "0.28.3"
|
|
2865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2866
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
2867
|
+
dependencies = [
|
|
2868
|
+
"heck",
|
|
2869
|
+
"proc-macro2",
|
|
2870
|
+
"pyo3-build-config",
|
|
2871
|
+
"quote",
|
|
2872
|
+
"syn 2.0.117",
|
|
2873
|
+
]
|
|
2874
|
+
|
|
2875
|
+
[[package]]
|
|
2876
|
+
name = "qd"
|
|
2877
|
+
version = "0.7.7"
|
|
2878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2879
|
+
checksum = "ff8bb755b6008c3b41bf8a0866c8dd4e1245a2f011ceaa22a13ee55c538493e2"
|
|
2880
|
+
dependencies = [
|
|
2881
|
+
"bytemuck",
|
|
2882
|
+
"libm",
|
|
2883
|
+
"num-traits",
|
|
2884
|
+
"pulp 0.21.5",
|
|
2885
|
+
]
|
|
2886
|
+
|
|
2887
|
+
[[package]]
|
|
2888
|
+
name = "qd"
|
|
2889
|
+
version = "0.8.0"
|
|
2890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
|
+
checksum = "15f1304a5aecdcfe9ee72fbba90aa37b3aa067a69d14cb7f3d9deada0be7c07c"
|
|
2892
|
+
dependencies = [
|
|
2893
|
+
"bytemuck",
|
|
2894
|
+
"libm",
|
|
2895
|
+
"num-traits",
|
|
2896
|
+
"pulp 0.22.2",
|
|
2897
|
+
]
|
|
2898
|
+
|
|
2899
|
+
[[package]]
|
|
2900
|
+
name = "quick-error"
|
|
2901
|
+
version = "2.0.1"
|
|
2902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2903
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
2904
|
+
|
|
2905
|
+
[[package]]
|
|
2906
|
+
name = "quote"
|
|
2907
|
+
version = "1.0.45"
|
|
2908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2909
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
2910
|
+
dependencies = [
|
|
2911
|
+
"proc-macro2",
|
|
2912
|
+
]
|
|
2913
|
+
|
|
2914
|
+
[[package]]
|
|
2915
|
+
name = "r-efi"
|
|
2916
|
+
version = "5.3.0"
|
|
2917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2918
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2919
|
+
|
|
2920
|
+
[[package]]
|
|
2921
|
+
name = "rand"
|
|
2922
|
+
version = "0.8.6"
|
|
2923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2924
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
2925
|
+
dependencies = [
|
|
2926
|
+
"libc",
|
|
2927
|
+
"rand_chacha 0.3.1",
|
|
2928
|
+
"rand_core 0.6.4",
|
|
2929
|
+
]
|
|
2930
|
+
|
|
2931
|
+
[[package]]
|
|
2932
|
+
name = "rand"
|
|
2933
|
+
version = "0.9.4"
|
|
2934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2935
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2936
|
+
dependencies = [
|
|
2937
|
+
"rand_chacha 0.9.0",
|
|
2938
|
+
"rand_core 0.9.5",
|
|
2939
|
+
]
|
|
2940
|
+
|
|
2941
|
+
[[package]]
|
|
2942
|
+
name = "rand_chacha"
|
|
2943
|
+
version = "0.3.1"
|
|
2944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2945
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2946
|
+
dependencies = [
|
|
2947
|
+
"ppv-lite86",
|
|
2948
|
+
"rand_core 0.6.4",
|
|
2949
|
+
]
|
|
2950
|
+
|
|
2951
|
+
[[package]]
|
|
2952
|
+
name = "rand_chacha"
|
|
2953
|
+
version = "0.9.0"
|
|
2954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2955
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2956
|
+
dependencies = [
|
|
2957
|
+
"ppv-lite86",
|
|
2958
|
+
"rand_core 0.9.5",
|
|
2959
|
+
]
|
|
2960
|
+
|
|
2961
|
+
[[package]]
|
|
2962
|
+
name = "rand_core"
|
|
2963
|
+
version = "0.6.4"
|
|
2964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2965
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2966
|
+
dependencies = [
|
|
2967
|
+
"getrandom 0.2.17",
|
|
2968
|
+
]
|
|
2969
|
+
|
|
2970
|
+
[[package]]
|
|
2971
|
+
name = "rand_core"
|
|
2972
|
+
version = "0.9.5"
|
|
2973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2974
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2975
|
+
dependencies = [
|
|
2976
|
+
"getrandom 0.3.4",
|
|
2977
|
+
]
|
|
2978
|
+
|
|
2979
|
+
[[package]]
|
|
2980
|
+
name = "rand_distr"
|
|
2981
|
+
version = "0.5.1"
|
|
2982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2983
|
+
checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
|
|
2984
|
+
dependencies = [
|
|
2985
|
+
"num-traits",
|
|
2986
|
+
"rand 0.9.4",
|
|
2987
|
+
]
|
|
2988
|
+
|
|
2989
|
+
[[package]]
|
|
2990
|
+
name = "raw-cpuid"
|
|
2991
|
+
version = "11.6.0"
|
|
2992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2993
|
+
checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
|
|
2994
|
+
dependencies = [
|
|
2995
|
+
"bitflags",
|
|
2996
|
+
]
|
|
2997
|
+
|
|
2998
|
+
[[package]]
|
|
2999
|
+
name = "raw-window-handle"
|
|
3000
|
+
version = "0.6.2"
|
|
3001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3002
|
+
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
|
|
3003
|
+
|
|
3004
|
+
[[package]]
|
|
3005
|
+
name = "rawpointer"
|
|
3006
|
+
version = "0.2.1"
|
|
3007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3008
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
3009
|
+
|
|
3010
|
+
[[package]]
|
|
3011
|
+
name = "rayon"
|
|
3012
|
+
version = "1.12.0"
|
|
3013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3014
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
3015
|
+
dependencies = [
|
|
3016
|
+
"either",
|
|
3017
|
+
"rayon-core",
|
|
3018
|
+
]
|
|
3019
|
+
|
|
3020
|
+
[[package]]
|
|
3021
|
+
name = "rayon-core"
|
|
3022
|
+
version = "1.13.0"
|
|
3023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3024
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
3025
|
+
dependencies = [
|
|
3026
|
+
"crossbeam-deque",
|
|
3027
|
+
"crossbeam-utils",
|
|
3028
|
+
]
|
|
3029
|
+
|
|
3030
|
+
[[package]]
|
|
3031
|
+
name = "rdst"
|
|
3032
|
+
version = "0.20.14"
|
|
3033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3034
|
+
checksum = "6e7970b4e577b76a96d5e56b5f6662b66d1a4e1f5bb026ee118fc31b373c2752"
|
|
3035
|
+
dependencies = [
|
|
3036
|
+
"arbitrary-chunks",
|
|
3037
|
+
"block-pseudorand",
|
|
3038
|
+
"criterion",
|
|
3039
|
+
"partition",
|
|
3040
|
+
"rayon",
|
|
3041
|
+
"tikv-jemallocator",
|
|
3042
|
+
"voracious_radix_sort",
|
|
3043
|
+
]
|
|
3044
|
+
|
|
3045
|
+
[[package]]
|
|
3046
|
+
name = "reborrow"
|
|
3047
|
+
version = "0.5.5"
|
|
3048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3049
|
+
checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
|
|
3050
|
+
|
|
3051
|
+
[[package]]
|
|
3052
|
+
name = "redox_syscall"
|
|
3053
|
+
version = "0.5.18"
|
|
3054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3055
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
3056
|
+
dependencies = [
|
|
3057
|
+
"bitflags",
|
|
3058
|
+
]
|
|
3059
|
+
|
|
3060
|
+
[[package]]
|
|
3061
|
+
name = "regex"
|
|
3062
|
+
version = "1.12.3"
|
|
3063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3064
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
3065
|
+
dependencies = [
|
|
3066
|
+
"aho-corasick",
|
|
3067
|
+
"memchr",
|
|
3068
|
+
"regex-automata",
|
|
3069
|
+
"regex-syntax",
|
|
3070
|
+
]
|
|
3071
|
+
|
|
3072
|
+
[[package]]
|
|
3073
|
+
name = "regex-automata"
|
|
3074
|
+
version = "0.4.14"
|
|
3075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3076
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
3077
|
+
dependencies = [
|
|
3078
|
+
"aho-corasick",
|
|
3079
|
+
"memchr",
|
|
3080
|
+
"regex-syntax",
|
|
3081
|
+
]
|
|
3082
|
+
|
|
3083
|
+
[[package]]
|
|
3084
|
+
name = "regex-syntax"
|
|
3085
|
+
version = "0.8.10"
|
|
3086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3087
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
3088
|
+
|
|
3089
|
+
[[package]]
|
|
3090
|
+
name = "renderdoc-sys"
|
|
3091
|
+
version = "1.1.0"
|
|
3092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3093
|
+
checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
|
|
3094
|
+
|
|
3095
|
+
[[package]]
|
|
3096
|
+
name = "resvg"
|
|
3097
|
+
version = "0.47.0"
|
|
3098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3099
|
+
checksum = "9be183ad6a216aa96f33e4c8033b0988b8b3ea6fd2359d19af5bac4643fd8e81"
|
|
3100
|
+
dependencies = [
|
|
3101
|
+
"gif",
|
|
3102
|
+
"image-webp",
|
|
3103
|
+
"log",
|
|
3104
|
+
"pico-args",
|
|
3105
|
+
"rgb",
|
|
3106
|
+
"svgtypes",
|
|
3107
|
+
"tiny-skia",
|
|
3108
|
+
"usvg",
|
|
3109
|
+
"zune-jpeg",
|
|
3110
|
+
]
|
|
3111
|
+
|
|
3112
|
+
[[package]]
|
|
3113
|
+
name = "rgb"
|
|
3114
|
+
version = "0.8.53"
|
|
3115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
|
+
checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
|
|
3117
|
+
dependencies = [
|
|
3118
|
+
"bytemuck",
|
|
3119
|
+
]
|
|
3120
|
+
|
|
3121
|
+
[[package]]
|
|
3122
|
+
name = "roxmltree"
|
|
3123
|
+
version = "0.20.0"
|
|
3124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3125
|
+
checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
|
|
3126
|
+
|
|
3127
|
+
[[package]]
|
|
3128
|
+
name = "roxmltree"
|
|
3129
|
+
version = "0.21.1"
|
|
3130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3131
|
+
checksum = "f1964b10c76125c36f8afe190065a4bf9a87bf324842c05701330bba9f1cacbb"
|
|
3132
|
+
dependencies = [
|
|
3133
|
+
"memchr",
|
|
3134
|
+
]
|
|
3135
|
+
|
|
3136
|
+
[[package]]
|
|
3137
|
+
name = "rstar"
|
|
3138
|
+
version = "0.8.4"
|
|
3139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3140
|
+
checksum = "3a45c0e8804d37e4d97e55c6f258bc9ad9c5ee7b07437009dd152d764949a27c"
|
|
3141
|
+
dependencies = [
|
|
3142
|
+
"heapless 0.6.1",
|
|
3143
|
+
"num-traits",
|
|
3144
|
+
"pdqselect",
|
|
3145
|
+
"serde",
|
|
3146
|
+
"smallvec",
|
|
3147
|
+
]
|
|
3148
|
+
|
|
3149
|
+
[[package]]
|
|
3150
|
+
name = "rstar"
|
|
3151
|
+
version = "0.9.3"
|
|
3152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3153
|
+
checksum = "b40f1bfe5acdab44bc63e6699c28b74f75ec43afb59f3eda01e145aff86a25fa"
|
|
3154
|
+
dependencies = [
|
|
3155
|
+
"heapless 0.7.17",
|
|
3156
|
+
"num-traits",
|
|
3157
|
+
"serde",
|
|
3158
|
+
"smallvec",
|
|
3159
|
+
]
|
|
3160
|
+
|
|
3161
|
+
[[package]]
|
|
3162
|
+
name = "rstar"
|
|
3163
|
+
version = "0.10.0"
|
|
3164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3165
|
+
checksum = "1f39465655a1e3d8ae79c6d9e007f4953bfc5d55297602df9dc38f9ae9f1359a"
|
|
3166
|
+
dependencies = [
|
|
3167
|
+
"heapless 0.7.17",
|
|
3168
|
+
"num-traits",
|
|
3169
|
+
"serde",
|
|
3170
|
+
"smallvec",
|
|
3171
|
+
]
|
|
3172
|
+
|
|
3173
|
+
[[package]]
|
|
3174
|
+
name = "rstar"
|
|
3175
|
+
version = "0.11.0"
|
|
3176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3177
|
+
checksum = "73111312eb7a2287d229f06c00ff35b51ddee180f017ab6dec1f69d62ac098d6"
|
|
3178
|
+
dependencies = [
|
|
3179
|
+
"heapless 0.7.17",
|
|
3180
|
+
"num-traits",
|
|
3181
|
+
"serde",
|
|
3182
|
+
"smallvec",
|
|
3183
|
+
]
|
|
3184
|
+
|
|
3185
|
+
[[package]]
|
|
3186
|
+
name = "rstar"
|
|
3187
|
+
version = "0.12.2"
|
|
3188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3189
|
+
checksum = "421400d13ccfd26dfa5858199c30a5d76f9c54e0dba7575273025b43c5175dbb"
|
|
3190
|
+
dependencies = [
|
|
3191
|
+
"heapless 0.8.0",
|
|
3192
|
+
"num-traits",
|
|
3193
|
+
"serde",
|
|
3194
|
+
"smallvec",
|
|
3195
|
+
]
|
|
3196
|
+
|
|
3197
|
+
[[package]]
|
|
3198
|
+
name = "rustc-hash"
|
|
3199
|
+
version = "1.1.0"
|
|
3200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3201
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
3202
|
+
|
|
3203
|
+
[[package]]
|
|
3204
|
+
name = "rustc-hash"
|
|
3205
|
+
version = "2.1.2"
|
|
3206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3207
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
3208
|
+
|
|
3209
|
+
[[package]]
|
|
3210
|
+
name = "rustc_version"
|
|
3211
|
+
version = "0.4.1"
|
|
3212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3213
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
3214
|
+
dependencies = [
|
|
3215
|
+
"semver",
|
|
3216
|
+
]
|
|
3217
|
+
|
|
3218
|
+
[[package]]
|
|
3219
|
+
name = "rustversion"
|
|
3220
|
+
version = "1.0.22"
|
|
3221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3222
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
3223
|
+
|
|
3224
|
+
[[package]]
|
|
3225
|
+
name = "rustybuzz"
|
|
3226
|
+
version = "0.20.1"
|
|
3227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3228
|
+
checksum = "fd3c7c96f8a08ee34eff8857b11b49b07d71d1c3f4e88f8a88d4c9e9f90b1702"
|
|
3229
|
+
dependencies = [
|
|
3230
|
+
"bitflags",
|
|
3231
|
+
"bytemuck",
|
|
3232
|
+
"core_maths",
|
|
3233
|
+
"log",
|
|
3234
|
+
"smallvec",
|
|
3235
|
+
"ttf-parser 0.25.1",
|
|
3236
|
+
"unicode-bidi-mirroring",
|
|
3237
|
+
"unicode-ccc",
|
|
3238
|
+
"unicode-properties",
|
|
3239
|
+
"unicode-script",
|
|
3240
|
+
]
|
|
3241
|
+
|
|
3242
|
+
[[package]]
|
|
3243
|
+
name = "ryu"
|
|
3244
|
+
version = "1.0.23"
|
|
3245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3246
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
3247
|
+
|
|
3248
|
+
[[package]]
|
|
3249
|
+
name = "safe_arch"
|
|
3250
|
+
version = "1.0.0"
|
|
3251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3252
|
+
checksum = "1f7caad094bd561859bcd467734a720c3c1f5d1f338995351fefe2190c45efed"
|
|
3253
|
+
dependencies = [
|
|
3254
|
+
"bytemuck",
|
|
3255
|
+
]
|
|
3256
|
+
|
|
3257
|
+
[[package]]
|
|
3258
|
+
name = "same-file"
|
|
3259
|
+
version = "1.0.6"
|
|
3260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3261
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
3262
|
+
dependencies = [
|
|
3263
|
+
"winapi-util",
|
|
3264
|
+
]
|
|
3265
|
+
|
|
3266
|
+
[[package]]
|
|
3267
|
+
name = "scoped-tls"
|
|
3268
|
+
version = "1.0.1"
|
|
3269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3270
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
3271
|
+
|
|
3272
|
+
[[package]]
|
|
3273
|
+
name = "scopeguard"
|
|
3274
|
+
version = "1.2.0"
|
|
3275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3276
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
3277
|
+
|
|
3278
|
+
[[package]]
|
|
3279
|
+
name = "semver"
|
|
3280
|
+
version = "1.0.28"
|
|
3281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3282
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
3283
|
+
|
|
3284
|
+
[[package]]
|
|
3285
|
+
name = "seq-macro"
|
|
3286
|
+
version = "0.3.6"
|
|
3287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3288
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
3289
|
+
|
|
3290
|
+
[[package]]
|
|
3291
|
+
name = "serde"
|
|
3292
|
+
version = "1.0.228"
|
|
3293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3294
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
3295
|
+
dependencies = [
|
|
3296
|
+
"serde_core",
|
|
3297
|
+
"serde_derive",
|
|
3298
|
+
]
|
|
3299
|
+
|
|
3300
|
+
[[package]]
|
|
3301
|
+
name = "serde_core"
|
|
3302
|
+
version = "1.0.228"
|
|
3303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3304
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
3305
|
+
dependencies = [
|
|
3306
|
+
"serde_derive",
|
|
3307
|
+
]
|
|
3308
|
+
|
|
3309
|
+
[[package]]
|
|
3310
|
+
name = "serde_derive"
|
|
3311
|
+
version = "1.0.228"
|
|
3312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3313
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
3314
|
+
dependencies = [
|
|
3315
|
+
"proc-macro2",
|
|
3316
|
+
"quote",
|
|
3317
|
+
"syn 2.0.117",
|
|
3318
|
+
]
|
|
3319
|
+
|
|
3320
|
+
[[package]]
|
|
3321
|
+
name = "serde_json"
|
|
3322
|
+
version = "1.0.149"
|
|
3323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3324
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
3325
|
+
dependencies = [
|
|
3326
|
+
"itoa",
|
|
3327
|
+
"memchr",
|
|
3328
|
+
"serde",
|
|
3329
|
+
"serde_core",
|
|
3330
|
+
"zmij",
|
|
3331
|
+
]
|
|
3332
|
+
|
|
3333
|
+
[[package]]
|
|
3334
|
+
name = "sha2"
|
|
3335
|
+
version = "0.10.9"
|
|
3336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3337
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3338
|
+
dependencies = [
|
|
3339
|
+
"cfg-if",
|
|
3340
|
+
"cpufeatures",
|
|
3341
|
+
"digest",
|
|
3342
|
+
]
|
|
3343
|
+
|
|
3344
|
+
[[package]]
|
|
3345
|
+
name = "sharded-slab"
|
|
3346
|
+
version = "0.1.7"
|
|
3347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3348
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
3349
|
+
dependencies = [
|
|
3350
|
+
"lazy_static",
|
|
3351
|
+
]
|
|
3352
|
+
|
|
3353
|
+
[[package]]
|
|
3354
|
+
name = "shlex"
|
|
3355
|
+
version = "1.3.0"
|
|
3356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3357
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3358
|
+
|
|
3359
|
+
[[package]]
|
|
3360
|
+
name = "simd-adler32"
|
|
3361
|
+
version = "0.3.9"
|
|
3362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3363
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
3364
|
+
|
|
3365
|
+
[[package]]
|
|
3366
|
+
name = "simplecss"
|
|
3367
|
+
version = "0.2.2"
|
|
3368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3369
|
+
checksum = "7a9c6883ca9c3c7c90e888de77b7a5c849c779d25d74a1269b0218b14e8b136c"
|
|
3370
|
+
dependencies = [
|
|
3371
|
+
"log",
|
|
3372
|
+
]
|
|
3373
|
+
|
|
3374
|
+
[[package]]
|
|
3375
|
+
name = "siphasher"
|
|
3376
|
+
version = "1.0.3"
|
|
3377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3378
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
3379
|
+
|
|
3380
|
+
[[package]]
|
|
3381
|
+
name = "slab"
|
|
3382
|
+
version = "0.4.12"
|
|
3383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3384
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
3385
|
+
|
|
3386
|
+
[[package]]
|
|
3387
|
+
name = "slotmap"
|
|
3388
|
+
version = "1.1.1"
|
|
3389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3390
|
+
checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
|
|
3391
|
+
dependencies = [
|
|
3392
|
+
"version_check",
|
|
3393
|
+
]
|
|
3394
|
+
|
|
3395
|
+
[[package]]
|
|
3396
|
+
name = "smallvec"
|
|
3397
|
+
version = "1.15.1"
|
|
3398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3399
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
3400
|
+
|
|
3401
|
+
[[package]]
|
|
3402
|
+
name = "spin"
|
|
3403
|
+
version = "0.9.8"
|
|
3404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3405
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
3406
|
+
dependencies = [
|
|
3407
|
+
"lock_api",
|
|
3408
|
+
]
|
|
3409
|
+
|
|
3410
|
+
[[package]]
|
|
3411
|
+
name = "spindle"
|
|
3412
|
+
version = "0.2.6"
|
|
3413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3414
|
+
checksum = "673aaca3d8aa5387a6eba861fbf984af5348d9df5d940c25c6366b19556fdf64"
|
|
3415
|
+
dependencies = [
|
|
3416
|
+
"atomic-wait",
|
|
3417
|
+
"crossbeam",
|
|
3418
|
+
"equator 0.4.2",
|
|
3419
|
+
"loom",
|
|
3420
|
+
"rayon",
|
|
3421
|
+
]
|
|
3422
|
+
|
|
3423
|
+
[[package]]
|
|
3424
|
+
name = "stable_deref_trait"
|
|
3425
|
+
version = "1.2.1"
|
|
3426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3427
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
3428
|
+
|
|
3429
|
+
[[package]]
|
|
3430
|
+
name = "static_assertions"
|
|
3431
|
+
version = "1.1.0"
|
|
3432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3433
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
3434
|
+
|
|
3435
|
+
[[package]]
|
|
3436
|
+
name = "strict-num"
|
|
3437
|
+
version = "0.1.1"
|
|
3438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3439
|
+
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
|
|
3440
|
+
dependencies = [
|
|
3441
|
+
"float-cmp",
|
|
3442
|
+
]
|
|
3443
|
+
|
|
3444
|
+
[[package]]
|
|
3445
|
+
name = "strsim"
|
|
3446
|
+
version = "0.11.1"
|
|
3447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3448
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3449
|
+
|
|
3450
|
+
[[package]]
|
|
3451
|
+
name = "svgtypes"
|
|
3452
|
+
version = "0.16.1"
|
|
3453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3454
|
+
checksum = "695b5790b3131dafa99b3bbfd25a216edb3d216dad9ca208d4657bfb8f2abc3d"
|
|
3455
|
+
dependencies = [
|
|
3456
|
+
"kurbo",
|
|
3457
|
+
"siphasher",
|
|
3458
|
+
]
|
|
3459
|
+
|
|
3460
|
+
[[package]]
|
|
3461
|
+
name = "syn"
|
|
3462
|
+
version = "1.0.109"
|
|
3463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3464
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
3465
|
+
dependencies = [
|
|
3466
|
+
"proc-macro2",
|
|
3467
|
+
"quote",
|
|
3468
|
+
"unicode-ident",
|
|
3469
|
+
]
|
|
3470
|
+
|
|
3471
|
+
[[package]]
|
|
3472
|
+
name = "syn"
|
|
3473
|
+
version = "2.0.117"
|
|
3474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3475
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
3476
|
+
dependencies = [
|
|
3477
|
+
"proc-macro2",
|
|
3478
|
+
"quote",
|
|
3479
|
+
"unicode-ident",
|
|
3480
|
+
]
|
|
3481
|
+
|
|
3482
|
+
[[package]]
|
|
3483
|
+
name = "sysctl"
|
|
3484
|
+
version = "0.6.0"
|
|
3485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3486
|
+
checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
|
|
3487
|
+
dependencies = [
|
|
3488
|
+
"bitflags",
|
|
3489
|
+
"byteorder",
|
|
3490
|
+
"enum-as-inner",
|
|
3491
|
+
"libc",
|
|
3492
|
+
"thiserror 1.0.69",
|
|
3493
|
+
"walkdir",
|
|
3494
|
+
]
|
|
3495
|
+
|
|
3496
|
+
[[package]]
|
|
3497
|
+
name = "target-lexicon"
|
|
3498
|
+
version = "0.13.5"
|
|
3499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3500
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
3501
|
+
|
|
3502
|
+
[[package]]
|
|
3503
|
+
name = "thiserror"
|
|
3504
|
+
version = "1.0.69"
|
|
3505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3506
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3507
|
+
dependencies = [
|
|
3508
|
+
"thiserror-impl 1.0.69",
|
|
3509
|
+
]
|
|
3510
|
+
|
|
3511
|
+
[[package]]
|
|
3512
|
+
name = "thiserror"
|
|
3513
|
+
version = "2.0.18"
|
|
3514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3515
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
3516
|
+
dependencies = [
|
|
3517
|
+
"thiserror-impl 2.0.18",
|
|
3518
|
+
]
|
|
3519
|
+
|
|
3520
|
+
[[package]]
|
|
3521
|
+
name = "thiserror-impl"
|
|
3522
|
+
version = "1.0.69"
|
|
3523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3524
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3525
|
+
dependencies = [
|
|
3526
|
+
"proc-macro2",
|
|
3527
|
+
"quote",
|
|
3528
|
+
"syn 2.0.117",
|
|
3529
|
+
]
|
|
3530
|
+
|
|
3531
|
+
[[package]]
|
|
3532
|
+
name = "thiserror-impl"
|
|
3533
|
+
version = "2.0.18"
|
|
3534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3535
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
3536
|
+
dependencies = [
|
|
3537
|
+
"proc-macro2",
|
|
3538
|
+
"quote",
|
|
3539
|
+
"syn 2.0.117",
|
|
3540
|
+
]
|
|
3541
|
+
|
|
3542
|
+
[[package]]
|
|
3543
|
+
name = "thousands"
|
|
3544
|
+
version = "0.2.0"
|
|
3545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3546
|
+
checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820"
|
|
3547
|
+
|
|
3548
|
+
[[package]]
|
|
3549
|
+
name = "thread_local"
|
|
3550
|
+
version = "1.1.9"
|
|
3551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3552
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
3553
|
+
dependencies = [
|
|
3554
|
+
"cfg-if",
|
|
3555
|
+
]
|
|
3556
|
+
|
|
3557
|
+
[[package]]
|
|
3558
|
+
name = "tikv-jemalloc-sys"
|
|
3559
|
+
version = "0.5.4+5.3.0-patched"
|
|
3560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3561
|
+
checksum = "9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1"
|
|
3562
|
+
dependencies = [
|
|
3563
|
+
"cc",
|
|
3564
|
+
"libc",
|
|
3565
|
+
]
|
|
3566
|
+
|
|
3567
|
+
[[package]]
|
|
3568
|
+
name = "tikv-jemallocator"
|
|
3569
|
+
version = "0.5.4"
|
|
3570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3571
|
+
checksum = "965fe0c26be5c56c94e38ba547249074803efd52adfb66de62107d95aab3eaca"
|
|
3572
|
+
dependencies = [
|
|
3573
|
+
"libc",
|
|
3574
|
+
"tikv-jemalloc-sys",
|
|
3575
|
+
]
|
|
3576
|
+
|
|
3577
|
+
[[package]]
|
|
3578
|
+
name = "tiny-keccak"
|
|
3579
|
+
version = "2.0.2"
|
|
3580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3581
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
3582
|
+
dependencies = [
|
|
3583
|
+
"crunchy",
|
|
3584
|
+
]
|
|
3585
|
+
|
|
3586
|
+
[[package]]
|
|
3587
|
+
name = "tiny-skia"
|
|
3588
|
+
version = "0.12.0"
|
|
3589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3590
|
+
checksum = "47ffee5eaaf5527f630fb0e356b90ebdec84d5d18d937c5e440350f88c5a91ea"
|
|
3591
|
+
dependencies = [
|
|
3592
|
+
"arrayref",
|
|
3593
|
+
"arrayvec",
|
|
3594
|
+
"bytemuck",
|
|
3595
|
+
"cfg-if",
|
|
3596
|
+
"log",
|
|
3597
|
+
"png",
|
|
3598
|
+
"tiny-skia-path",
|
|
3599
|
+
]
|
|
3600
|
+
|
|
3601
|
+
[[package]]
|
|
3602
|
+
name = "tiny-skia-path"
|
|
3603
|
+
version = "0.12.0"
|
|
3604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3605
|
+
checksum = "edca365c3faccca67d06593c5980fa6c57687de727a03131735bb85f01fdeeb9"
|
|
3606
|
+
dependencies = [
|
|
3607
|
+
"arrayref",
|
|
3608
|
+
"bytemuck",
|
|
3609
|
+
"strict-num",
|
|
3610
|
+
]
|
|
3611
|
+
|
|
3612
|
+
[[package]]
|
|
3613
|
+
name = "tinytemplate"
|
|
3614
|
+
version = "1.2.1"
|
|
3615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3616
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
3617
|
+
dependencies = [
|
|
3618
|
+
"serde",
|
|
3619
|
+
"serde_json",
|
|
3620
|
+
]
|
|
3621
|
+
|
|
3622
|
+
[[package]]
|
|
3623
|
+
name = "tinyvec"
|
|
3624
|
+
version = "1.11.0"
|
|
3625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3626
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
3627
|
+
dependencies = [
|
|
3628
|
+
"tinyvec_macros",
|
|
3629
|
+
]
|
|
3630
|
+
|
|
3631
|
+
[[package]]
|
|
3632
|
+
name = "tinyvec_macros"
|
|
3633
|
+
version = "0.1.1"
|
|
3634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3635
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3636
|
+
|
|
3637
|
+
[[package]]
|
|
3638
|
+
name = "tracing"
|
|
3639
|
+
version = "0.1.44"
|
|
3640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3641
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3642
|
+
dependencies = [
|
|
3643
|
+
"pin-project-lite",
|
|
3644
|
+
"tracing-core",
|
|
3645
|
+
]
|
|
3646
|
+
|
|
3647
|
+
[[package]]
|
|
3648
|
+
name = "tracing-core"
|
|
3649
|
+
version = "0.1.36"
|
|
3650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3651
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3652
|
+
dependencies = [
|
|
3653
|
+
"once_cell",
|
|
3654
|
+
"valuable",
|
|
3655
|
+
]
|
|
3656
|
+
|
|
3657
|
+
[[package]]
|
|
3658
|
+
name = "tracing-log"
|
|
3659
|
+
version = "0.2.0"
|
|
3660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3661
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3662
|
+
dependencies = [
|
|
3663
|
+
"log",
|
|
3664
|
+
"once_cell",
|
|
3665
|
+
"tracing-core",
|
|
3666
|
+
]
|
|
3667
|
+
|
|
3668
|
+
[[package]]
|
|
3669
|
+
name = "tracing-subscriber"
|
|
3670
|
+
version = "0.3.23"
|
|
3671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3672
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
3673
|
+
dependencies = [
|
|
3674
|
+
"matchers",
|
|
3675
|
+
"nu-ansi-term",
|
|
3676
|
+
"once_cell",
|
|
3677
|
+
"regex-automata",
|
|
3678
|
+
"sharded-slab",
|
|
3679
|
+
"smallvec",
|
|
3680
|
+
"thread_local",
|
|
3681
|
+
"tracing",
|
|
3682
|
+
"tracing-core",
|
|
3683
|
+
"tracing-log",
|
|
3684
|
+
]
|
|
3685
|
+
|
|
3686
|
+
[[package]]
|
|
3687
|
+
name = "ttf-parser"
|
|
3688
|
+
version = "0.21.1"
|
|
3689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3690
|
+
checksum = "2c591d83f69777866b9126b24c6dd9a18351f177e49d625920d19f989fd31cf8"
|
|
3691
|
+
|
|
3692
|
+
[[package]]
|
|
3693
|
+
name = "ttf-parser"
|
|
3694
|
+
version = "0.25.1"
|
|
3695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3696
|
+
checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
|
|
3697
|
+
dependencies = [
|
|
3698
|
+
"core_maths",
|
|
3699
|
+
]
|
|
3700
|
+
|
|
3701
|
+
[[package]]
|
|
3702
|
+
name = "twox-hash"
|
|
3703
|
+
version = "1.6.3"
|
|
3704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3705
|
+
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
|
|
3706
|
+
dependencies = [
|
|
3707
|
+
"cfg-if",
|
|
3708
|
+
"static_assertions",
|
|
3709
|
+
]
|
|
3710
|
+
|
|
3711
|
+
[[package]]
|
|
3712
|
+
name = "typenum"
|
|
3713
|
+
version = "1.20.0"
|
|
3714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3715
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
3716
|
+
|
|
3717
|
+
[[package]]
|
|
3718
|
+
name = "ucd-trie"
|
|
3719
|
+
version = "0.1.7"
|
|
3720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3721
|
+
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
3722
|
+
|
|
3723
|
+
[[package]]
|
|
3724
|
+
name = "unicode-bidi"
|
|
3725
|
+
version = "0.3.18"
|
|
3726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3727
|
+
checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
|
3728
|
+
|
|
3729
|
+
[[package]]
|
|
3730
|
+
name = "unicode-bidi-mirroring"
|
|
3731
|
+
version = "0.4.0"
|
|
3732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3733
|
+
checksum = "5dfa6e8c60bb66d49db113e0125ee8711b7647b5579dc7f5f19c42357ed039fe"
|
|
3734
|
+
|
|
3735
|
+
[[package]]
|
|
3736
|
+
name = "unicode-ccc"
|
|
3737
|
+
version = "0.4.0"
|
|
3738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3739
|
+
checksum = "ce61d488bcdc9bc8b5d1772c404828b17fc481c0a582b5581e95fb233aef503e"
|
|
3740
|
+
|
|
3741
|
+
[[package]]
|
|
3742
|
+
name = "unicode-ident"
|
|
3743
|
+
version = "1.0.24"
|
|
3744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3745
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
3746
|
+
|
|
3747
|
+
[[package]]
|
|
3748
|
+
name = "unicode-properties"
|
|
3749
|
+
version = "0.1.4"
|
|
3750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3751
|
+
checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
|
|
3752
|
+
|
|
3753
|
+
[[package]]
|
|
3754
|
+
name = "unicode-script"
|
|
3755
|
+
version = "0.5.8"
|
|
3756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3757
|
+
checksum = "383ad40bb927465ec0ce7720e033cb4ca06912855fc35db31b5755d0de75b1ee"
|
|
3758
|
+
|
|
3759
|
+
[[package]]
|
|
3760
|
+
name = "unicode-segmentation"
|
|
3761
|
+
version = "1.13.2"
|
|
3762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3763
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
3764
|
+
|
|
3765
|
+
[[package]]
|
|
3766
|
+
name = "unicode-vo"
|
|
3767
|
+
version = "0.1.0"
|
|
3768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3769
|
+
checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
|
|
3770
|
+
|
|
3771
|
+
[[package]]
|
|
3772
|
+
name = "unicode-width"
|
|
3773
|
+
version = "0.2.2"
|
|
3774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3775
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3776
|
+
|
|
3777
|
+
[[package]]
|
|
3778
|
+
name = "usvg"
|
|
3779
|
+
version = "0.47.0"
|
|
3780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3781
|
+
checksum = "d46cf96c5f498d36b7a9693bc6a7075c0bb9303189d61b2249b0dc3d309c07de"
|
|
3782
|
+
dependencies = [
|
|
3783
|
+
"base64",
|
|
3784
|
+
"data-url",
|
|
3785
|
+
"flate2",
|
|
3786
|
+
"fontdb",
|
|
3787
|
+
"imagesize",
|
|
3788
|
+
"kurbo",
|
|
3789
|
+
"log",
|
|
3790
|
+
"pico-args",
|
|
3791
|
+
"roxmltree 0.21.1",
|
|
3792
|
+
"rustybuzz",
|
|
3793
|
+
"simplecss",
|
|
3794
|
+
"siphasher",
|
|
3795
|
+
"strict-num",
|
|
3796
|
+
"svgtypes",
|
|
3797
|
+
"tiny-skia-path",
|
|
3798
|
+
"ttf-parser 0.25.1",
|
|
3799
|
+
"unicode-bidi",
|
|
3800
|
+
"unicode-script",
|
|
3801
|
+
"unicode-vo",
|
|
3802
|
+
"xmlwriter",
|
|
3803
|
+
]
|
|
3804
|
+
|
|
3805
|
+
[[package]]
|
|
3806
|
+
name = "utf8parse"
|
|
3807
|
+
version = "0.2.2"
|
|
3808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3809
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3810
|
+
|
|
3811
|
+
[[package]]
|
|
3812
|
+
name = "valuable"
|
|
3813
|
+
version = "0.1.1"
|
|
3814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3815
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
3816
|
+
|
|
3817
|
+
[[package]]
|
|
3818
|
+
name = "version_check"
|
|
3819
|
+
version = "0.9.5"
|
|
3820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3821
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3822
|
+
|
|
3823
|
+
[[package]]
|
|
3824
|
+
name = "voracious_radix_sort"
|
|
3825
|
+
version = "1.2.0"
|
|
3826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3827
|
+
checksum = "446e7ffcb6c27a71d05af7e51ef2ee5b71c48424b122a832f2439651e1914899"
|
|
3828
|
+
dependencies = [
|
|
3829
|
+
"rayon",
|
|
3830
|
+
]
|
|
3831
|
+
|
|
3832
|
+
[[package]]
|
|
3833
|
+
name = "walkdir"
|
|
3834
|
+
version = "2.5.0"
|
|
3835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3836
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3837
|
+
dependencies = [
|
|
3838
|
+
"same-file",
|
|
3839
|
+
"winapi-util",
|
|
3840
|
+
]
|
|
3841
|
+
|
|
3842
|
+
[[package]]
|
|
3843
|
+
name = "wasi"
|
|
3844
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3846
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3847
|
+
|
|
3848
|
+
[[package]]
|
|
3849
|
+
name = "wasip2"
|
|
3850
|
+
version = "1.0.3+wasi-0.2.9"
|
|
3851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3852
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
3853
|
+
dependencies = [
|
|
3854
|
+
"wit-bindgen",
|
|
3855
|
+
]
|
|
3856
|
+
|
|
3857
|
+
[[package]]
|
|
3858
|
+
name = "wasm-bindgen"
|
|
3859
|
+
version = "0.2.121"
|
|
3860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3861
|
+
checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
|
|
3862
|
+
dependencies = [
|
|
3863
|
+
"cfg-if",
|
|
3864
|
+
"once_cell",
|
|
3865
|
+
"rustversion",
|
|
3866
|
+
"wasm-bindgen-macro",
|
|
3867
|
+
"wasm-bindgen-shared",
|
|
3868
|
+
]
|
|
3869
|
+
|
|
3870
|
+
[[package]]
|
|
3871
|
+
name = "wasm-bindgen-futures"
|
|
3872
|
+
version = "0.4.71"
|
|
3873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3874
|
+
checksum = "96492d0d3ffba25305a7dc88720d250b1401d7edca02cc3bcd50633b424673b8"
|
|
3875
|
+
dependencies = [
|
|
3876
|
+
"js-sys",
|
|
3877
|
+
"wasm-bindgen",
|
|
3878
|
+
]
|
|
3879
|
+
|
|
3880
|
+
[[package]]
|
|
3881
|
+
name = "wasm-bindgen-macro"
|
|
3882
|
+
version = "0.2.121"
|
|
3883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3884
|
+
checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
|
|
3885
|
+
dependencies = [
|
|
3886
|
+
"quote",
|
|
3887
|
+
"wasm-bindgen-macro-support",
|
|
3888
|
+
]
|
|
3889
|
+
|
|
3890
|
+
[[package]]
|
|
3891
|
+
name = "wasm-bindgen-macro-support"
|
|
3892
|
+
version = "0.2.121"
|
|
3893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3894
|
+
checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
|
|
3895
|
+
dependencies = [
|
|
3896
|
+
"bumpalo",
|
|
3897
|
+
"proc-macro2",
|
|
3898
|
+
"quote",
|
|
3899
|
+
"syn 2.0.117",
|
|
3900
|
+
"wasm-bindgen-shared",
|
|
3901
|
+
]
|
|
3902
|
+
|
|
3903
|
+
[[package]]
|
|
3904
|
+
name = "wasm-bindgen-shared"
|
|
3905
|
+
version = "0.2.121"
|
|
3906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3907
|
+
checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
|
|
3908
|
+
dependencies = [
|
|
3909
|
+
"unicode-ident",
|
|
3910
|
+
]
|
|
3911
|
+
|
|
3912
|
+
[[package]]
|
|
3913
|
+
name = "wayland-sys"
|
|
3914
|
+
version = "0.31.11"
|
|
3915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3916
|
+
checksum = "d8eab23fefc9e41f8e841df4a9c707e8a8c4ed26e944ef69297184de2785e3be"
|
|
3917
|
+
dependencies = [
|
|
3918
|
+
"dlib",
|
|
3919
|
+
"log",
|
|
3920
|
+
"once_cell",
|
|
3921
|
+
"pkg-config",
|
|
3922
|
+
]
|
|
3923
|
+
|
|
3924
|
+
[[package]]
|
|
3925
|
+
name = "web-sys"
|
|
3926
|
+
version = "0.3.98"
|
|
3927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3928
|
+
checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
|
|
3929
|
+
dependencies = [
|
|
3930
|
+
"js-sys",
|
|
3931
|
+
"wasm-bindgen",
|
|
3932
|
+
]
|
|
3933
|
+
|
|
3934
|
+
[[package]]
|
|
3935
|
+
name = "weezl"
|
|
3936
|
+
version = "0.1.12"
|
|
3937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3938
|
+
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
3939
|
+
|
|
3940
|
+
[[package]]
|
|
3941
|
+
name = "wgpu"
|
|
3942
|
+
version = "29.0.3"
|
|
3943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3944
|
+
checksum = "bb3feacc458f7bee8bc1737149b42b6c731aa461039a4264a67bb6681646b250"
|
|
3945
|
+
dependencies = [
|
|
3946
|
+
"arrayvec",
|
|
3947
|
+
"bitflags",
|
|
3948
|
+
"bytemuck",
|
|
3949
|
+
"cfg-if",
|
|
3950
|
+
"cfg_aliases",
|
|
3951
|
+
"document-features",
|
|
3952
|
+
"hashbrown 0.16.1",
|
|
3953
|
+
"js-sys",
|
|
3954
|
+
"log",
|
|
3955
|
+
"portable-atomic",
|
|
3956
|
+
"profiling",
|
|
3957
|
+
"raw-window-handle",
|
|
3958
|
+
"smallvec",
|
|
3959
|
+
"static_assertions",
|
|
3960
|
+
"wasm-bindgen",
|
|
3961
|
+
"web-sys",
|
|
3962
|
+
"wgpu-core",
|
|
3963
|
+
"wgpu-hal",
|
|
3964
|
+
"wgpu-types",
|
|
3965
|
+
]
|
|
3966
|
+
|
|
3967
|
+
[[package]]
|
|
3968
|
+
name = "wgpu-core"
|
|
3969
|
+
version = "29.0.3"
|
|
3970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3971
|
+
checksum = "02da3ad1b568337f25513b317870960ef87073ea0945502e44b864b67a8c77b7"
|
|
3972
|
+
dependencies = [
|
|
3973
|
+
"arrayvec",
|
|
3974
|
+
"bit-set",
|
|
3975
|
+
"bit-vec",
|
|
3976
|
+
"bitflags",
|
|
3977
|
+
"bytemuck",
|
|
3978
|
+
"cfg_aliases",
|
|
3979
|
+
"document-features",
|
|
3980
|
+
"hashbrown 0.16.1",
|
|
3981
|
+
"indexmap",
|
|
3982
|
+
"log",
|
|
3983
|
+
"naga",
|
|
3984
|
+
"once_cell",
|
|
3985
|
+
"parking_lot",
|
|
3986
|
+
"portable-atomic",
|
|
3987
|
+
"profiling",
|
|
3988
|
+
"raw-window-handle",
|
|
3989
|
+
"rustc-hash 1.1.0",
|
|
3990
|
+
"smallvec",
|
|
3991
|
+
"thiserror 2.0.18",
|
|
3992
|
+
"wgpu-core-deps-wasm",
|
|
3993
|
+
"wgpu-core-deps-windows-linux-android",
|
|
3994
|
+
"wgpu-hal",
|
|
3995
|
+
"wgpu-naga-bridge",
|
|
3996
|
+
"wgpu-types",
|
|
3997
|
+
]
|
|
3998
|
+
|
|
3999
|
+
[[package]]
|
|
4000
|
+
name = "wgpu-core-deps-wasm"
|
|
4001
|
+
version = "29.0.3"
|
|
4002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4003
|
+
checksum = "0c2f2fb042f36920771deb0b966543c5751b18f3d327760ffc90f74e20b2dcd4"
|
|
4004
|
+
dependencies = [
|
|
4005
|
+
"wgpu-hal",
|
|
4006
|
+
]
|
|
4007
|
+
|
|
4008
|
+
[[package]]
|
|
4009
|
+
name = "wgpu-core-deps-windows-linux-android"
|
|
4010
|
+
version = "29.0.3"
|
|
4011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4012
|
+
checksum = "1bfb01076d0aa08b0ba9bd741e178b5cc440f5abe99d9581323a4c8b5d1a1916"
|
|
4013
|
+
dependencies = [
|
|
4014
|
+
"wgpu-hal",
|
|
4015
|
+
]
|
|
4016
|
+
|
|
4017
|
+
[[package]]
|
|
4018
|
+
name = "wgpu-hal"
|
|
4019
|
+
version = "29.0.3"
|
|
4020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4021
|
+
checksum = "31f8e1a9e7a8512f276f7c62e018c7fa8d60954303fed2e5750114332049193f"
|
|
4022
|
+
dependencies = [
|
|
4023
|
+
"arrayvec",
|
|
4024
|
+
"bitflags",
|
|
4025
|
+
"bytemuck",
|
|
4026
|
+
"cfg-if",
|
|
4027
|
+
"cfg_aliases",
|
|
4028
|
+
"glow",
|
|
4029
|
+
"glutin_wgl_sys",
|
|
4030
|
+
"hashbrown 0.16.1",
|
|
4031
|
+
"js-sys",
|
|
4032
|
+
"khronos-egl",
|
|
4033
|
+
"libloading",
|
|
4034
|
+
"log",
|
|
4035
|
+
"naga",
|
|
4036
|
+
"ndk-sys",
|
|
4037
|
+
"objc2",
|
|
4038
|
+
"parking_lot",
|
|
4039
|
+
"portable-atomic",
|
|
4040
|
+
"portable-atomic-util",
|
|
4041
|
+
"profiling",
|
|
4042
|
+
"raw-window-handle",
|
|
4043
|
+
"renderdoc-sys",
|
|
4044
|
+
"thiserror 2.0.18",
|
|
4045
|
+
"wasm-bindgen",
|
|
4046
|
+
"wayland-sys",
|
|
4047
|
+
"web-sys",
|
|
4048
|
+
"wgpu-naga-bridge",
|
|
4049
|
+
"wgpu-types",
|
|
4050
|
+
"windows",
|
|
4051
|
+
"windows-result",
|
|
4052
|
+
]
|
|
4053
|
+
|
|
4054
|
+
[[package]]
|
|
4055
|
+
name = "wgpu-naga-bridge"
|
|
4056
|
+
version = "29.0.3"
|
|
4057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4058
|
+
checksum = "59c654c483f058800972c3645e95388a7eca31bf9fe1933bc20e036588a0be02"
|
|
4059
|
+
dependencies = [
|
|
4060
|
+
"naga",
|
|
4061
|
+
"wgpu-types",
|
|
4062
|
+
]
|
|
4063
|
+
|
|
4064
|
+
[[package]]
|
|
4065
|
+
name = "wgpu-types"
|
|
4066
|
+
version = "29.0.3"
|
|
4067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4068
|
+
checksum = "a9bcc31518a0e9735aefebedb5f7a9ef3ed1c42549c9f4c882fa9060ceaac639"
|
|
4069
|
+
dependencies = [
|
|
4070
|
+
"bitflags",
|
|
4071
|
+
"bytemuck",
|
|
4072
|
+
"js-sys",
|
|
4073
|
+
"log",
|
|
4074
|
+
"raw-window-handle",
|
|
4075
|
+
"web-sys",
|
|
4076
|
+
]
|
|
4077
|
+
|
|
4078
|
+
[[package]]
|
|
4079
|
+
name = "wide"
|
|
4080
|
+
version = "1.4.0"
|
|
4081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4082
|
+
checksum = "9a7714cd0430a663154667c74da5d09325c2387695bee18b3f7f72825aa3693a"
|
|
4083
|
+
dependencies = [
|
|
4084
|
+
"bytemuck",
|
|
4085
|
+
"safe_arch",
|
|
4086
|
+
]
|
|
4087
|
+
|
|
4088
|
+
[[package]]
|
|
4089
|
+
name = "winapi-util"
|
|
4090
|
+
version = "0.1.11"
|
|
4091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4092
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
4093
|
+
dependencies = [
|
|
4094
|
+
"windows-sys 0.61.2",
|
|
4095
|
+
]
|
|
4096
|
+
|
|
4097
|
+
[[package]]
|
|
4098
|
+
name = "windows"
|
|
4099
|
+
version = "0.62.2"
|
|
4100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4101
|
+
checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
|
|
4102
|
+
dependencies = [
|
|
4103
|
+
"windows-collections",
|
|
4104
|
+
"windows-core",
|
|
4105
|
+
"windows-future",
|
|
4106
|
+
"windows-numerics",
|
|
4107
|
+
]
|
|
4108
|
+
|
|
4109
|
+
[[package]]
|
|
4110
|
+
name = "windows-collections"
|
|
4111
|
+
version = "0.3.2"
|
|
4112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4113
|
+
checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
|
|
4114
|
+
dependencies = [
|
|
4115
|
+
"windows-core",
|
|
4116
|
+
]
|
|
4117
|
+
|
|
4118
|
+
[[package]]
|
|
4119
|
+
name = "windows-core"
|
|
4120
|
+
version = "0.62.2"
|
|
4121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4122
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4123
|
+
dependencies = [
|
|
4124
|
+
"windows-implement",
|
|
4125
|
+
"windows-interface",
|
|
4126
|
+
"windows-link",
|
|
4127
|
+
"windows-result",
|
|
4128
|
+
"windows-strings",
|
|
4129
|
+
]
|
|
4130
|
+
|
|
4131
|
+
[[package]]
|
|
4132
|
+
name = "windows-future"
|
|
4133
|
+
version = "0.3.2"
|
|
4134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4135
|
+
checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
|
|
4136
|
+
dependencies = [
|
|
4137
|
+
"windows-core",
|
|
4138
|
+
"windows-link",
|
|
4139
|
+
"windows-threading",
|
|
4140
|
+
]
|
|
4141
|
+
|
|
4142
|
+
[[package]]
|
|
4143
|
+
name = "windows-implement"
|
|
4144
|
+
version = "0.60.2"
|
|
4145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4146
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
4147
|
+
dependencies = [
|
|
4148
|
+
"proc-macro2",
|
|
4149
|
+
"quote",
|
|
4150
|
+
"syn 2.0.117",
|
|
4151
|
+
]
|
|
4152
|
+
|
|
4153
|
+
[[package]]
|
|
4154
|
+
name = "windows-interface"
|
|
4155
|
+
version = "0.59.3"
|
|
4156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4157
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
4158
|
+
dependencies = [
|
|
4159
|
+
"proc-macro2",
|
|
4160
|
+
"quote",
|
|
4161
|
+
"syn 2.0.117",
|
|
4162
|
+
]
|
|
4163
|
+
|
|
4164
|
+
[[package]]
|
|
4165
|
+
name = "windows-link"
|
|
4166
|
+
version = "0.2.1"
|
|
4167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4168
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
4169
|
+
|
|
4170
|
+
[[package]]
|
|
4171
|
+
name = "windows-numerics"
|
|
4172
|
+
version = "0.3.1"
|
|
4173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4174
|
+
checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
|
|
4175
|
+
dependencies = [
|
|
4176
|
+
"windows-core",
|
|
4177
|
+
"windows-link",
|
|
4178
|
+
]
|
|
4179
|
+
|
|
4180
|
+
[[package]]
|
|
4181
|
+
name = "windows-result"
|
|
4182
|
+
version = "0.4.1"
|
|
4183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4184
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
4185
|
+
dependencies = [
|
|
4186
|
+
"windows-link",
|
|
4187
|
+
]
|
|
4188
|
+
|
|
4189
|
+
[[package]]
|
|
4190
|
+
name = "windows-strings"
|
|
4191
|
+
version = "0.5.1"
|
|
4192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4193
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
4194
|
+
dependencies = [
|
|
4195
|
+
"windows-link",
|
|
4196
|
+
]
|
|
4197
|
+
|
|
4198
|
+
[[package]]
|
|
4199
|
+
name = "windows-sys"
|
|
4200
|
+
version = "0.42.0"
|
|
4201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4202
|
+
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
|
|
4203
|
+
dependencies = [
|
|
4204
|
+
"windows_aarch64_gnullvm",
|
|
4205
|
+
"windows_aarch64_msvc",
|
|
4206
|
+
"windows_i686_gnu",
|
|
4207
|
+
"windows_i686_msvc",
|
|
4208
|
+
"windows_x86_64_gnu",
|
|
4209
|
+
"windows_x86_64_gnullvm",
|
|
4210
|
+
"windows_x86_64_msvc",
|
|
4211
|
+
]
|
|
4212
|
+
|
|
4213
|
+
[[package]]
|
|
4214
|
+
name = "windows-sys"
|
|
4215
|
+
version = "0.61.2"
|
|
4216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4217
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
4218
|
+
dependencies = [
|
|
4219
|
+
"windows-link",
|
|
4220
|
+
]
|
|
4221
|
+
|
|
4222
|
+
[[package]]
|
|
4223
|
+
name = "windows-threading"
|
|
4224
|
+
version = "0.2.1"
|
|
4225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4226
|
+
checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
|
|
4227
|
+
dependencies = [
|
|
4228
|
+
"windows-link",
|
|
4229
|
+
]
|
|
4230
|
+
|
|
4231
|
+
[[package]]
|
|
4232
|
+
name = "windows_aarch64_gnullvm"
|
|
4233
|
+
version = "0.42.2"
|
|
4234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4235
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
4236
|
+
|
|
4237
|
+
[[package]]
|
|
4238
|
+
name = "windows_aarch64_msvc"
|
|
4239
|
+
version = "0.42.2"
|
|
4240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4241
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
4242
|
+
|
|
4243
|
+
[[package]]
|
|
4244
|
+
name = "windows_i686_gnu"
|
|
4245
|
+
version = "0.42.2"
|
|
4246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4247
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
4248
|
+
|
|
4249
|
+
[[package]]
|
|
4250
|
+
name = "windows_i686_msvc"
|
|
4251
|
+
version = "0.42.2"
|
|
4252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4253
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
4254
|
+
|
|
4255
|
+
[[package]]
|
|
4256
|
+
name = "windows_x86_64_gnu"
|
|
4257
|
+
version = "0.42.2"
|
|
4258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4259
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
4260
|
+
|
|
4261
|
+
[[package]]
|
|
4262
|
+
name = "windows_x86_64_gnullvm"
|
|
4263
|
+
version = "0.42.2"
|
|
4264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4265
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
4266
|
+
|
|
4267
|
+
[[package]]
|
|
4268
|
+
name = "windows_x86_64_msvc"
|
|
4269
|
+
version = "0.42.2"
|
|
4270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4271
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
4272
|
+
|
|
4273
|
+
[[package]]
|
|
4274
|
+
name = "wit-bindgen"
|
|
4275
|
+
version = "0.57.1"
|
|
4276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4277
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
4278
|
+
|
|
4279
|
+
[[package]]
|
|
4280
|
+
name = "xml-rs"
|
|
4281
|
+
version = "0.8.28"
|
|
4282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4283
|
+
checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
|
|
4284
|
+
|
|
4285
|
+
[[package]]
|
|
4286
|
+
name = "xmlwriter"
|
|
4287
|
+
version = "0.1.0"
|
|
4288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4289
|
+
checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
|
|
4290
|
+
|
|
4291
|
+
[[package]]
|
|
4292
|
+
name = "zerocopy"
|
|
4293
|
+
version = "0.8.48"
|
|
4294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4295
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
4296
|
+
dependencies = [
|
|
4297
|
+
"zerocopy-derive",
|
|
4298
|
+
]
|
|
4299
|
+
|
|
4300
|
+
[[package]]
|
|
4301
|
+
name = "zerocopy-derive"
|
|
4302
|
+
version = "0.8.48"
|
|
4303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4304
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
4305
|
+
dependencies = [
|
|
4306
|
+
"proc-macro2",
|
|
4307
|
+
"quote",
|
|
4308
|
+
"syn 2.0.117",
|
|
4309
|
+
]
|
|
4310
|
+
|
|
4311
|
+
[[package]]
|
|
4312
|
+
name = "zmij"
|
|
4313
|
+
version = "1.0.21"
|
|
4314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4315
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
4316
|
+
|
|
4317
|
+
[[package]]
|
|
4318
|
+
name = "zune-core"
|
|
4319
|
+
version = "0.5.1"
|
|
4320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4321
|
+
checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
|
|
4322
|
+
|
|
4323
|
+
[[package]]
|
|
4324
|
+
name = "zune-jpeg"
|
|
4325
|
+
version = "0.5.15"
|
|
4326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4327
|
+
checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
|
|
4328
|
+
dependencies = [
|
|
4329
|
+
"zune-core",
|
|
4330
|
+
]
|