pounce-solver 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pounce_solver-0.2.0/Cargo.lock +710 -0
- pounce_solver-0.2.0/Cargo.toml +42 -0
- pounce_solver-0.2.0/PKG-INFO +121 -0
- pounce_solver-0.2.0/README.md +90 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/Cargo.toml +29 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/README.md +60 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/alg_builder.rs +542 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/application.rs +1670 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/conv_check/mod.rs +8 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/conv_check/opt_error.rs +499 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/conv_check/trait.rs +104 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/eq_mult/least_square.rs +138 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/eq_mult/mod.rs +7 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/eq_mult/trait.rs +24 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/hess/exact.rs +30 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/hess/lim_mem_quasi_newton.rs +662 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/hess/mod.rs +9 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/hess/trait.rs +11 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/init/default.rs +441 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/init/mod.rs +10 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/init/trait.rs +24 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/init/warm_start.rs +293 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/intermediate.rs +68 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/ipopt_alg.rs +1606 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/ipopt_cq.rs +1797 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/ipopt_data.rs +212 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/ipopt_nlp.rs +13 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/iter_dump.rs +363 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/iterates_vector.rs +246 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/kkt/aug_system_solver.rs +160 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/kkt/low_rank_aug_system_solver.rs +1028 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/kkt/mod.rs +24 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/kkt/pd_full_space_solver.rs +845 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/kkt/pd_search_dir_calc.rs +438 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/kkt/pd_system_solver.rs +12 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/kkt/perturbation_handler.rs +667 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/kkt/search_dir_calc.rs +9 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/kkt/slack_scaling.rs +353 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/kkt/std_aug_system_solver.rs +932 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/lib.rs +50 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/line_search/backtracking.rs +1112 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/line_search/filter.rs +115 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/line_search/filter_acceptor.rs +739 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/line_search/ls_acceptor.rs +144 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/line_search/mod.rs +13 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/line_search/penalty_acceptor.rs +443 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/mu/adaptive.rs +681 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/mu/mod.rs +15 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/mu/monotone.rs +288 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/mu/oracle/loqo.rs +100 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/mu/oracle/mod.rs +9 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/mu/oracle/probing.rs +131 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/mu/oracle/quality_function.rs +976 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/mu/oracle/trait.rs +10 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/mu/trait.rs +47 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/output/mod.rs +10 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/output/orig.rs +153 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/output/trait.rs +21 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/restoration.rs +102 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/strategy.rs +22 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/timing_stats.rs +6 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/src/upstream_options.rs +1693 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/tests/diagnostics_kkt_dump.rs +196 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/tests/l1_penalty_integration.rs +711 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/tests/ma57_through_t_sym_solver.rs +107 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/tests/optimize_hs14.rs +184 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/tests/optimize_hs71.rs +730 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/tests/optimize_hs71_lbfgs.rs +220 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/tests/presolve_identity_hs71.rs +154 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/tests/presolve_phase1_tightens.rs +207 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/tests/presolve_phase2_drops_rows.rs +184 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/tests/presolve_phase3_licq.rs +242 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/tests/presolve_phase4_warm_z.rs +183 -0
- pounce_solver-0.2.0/crates/pounce-algorithm/tests/presolve_phase5_passthrough.rs +202 -0
- pounce_solver-0.2.0/crates/pounce-common/Cargo.toml +14 -0
- pounce_solver-0.2.0/crates/pounce-common/README.md +37 -0
- pounce_solver-0.2.0/crates/pounce-common/src/cached.rs +212 -0
- pounce_solver-0.2.0/crates/pounce-common/src/diagnostics.rs +509 -0
- pounce_solver-0.2.0/crates/pounce-common/src/exception.rs +218 -0
- pounce_solver-0.2.0/crates/pounce-common/src/journalist.rs +468 -0
- pounce_solver-0.2.0/crates/pounce-common/src/lib.rs +30 -0
- pounce_solver-0.2.0/crates/pounce-common/src/options_list.rs +730 -0
- pounce_solver-0.2.0/crates/pounce-common/src/reg_options.rs +470 -0
- pounce_solver-0.2.0/crates/pounce-common/src/tagged.rs +131 -0
- pounce_solver-0.2.0/crates/pounce-common/src/timing.rs +376 -0
- pounce_solver-0.2.0/crates/pounce-common/src/types.rs +18 -0
- pounce_solver-0.2.0/crates/pounce-common/src/utils.rs +156 -0
- pounce_solver-0.2.0/crates/pounce-feral/Cargo.toml +19 -0
- pounce_solver-0.2.0/crates/pounce-feral/README.md +41 -0
- pounce_solver-0.2.0/crates/pounce-feral/examples/factor_reuse_bench.rs +102 -0
- pounce_solver-0.2.0/crates/pounce-feral/examples/shift_invert.rs +122 -0
- pounce_solver-0.2.0/crates/pounce-feral/src/lib.rs +628 -0
- pounce_solver-0.2.0/crates/pounce-l1penalty/Cargo.toml +18 -0
- pounce_solver-0.2.0/crates/pounce-l1penalty/README.md +49 -0
- pounce_solver-0.2.0/crates/pounce-l1penalty/src/lib.rs +36 -0
- pounce_solver-0.2.0/crates/pounce-l1penalty/src/options.rs +48 -0
- pounce_solver-0.2.0/crates/pounce-l1penalty/src/wrapper.rs +922 -0
- pounce_solver-0.2.0/crates/pounce-linalg/Cargo.toml +17 -0
- pounce_solver-0.2.0/crates/pounce-linalg/README.md +44 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/blas1.rs +236 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/compound_matrix.rs +846 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/compound_vector.rs +505 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/dense_gen_matrix.rs +741 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/dense_sym_matrix.rs +494 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/dense_vector.rs +1076 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/diag_matrix.rs +187 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/expansion_matrix.rs +508 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/lib.rs +49 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/low_rank_update_sym_matrix.rs +391 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/matrix.rs +217 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/multi_vector_matrix.rs +580 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/scaled_matrix.rs +443 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/special_matrix.rs +351 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/sum_matrix.rs +323 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/transpose_matrix.rs +142 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/triplet.rs +821 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/triplet_convert.rs +458 -0
- pounce_solver-0.2.0/crates/pounce-linalg/src/vector.rs +351 -0
- pounce_solver-0.2.0/crates/pounce-linsol/Cargo.toml +18 -0
- pounce_solver-0.2.0/crates/pounce-linsol/README.md +48 -0
- pounce_solver-0.2.0/crates/pounce-linsol/src/error.rs +46 -0
- pounce_solver-0.2.0/crates/pounce-linsol/src/factorization.rs +552 -0
- pounce_solver-0.2.0/crates/pounce-linsol/src/lib.rs +35 -0
- pounce_solver-0.2.0/crates/pounce-linsol/src/scaling.rs +81 -0
- pounce_solver-0.2.0/crates/pounce-linsol/src/sparse_sym_iface.rs +105 -0
- pounce_solver-0.2.0/crates/pounce-linsol/src/status.rs +27 -0
- pounce_solver-0.2.0/crates/pounce-linsol/src/summary.rs +48 -0
- pounce_solver-0.2.0/crates/pounce-linsol/src/sym_solver.rs +25 -0
- pounce_solver-0.2.0/crates/pounce-linsol/src/t_sym_solver.rs +599 -0
- pounce_solver-0.2.0/crates/pounce-nlp/Cargo.toml +27 -0
- pounce_solver-0.2.0/crates/pounce-nlp/README.md +93 -0
- pounce_solver-0.2.0/crates/pounce-nlp/src/alg_types.rs +28 -0
- pounce_solver-0.2.0/crates/pounce-nlp/src/ipopt_nlp.rs +212 -0
- pounce_solver-0.2.0/crates/pounce-nlp/src/lib.rs +41 -0
- pounce_solver-0.2.0/crates/pounce-nlp/src/orig_ipopt_nlp.rs +2195 -0
- pounce_solver-0.2.0/crates/pounce-nlp/src/return_codes.rs +113 -0
- pounce_solver-0.2.0/crates/pounce-nlp/src/solve_statistics.rs +102 -0
- pounce_solver-0.2.0/crates/pounce-nlp/src/tnlp.rs +379 -0
- pounce_solver-0.2.0/crates/pounce-nlp/src/tnlp_adapter.rs +794 -0
- pounce_solver-0.2.0/crates/pounce-presolve/Cargo.toml +18 -0
- pounce_solver-0.2.0/crates/pounce-presolve/README.md +26 -0
- pounce_solver-0.2.0/crates/pounce-presolve/src/bound_tighten.rs +384 -0
- pounce_solver-0.2.0/crates/pounce-presolve/src/lib.rs +945 -0
- pounce_solver-0.2.0/crates/pounce-presolve/src/licq.rs +195 -0
- pounce_solver-0.2.0/crates/pounce-presolve/src/options.rs +272 -0
- pounce_solver-0.2.0/crates/pounce-presolve/src/redundant.rs +80 -0
- pounce_solver-0.2.0/crates/pounce-py/Cargo.toml +40 -0
- pounce_solver-0.2.0/crates/pounce-py/README.md +27 -0
- pounce_solver-0.2.0/crates/pounce-py/src/lib.rs +38 -0
- pounce_solver-0.2.0/crates/pounce-py/src/problem.rs +611 -0
- pounce_solver-0.2.0/crates/pounce-py/src/solver.rs +201 -0
- pounce_solver-0.2.0/crates/pounce-py/src/tnlp_bridge.rs +432 -0
- pounce_solver-0.2.0/crates/pounce-restoration/Cargo.toml +24 -0
- pounce_solver-0.2.0/crates/pounce-restoration/README.md +47 -0
- pounce_solver-0.2.0/crates/pounce-restoration/src/aug_resto_system_solver.rs +635 -0
- pounce_solver-0.2.0/crates/pounce-restoration/src/conv_check.rs +656 -0
- pounce_solver-0.2.0/crates/pounce-restoration/src/init.rs +823 -0
- pounce_solver-0.2.0/crates/pounce-restoration/src/lib.rs +28 -0
- pounce_solver-0.2.0/crates/pounce-restoration/src/min_c_1nrm.rs +655 -0
- pounce_solver-0.2.0/crates/pounce-restoration/src/output.rs +314 -0
- pounce_solver-0.2.0/crates/pounce-restoration/src/resto_alg_builder.rs +332 -0
- pounce_solver-0.2.0/crates/pounce-restoration/src/resto_inner_solver.rs +763 -0
- pounce_solver-0.2.0/crates/pounce-restoration/src/resto_nlp.rs +1718 -0
- pounce_solver-0.2.0/crates/pounce-restoration/src/resto_resto.rs +323 -0
- pounce_solver-0.2.0/crates/pounce-restoration/src/trait.rs +11 -0
- pounce_solver-0.2.0/crates/pounce-restoration/tests/infeas_detection_benefit.rs +227 -0
- pounce_solver-0.2.0/crates/pounce-restoration/tests/restoration_triggers.rs +223 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/Cargo.toml +20 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/README.md +47 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/examples/parametric_mpc.rs +219 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/examples/sensitivity_factor_reuse_bench.rs +223 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/examples/sensitivity_session.rs +195 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/src/algorithm_backsolver.rs +229 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/src/backsolver.rs +207 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/src/boundcheck.rs +229 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/src/convenience.rs +312 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/src/eigen.rs +275 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/src/lib.rs +88 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/src/p_calculator.rs +406 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/src/reduced_hessian.rs +167 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/src/schur_data.rs +416 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/src/schur_driver.rs +231 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/src/sens_app.rs +409 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/src/solver.rs +351 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/src/step_calc.rs +193 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/tests/adapter_trait_pipeline.rs +464 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/tests/convenience_api.rs +264 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/tests/parametric_cpp.rs +498 -0
- pounce_solver-0.2.0/crates/pounce-sensitivity/tests/solver_session.rs +292 -0
- pounce_solver-0.2.0/pounce/__init__.py +15 -0
- pounce_solver-0.2.0/pounce/_cli.py +49 -0
- pounce_solver-0.2.0/pounce/_minimize.py +246 -0
- pounce_solver-0.2.0/pounce/jax/__init__.py +48 -0
- pounce_solver-0.2.0/pounce/jax/_build.py +183 -0
- pounce_solver-0.2.0/pounce/jax/_diff.py +286 -0
- pounce_solver-0.2.0/pyproject.toml +67 -0
|
@@ -0,0 +1,710 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "autocfg"
|
|
7
|
+
version = "1.5.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "bitflags"
|
|
13
|
+
version = "2.11.1"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "bytemuck"
|
|
19
|
+
version = "1.25.0"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "cfg-if"
|
|
25
|
+
version = "1.0.4"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "crossbeam-deque"
|
|
31
|
+
version = "0.8.6"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"crossbeam-epoch",
|
|
36
|
+
"crossbeam-utils",
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
[[package]]
|
|
40
|
+
name = "crossbeam-epoch"
|
|
41
|
+
version = "0.9.18"
|
|
42
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
43
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
44
|
+
dependencies = [
|
|
45
|
+
"crossbeam-utils",
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
[[package]]
|
|
49
|
+
name = "crossbeam-utils"
|
|
50
|
+
version = "0.8.21"
|
|
51
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "either"
|
|
56
|
+
version = "1.15.0"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "feral"
|
|
62
|
+
version = "0.7.0"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "17270668ca85a440db5a71622bf4c43c23e9fd8feff20bec0bb675fe69654ac8"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"feral-amd",
|
|
67
|
+
"feral-amf",
|
|
68
|
+
"feral-kahip",
|
|
69
|
+
"feral-metis",
|
|
70
|
+
"feral-ordering-core",
|
|
71
|
+
"feral-scotch",
|
|
72
|
+
"pulp",
|
|
73
|
+
"rayon",
|
|
74
|
+
"serde",
|
|
75
|
+
"serde_json",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "feral-amd"
|
|
80
|
+
version = "0.2.0"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "363d1f8038ad30f115b56330770fa075444251d49259de7b9f60852f18a0a3f5"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"feral-ordering-core",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "feral-amf"
|
|
89
|
+
version = "0.2.0"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "0414fac45abb5acec0d7ea9e82d125dba35ac0919491cbe5343ee6176eee8394"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"feral-ordering-core",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "feral-kahip"
|
|
98
|
+
version = "0.2.0"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "36709fbe0273267511c0b164f3b93d16e62451ae7872bd0390cf073ced1f81d9"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"feral-amd",
|
|
103
|
+
"feral-metis",
|
|
104
|
+
"feral-ordering-core",
|
|
105
|
+
]
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "feral-metis"
|
|
109
|
+
version = "0.2.0"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "a90e908946db5c7f03e5fd9fb51f7af18e917deb245be583157ba41635792139"
|
|
112
|
+
dependencies = [
|
|
113
|
+
"feral-amd",
|
|
114
|
+
"feral-ordering-core",
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "feral-ordering-core"
|
|
119
|
+
version = "0.2.0"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "c22774549d1d1209ae367ad4ce1c094151c43c9981b2009ae4c0b55a03387dbb"
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "feral-scotch"
|
|
125
|
+
version = "0.2.0"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "80c7b693523b6ef86bde0258983b6d3b12ef25b2979024927af5b47d2a7c7c61"
|
|
128
|
+
dependencies = [
|
|
129
|
+
"feral-amd",
|
|
130
|
+
"feral-metis",
|
|
131
|
+
"feral-ordering-core",
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "heck"
|
|
136
|
+
version = "0.5.0"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "indoc"
|
|
142
|
+
version = "2.0.7"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"rustversion",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "iter-diff"
|
|
151
|
+
version = "0.2.0"
|
|
152
|
+
dependencies = [
|
|
153
|
+
"serde_json",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "itoa"
|
|
158
|
+
version = "1.0.18"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "libc"
|
|
164
|
+
version = "0.2.186"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "libm"
|
|
170
|
+
version = "0.2.16"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "matrixmultiply"
|
|
176
|
+
version = "0.3.10"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"autocfg",
|
|
181
|
+
"rawpointer",
|
|
182
|
+
]
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "memchr"
|
|
186
|
+
version = "2.8.0"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "memoffset"
|
|
192
|
+
version = "0.9.1"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
195
|
+
dependencies = [
|
|
196
|
+
"autocfg",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "ndarray"
|
|
201
|
+
version = "0.16.1"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
|
|
204
|
+
dependencies = [
|
|
205
|
+
"matrixmultiply",
|
|
206
|
+
"num-complex",
|
|
207
|
+
"num-integer",
|
|
208
|
+
"num-traits",
|
|
209
|
+
"portable-atomic",
|
|
210
|
+
"portable-atomic-util",
|
|
211
|
+
"rawpointer",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "num-complex"
|
|
216
|
+
version = "0.4.6"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"bytemuck",
|
|
221
|
+
"num-traits",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "num-integer"
|
|
226
|
+
version = "0.1.46"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
229
|
+
dependencies = [
|
|
230
|
+
"num-traits",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "num-traits"
|
|
235
|
+
version = "0.2.19"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"autocfg",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "numpy"
|
|
244
|
+
version = "0.22.1"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "edb929bc0da91a4d85ed6c0a84deaa53d411abfb387fc271124f91bf6b89f14e"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"libc",
|
|
249
|
+
"ndarray",
|
|
250
|
+
"num-complex",
|
|
251
|
+
"num-integer",
|
|
252
|
+
"num-traits",
|
|
253
|
+
"pyo3",
|
|
254
|
+
"rustc-hash",
|
|
255
|
+
]
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "once_cell"
|
|
259
|
+
version = "1.21.4"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "paste"
|
|
265
|
+
version = "1.0.15"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "portable-atomic"
|
|
271
|
+
version = "1.13.1"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "portable-atomic-util"
|
|
277
|
+
version = "0.2.7"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
280
|
+
dependencies = [
|
|
281
|
+
"portable-atomic",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "pounce-algorithm"
|
|
286
|
+
version = "0.2.0"
|
|
287
|
+
dependencies = [
|
|
288
|
+
"pounce-common",
|
|
289
|
+
"pounce-feral",
|
|
290
|
+
"pounce-hsl",
|
|
291
|
+
"pounce-l1penalty",
|
|
292
|
+
"pounce-linalg",
|
|
293
|
+
"pounce-linsol",
|
|
294
|
+
"pounce-nlp",
|
|
295
|
+
"pounce-presolve",
|
|
296
|
+
]
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "pounce-cinterface"
|
|
300
|
+
version = "0.2.0"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"pounce-algorithm",
|
|
303
|
+
"pounce-common",
|
|
304
|
+
"pounce-nlp",
|
|
305
|
+
"pounce-restoration",
|
|
306
|
+
"pounce-sensitivity",
|
|
307
|
+
]
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "pounce-cli"
|
|
311
|
+
version = "0.2.0"
|
|
312
|
+
dependencies = [
|
|
313
|
+
"pounce-algorithm",
|
|
314
|
+
"pounce-common",
|
|
315
|
+
"pounce-feral",
|
|
316
|
+
"pounce-hsl",
|
|
317
|
+
"pounce-linalg",
|
|
318
|
+
"pounce-linsol",
|
|
319
|
+
"pounce-nlp",
|
|
320
|
+
"pounce-presolve",
|
|
321
|
+
"pounce-restoration",
|
|
322
|
+
"pounce-sensitivity",
|
|
323
|
+
"serde",
|
|
324
|
+
"serde_json",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "pounce-common"
|
|
329
|
+
version = "0.2.0"
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "pounce-cutest"
|
|
333
|
+
version = "0.2.0"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"pounce-algorithm",
|
|
336
|
+
"pounce-common",
|
|
337
|
+
"pounce-feral",
|
|
338
|
+
"pounce-hsl",
|
|
339
|
+
"pounce-linsol",
|
|
340
|
+
"pounce-nlp",
|
|
341
|
+
"pounce-restoration",
|
|
342
|
+
"serde",
|
|
343
|
+
"serde_json",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "pounce-feral"
|
|
348
|
+
version = "0.2.0"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"feral",
|
|
351
|
+
"pounce-common",
|
|
352
|
+
"pounce-linsol",
|
|
353
|
+
]
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "pounce-hsl"
|
|
357
|
+
version = "0.2.0"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"pounce-common",
|
|
360
|
+
"pounce-linalg",
|
|
361
|
+
"pounce-linsol",
|
|
362
|
+
]
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "pounce-l1penalty"
|
|
366
|
+
version = "0.2.0"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"pounce-common",
|
|
369
|
+
"pounce-nlp",
|
|
370
|
+
]
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "pounce-large-scale"
|
|
374
|
+
version = "0.2.0"
|
|
375
|
+
dependencies = [
|
|
376
|
+
"pounce-algorithm",
|
|
377
|
+
"pounce-common",
|
|
378
|
+
"pounce-feral",
|
|
379
|
+
"pounce-linsol",
|
|
380
|
+
"pounce-nlp",
|
|
381
|
+
"pounce-restoration",
|
|
382
|
+
]
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "pounce-linalg"
|
|
386
|
+
version = "0.2.0"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"pounce-common",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "pounce-linsol"
|
|
393
|
+
version = "0.2.0"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"pounce-common",
|
|
396
|
+
"pounce-linalg",
|
|
397
|
+
]
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "pounce-nlp"
|
|
401
|
+
version = "0.2.0"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"pounce-common",
|
|
404
|
+
"pounce-linalg",
|
|
405
|
+
"serde",
|
|
406
|
+
]
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "pounce-presolve"
|
|
410
|
+
version = "0.2.0"
|
|
411
|
+
dependencies = [
|
|
412
|
+
"pounce-common",
|
|
413
|
+
"pounce-nlp",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "pounce-py"
|
|
418
|
+
version = "0.2.0"
|
|
419
|
+
dependencies = [
|
|
420
|
+
"numpy",
|
|
421
|
+
"pounce-algorithm",
|
|
422
|
+
"pounce-common",
|
|
423
|
+
"pounce-feral",
|
|
424
|
+
"pounce-linsol",
|
|
425
|
+
"pounce-nlp",
|
|
426
|
+
"pounce-restoration",
|
|
427
|
+
"pounce-sensitivity",
|
|
428
|
+
"pyo3",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "pounce-restoration"
|
|
433
|
+
version = "0.2.0"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"pounce-algorithm",
|
|
436
|
+
"pounce-common",
|
|
437
|
+
"pounce-feral",
|
|
438
|
+
"pounce-linalg",
|
|
439
|
+
"pounce-linsol",
|
|
440
|
+
"pounce-nlp",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "pounce-sensitivity"
|
|
445
|
+
version = "0.2.0"
|
|
446
|
+
dependencies = [
|
|
447
|
+
"pounce-algorithm",
|
|
448
|
+
"pounce-common",
|
|
449
|
+
"pounce-linalg",
|
|
450
|
+
"pounce-nlp",
|
|
451
|
+
]
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "pounce-studio-core"
|
|
455
|
+
version = "0.2.0"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"serde",
|
|
458
|
+
"serde_json",
|
|
459
|
+
]
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "pounce-studio-pyo3"
|
|
463
|
+
version = "0.2.0"
|
|
464
|
+
dependencies = [
|
|
465
|
+
"pounce-studio-core",
|
|
466
|
+
"pyo3",
|
|
467
|
+
"serde",
|
|
468
|
+
"serde_json",
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "proc-macro2"
|
|
473
|
+
version = "1.0.106"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"unicode-ident",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "pulp"
|
|
482
|
+
version = "0.22.2"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "2e205bb30d5b916c55e584c22201771bcf2bad9aabd5d4127f38387140c38632"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"bytemuck",
|
|
487
|
+
"cfg-if",
|
|
488
|
+
"libm",
|
|
489
|
+
"num-complex",
|
|
490
|
+
"paste",
|
|
491
|
+
"pulp-wasm-simd-flag",
|
|
492
|
+
"raw-cpuid",
|
|
493
|
+
"reborrow",
|
|
494
|
+
"version_check",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "pulp-wasm-simd-flag"
|
|
499
|
+
version = "0.1.0"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "40e24eee682d89fb193496edf918a7f407d30175b2e785fe057e4392dfd182e0"
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "pyo3"
|
|
505
|
+
version = "0.22.6"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"cfg-if",
|
|
510
|
+
"indoc",
|
|
511
|
+
"libc",
|
|
512
|
+
"memoffset",
|
|
513
|
+
"once_cell",
|
|
514
|
+
"portable-atomic",
|
|
515
|
+
"pyo3-build-config",
|
|
516
|
+
"pyo3-ffi",
|
|
517
|
+
"pyo3-macros",
|
|
518
|
+
"unindent",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "pyo3-build-config"
|
|
523
|
+
version = "0.22.6"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"once_cell",
|
|
528
|
+
"target-lexicon",
|
|
529
|
+
]
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "pyo3-ffi"
|
|
533
|
+
version = "0.22.6"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"libc",
|
|
538
|
+
"pyo3-build-config",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "pyo3-macros"
|
|
543
|
+
version = "0.22.6"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"proc-macro2",
|
|
548
|
+
"pyo3-macros-backend",
|
|
549
|
+
"quote",
|
|
550
|
+
"syn",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "pyo3-macros-backend"
|
|
555
|
+
version = "0.22.6"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"heck",
|
|
560
|
+
"proc-macro2",
|
|
561
|
+
"pyo3-build-config",
|
|
562
|
+
"quote",
|
|
563
|
+
"syn",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "quote"
|
|
568
|
+
version = "1.0.45"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"proc-macro2",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "raw-cpuid"
|
|
577
|
+
version = "11.6.0"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"bitflags",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "rawpointer"
|
|
586
|
+
version = "0.2.1"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "rayon"
|
|
592
|
+
version = "1.12.0"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"either",
|
|
597
|
+
"rayon-core",
|
|
598
|
+
]
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "rayon-core"
|
|
602
|
+
version = "1.13.0"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
605
|
+
dependencies = [
|
|
606
|
+
"crossbeam-deque",
|
|
607
|
+
"crossbeam-utils",
|
|
608
|
+
]
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "reborrow"
|
|
612
|
+
version = "0.5.5"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
|
|
615
|
+
|
|
616
|
+
[[package]]
|
|
617
|
+
name = "rustc-hash"
|
|
618
|
+
version = "1.1.0"
|
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "rustversion"
|
|
624
|
+
version = "1.0.22"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "serde"
|
|
630
|
+
version = "1.0.228"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"serde_core",
|
|
635
|
+
"serde_derive",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "serde_core"
|
|
640
|
+
version = "1.0.228"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
643
|
+
dependencies = [
|
|
644
|
+
"serde_derive",
|
|
645
|
+
]
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "serde_derive"
|
|
649
|
+
version = "1.0.228"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"proc-macro2",
|
|
654
|
+
"quote",
|
|
655
|
+
"syn",
|
|
656
|
+
]
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "serde_json"
|
|
660
|
+
version = "1.0.149"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
663
|
+
dependencies = [
|
|
664
|
+
"itoa",
|
|
665
|
+
"memchr",
|
|
666
|
+
"serde",
|
|
667
|
+
"serde_core",
|
|
668
|
+
"zmij",
|
|
669
|
+
]
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "syn"
|
|
673
|
+
version = "2.0.117"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
676
|
+
dependencies = [
|
|
677
|
+
"proc-macro2",
|
|
678
|
+
"quote",
|
|
679
|
+
"unicode-ident",
|
|
680
|
+
]
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "target-lexicon"
|
|
684
|
+
version = "0.12.16"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "unicode-ident"
|
|
690
|
+
version = "1.0.24"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "unindent"
|
|
696
|
+
version = "0.2.4"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "version_check"
|
|
702
|
+
version = "0.9.5"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "zmij"
|
|
708
|
+
version = "1.0.21"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|