alopex 0.3.1__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.
- alopex-0.3.1/Cargo.lock +3766 -0
- alopex-0.3.1/Cargo.toml +48 -0
- alopex-0.3.1/PKG-INFO +22 -0
- alopex-0.3.1/crates/alopex-core/Cargo.toml +89 -0
- alopex-0.3.1/crates/alopex-core/README.md +78 -0
- alopex-0.3.1/crates/alopex-core/benches/columnar_bench.rs +110 -0
- alopex-0.3.1/crates/alopex-core/benches/hnsw_bench.rs +160 -0
- alopex-0.3.1/crates/alopex-core/benches/lsm_kv_bench.rs +305 -0
- alopex-0.3.1/crates/alopex-core/benches/scan_strategy_bench.rs +376 -0
- alopex-0.3.1/crates/alopex-core/benches/vector_flat.rs +47 -0
- alopex-0.3.1/crates/alopex-core/benches/vector_search.rs +19 -0
- alopex-0.3.1/crates/alopex-core/examples/generate_compat_v0_1.rs +49 -0
- alopex-0.3.1/crates/alopex-core/src/bin/memory_profile.rs +178 -0
- alopex-0.3.1/crates/alopex-core/src/columnar/disk.rs +80 -0
- alopex-0.3.1/crates/alopex-core/src/columnar/encoding.rs +877 -0
- alopex-0.3.1/crates/alopex-core/src/columnar/encoding_v2.rs +4506 -0
- alopex-0.3.1/crates/alopex-core/src/columnar/error.rs +97 -0
- alopex-0.3.1/crates/alopex-core/src/columnar/integration.rs +96 -0
- alopex-0.3.1/crates/alopex-core/src/columnar/kvs_bridge.rs +349 -0
- alopex-0.3.1/crates/alopex-core/src/columnar/memory.rs +261 -0
- alopex-0.3.1/crates/alopex-core/src/columnar/mod.rs +25 -0
- alopex-0.3.1/crates/alopex-core/src/columnar/segment.rs +502 -0
- alopex-0.3.1/crates/alopex-core/src/columnar/segment_v2.rs +1320 -0
- alopex-0.3.1/crates/alopex-core/src/columnar/statistics.rs +707 -0
- alopex-0.3.1/crates/alopex-core/src/compaction/leveled.rs +375 -0
- alopex-0.3.1/crates/alopex-core/src/compaction/merge_iter.rs +174 -0
- alopex-0.3.1/crates/alopex-core/src/compaction/mod.rs +7 -0
- alopex-0.3.1/crates/alopex-core/src/error.rs +158 -0
- alopex-0.3.1/crates/alopex-core/src/kv/any.rs +182 -0
- alopex-0.3.1/crates/alopex-core/src/kv/memory.rs +1231 -0
- alopex-0.3.1/crates/alopex-core/src/kv/mod.rs +99 -0
- alopex-0.3.1/crates/alopex-core/src/kv/s3.rs +555 -0
- alopex-0.3.1/crates/alopex-core/src/kv/storage.rs +82 -0
- alopex-0.3.1/crates/alopex-core/src/lib.rs +40 -0
- alopex-0.3.1/crates/alopex-core/src/log/mod.rs +3 -0
- alopex-0.3.1/crates/alopex-core/src/log/wal.rs +157 -0
- alopex-0.3.1/crates/alopex-core/src/lsm/buffer_pool.rs +513 -0
- alopex-0.3.1/crates/alopex-core/src/lsm/free_space.rs +142 -0
- alopex-0.3.1/crates/alopex-core/src/lsm/integration.rs +224 -0
- alopex-0.3.1/crates/alopex-core/src/lsm/memtable.rs +685 -0
- alopex-0.3.1/crates/alopex-core/src/lsm/metrics.rs +200 -0
- alopex-0.3.1/crates/alopex-core/src/lsm/mod.rs +1244 -0
- alopex-0.3.1/crates/alopex-core/src/lsm/sstable.rs +1563 -0
- alopex-0.3.1/crates/alopex-core/src/lsm/wal.rs +1833 -0
- alopex-0.3.1/crates/alopex-core/src/obs.rs +141 -0
- alopex-0.3.1/crates/alopex-core/src/storage/checksum.rs +118 -0
- alopex-0.3.1/crates/alopex-core/src/storage/compression.rs +438 -0
- alopex-0.3.1/crates/alopex-core/src/storage/flush.rs +41 -0
- alopex-0.3.1/crates/alopex-core/src/storage/format/backpressure.rs +82 -0
- alopex-0.3.1/crates/alopex-core/src/storage/format/footer.rs +138 -0
- alopex-0.3.1/crates/alopex-core/src/storage/format/header.rs +195 -0
- alopex-0.3.1/crates/alopex-core/src/storage/format/ingest.rs +86 -0
- alopex-0.3.1/crates/alopex-core/src/storage/format/mod.rs +251 -0
- alopex-0.3.1/crates/alopex-core/src/storage/format/models/ephemeral.rs +96 -0
- alopex-0.3.1/crates/alopex-core/src/storage/format/models/metadata.rs +107 -0
- alopex-0.3.1/crates/alopex-core/src/storage/format/models/mod.rs +16 -0
- alopex-0.3.1/crates/alopex-core/src/storage/format/models/raft.rs +38 -0
- alopex-0.3.1/crates/alopex-core/src/storage/format/reader.rs +538 -0
- alopex-0.3.1/crates/alopex-core/src/storage/format/section.rs +263 -0
- alopex-0.3.1/crates/alopex-core/src/storage/format/section_columnar.rs +140 -0
- alopex-0.3.1/crates/alopex-core/src/storage/format/value_separator.rs +198 -0
- alopex-0.3.1/crates/alopex-core/src/storage/format/writer.rs +327 -0
- alopex-0.3.1/crates/alopex-core/src/storage/large_value/chunk.rs +522 -0
- alopex-0.3.1/crates/alopex-core/src/storage/large_value/mod.rs +18 -0
- alopex-0.3.1/crates/alopex-core/src/storage/large_value/stream.rs +100 -0
- alopex-0.3.1/crates/alopex-core/src/storage/layout.md +19 -0
- alopex-0.3.1/crates/alopex-core/src/storage/mod.rs +17 -0
- alopex-0.3.1/crates/alopex-core/src/storage/sstable/mod.rs +428 -0
- alopex-0.3.1/crates/alopex-core/src/txn/mod.rs +18 -0
- alopex-0.3.1/crates/alopex-core/src/types.rs +33 -0
- alopex-0.3.1/crates/alopex-core/src/vector/columnar.rs +2064 -0
- alopex-0.3.1/crates/alopex-core/src/vector/disk.rs +139 -0
- alopex-0.3.1/crates/alopex-core/src/vector/flat.rs +168 -0
- alopex-0.3.1/crates/alopex-core/src/vector/hnsw/graph.rs +669 -0
- alopex-0.3.1/crates/alopex-core/src/vector/hnsw/mod.rs +407 -0
- alopex-0.3.1/crates/alopex-core/src/vector/hnsw/storage.rs +346 -0
- alopex-0.3.1/crates/alopex-core/src/vector/hnsw/tests/config_tests.rs +72 -0
- alopex-0.3.1/crates/alopex-core/src/vector/hnsw/tests/graph_tests.rs +101 -0
- alopex-0.3.1/crates/alopex-core/src/vector/hnsw/tests/mod.rs +3 -0
- alopex-0.3.1/crates/alopex-core/src/vector/hnsw/tests/storage_tests.rs +152 -0
- alopex-0.3.1/crates/alopex-core/src/vector/hnsw/types.rs +189 -0
- alopex-0.3.1/crates/alopex-core/src/vector/integration.rs +167 -0
- alopex-0.3.1/crates/alopex-core/src/vector/mod.rs +237 -0
- alopex-0.3.1/crates/alopex-core/src/vector/simd.rs +562 -0
- alopex-0.3.1/crates/alopex-core/tests/acceptance_core.rs +202 -0
- alopex-0.3.1/crates/alopex-core/tests/data/compatibility/v0_1.alopex +0 -0
- alopex-0.3.1/crates/alopex-core/tests/e2e_columnar.rs +121 -0
- alopex-0.3.1/crates/alopex-core/tests/format_compatibility_test.rs +180 -0
- alopex-0.3.1/crates/alopex-core/tests/format_compression_test.rs +118 -0
- alopex-0.3.1/crates/alopex-core/tests/format_header_footer_test.rs +96 -0
- alopex-0.3.1/crates/alopex-core/tests/format_integration_test.rs +58 -0
- alopex-0.3.1/crates/alopex-core/tests/format_recovery_test.rs +73 -0
- alopex-0.3.1/crates/alopex-core/tests/format_section_test.rs +123 -0
- alopex-0.3.1/crates/alopex-core/tests/format_value_separation_test.rs +124 -0
- alopex-0.3.1/crates/alopex-core/tests/format_value_separator_test.rs +98 -0
- alopex-0.3.1/crates/alopex-core/tests/format_wasm_large_file_test.rs +168 -0
- alopex-0.3.1/crates/alopex-core/tests/memory_vector.rs +84 -0
- alopex-0.3.1/crates/alopex-core/tests/storage_sstable_large_value.rs +124 -0
- alopex-0.3.1/crates/alopex-embedded/Cargo.toml +36 -0
- alopex-0.3.1/crates/alopex-embedded/benches/in_memory.rs +105 -0
- alopex-0.3.1/crates/alopex-embedded/benches/memory_vs_disk.rs +116 -0
- alopex-0.3.1/crates/alopex-embedded/examples/embedded-kv.rs +54 -0
- alopex-0.3.1/crates/alopex-embedded/examples/embedded-sql.rs +30 -0
- alopex-0.3.1/crates/alopex-embedded/examples/embedded-vector.rs +154 -0
- alopex-0.3.1/crates/alopex-embedded/examples/in-memory.rs +82 -0
- alopex-0.3.1/crates/alopex-embedded/src/catalog.rs +302 -0
- alopex-0.3.1/crates/alopex-embedded/src/catalog_api.rs +1871 -0
- alopex-0.3.1/crates/alopex-embedded/src/columnar_api.rs +815 -0
- alopex-0.3.1/crates/alopex-embedded/src/lib.rs +1101 -0
- alopex-0.3.1/crates/alopex-embedded/src/options.rs +60 -0
- alopex-0.3.1/crates/alopex-embedded/src/sql_api.rs +493 -0
- alopex-0.3.1/crates/alopex-embedded/tests/acceptance_embedded.rs +152 -0
- alopex-0.3.1/crates/alopex-embedded/tests/catalog_integration.rs +340 -0
- alopex-0.3.1/crates/alopex-embedded/tests/columnar_regression.rs +57 -0
- alopex-0.3.1/crates/alopex-embedded/tests/e2e_sql.rs +61 -0
- alopex-0.3.1/crates/alopex-embedded/tests/hnsw_integration_tests.rs +108 -0
- alopex-0.3.1/crates/alopex-embedded/tests/in_memory.rs +177 -0
- alopex-0.3.1/crates/alopex-embedded/tests/in_memory_vector.rs +43 -0
- alopex-0.3.1/crates/alopex-embedded/tests/sql_integration.rs +196 -0
- alopex-0.3.1/crates/alopex-embedded/tests/vector_e2e.rs +66 -0
- alopex-0.3.1/crates/alopex-embedded/tests/vector_regression.rs +40 -0
- alopex-0.3.1/crates/alopex-py/Cargo.toml +32 -0
- alopex-0.3.1/crates/alopex-py/README.md +104 -0
- alopex-0.3.1/crates/alopex-py/benches/binding_overhead.rs +24 -0
- alopex-0.3.1/crates/alopex-py/build.rs +67 -0
- alopex-0.3.1/crates/alopex-py/python/alopex/__init__.py +25 -0
- alopex-0.3.1/crates/alopex-py/python/alopex/_alopex.pyi +285 -0
- alopex-0.3.1/crates/alopex-py/python/alopex/py.typed +0 -0
- alopex-0.3.1/crates/alopex-py/src/catalog/client.rs +350 -0
- alopex-0.3.1/crates/alopex-py/src/catalog/credentials.rs +136 -0
- alopex-0.3.1/crates/alopex-py/src/catalog/mod.rs +19 -0
- alopex-0.3.1/crates/alopex-py/src/embedded/database.rs +296 -0
- alopex-0.3.1/crates/alopex-py/src/embedded/mod.rs +7 -0
- alopex-0.3.1/crates/alopex-py/src/embedded/transaction.rs +360 -0
- alopex-0.3.1/crates/alopex-py/src/error.rs +22 -0
- alopex-0.3.1/crates/alopex-py/src/lib.rs +31 -0
- alopex-0.3.1/crates/alopex-py/src/types/catalog.rs +186 -0
- alopex-0.3.1/crates/alopex-py/src/types/config.rs +294 -0
- alopex-0.3.1/crates/alopex-py/src/types/mod.rs +29 -0
- alopex-0.3.1/crates/alopex-py/src/types/results.rs +141 -0
- alopex-0.3.1/crates/alopex-py/src/vector.rs +73 -0
- alopex-0.3.1/crates/alopex-py/tests/conftest.py +45 -0
- alopex-0.3.1/crates/alopex-py/tests/test_benchmark_nfr13.py +23 -0
- alopex-0.3.1/crates/alopex-py/tests/test_catalog.py +90 -0
- alopex-0.3.1/crates/alopex-py/tests/test_credentials.py +52 -0
- alopex-0.3.1/crates/alopex-py/tests/test_database.py +47 -0
- alopex-0.3.1/crates/alopex-py/tests/test_feature_flags.py +29 -0
- alopex-0.3.1/crates/alopex-py/tests/test_hnsw.py +25 -0
- alopex-0.3.1/crates/alopex-py/tests/test_transaction.py +39 -0
- alopex-0.3.1/crates/alopex-py/tests/test_vector.py +20 -0
- alopex-0.3.1/crates/alopex-sql/Cargo.toml +43 -0
- alopex-0.3.1/crates/alopex-sql/benches/key_encoding.rs +212 -0
- alopex-0.3.1/crates/alopex-sql/benches/knn_rowid.rs +207 -0
- alopex-0.3.1/crates/alopex-sql/benches/storage_bench.rs +94 -0
- alopex-0.3.1/crates/alopex-sql/benches/storage_macro_bench.rs +108 -0
- alopex-0.3.1/crates/alopex-sql/src/ast/ddl.rs +156 -0
- alopex-0.3.1/crates/alopex-sql/src/ast/dml.rs +122 -0
- alopex-0.3.1/crates/alopex-sql/src/ast/expr.rs +95 -0
- alopex-0.3.1/crates/alopex-sql/src/ast/mod.rs +38 -0
- alopex-0.3.1/crates/alopex-sql/src/ast/span.rs +61 -0
- alopex-0.3.1/crates/alopex-sql/src/catalog/index.rs +261 -0
- alopex-0.3.1/crates/alopex-sql/src/catalog/memory.rs +205 -0
- alopex-0.3.1/crates/alopex-sql/src/catalog/mod.rs +142 -0
- alopex-0.3.1/crates/alopex-sql/src/catalog/persistent.rs +3182 -0
- alopex-0.3.1/crates/alopex-sql/src/catalog/table.rs +415 -0
- alopex-0.3.1/crates/alopex-sql/src/catalog/tests.rs +517 -0
- alopex-0.3.1/crates/alopex-sql/src/columnar/mod.rs +3 -0
- alopex-0.3.1/crates/alopex-sql/src/columnar/statistics.rs +120 -0
- alopex-0.3.1/crates/alopex-sql/src/dialect.rs +54 -0
- alopex-0.3.1/crates/alopex-sql/src/error.rs +87 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/bulk/csv.rs +100 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/bulk/mod.rs +1166 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/bulk/parquet.rs +211 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/ddl/create_index.rs +262 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/ddl/create_table.rs +312 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/ddl/drop_index.rs +241 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/ddl/drop_table.rs +198 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/ddl/mod.rs +22 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/dml/delete.rs +308 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/dml/insert.rs +340 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/dml/mod.rs +12 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/dml/update.rs +412 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/error.rs +260 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/evaluator/binary_op.rs +215 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/evaluator/column_ref.rs +34 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/evaluator/context.rs +46 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/evaluator/function_call.rs +265 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/evaluator/is_null.rs +50 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/evaluator/literal.rs +79 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/evaluator/mod.rs +48 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/evaluator/unary_op.rs +68 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/evaluator/vector_ops.rs +228 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/hnsw_bridge.rs +287 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/mod.rs +693 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/query/columnar_scan.rs +1583 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/query/iterator.rs +638 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/query/knn.rs +702 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/query/mod.rs +411 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/query/project.rs +59 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/query/scan.rs +45 -0
- alopex-0.3.1/crates/alopex-sql/src/executor/result.rs +293 -0
- alopex-0.3.1/crates/alopex-sql/src/integration.rs +180 -0
- alopex-0.3.1/crates/alopex-sql/src/lib.rs +88 -0
- alopex-0.3.1/crates/alopex-sql/src/parser/ddl.rs +402 -0
- alopex-0.3.1/crates/alopex-sql/src/parser/dml.rs +322 -0
- alopex-0.3.1/crates/alopex-sql/src/parser/expr.rs +474 -0
- alopex-0.3.1/crates/alopex-sql/src/parser/mod.rs +340 -0
- alopex-0.3.1/crates/alopex-sql/src/parser/precedence.rs +34 -0
- alopex-0.3.1/crates/alopex-sql/src/parser/recursion.rs +68 -0
- alopex-0.3.1/crates/alopex-sql/src/planner/error.rs +259 -0
- alopex-0.3.1/crates/alopex-sql/src/planner/knn_optimizer.rs +238 -0
- alopex-0.3.1/crates/alopex-sql/src/planner/logical_plan.rs +658 -0
- alopex-0.3.1/crates/alopex-sql/src/planner/mod.rs +717 -0
- alopex-0.3.1/crates/alopex-sql/src/planner/name_resolver/tests.rs +800 -0
- alopex-0.3.1/crates/alopex-sql/src/planner/name_resolver.rs +348 -0
- alopex-0.3.1/crates/alopex-sql/src/planner/planner_tests.rs +991 -0
- alopex-0.3.1/crates/alopex-sql/src/planner/type_checker/tests.rs +1535 -0
- alopex-0.3.1/crates/alopex-sql/src/planner/type_checker.rs +1070 -0
- alopex-0.3.1/crates/alopex-sql/src/planner/typed_expr.rs +730 -0
- alopex-0.3.1/crates/alopex-sql/src/planner/types.rs +329 -0
- alopex-0.3.1/crates/alopex-sql/src/storage/bridge.rs +692 -0
- alopex-0.3.1/crates/alopex-sql/src/storage/codec.rs +443 -0
- alopex-0.3.1/crates/alopex-sql/src/storage/disk.rs +107 -0
- alopex-0.3.1/crates/alopex-sql/src/storage/error.rs +53 -0
- alopex-0.3.1/crates/alopex-sql/src/storage/index.rs +343 -0
- alopex-0.3.1/crates/alopex-sql/src/storage/key.rs +528 -0
- alopex-0.3.1/crates/alopex-sql/src/storage/mod.rs +18 -0
- alopex-0.3.1/crates/alopex-sql/src/storage/table.rs +404 -0
- alopex-0.3.1/crates/alopex-sql/src/storage/value.rs +272 -0
- alopex-0.3.1/crates/alopex-sql/src/tokenizer/keyword.rs +169 -0
- alopex-0.3.1/crates/alopex-sql/src/tokenizer/mod.rs +395 -0
- alopex-0.3.1/crates/alopex-sql/src/tokenizer/token.rs +52 -0
- alopex-0.3.1/crates/alopex-sql/src/unified_error.rs +501 -0
- alopex-0.3.1/crates/alopex-sql/tests/ast_span_test.rs +98 -0
- alopex-0.3.1/crates/alopex-sql/tests/columnar_scan.rs +119 -0
- alopex-0.3.1/crates/alopex-sql/tests/columnar_segment.rs +383 -0
- alopex-0.3.1/crates/alopex-sql/tests/copy_bulk_load.rs +135 -0
- alopex-0.3.1/crates/alopex-sql/tests/ddl_columnar.rs +48 -0
- alopex-0.3.1/crates/alopex-sql/tests/ddl_test.rs +99 -0
- alopex-0.3.1/crates/alopex-sql/tests/dml_test.rs +114 -0
- alopex-0.3.1/crates/alopex-sql/tests/end_to_end.rs +55 -0
- alopex-0.3.1/crates/alopex-sql/tests/error_test.rs +78 -0
- alopex-0.3.1/crates/alopex-sql/tests/executor_integration.rs +250 -0
- alopex-0.3.1/crates/alopex-sql/tests/expr_test.rs +188 -0
- alopex-0.3.1/crates/alopex-sql/tests/hnsw_sql_tests.rs +172 -0
- alopex-0.3.1/crates/alopex-sql/tests/integration_test.rs +45 -0
- alopex-0.3.1/crates/alopex-sql/tests/knn_optimization.rs +67 -0
- alopex-0.3.1/crates/alopex-sql/tests/persistence_test.rs +262 -0
- alopex-0.3.1/crates/alopex-sql/tests/storage_integration.rs +144 -0
- alopex-0.3.1/crates/alopex-sql/tests/tokenizer_test.rs +139 -0
- alopex-0.3.1/crates/alopex-sql/tests/txn_integration.rs +410 -0
- alopex-0.3.1/crates/alopex-sql/tests/vector_functions.rs +87 -0
- alopex-0.3.1/pyproject.toml +31 -0
- alopex-0.3.1/python/alopex/__init__.py +25 -0
- alopex-0.3.1/python/alopex/_alopex.pyi +285 -0
- alopex-0.3.1/python/alopex/py.typed +0 -0
alopex-0.3.1/Cargo.lock
ADDED
|
@@ -0,0 +1,3766 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.25.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "ahash"
|
|
22
|
+
version = "0.8.12"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"cfg-if",
|
|
27
|
+
"const-random",
|
|
28
|
+
"getrandom 0.3.4",
|
|
29
|
+
"once_cell",
|
|
30
|
+
"version_check",
|
|
31
|
+
"zerocopy",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "aho-corasick"
|
|
36
|
+
version = "1.1.4"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
39
|
+
dependencies = [
|
|
40
|
+
"memchr",
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "alloc-no-stdlib"
|
|
45
|
+
version = "2.0.4"
|
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "alloc-stdlib"
|
|
51
|
+
version = "0.2.2"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
|
54
|
+
dependencies = [
|
|
55
|
+
"alloc-no-stdlib",
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "alopex-cli"
|
|
60
|
+
version = "0.3.1"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"alopex-embedded",
|
|
63
|
+
"alopex-sql",
|
|
64
|
+
"anyhow",
|
|
65
|
+
"clap",
|
|
66
|
+
"comfy-table",
|
|
67
|
+
"csv",
|
|
68
|
+
"ctrlc",
|
|
69
|
+
"indicatif",
|
|
70
|
+
"serde",
|
|
71
|
+
"serde_json",
|
|
72
|
+
"thiserror 1.0.69",
|
|
73
|
+
"tracing",
|
|
74
|
+
"tracing-subscriber",
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "alopex-cluster"
|
|
79
|
+
version = "0.3.1"
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "alopex-core"
|
|
83
|
+
version = "0.3.1"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"bincode",
|
|
86
|
+
"bytes",
|
|
87
|
+
"crc32fast",
|
|
88
|
+
"criterion",
|
|
89
|
+
"crossbeam-skiplist",
|
|
90
|
+
"dhat",
|
|
91
|
+
"futures",
|
|
92
|
+
"jemalloc-ctl",
|
|
93
|
+
"js-sys",
|
|
94
|
+
"lz4",
|
|
95
|
+
"memmap2",
|
|
96
|
+
"object_store",
|
|
97
|
+
"proptest",
|
|
98
|
+
"rand 0.8.5",
|
|
99
|
+
"serde",
|
|
100
|
+
"snap",
|
|
101
|
+
"tempfile",
|
|
102
|
+
"thiserror 1.0.69",
|
|
103
|
+
"tokio",
|
|
104
|
+
"tracing",
|
|
105
|
+
"tracing-subscriber",
|
|
106
|
+
"url",
|
|
107
|
+
"wasm-bindgen-test",
|
|
108
|
+
"web-sys",
|
|
109
|
+
"xxhash-rust",
|
|
110
|
+
"zstd",
|
|
111
|
+
]
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "alopex-embedded"
|
|
115
|
+
version = "0.3.1"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"alopex-core",
|
|
118
|
+
"alopex-sql",
|
|
119
|
+
"bytes",
|
|
120
|
+
"criterion",
|
|
121
|
+
"futures",
|
|
122
|
+
"object_store",
|
|
123
|
+
"rand 0.8.5",
|
|
124
|
+
"tempfile",
|
|
125
|
+
"thiserror 1.0.69",
|
|
126
|
+
"tokio",
|
|
127
|
+
"url",
|
|
128
|
+
]
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "alopex-py"
|
|
132
|
+
version = "0.3.1"
|
|
133
|
+
dependencies = [
|
|
134
|
+
"alopex-core",
|
|
135
|
+
"alopex-embedded",
|
|
136
|
+
"criterion",
|
|
137
|
+
"numpy",
|
|
138
|
+
"pyo3",
|
|
139
|
+
]
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "alopex-server"
|
|
143
|
+
version = "0.3.1"
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "alopex-sql"
|
|
147
|
+
version = "0.3.1"
|
|
148
|
+
dependencies = [
|
|
149
|
+
"alopex-core",
|
|
150
|
+
"arrow-array",
|
|
151
|
+
"arrow-schema",
|
|
152
|
+
"bincode",
|
|
153
|
+
"criterion",
|
|
154
|
+
"parquet",
|
|
155
|
+
"proptest",
|
|
156
|
+
"serde",
|
|
157
|
+
"serde_json",
|
|
158
|
+
"tempfile",
|
|
159
|
+
"thiserror 2.0.17",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "alopex-tools"
|
|
164
|
+
version = "0.3.1"
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "android_system_properties"
|
|
168
|
+
version = "0.1.5"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"libc",
|
|
173
|
+
]
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "anes"
|
|
177
|
+
version = "0.1.6"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "anstream"
|
|
183
|
+
version = "0.6.21"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
186
|
+
dependencies = [
|
|
187
|
+
"anstyle",
|
|
188
|
+
"anstyle-parse",
|
|
189
|
+
"anstyle-query",
|
|
190
|
+
"anstyle-wincon",
|
|
191
|
+
"colorchoice",
|
|
192
|
+
"is_terminal_polyfill",
|
|
193
|
+
"utf8parse",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "anstyle"
|
|
198
|
+
version = "1.0.13"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "anstyle-parse"
|
|
204
|
+
version = "0.2.7"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
207
|
+
dependencies = [
|
|
208
|
+
"utf8parse",
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "anstyle-query"
|
|
213
|
+
version = "1.1.5"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"windows-sys 0.61.2",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "anstyle-wincon"
|
|
222
|
+
version = "3.0.11"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"anstyle",
|
|
227
|
+
"once_cell_polyfill",
|
|
228
|
+
"windows-sys 0.61.2",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "anyhow"
|
|
233
|
+
version = "1.0.100"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "arrow-array"
|
|
239
|
+
version = "52.2.0"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "16f4a9468c882dc66862cef4e1fd8423d47e67972377d85d80e022786427768c"
|
|
242
|
+
dependencies = [
|
|
243
|
+
"ahash",
|
|
244
|
+
"arrow-buffer",
|
|
245
|
+
"arrow-data",
|
|
246
|
+
"arrow-schema",
|
|
247
|
+
"chrono",
|
|
248
|
+
"half",
|
|
249
|
+
"hashbrown 0.14.5",
|
|
250
|
+
"num",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "arrow-buffer"
|
|
255
|
+
version = "52.2.0"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "c975484888fc95ec4a632cdc98be39c085b1bb518531b0c80c5d462063e5daa1"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"bytes",
|
|
260
|
+
"half",
|
|
261
|
+
"num",
|
|
262
|
+
]
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "arrow-cast"
|
|
266
|
+
version = "52.2.0"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "da26719e76b81d8bc3faad1d4dbdc1bcc10d14704e63dc17fc9f3e7e1e567c8e"
|
|
269
|
+
dependencies = [
|
|
270
|
+
"arrow-array",
|
|
271
|
+
"arrow-buffer",
|
|
272
|
+
"arrow-data",
|
|
273
|
+
"arrow-schema",
|
|
274
|
+
"arrow-select",
|
|
275
|
+
"atoi",
|
|
276
|
+
"base64",
|
|
277
|
+
"chrono",
|
|
278
|
+
"half",
|
|
279
|
+
"lexical-core",
|
|
280
|
+
"num",
|
|
281
|
+
"ryu",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "arrow-data"
|
|
286
|
+
version = "52.2.0"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "dd9d6f18c65ef7a2573ab498c374d8ae364b4a4edf67105357491c031f716ca5"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"arrow-buffer",
|
|
291
|
+
"arrow-schema",
|
|
292
|
+
"half",
|
|
293
|
+
"num",
|
|
294
|
+
]
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "arrow-ipc"
|
|
298
|
+
version = "52.2.0"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "e786e1cdd952205d9a8afc69397b317cfbb6e0095e445c69cda7e8da5c1eeb0f"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"arrow-array",
|
|
303
|
+
"arrow-buffer",
|
|
304
|
+
"arrow-cast",
|
|
305
|
+
"arrow-data",
|
|
306
|
+
"arrow-schema",
|
|
307
|
+
"flatbuffers",
|
|
308
|
+
]
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "arrow-schema"
|
|
312
|
+
version = "52.2.0"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "9e972cd1ff4a4ccd22f86d3e53e835c2ed92e0eea6a3e8eadb72b4f1ac802cf8"
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "arrow-select"
|
|
318
|
+
version = "52.2.0"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "600bae05d43483d216fb3494f8c32fdbefd8aa4e1de237e790dbb3d9f44690a3"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"ahash",
|
|
323
|
+
"arrow-array",
|
|
324
|
+
"arrow-buffer",
|
|
325
|
+
"arrow-data",
|
|
326
|
+
"arrow-schema",
|
|
327
|
+
"num",
|
|
328
|
+
]
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "async-trait"
|
|
332
|
+
version = "0.1.89"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
335
|
+
dependencies = [
|
|
336
|
+
"proc-macro2",
|
|
337
|
+
"quote",
|
|
338
|
+
"syn",
|
|
339
|
+
]
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "atoi"
|
|
343
|
+
version = "2.0.0"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
346
|
+
dependencies = [
|
|
347
|
+
"num-traits",
|
|
348
|
+
]
|
|
349
|
+
|
|
350
|
+
[[package]]
|
|
351
|
+
name = "atomic-waker"
|
|
352
|
+
version = "1.1.2"
|
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "autocfg"
|
|
358
|
+
version = "1.5.0"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "backtrace"
|
|
364
|
+
version = "0.3.76"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"addr2line",
|
|
369
|
+
"cfg-if",
|
|
370
|
+
"libc",
|
|
371
|
+
"miniz_oxide",
|
|
372
|
+
"object",
|
|
373
|
+
"rustc-demangle",
|
|
374
|
+
"windows-link",
|
|
375
|
+
]
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "base64"
|
|
379
|
+
version = "0.22.1"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "bincode"
|
|
385
|
+
version = "1.3.3"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"serde",
|
|
390
|
+
]
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "bit-set"
|
|
394
|
+
version = "0.8.0"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
397
|
+
dependencies = [
|
|
398
|
+
"bit-vec",
|
|
399
|
+
]
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "bit-vec"
|
|
403
|
+
version = "0.8.0"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "bitflags"
|
|
409
|
+
version = "1.3.2"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "bitflags"
|
|
415
|
+
version = "2.10.0"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "block-buffer"
|
|
421
|
+
version = "0.10.4"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
424
|
+
dependencies = [
|
|
425
|
+
"generic-array",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "block2"
|
|
430
|
+
version = "0.6.2"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"objc2",
|
|
435
|
+
]
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "brotli"
|
|
439
|
+
version = "6.0.0"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"alloc-no-stdlib",
|
|
444
|
+
"alloc-stdlib",
|
|
445
|
+
"brotli-decompressor",
|
|
446
|
+
]
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "brotli-decompressor"
|
|
450
|
+
version = "4.0.3"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"alloc-no-stdlib",
|
|
455
|
+
"alloc-stdlib",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "bumpalo"
|
|
460
|
+
version = "3.19.0"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "byteorder"
|
|
466
|
+
version = "1.5.0"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "bytes"
|
|
472
|
+
version = "1.11.0"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "cast"
|
|
478
|
+
version = "0.3.0"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "cc"
|
|
484
|
+
version = "1.2.47"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "cd405d82c84ff7f35739f175f67d8b9fb7687a0e84ccdc78bd3568839827cf07"
|
|
487
|
+
dependencies = [
|
|
488
|
+
"find-msvc-tools",
|
|
489
|
+
"jobserver",
|
|
490
|
+
"libc",
|
|
491
|
+
"shlex",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "cfg-if"
|
|
496
|
+
version = "1.0.4"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "cfg_aliases"
|
|
502
|
+
version = "0.2.1"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "chrono"
|
|
508
|
+
version = "0.4.42"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"iana-time-zone",
|
|
513
|
+
"num-traits",
|
|
514
|
+
"serde",
|
|
515
|
+
"windows-link",
|
|
516
|
+
]
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "ciborium"
|
|
520
|
+
version = "0.2.2"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
523
|
+
dependencies = [
|
|
524
|
+
"ciborium-io",
|
|
525
|
+
"ciborium-ll",
|
|
526
|
+
"serde",
|
|
527
|
+
]
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "ciborium-io"
|
|
531
|
+
version = "0.2.2"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "ciborium-ll"
|
|
537
|
+
version = "0.2.2"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
540
|
+
dependencies = [
|
|
541
|
+
"ciborium-io",
|
|
542
|
+
"half",
|
|
543
|
+
]
|
|
544
|
+
|
|
545
|
+
[[package]]
|
|
546
|
+
name = "clap"
|
|
547
|
+
version = "4.5.53"
|
|
548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
+
checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
|
|
550
|
+
dependencies = [
|
|
551
|
+
"clap_builder",
|
|
552
|
+
"clap_derive",
|
|
553
|
+
]
|
|
554
|
+
|
|
555
|
+
[[package]]
|
|
556
|
+
name = "clap_builder"
|
|
557
|
+
version = "4.5.53"
|
|
558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
+
checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
|
|
560
|
+
dependencies = [
|
|
561
|
+
"anstream",
|
|
562
|
+
"anstyle",
|
|
563
|
+
"clap_lex",
|
|
564
|
+
"strsim",
|
|
565
|
+
]
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "clap_derive"
|
|
569
|
+
version = "4.5.49"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
572
|
+
dependencies = [
|
|
573
|
+
"heck",
|
|
574
|
+
"proc-macro2",
|
|
575
|
+
"quote",
|
|
576
|
+
"syn",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "clap_lex"
|
|
581
|
+
version = "0.7.6"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "colorchoice"
|
|
587
|
+
version = "1.0.4"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "comfy-table"
|
|
593
|
+
version = "7.2.1"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"crossterm",
|
|
598
|
+
"unicode-segmentation",
|
|
599
|
+
"unicode-width",
|
|
600
|
+
]
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "console"
|
|
604
|
+
version = "0.15.11"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"encode_unicode",
|
|
609
|
+
"libc",
|
|
610
|
+
"once_cell",
|
|
611
|
+
"unicode-width",
|
|
612
|
+
"windows-sys 0.59.0",
|
|
613
|
+
]
|
|
614
|
+
|
|
615
|
+
[[package]]
|
|
616
|
+
name = "const-random"
|
|
617
|
+
version = "0.1.18"
|
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
620
|
+
dependencies = [
|
|
621
|
+
"const-random-macro",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "const-random-macro"
|
|
626
|
+
version = "0.1.16"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"getrandom 0.2.16",
|
|
631
|
+
"once_cell",
|
|
632
|
+
"tiny-keccak",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "core-foundation"
|
|
637
|
+
version = "0.10.1"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"core-foundation-sys",
|
|
642
|
+
"libc",
|
|
643
|
+
]
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "core-foundation-sys"
|
|
647
|
+
version = "0.8.7"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "crc32fast"
|
|
653
|
+
version = "1.5.0"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"cfg-if",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "criterion"
|
|
662
|
+
version = "0.5.1"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
665
|
+
dependencies = [
|
|
666
|
+
"anes",
|
|
667
|
+
"cast",
|
|
668
|
+
"ciborium",
|
|
669
|
+
"clap",
|
|
670
|
+
"criterion-plot",
|
|
671
|
+
"is-terminal",
|
|
672
|
+
"itertools 0.10.5",
|
|
673
|
+
"num-traits",
|
|
674
|
+
"once_cell",
|
|
675
|
+
"oorandom",
|
|
676
|
+
"plotters",
|
|
677
|
+
"rayon",
|
|
678
|
+
"regex",
|
|
679
|
+
"serde",
|
|
680
|
+
"serde_derive",
|
|
681
|
+
"serde_json",
|
|
682
|
+
"tinytemplate",
|
|
683
|
+
"walkdir",
|
|
684
|
+
]
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "criterion-plot"
|
|
688
|
+
version = "0.5.0"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
691
|
+
dependencies = [
|
|
692
|
+
"cast",
|
|
693
|
+
"itertools 0.10.5",
|
|
694
|
+
]
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "crossbeam-deque"
|
|
698
|
+
version = "0.8.6"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"crossbeam-epoch",
|
|
703
|
+
"crossbeam-utils",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "crossbeam-epoch"
|
|
708
|
+
version = "0.9.18"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"crossbeam-utils",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "crossbeam-skiplist"
|
|
717
|
+
version = "0.1.3"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "df29de440c58ca2cc6e587ec3d22347551a32435fbde9d2bff64e78a9ffa151b"
|
|
720
|
+
dependencies = [
|
|
721
|
+
"crossbeam-epoch",
|
|
722
|
+
"crossbeam-utils",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "crossbeam-utils"
|
|
727
|
+
version = "0.8.21"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "crossterm"
|
|
733
|
+
version = "0.29.0"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
|
|
736
|
+
dependencies = [
|
|
737
|
+
"bitflags 2.10.0",
|
|
738
|
+
"crossterm_winapi",
|
|
739
|
+
"document-features",
|
|
740
|
+
"parking_lot",
|
|
741
|
+
"rustix",
|
|
742
|
+
"winapi",
|
|
743
|
+
]
|
|
744
|
+
|
|
745
|
+
[[package]]
|
|
746
|
+
name = "crossterm_winapi"
|
|
747
|
+
version = "0.9.1"
|
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
750
|
+
dependencies = [
|
|
751
|
+
"winapi",
|
|
752
|
+
]
|
|
753
|
+
|
|
754
|
+
[[package]]
|
|
755
|
+
name = "crunchy"
|
|
756
|
+
version = "0.2.4"
|
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "crypto-common"
|
|
762
|
+
version = "0.1.7"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
765
|
+
dependencies = [
|
|
766
|
+
"generic-array",
|
|
767
|
+
"typenum",
|
|
768
|
+
]
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "csv"
|
|
772
|
+
version = "1.4.0"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
775
|
+
dependencies = [
|
|
776
|
+
"csv-core",
|
|
777
|
+
"itoa",
|
|
778
|
+
"ryu",
|
|
779
|
+
"serde_core",
|
|
780
|
+
]
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "csv-core"
|
|
784
|
+
version = "0.1.13"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
787
|
+
dependencies = [
|
|
788
|
+
"memchr",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "ctrlc"
|
|
793
|
+
version = "3.5.1"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "73736a89c4aff73035ba2ed2e565061954da00d4970fc9ac25dcc85a2a20d790"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"dispatch2",
|
|
798
|
+
"nix",
|
|
799
|
+
"windows-sys 0.61.2",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "dhat"
|
|
804
|
+
version = "0.3.3"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "98cd11d84628e233de0ce467de10b8633f4ddaecafadefc86e13b84b8739b827"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"backtrace",
|
|
809
|
+
"lazy_static",
|
|
810
|
+
"mintex",
|
|
811
|
+
"parking_lot",
|
|
812
|
+
"rustc-hash 1.1.0",
|
|
813
|
+
"serde",
|
|
814
|
+
"serde_json",
|
|
815
|
+
"thousands",
|
|
816
|
+
]
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "digest"
|
|
820
|
+
version = "0.10.7"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
823
|
+
dependencies = [
|
|
824
|
+
"block-buffer",
|
|
825
|
+
"crypto-common",
|
|
826
|
+
]
|
|
827
|
+
|
|
828
|
+
[[package]]
|
|
829
|
+
name = "dispatch2"
|
|
830
|
+
version = "0.3.0"
|
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
+
checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
|
|
833
|
+
dependencies = [
|
|
834
|
+
"bitflags 2.10.0",
|
|
835
|
+
"block2",
|
|
836
|
+
"libc",
|
|
837
|
+
"objc2",
|
|
838
|
+
]
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "displaydoc"
|
|
842
|
+
version = "0.2.5"
|
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
845
|
+
dependencies = [
|
|
846
|
+
"proc-macro2",
|
|
847
|
+
"quote",
|
|
848
|
+
"syn",
|
|
849
|
+
]
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "document-features"
|
|
853
|
+
version = "0.2.12"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
856
|
+
dependencies = [
|
|
857
|
+
"litrs",
|
|
858
|
+
]
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "either"
|
|
862
|
+
version = "1.15.0"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "encode_unicode"
|
|
868
|
+
version = "1.0.0"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "equivalent"
|
|
874
|
+
version = "1.0.2"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "errno"
|
|
880
|
+
version = "0.3.14"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
883
|
+
dependencies = [
|
|
884
|
+
"libc",
|
|
885
|
+
"windows-sys 0.61.2",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "fastrand"
|
|
890
|
+
version = "2.3.0"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "find-msvc-tools"
|
|
896
|
+
version = "0.1.5"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "flatbuffers"
|
|
902
|
+
version = "24.12.23"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "4f1baf0dbf96932ec9a3038d57900329c015b0bfb7b63d904f3bc27e2b02a096"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"bitflags 1.3.2",
|
|
907
|
+
"rustc_version",
|
|
908
|
+
]
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "flate2"
|
|
912
|
+
version = "1.1.5"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"crc32fast",
|
|
917
|
+
"miniz_oxide",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "fnv"
|
|
922
|
+
version = "1.0.7"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "form_urlencoded"
|
|
928
|
+
version = "1.2.2"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
931
|
+
dependencies = [
|
|
932
|
+
"percent-encoding",
|
|
933
|
+
]
|
|
934
|
+
|
|
935
|
+
[[package]]
|
|
936
|
+
name = "futures"
|
|
937
|
+
version = "0.3.31"
|
|
938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
940
|
+
dependencies = [
|
|
941
|
+
"futures-channel",
|
|
942
|
+
"futures-core",
|
|
943
|
+
"futures-executor",
|
|
944
|
+
"futures-io",
|
|
945
|
+
"futures-sink",
|
|
946
|
+
"futures-task",
|
|
947
|
+
"futures-util",
|
|
948
|
+
]
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "futures-channel"
|
|
952
|
+
version = "0.3.31"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
955
|
+
dependencies = [
|
|
956
|
+
"futures-core",
|
|
957
|
+
"futures-sink",
|
|
958
|
+
]
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "futures-core"
|
|
962
|
+
version = "0.3.31"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
965
|
+
|
|
966
|
+
[[package]]
|
|
967
|
+
name = "futures-executor"
|
|
968
|
+
version = "0.3.31"
|
|
969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
971
|
+
dependencies = [
|
|
972
|
+
"futures-core",
|
|
973
|
+
"futures-task",
|
|
974
|
+
"futures-util",
|
|
975
|
+
]
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "futures-io"
|
|
979
|
+
version = "0.3.31"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "futures-macro"
|
|
985
|
+
version = "0.3.31"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"proc-macro2",
|
|
990
|
+
"quote",
|
|
991
|
+
"syn",
|
|
992
|
+
]
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "futures-sink"
|
|
996
|
+
version = "0.3.31"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "futures-task"
|
|
1002
|
+
version = "0.3.31"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "futures-util"
|
|
1008
|
+
version = "0.3.31"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1011
|
+
dependencies = [
|
|
1012
|
+
"futures-channel",
|
|
1013
|
+
"futures-core",
|
|
1014
|
+
"futures-io",
|
|
1015
|
+
"futures-macro",
|
|
1016
|
+
"futures-sink",
|
|
1017
|
+
"futures-task",
|
|
1018
|
+
"memchr",
|
|
1019
|
+
"pin-project-lite",
|
|
1020
|
+
"pin-utils",
|
|
1021
|
+
"slab",
|
|
1022
|
+
]
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "generic-array"
|
|
1026
|
+
version = "0.14.7"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1029
|
+
dependencies = [
|
|
1030
|
+
"typenum",
|
|
1031
|
+
"version_check",
|
|
1032
|
+
]
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "getrandom"
|
|
1036
|
+
version = "0.2.16"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
1039
|
+
dependencies = [
|
|
1040
|
+
"cfg-if",
|
|
1041
|
+
"js-sys",
|
|
1042
|
+
"libc",
|
|
1043
|
+
"wasi",
|
|
1044
|
+
"wasm-bindgen",
|
|
1045
|
+
]
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "getrandom"
|
|
1049
|
+
version = "0.3.4"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1052
|
+
dependencies = [
|
|
1053
|
+
"cfg-if",
|
|
1054
|
+
"js-sys",
|
|
1055
|
+
"libc",
|
|
1056
|
+
"r-efi",
|
|
1057
|
+
"wasip2",
|
|
1058
|
+
"wasm-bindgen",
|
|
1059
|
+
]
|
|
1060
|
+
|
|
1061
|
+
[[package]]
|
|
1062
|
+
name = "gimli"
|
|
1063
|
+
version = "0.32.3"
|
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
+
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "h2"
|
|
1069
|
+
version = "0.4.12"
|
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
+
checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
|
|
1072
|
+
dependencies = [
|
|
1073
|
+
"atomic-waker",
|
|
1074
|
+
"bytes",
|
|
1075
|
+
"fnv",
|
|
1076
|
+
"futures-core",
|
|
1077
|
+
"futures-sink",
|
|
1078
|
+
"http",
|
|
1079
|
+
"indexmap",
|
|
1080
|
+
"slab",
|
|
1081
|
+
"tokio",
|
|
1082
|
+
"tokio-util",
|
|
1083
|
+
"tracing",
|
|
1084
|
+
]
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "half"
|
|
1088
|
+
version = "2.7.1"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1091
|
+
dependencies = [
|
|
1092
|
+
"cfg-if",
|
|
1093
|
+
"crunchy",
|
|
1094
|
+
"num-traits",
|
|
1095
|
+
"zerocopy",
|
|
1096
|
+
]
|
|
1097
|
+
|
|
1098
|
+
[[package]]
|
|
1099
|
+
name = "hashbrown"
|
|
1100
|
+
version = "0.14.5"
|
|
1101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1103
|
+
|
|
1104
|
+
[[package]]
|
|
1105
|
+
name = "hashbrown"
|
|
1106
|
+
version = "0.16.1"
|
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1109
|
+
|
|
1110
|
+
[[package]]
|
|
1111
|
+
name = "heck"
|
|
1112
|
+
version = "0.5.0"
|
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1115
|
+
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "hermit-abi"
|
|
1118
|
+
version = "0.5.2"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "http"
|
|
1124
|
+
version = "1.4.0"
|
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
1127
|
+
dependencies = [
|
|
1128
|
+
"bytes",
|
|
1129
|
+
"itoa",
|
|
1130
|
+
]
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "http-body"
|
|
1134
|
+
version = "1.0.1"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1137
|
+
dependencies = [
|
|
1138
|
+
"bytes",
|
|
1139
|
+
"http",
|
|
1140
|
+
]
|
|
1141
|
+
|
|
1142
|
+
[[package]]
|
|
1143
|
+
name = "http-body-util"
|
|
1144
|
+
version = "0.1.3"
|
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1147
|
+
dependencies = [
|
|
1148
|
+
"bytes",
|
|
1149
|
+
"futures-core",
|
|
1150
|
+
"http",
|
|
1151
|
+
"http-body",
|
|
1152
|
+
"pin-project-lite",
|
|
1153
|
+
]
|
|
1154
|
+
|
|
1155
|
+
[[package]]
|
|
1156
|
+
name = "httparse"
|
|
1157
|
+
version = "1.10.1"
|
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "humantime"
|
|
1163
|
+
version = "2.3.0"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "hyper"
|
|
1169
|
+
version = "1.8.1"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
1172
|
+
dependencies = [
|
|
1173
|
+
"atomic-waker",
|
|
1174
|
+
"bytes",
|
|
1175
|
+
"futures-channel",
|
|
1176
|
+
"futures-core",
|
|
1177
|
+
"h2",
|
|
1178
|
+
"http",
|
|
1179
|
+
"http-body",
|
|
1180
|
+
"httparse",
|
|
1181
|
+
"itoa",
|
|
1182
|
+
"pin-project-lite",
|
|
1183
|
+
"pin-utils",
|
|
1184
|
+
"smallvec",
|
|
1185
|
+
"tokio",
|
|
1186
|
+
"want",
|
|
1187
|
+
]
|
|
1188
|
+
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "hyper-rustls"
|
|
1191
|
+
version = "0.27.7"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1194
|
+
dependencies = [
|
|
1195
|
+
"http",
|
|
1196
|
+
"hyper",
|
|
1197
|
+
"hyper-util",
|
|
1198
|
+
"rustls",
|
|
1199
|
+
"rustls-native-certs",
|
|
1200
|
+
"rustls-pki-types",
|
|
1201
|
+
"tokio",
|
|
1202
|
+
"tokio-rustls",
|
|
1203
|
+
"tower-service",
|
|
1204
|
+
]
|
|
1205
|
+
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "hyper-util"
|
|
1208
|
+
version = "0.1.19"
|
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
+
checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
|
|
1211
|
+
dependencies = [
|
|
1212
|
+
"base64",
|
|
1213
|
+
"bytes",
|
|
1214
|
+
"futures-channel",
|
|
1215
|
+
"futures-core",
|
|
1216
|
+
"futures-util",
|
|
1217
|
+
"http",
|
|
1218
|
+
"http-body",
|
|
1219
|
+
"hyper",
|
|
1220
|
+
"ipnet",
|
|
1221
|
+
"libc",
|
|
1222
|
+
"percent-encoding",
|
|
1223
|
+
"pin-project-lite",
|
|
1224
|
+
"socket2",
|
|
1225
|
+
"tokio",
|
|
1226
|
+
"tower-service",
|
|
1227
|
+
"tracing",
|
|
1228
|
+
]
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "iana-time-zone"
|
|
1232
|
+
version = "0.1.64"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
1235
|
+
dependencies = [
|
|
1236
|
+
"android_system_properties",
|
|
1237
|
+
"core-foundation-sys",
|
|
1238
|
+
"iana-time-zone-haiku",
|
|
1239
|
+
"js-sys",
|
|
1240
|
+
"log",
|
|
1241
|
+
"wasm-bindgen",
|
|
1242
|
+
"windows-core",
|
|
1243
|
+
]
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "iana-time-zone-haiku"
|
|
1247
|
+
version = "0.1.2"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1250
|
+
dependencies = [
|
|
1251
|
+
"cc",
|
|
1252
|
+
]
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "icu_collections"
|
|
1256
|
+
version = "2.1.1"
|
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
1259
|
+
dependencies = [
|
|
1260
|
+
"displaydoc",
|
|
1261
|
+
"potential_utf",
|
|
1262
|
+
"yoke",
|
|
1263
|
+
"zerofrom",
|
|
1264
|
+
"zerovec",
|
|
1265
|
+
]
|
|
1266
|
+
|
|
1267
|
+
[[package]]
|
|
1268
|
+
name = "icu_locale_core"
|
|
1269
|
+
version = "2.1.1"
|
|
1270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
1272
|
+
dependencies = [
|
|
1273
|
+
"displaydoc",
|
|
1274
|
+
"litemap",
|
|
1275
|
+
"tinystr",
|
|
1276
|
+
"writeable",
|
|
1277
|
+
"zerovec",
|
|
1278
|
+
]
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "icu_normalizer"
|
|
1282
|
+
version = "2.1.1"
|
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
1285
|
+
dependencies = [
|
|
1286
|
+
"icu_collections",
|
|
1287
|
+
"icu_normalizer_data",
|
|
1288
|
+
"icu_properties",
|
|
1289
|
+
"icu_provider",
|
|
1290
|
+
"smallvec",
|
|
1291
|
+
"zerovec",
|
|
1292
|
+
]
|
|
1293
|
+
|
|
1294
|
+
[[package]]
|
|
1295
|
+
name = "icu_normalizer_data"
|
|
1296
|
+
version = "2.1.1"
|
|
1297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "icu_properties"
|
|
1302
|
+
version = "2.1.2"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
1305
|
+
dependencies = [
|
|
1306
|
+
"icu_collections",
|
|
1307
|
+
"icu_locale_core",
|
|
1308
|
+
"icu_properties_data",
|
|
1309
|
+
"icu_provider",
|
|
1310
|
+
"zerotrie",
|
|
1311
|
+
"zerovec",
|
|
1312
|
+
]
|
|
1313
|
+
|
|
1314
|
+
[[package]]
|
|
1315
|
+
name = "icu_properties_data"
|
|
1316
|
+
version = "2.1.2"
|
|
1317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "icu_provider"
|
|
1322
|
+
version = "2.1.1"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"displaydoc",
|
|
1327
|
+
"icu_locale_core",
|
|
1328
|
+
"writeable",
|
|
1329
|
+
"yoke",
|
|
1330
|
+
"zerofrom",
|
|
1331
|
+
"zerotrie",
|
|
1332
|
+
"zerovec",
|
|
1333
|
+
]
|
|
1334
|
+
|
|
1335
|
+
[[package]]
|
|
1336
|
+
name = "idna"
|
|
1337
|
+
version = "1.1.0"
|
|
1338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1340
|
+
dependencies = [
|
|
1341
|
+
"idna_adapter",
|
|
1342
|
+
"smallvec",
|
|
1343
|
+
"utf8_iter",
|
|
1344
|
+
]
|
|
1345
|
+
|
|
1346
|
+
[[package]]
|
|
1347
|
+
name = "idna_adapter"
|
|
1348
|
+
version = "1.2.1"
|
|
1349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1350
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1351
|
+
dependencies = [
|
|
1352
|
+
"icu_normalizer",
|
|
1353
|
+
"icu_properties",
|
|
1354
|
+
]
|
|
1355
|
+
|
|
1356
|
+
[[package]]
|
|
1357
|
+
name = "indexmap"
|
|
1358
|
+
version = "2.12.1"
|
|
1359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
1361
|
+
dependencies = [
|
|
1362
|
+
"equivalent",
|
|
1363
|
+
"hashbrown 0.16.1",
|
|
1364
|
+
]
|
|
1365
|
+
|
|
1366
|
+
[[package]]
|
|
1367
|
+
name = "indicatif"
|
|
1368
|
+
version = "0.17.11"
|
|
1369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1370
|
+
checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
|
|
1371
|
+
dependencies = [
|
|
1372
|
+
"console",
|
|
1373
|
+
"number_prefix",
|
|
1374
|
+
"portable-atomic",
|
|
1375
|
+
"unicode-width",
|
|
1376
|
+
"web-time",
|
|
1377
|
+
]
|
|
1378
|
+
|
|
1379
|
+
[[package]]
|
|
1380
|
+
name = "indoc"
|
|
1381
|
+
version = "2.0.7"
|
|
1382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1383
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1384
|
+
dependencies = [
|
|
1385
|
+
"rustversion",
|
|
1386
|
+
]
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "integer-encoding"
|
|
1390
|
+
version = "3.0.4"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
|
|
1393
|
+
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "ipnet"
|
|
1396
|
+
version = "2.11.0"
|
|
1397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1399
|
+
|
|
1400
|
+
[[package]]
|
|
1401
|
+
name = "iri-string"
|
|
1402
|
+
version = "0.7.9"
|
|
1403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
+
checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
|
|
1405
|
+
dependencies = [
|
|
1406
|
+
"memchr",
|
|
1407
|
+
"serde",
|
|
1408
|
+
]
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "is-terminal"
|
|
1412
|
+
version = "0.4.17"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1415
|
+
dependencies = [
|
|
1416
|
+
"hermit-abi",
|
|
1417
|
+
"libc",
|
|
1418
|
+
"windows-sys 0.61.2",
|
|
1419
|
+
]
|
|
1420
|
+
|
|
1421
|
+
[[package]]
|
|
1422
|
+
name = "is_terminal_polyfill"
|
|
1423
|
+
version = "1.70.2"
|
|
1424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1425
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1426
|
+
|
|
1427
|
+
[[package]]
|
|
1428
|
+
name = "itertools"
|
|
1429
|
+
version = "0.10.5"
|
|
1430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1432
|
+
dependencies = [
|
|
1433
|
+
"either",
|
|
1434
|
+
]
|
|
1435
|
+
|
|
1436
|
+
[[package]]
|
|
1437
|
+
name = "itertools"
|
|
1438
|
+
version = "0.13.0"
|
|
1439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1441
|
+
dependencies = [
|
|
1442
|
+
"either",
|
|
1443
|
+
]
|
|
1444
|
+
|
|
1445
|
+
[[package]]
|
|
1446
|
+
name = "itoa"
|
|
1447
|
+
version = "1.0.15"
|
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1450
|
+
|
|
1451
|
+
[[package]]
|
|
1452
|
+
name = "jemalloc-ctl"
|
|
1453
|
+
version = "0.5.4"
|
|
1454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1455
|
+
checksum = "7cffc705424a344c054e135d12ee591402f4539245e8bbd64e6c9eaa9458b63c"
|
|
1456
|
+
dependencies = [
|
|
1457
|
+
"jemalloc-sys",
|
|
1458
|
+
"libc",
|
|
1459
|
+
"paste",
|
|
1460
|
+
]
|
|
1461
|
+
|
|
1462
|
+
[[package]]
|
|
1463
|
+
name = "jemalloc-sys"
|
|
1464
|
+
version = "0.5.4+5.3.0-patched"
|
|
1465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
+
checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2"
|
|
1467
|
+
dependencies = [
|
|
1468
|
+
"cc",
|
|
1469
|
+
"libc",
|
|
1470
|
+
]
|
|
1471
|
+
|
|
1472
|
+
[[package]]
|
|
1473
|
+
name = "jobserver"
|
|
1474
|
+
version = "0.1.34"
|
|
1475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1476
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1477
|
+
dependencies = [
|
|
1478
|
+
"getrandom 0.3.4",
|
|
1479
|
+
"libc",
|
|
1480
|
+
]
|
|
1481
|
+
|
|
1482
|
+
[[package]]
|
|
1483
|
+
name = "js-sys"
|
|
1484
|
+
version = "0.3.82"
|
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
+
checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
|
|
1487
|
+
dependencies = [
|
|
1488
|
+
"once_cell",
|
|
1489
|
+
"wasm-bindgen",
|
|
1490
|
+
]
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "lazy_static"
|
|
1494
|
+
version = "1.5.0"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "lexical-core"
|
|
1500
|
+
version = "0.8.5"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
|
|
1503
|
+
dependencies = [
|
|
1504
|
+
"lexical-parse-float",
|
|
1505
|
+
"lexical-parse-integer",
|
|
1506
|
+
"lexical-util",
|
|
1507
|
+
"lexical-write-float",
|
|
1508
|
+
"lexical-write-integer",
|
|
1509
|
+
]
|
|
1510
|
+
|
|
1511
|
+
[[package]]
|
|
1512
|
+
name = "lexical-parse-float"
|
|
1513
|
+
version = "0.8.5"
|
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
+
checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
|
|
1516
|
+
dependencies = [
|
|
1517
|
+
"lexical-parse-integer",
|
|
1518
|
+
"lexical-util",
|
|
1519
|
+
"static_assertions",
|
|
1520
|
+
]
|
|
1521
|
+
|
|
1522
|
+
[[package]]
|
|
1523
|
+
name = "lexical-parse-integer"
|
|
1524
|
+
version = "0.8.6"
|
|
1525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
+
checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
|
|
1527
|
+
dependencies = [
|
|
1528
|
+
"lexical-util",
|
|
1529
|
+
"static_assertions",
|
|
1530
|
+
]
|
|
1531
|
+
|
|
1532
|
+
[[package]]
|
|
1533
|
+
name = "lexical-util"
|
|
1534
|
+
version = "0.8.5"
|
|
1535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1536
|
+
checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
|
|
1537
|
+
dependencies = [
|
|
1538
|
+
"static_assertions",
|
|
1539
|
+
]
|
|
1540
|
+
|
|
1541
|
+
[[package]]
|
|
1542
|
+
name = "lexical-write-float"
|
|
1543
|
+
version = "0.8.5"
|
|
1544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
+
checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
|
|
1546
|
+
dependencies = [
|
|
1547
|
+
"lexical-util",
|
|
1548
|
+
"lexical-write-integer",
|
|
1549
|
+
"static_assertions",
|
|
1550
|
+
]
|
|
1551
|
+
|
|
1552
|
+
[[package]]
|
|
1553
|
+
name = "lexical-write-integer"
|
|
1554
|
+
version = "0.8.5"
|
|
1555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1556
|
+
checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
|
|
1557
|
+
dependencies = [
|
|
1558
|
+
"lexical-util",
|
|
1559
|
+
"static_assertions",
|
|
1560
|
+
]
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "libc"
|
|
1564
|
+
version = "0.2.177"
|
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
1567
|
+
|
|
1568
|
+
[[package]]
|
|
1569
|
+
name = "libm"
|
|
1570
|
+
version = "0.2.15"
|
|
1571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1572
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
1573
|
+
|
|
1574
|
+
[[package]]
|
|
1575
|
+
name = "linux-raw-sys"
|
|
1576
|
+
version = "0.11.0"
|
|
1577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1579
|
+
|
|
1580
|
+
[[package]]
|
|
1581
|
+
name = "litemap"
|
|
1582
|
+
version = "0.8.1"
|
|
1583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1585
|
+
|
|
1586
|
+
[[package]]
|
|
1587
|
+
name = "litrs"
|
|
1588
|
+
version = "1.0.0"
|
|
1589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
1591
|
+
|
|
1592
|
+
[[package]]
|
|
1593
|
+
name = "lock_api"
|
|
1594
|
+
version = "0.4.14"
|
|
1595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1597
|
+
dependencies = [
|
|
1598
|
+
"scopeguard",
|
|
1599
|
+
]
|
|
1600
|
+
|
|
1601
|
+
[[package]]
|
|
1602
|
+
name = "log"
|
|
1603
|
+
version = "0.4.28"
|
|
1604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1605
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "lru-slab"
|
|
1609
|
+
version = "0.1.2"
|
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1612
|
+
|
|
1613
|
+
[[package]]
|
|
1614
|
+
name = "lz4"
|
|
1615
|
+
version = "1.28.1"
|
|
1616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
+
checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
|
|
1618
|
+
dependencies = [
|
|
1619
|
+
"lz4-sys",
|
|
1620
|
+
]
|
|
1621
|
+
|
|
1622
|
+
[[package]]
|
|
1623
|
+
name = "lz4-sys"
|
|
1624
|
+
version = "1.11.1+lz4-1.10.0"
|
|
1625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
+
checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
|
|
1627
|
+
dependencies = [
|
|
1628
|
+
"cc",
|
|
1629
|
+
"libc",
|
|
1630
|
+
]
|
|
1631
|
+
|
|
1632
|
+
[[package]]
|
|
1633
|
+
name = "lz4_flex"
|
|
1634
|
+
version = "0.11.5"
|
|
1635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
+
checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
|
|
1637
|
+
dependencies = [
|
|
1638
|
+
"twox-hash 2.1.2",
|
|
1639
|
+
]
|
|
1640
|
+
|
|
1641
|
+
[[package]]
|
|
1642
|
+
name = "matchers"
|
|
1643
|
+
version = "0.2.0"
|
|
1644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
1646
|
+
dependencies = [
|
|
1647
|
+
"regex-automata",
|
|
1648
|
+
]
|
|
1649
|
+
|
|
1650
|
+
[[package]]
|
|
1651
|
+
name = "matrixmultiply"
|
|
1652
|
+
version = "0.3.10"
|
|
1653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
1655
|
+
dependencies = [
|
|
1656
|
+
"autocfg",
|
|
1657
|
+
"rawpointer",
|
|
1658
|
+
]
|
|
1659
|
+
|
|
1660
|
+
[[package]]
|
|
1661
|
+
name = "md-5"
|
|
1662
|
+
version = "0.10.6"
|
|
1663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1664
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
1665
|
+
dependencies = [
|
|
1666
|
+
"cfg-if",
|
|
1667
|
+
"digest",
|
|
1668
|
+
]
|
|
1669
|
+
|
|
1670
|
+
[[package]]
|
|
1671
|
+
name = "memchr"
|
|
1672
|
+
version = "2.7.6"
|
|
1673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
1675
|
+
|
|
1676
|
+
[[package]]
|
|
1677
|
+
name = "memmap2"
|
|
1678
|
+
version = "0.9.9"
|
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
+
checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
|
|
1681
|
+
dependencies = [
|
|
1682
|
+
"libc",
|
|
1683
|
+
]
|
|
1684
|
+
|
|
1685
|
+
[[package]]
|
|
1686
|
+
name = "memoffset"
|
|
1687
|
+
version = "0.9.1"
|
|
1688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1690
|
+
dependencies = [
|
|
1691
|
+
"autocfg",
|
|
1692
|
+
]
|
|
1693
|
+
|
|
1694
|
+
[[package]]
|
|
1695
|
+
name = "minicov"
|
|
1696
|
+
version = "0.3.7"
|
|
1697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1698
|
+
checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
|
|
1699
|
+
dependencies = [
|
|
1700
|
+
"cc",
|
|
1701
|
+
"walkdir",
|
|
1702
|
+
]
|
|
1703
|
+
|
|
1704
|
+
[[package]]
|
|
1705
|
+
name = "miniz_oxide"
|
|
1706
|
+
version = "0.8.9"
|
|
1707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1709
|
+
dependencies = [
|
|
1710
|
+
"adler2",
|
|
1711
|
+
"simd-adler32",
|
|
1712
|
+
]
|
|
1713
|
+
|
|
1714
|
+
[[package]]
|
|
1715
|
+
name = "mintex"
|
|
1716
|
+
version = "0.1.4"
|
|
1717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1718
|
+
checksum = "c505b3e17ed6b70a7ed2e67fbb2c560ee327353556120d6e72f5232b6880d536"
|
|
1719
|
+
|
|
1720
|
+
[[package]]
|
|
1721
|
+
name = "mio"
|
|
1722
|
+
version = "1.1.0"
|
|
1723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
+
checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
|
|
1725
|
+
dependencies = [
|
|
1726
|
+
"libc",
|
|
1727
|
+
"wasi",
|
|
1728
|
+
"windows-sys 0.61.2",
|
|
1729
|
+
]
|
|
1730
|
+
|
|
1731
|
+
[[package]]
|
|
1732
|
+
name = "ndarray"
|
|
1733
|
+
version = "0.16.1"
|
|
1734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1735
|
+
checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
|
|
1736
|
+
dependencies = [
|
|
1737
|
+
"matrixmultiply",
|
|
1738
|
+
"num-complex",
|
|
1739
|
+
"num-integer",
|
|
1740
|
+
"num-traits",
|
|
1741
|
+
"portable-atomic",
|
|
1742
|
+
"portable-atomic-util",
|
|
1743
|
+
"rawpointer",
|
|
1744
|
+
]
|
|
1745
|
+
|
|
1746
|
+
[[package]]
|
|
1747
|
+
name = "nix"
|
|
1748
|
+
version = "0.30.1"
|
|
1749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1750
|
+
checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
|
|
1751
|
+
dependencies = [
|
|
1752
|
+
"bitflags 2.10.0",
|
|
1753
|
+
"cfg-if",
|
|
1754
|
+
"cfg_aliases",
|
|
1755
|
+
"libc",
|
|
1756
|
+
]
|
|
1757
|
+
|
|
1758
|
+
[[package]]
|
|
1759
|
+
name = "nu-ansi-term"
|
|
1760
|
+
version = "0.50.3"
|
|
1761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1763
|
+
dependencies = [
|
|
1764
|
+
"windows-sys 0.61.2",
|
|
1765
|
+
]
|
|
1766
|
+
|
|
1767
|
+
[[package]]
|
|
1768
|
+
name = "num"
|
|
1769
|
+
version = "0.4.3"
|
|
1770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
1772
|
+
dependencies = [
|
|
1773
|
+
"num-bigint",
|
|
1774
|
+
"num-complex",
|
|
1775
|
+
"num-integer",
|
|
1776
|
+
"num-iter",
|
|
1777
|
+
"num-rational",
|
|
1778
|
+
"num-traits",
|
|
1779
|
+
]
|
|
1780
|
+
|
|
1781
|
+
[[package]]
|
|
1782
|
+
name = "num-bigint"
|
|
1783
|
+
version = "0.4.6"
|
|
1784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1786
|
+
dependencies = [
|
|
1787
|
+
"num-integer",
|
|
1788
|
+
"num-traits",
|
|
1789
|
+
]
|
|
1790
|
+
|
|
1791
|
+
[[package]]
|
|
1792
|
+
name = "num-complex"
|
|
1793
|
+
version = "0.4.6"
|
|
1794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1795
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1796
|
+
dependencies = [
|
|
1797
|
+
"num-traits",
|
|
1798
|
+
]
|
|
1799
|
+
|
|
1800
|
+
[[package]]
|
|
1801
|
+
name = "num-integer"
|
|
1802
|
+
version = "0.1.46"
|
|
1803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1805
|
+
dependencies = [
|
|
1806
|
+
"num-traits",
|
|
1807
|
+
]
|
|
1808
|
+
|
|
1809
|
+
[[package]]
|
|
1810
|
+
name = "num-iter"
|
|
1811
|
+
version = "0.1.45"
|
|
1812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1813
|
+
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
1814
|
+
dependencies = [
|
|
1815
|
+
"autocfg",
|
|
1816
|
+
"num-integer",
|
|
1817
|
+
"num-traits",
|
|
1818
|
+
]
|
|
1819
|
+
|
|
1820
|
+
[[package]]
|
|
1821
|
+
name = "num-rational"
|
|
1822
|
+
version = "0.4.2"
|
|
1823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1825
|
+
dependencies = [
|
|
1826
|
+
"num-bigint",
|
|
1827
|
+
"num-integer",
|
|
1828
|
+
"num-traits",
|
|
1829
|
+
]
|
|
1830
|
+
|
|
1831
|
+
[[package]]
|
|
1832
|
+
name = "num-traits"
|
|
1833
|
+
version = "0.2.19"
|
|
1834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1835
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1836
|
+
dependencies = [
|
|
1837
|
+
"autocfg",
|
|
1838
|
+
"libm",
|
|
1839
|
+
]
|
|
1840
|
+
|
|
1841
|
+
[[package]]
|
|
1842
|
+
name = "number_prefix"
|
|
1843
|
+
version = "0.4.0"
|
|
1844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1845
|
+
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
1846
|
+
|
|
1847
|
+
[[package]]
|
|
1848
|
+
name = "numpy"
|
|
1849
|
+
version = "0.23.0"
|
|
1850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
+
checksum = "b94caae805f998a07d33af06e6a3891e38556051b8045c615470a71590e13e78"
|
|
1852
|
+
dependencies = [
|
|
1853
|
+
"libc",
|
|
1854
|
+
"ndarray",
|
|
1855
|
+
"num-complex",
|
|
1856
|
+
"num-integer",
|
|
1857
|
+
"num-traits",
|
|
1858
|
+
"pyo3",
|
|
1859
|
+
"rustc-hash 2.1.1",
|
|
1860
|
+
]
|
|
1861
|
+
|
|
1862
|
+
[[package]]
|
|
1863
|
+
name = "objc2"
|
|
1864
|
+
version = "0.6.3"
|
|
1865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
|
+
checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05"
|
|
1867
|
+
dependencies = [
|
|
1868
|
+
"objc2-encode",
|
|
1869
|
+
]
|
|
1870
|
+
|
|
1871
|
+
[[package]]
|
|
1872
|
+
name = "objc2-encode"
|
|
1873
|
+
version = "4.1.0"
|
|
1874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1875
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
1876
|
+
|
|
1877
|
+
[[package]]
|
|
1878
|
+
name = "object"
|
|
1879
|
+
version = "0.37.3"
|
|
1880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1881
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
1882
|
+
dependencies = [
|
|
1883
|
+
"memchr",
|
|
1884
|
+
]
|
|
1885
|
+
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "object_store"
|
|
1888
|
+
version = "0.11.2"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "3cfccb68961a56facde1163f9319e0d15743352344e7808a11795fb99698dcaf"
|
|
1891
|
+
dependencies = [
|
|
1892
|
+
"async-trait",
|
|
1893
|
+
"base64",
|
|
1894
|
+
"bytes",
|
|
1895
|
+
"chrono",
|
|
1896
|
+
"futures",
|
|
1897
|
+
"humantime",
|
|
1898
|
+
"hyper",
|
|
1899
|
+
"itertools 0.13.0",
|
|
1900
|
+
"md-5",
|
|
1901
|
+
"parking_lot",
|
|
1902
|
+
"percent-encoding",
|
|
1903
|
+
"quick-xml",
|
|
1904
|
+
"rand 0.8.5",
|
|
1905
|
+
"reqwest",
|
|
1906
|
+
"ring",
|
|
1907
|
+
"serde",
|
|
1908
|
+
"serde_json",
|
|
1909
|
+
"snafu",
|
|
1910
|
+
"tokio",
|
|
1911
|
+
"tracing",
|
|
1912
|
+
"url",
|
|
1913
|
+
"walkdir",
|
|
1914
|
+
]
|
|
1915
|
+
|
|
1916
|
+
[[package]]
|
|
1917
|
+
name = "once_cell"
|
|
1918
|
+
version = "1.21.3"
|
|
1919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1920
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1921
|
+
|
|
1922
|
+
[[package]]
|
|
1923
|
+
name = "once_cell_polyfill"
|
|
1924
|
+
version = "1.70.2"
|
|
1925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1927
|
+
|
|
1928
|
+
[[package]]
|
|
1929
|
+
name = "oorandom"
|
|
1930
|
+
version = "11.1.5"
|
|
1931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1932
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1933
|
+
|
|
1934
|
+
[[package]]
|
|
1935
|
+
name = "openssl-probe"
|
|
1936
|
+
version = "0.1.6"
|
|
1937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1939
|
+
|
|
1940
|
+
[[package]]
|
|
1941
|
+
name = "ordered-float"
|
|
1942
|
+
version = "2.10.1"
|
|
1943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1944
|
+
checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
|
|
1945
|
+
dependencies = [
|
|
1946
|
+
"num-traits",
|
|
1947
|
+
]
|
|
1948
|
+
|
|
1949
|
+
[[package]]
|
|
1950
|
+
name = "parking_lot"
|
|
1951
|
+
version = "0.12.5"
|
|
1952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1954
|
+
dependencies = [
|
|
1955
|
+
"lock_api",
|
|
1956
|
+
"parking_lot_core",
|
|
1957
|
+
]
|
|
1958
|
+
|
|
1959
|
+
[[package]]
|
|
1960
|
+
name = "parking_lot_core"
|
|
1961
|
+
version = "0.9.12"
|
|
1962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1963
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1964
|
+
dependencies = [
|
|
1965
|
+
"cfg-if",
|
|
1966
|
+
"libc",
|
|
1967
|
+
"redox_syscall",
|
|
1968
|
+
"smallvec",
|
|
1969
|
+
"windows-link",
|
|
1970
|
+
]
|
|
1971
|
+
|
|
1972
|
+
[[package]]
|
|
1973
|
+
name = "parquet"
|
|
1974
|
+
version = "52.2.0"
|
|
1975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1976
|
+
checksum = "e977b9066b4d3b03555c22bdc442f3fadebd96a39111249113087d0edb2691cd"
|
|
1977
|
+
dependencies = [
|
|
1978
|
+
"ahash",
|
|
1979
|
+
"arrow-array",
|
|
1980
|
+
"arrow-buffer",
|
|
1981
|
+
"arrow-cast",
|
|
1982
|
+
"arrow-data",
|
|
1983
|
+
"arrow-ipc",
|
|
1984
|
+
"arrow-schema",
|
|
1985
|
+
"arrow-select",
|
|
1986
|
+
"base64",
|
|
1987
|
+
"brotli",
|
|
1988
|
+
"bytes",
|
|
1989
|
+
"chrono",
|
|
1990
|
+
"flate2",
|
|
1991
|
+
"half",
|
|
1992
|
+
"hashbrown 0.14.5",
|
|
1993
|
+
"lz4_flex",
|
|
1994
|
+
"num",
|
|
1995
|
+
"num-bigint",
|
|
1996
|
+
"paste",
|
|
1997
|
+
"seq-macro",
|
|
1998
|
+
"snap",
|
|
1999
|
+
"thrift",
|
|
2000
|
+
"twox-hash 1.6.3",
|
|
2001
|
+
"zstd",
|
|
2002
|
+
"zstd-sys",
|
|
2003
|
+
]
|
|
2004
|
+
|
|
2005
|
+
[[package]]
|
|
2006
|
+
name = "paste"
|
|
2007
|
+
version = "1.0.15"
|
|
2008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2010
|
+
|
|
2011
|
+
[[package]]
|
|
2012
|
+
name = "percent-encoding"
|
|
2013
|
+
version = "2.3.2"
|
|
2014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2015
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2016
|
+
|
|
2017
|
+
[[package]]
|
|
2018
|
+
name = "pin-project-lite"
|
|
2019
|
+
version = "0.2.16"
|
|
2020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2021
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2022
|
+
|
|
2023
|
+
[[package]]
|
|
2024
|
+
name = "pin-utils"
|
|
2025
|
+
version = "0.1.0"
|
|
2026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2027
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2028
|
+
|
|
2029
|
+
[[package]]
|
|
2030
|
+
name = "pkg-config"
|
|
2031
|
+
version = "0.3.32"
|
|
2032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2033
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2034
|
+
|
|
2035
|
+
[[package]]
|
|
2036
|
+
name = "plotters"
|
|
2037
|
+
version = "0.3.7"
|
|
2038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2039
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
2040
|
+
dependencies = [
|
|
2041
|
+
"num-traits",
|
|
2042
|
+
"plotters-backend",
|
|
2043
|
+
"plotters-svg",
|
|
2044
|
+
"wasm-bindgen",
|
|
2045
|
+
"web-sys",
|
|
2046
|
+
]
|
|
2047
|
+
|
|
2048
|
+
[[package]]
|
|
2049
|
+
name = "plotters-backend"
|
|
2050
|
+
version = "0.3.7"
|
|
2051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
2053
|
+
|
|
2054
|
+
[[package]]
|
|
2055
|
+
name = "plotters-svg"
|
|
2056
|
+
version = "0.3.7"
|
|
2057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2058
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
2059
|
+
dependencies = [
|
|
2060
|
+
"plotters-backend",
|
|
2061
|
+
]
|
|
2062
|
+
|
|
2063
|
+
[[package]]
|
|
2064
|
+
name = "portable-atomic"
|
|
2065
|
+
version = "1.12.0"
|
|
2066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2067
|
+
checksum = "f59e70c4aef1e55797c2e8fd94a4f2a973fc972cfde0e0b05f683667b0cd39dd"
|
|
2068
|
+
|
|
2069
|
+
[[package]]
|
|
2070
|
+
name = "portable-atomic-util"
|
|
2071
|
+
version = "0.2.4"
|
|
2072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2073
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
2074
|
+
dependencies = [
|
|
2075
|
+
"portable-atomic",
|
|
2076
|
+
]
|
|
2077
|
+
|
|
2078
|
+
[[package]]
|
|
2079
|
+
name = "potential_utf"
|
|
2080
|
+
version = "0.1.4"
|
|
2081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2082
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
2083
|
+
dependencies = [
|
|
2084
|
+
"zerovec",
|
|
2085
|
+
]
|
|
2086
|
+
|
|
2087
|
+
[[package]]
|
|
2088
|
+
name = "ppv-lite86"
|
|
2089
|
+
version = "0.2.21"
|
|
2090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2091
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2092
|
+
dependencies = [
|
|
2093
|
+
"zerocopy",
|
|
2094
|
+
]
|
|
2095
|
+
|
|
2096
|
+
[[package]]
|
|
2097
|
+
name = "proc-macro2"
|
|
2098
|
+
version = "1.0.103"
|
|
2099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2100
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
2101
|
+
dependencies = [
|
|
2102
|
+
"unicode-ident",
|
|
2103
|
+
]
|
|
2104
|
+
|
|
2105
|
+
[[package]]
|
|
2106
|
+
name = "proptest"
|
|
2107
|
+
version = "1.9.0"
|
|
2108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2109
|
+
checksum = "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40"
|
|
2110
|
+
dependencies = [
|
|
2111
|
+
"bit-set",
|
|
2112
|
+
"bit-vec",
|
|
2113
|
+
"bitflags 2.10.0",
|
|
2114
|
+
"num-traits",
|
|
2115
|
+
"rand 0.9.2",
|
|
2116
|
+
"rand_chacha 0.9.0",
|
|
2117
|
+
"rand_xorshift",
|
|
2118
|
+
"regex-syntax",
|
|
2119
|
+
"rusty-fork",
|
|
2120
|
+
"tempfile",
|
|
2121
|
+
"unarray",
|
|
2122
|
+
]
|
|
2123
|
+
|
|
2124
|
+
[[package]]
|
|
2125
|
+
name = "pyo3"
|
|
2126
|
+
version = "0.23.5"
|
|
2127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2128
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
2129
|
+
dependencies = [
|
|
2130
|
+
"cfg-if",
|
|
2131
|
+
"indoc",
|
|
2132
|
+
"libc",
|
|
2133
|
+
"memoffset",
|
|
2134
|
+
"once_cell",
|
|
2135
|
+
"portable-atomic",
|
|
2136
|
+
"pyo3-build-config",
|
|
2137
|
+
"pyo3-ffi",
|
|
2138
|
+
"pyo3-macros",
|
|
2139
|
+
"unindent",
|
|
2140
|
+
]
|
|
2141
|
+
|
|
2142
|
+
[[package]]
|
|
2143
|
+
name = "pyo3-build-config"
|
|
2144
|
+
version = "0.23.5"
|
|
2145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2146
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
2147
|
+
dependencies = [
|
|
2148
|
+
"once_cell",
|
|
2149
|
+
"target-lexicon",
|
|
2150
|
+
]
|
|
2151
|
+
|
|
2152
|
+
[[package]]
|
|
2153
|
+
name = "pyo3-ffi"
|
|
2154
|
+
version = "0.23.5"
|
|
2155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2156
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
2157
|
+
dependencies = [
|
|
2158
|
+
"libc",
|
|
2159
|
+
"pyo3-build-config",
|
|
2160
|
+
]
|
|
2161
|
+
|
|
2162
|
+
[[package]]
|
|
2163
|
+
name = "pyo3-macros"
|
|
2164
|
+
version = "0.23.5"
|
|
2165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2166
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
2167
|
+
dependencies = [
|
|
2168
|
+
"proc-macro2",
|
|
2169
|
+
"pyo3-macros-backend",
|
|
2170
|
+
"quote",
|
|
2171
|
+
"syn",
|
|
2172
|
+
]
|
|
2173
|
+
|
|
2174
|
+
[[package]]
|
|
2175
|
+
name = "pyo3-macros-backend"
|
|
2176
|
+
version = "0.23.5"
|
|
2177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2178
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
2179
|
+
dependencies = [
|
|
2180
|
+
"heck",
|
|
2181
|
+
"proc-macro2",
|
|
2182
|
+
"pyo3-build-config",
|
|
2183
|
+
"quote",
|
|
2184
|
+
"syn",
|
|
2185
|
+
]
|
|
2186
|
+
|
|
2187
|
+
[[package]]
|
|
2188
|
+
name = "quick-error"
|
|
2189
|
+
version = "1.2.3"
|
|
2190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2191
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
2192
|
+
|
|
2193
|
+
[[package]]
|
|
2194
|
+
name = "quick-xml"
|
|
2195
|
+
version = "0.37.5"
|
|
2196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2197
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
|
2198
|
+
dependencies = [
|
|
2199
|
+
"memchr",
|
|
2200
|
+
"serde",
|
|
2201
|
+
]
|
|
2202
|
+
|
|
2203
|
+
[[package]]
|
|
2204
|
+
name = "quinn"
|
|
2205
|
+
version = "0.11.9"
|
|
2206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2207
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
2208
|
+
dependencies = [
|
|
2209
|
+
"bytes",
|
|
2210
|
+
"cfg_aliases",
|
|
2211
|
+
"pin-project-lite",
|
|
2212
|
+
"quinn-proto",
|
|
2213
|
+
"quinn-udp",
|
|
2214
|
+
"rustc-hash 2.1.1",
|
|
2215
|
+
"rustls",
|
|
2216
|
+
"socket2",
|
|
2217
|
+
"thiserror 2.0.17",
|
|
2218
|
+
"tokio",
|
|
2219
|
+
"tracing",
|
|
2220
|
+
"web-time",
|
|
2221
|
+
]
|
|
2222
|
+
|
|
2223
|
+
[[package]]
|
|
2224
|
+
name = "quinn-proto"
|
|
2225
|
+
version = "0.11.13"
|
|
2226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2227
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
2228
|
+
dependencies = [
|
|
2229
|
+
"bytes",
|
|
2230
|
+
"getrandom 0.3.4",
|
|
2231
|
+
"lru-slab",
|
|
2232
|
+
"rand 0.9.2",
|
|
2233
|
+
"ring",
|
|
2234
|
+
"rustc-hash 2.1.1",
|
|
2235
|
+
"rustls",
|
|
2236
|
+
"rustls-pki-types",
|
|
2237
|
+
"slab",
|
|
2238
|
+
"thiserror 2.0.17",
|
|
2239
|
+
"tinyvec",
|
|
2240
|
+
"tracing",
|
|
2241
|
+
"web-time",
|
|
2242
|
+
]
|
|
2243
|
+
|
|
2244
|
+
[[package]]
|
|
2245
|
+
name = "quinn-udp"
|
|
2246
|
+
version = "0.5.14"
|
|
2247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
2249
|
+
dependencies = [
|
|
2250
|
+
"cfg_aliases",
|
|
2251
|
+
"libc",
|
|
2252
|
+
"once_cell",
|
|
2253
|
+
"socket2",
|
|
2254
|
+
"tracing",
|
|
2255
|
+
"windows-sys 0.60.2",
|
|
2256
|
+
]
|
|
2257
|
+
|
|
2258
|
+
[[package]]
|
|
2259
|
+
name = "quote"
|
|
2260
|
+
version = "1.0.41"
|
|
2261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2262
|
+
checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
|
|
2263
|
+
dependencies = [
|
|
2264
|
+
"proc-macro2",
|
|
2265
|
+
]
|
|
2266
|
+
|
|
2267
|
+
[[package]]
|
|
2268
|
+
name = "r-efi"
|
|
2269
|
+
version = "5.3.0"
|
|
2270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2271
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2272
|
+
|
|
2273
|
+
[[package]]
|
|
2274
|
+
name = "rand"
|
|
2275
|
+
version = "0.8.5"
|
|
2276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2277
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2278
|
+
dependencies = [
|
|
2279
|
+
"libc",
|
|
2280
|
+
"rand_chacha 0.3.1",
|
|
2281
|
+
"rand_core 0.6.4",
|
|
2282
|
+
]
|
|
2283
|
+
|
|
2284
|
+
[[package]]
|
|
2285
|
+
name = "rand"
|
|
2286
|
+
version = "0.9.2"
|
|
2287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2288
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2289
|
+
dependencies = [
|
|
2290
|
+
"rand_chacha 0.9.0",
|
|
2291
|
+
"rand_core 0.9.3",
|
|
2292
|
+
]
|
|
2293
|
+
|
|
2294
|
+
[[package]]
|
|
2295
|
+
name = "rand_chacha"
|
|
2296
|
+
version = "0.3.1"
|
|
2297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2298
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2299
|
+
dependencies = [
|
|
2300
|
+
"ppv-lite86",
|
|
2301
|
+
"rand_core 0.6.4",
|
|
2302
|
+
]
|
|
2303
|
+
|
|
2304
|
+
[[package]]
|
|
2305
|
+
name = "rand_chacha"
|
|
2306
|
+
version = "0.9.0"
|
|
2307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2308
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2309
|
+
dependencies = [
|
|
2310
|
+
"ppv-lite86",
|
|
2311
|
+
"rand_core 0.9.3",
|
|
2312
|
+
]
|
|
2313
|
+
|
|
2314
|
+
[[package]]
|
|
2315
|
+
name = "rand_core"
|
|
2316
|
+
version = "0.6.4"
|
|
2317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2318
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2319
|
+
dependencies = [
|
|
2320
|
+
"getrandom 0.2.16",
|
|
2321
|
+
]
|
|
2322
|
+
|
|
2323
|
+
[[package]]
|
|
2324
|
+
name = "rand_core"
|
|
2325
|
+
version = "0.9.3"
|
|
2326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2327
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2328
|
+
dependencies = [
|
|
2329
|
+
"getrandom 0.3.4",
|
|
2330
|
+
]
|
|
2331
|
+
|
|
2332
|
+
[[package]]
|
|
2333
|
+
name = "rand_xorshift"
|
|
2334
|
+
version = "0.4.0"
|
|
2335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2336
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
2337
|
+
dependencies = [
|
|
2338
|
+
"rand_core 0.9.3",
|
|
2339
|
+
]
|
|
2340
|
+
|
|
2341
|
+
[[package]]
|
|
2342
|
+
name = "rawpointer"
|
|
2343
|
+
version = "0.2.1"
|
|
2344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2345
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
2346
|
+
|
|
2347
|
+
[[package]]
|
|
2348
|
+
name = "rayon"
|
|
2349
|
+
version = "1.11.0"
|
|
2350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2351
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
2352
|
+
dependencies = [
|
|
2353
|
+
"either",
|
|
2354
|
+
"rayon-core",
|
|
2355
|
+
]
|
|
2356
|
+
|
|
2357
|
+
[[package]]
|
|
2358
|
+
name = "rayon-core"
|
|
2359
|
+
version = "1.13.0"
|
|
2360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2361
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2362
|
+
dependencies = [
|
|
2363
|
+
"crossbeam-deque",
|
|
2364
|
+
"crossbeam-utils",
|
|
2365
|
+
]
|
|
2366
|
+
|
|
2367
|
+
[[package]]
|
|
2368
|
+
name = "redox_syscall"
|
|
2369
|
+
version = "0.5.18"
|
|
2370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2371
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2372
|
+
dependencies = [
|
|
2373
|
+
"bitflags 2.10.0",
|
|
2374
|
+
]
|
|
2375
|
+
|
|
2376
|
+
[[package]]
|
|
2377
|
+
name = "regex"
|
|
2378
|
+
version = "1.12.2"
|
|
2379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2380
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
2381
|
+
dependencies = [
|
|
2382
|
+
"aho-corasick",
|
|
2383
|
+
"memchr",
|
|
2384
|
+
"regex-automata",
|
|
2385
|
+
"regex-syntax",
|
|
2386
|
+
]
|
|
2387
|
+
|
|
2388
|
+
[[package]]
|
|
2389
|
+
name = "regex-automata"
|
|
2390
|
+
version = "0.4.13"
|
|
2391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2392
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
2393
|
+
dependencies = [
|
|
2394
|
+
"aho-corasick",
|
|
2395
|
+
"memchr",
|
|
2396
|
+
"regex-syntax",
|
|
2397
|
+
]
|
|
2398
|
+
|
|
2399
|
+
[[package]]
|
|
2400
|
+
name = "regex-syntax"
|
|
2401
|
+
version = "0.8.8"
|
|
2402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2403
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
2404
|
+
|
|
2405
|
+
[[package]]
|
|
2406
|
+
name = "reqwest"
|
|
2407
|
+
version = "0.12.28"
|
|
2408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2409
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
2410
|
+
dependencies = [
|
|
2411
|
+
"base64",
|
|
2412
|
+
"bytes",
|
|
2413
|
+
"futures-core",
|
|
2414
|
+
"futures-util",
|
|
2415
|
+
"h2",
|
|
2416
|
+
"http",
|
|
2417
|
+
"http-body",
|
|
2418
|
+
"http-body-util",
|
|
2419
|
+
"hyper",
|
|
2420
|
+
"hyper-rustls",
|
|
2421
|
+
"hyper-util",
|
|
2422
|
+
"js-sys",
|
|
2423
|
+
"log",
|
|
2424
|
+
"percent-encoding",
|
|
2425
|
+
"pin-project-lite",
|
|
2426
|
+
"quinn",
|
|
2427
|
+
"rustls",
|
|
2428
|
+
"rustls-native-certs",
|
|
2429
|
+
"rustls-pki-types",
|
|
2430
|
+
"serde",
|
|
2431
|
+
"serde_json",
|
|
2432
|
+
"serde_urlencoded",
|
|
2433
|
+
"sync_wrapper",
|
|
2434
|
+
"tokio",
|
|
2435
|
+
"tokio-rustls",
|
|
2436
|
+
"tokio-util",
|
|
2437
|
+
"tower",
|
|
2438
|
+
"tower-http",
|
|
2439
|
+
"tower-service",
|
|
2440
|
+
"url",
|
|
2441
|
+
"wasm-bindgen",
|
|
2442
|
+
"wasm-bindgen-futures",
|
|
2443
|
+
"wasm-streams",
|
|
2444
|
+
"web-sys",
|
|
2445
|
+
]
|
|
2446
|
+
|
|
2447
|
+
[[package]]
|
|
2448
|
+
name = "ring"
|
|
2449
|
+
version = "0.17.14"
|
|
2450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2451
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2452
|
+
dependencies = [
|
|
2453
|
+
"cc",
|
|
2454
|
+
"cfg-if",
|
|
2455
|
+
"getrandom 0.2.16",
|
|
2456
|
+
"libc",
|
|
2457
|
+
"untrusted",
|
|
2458
|
+
"windows-sys 0.52.0",
|
|
2459
|
+
]
|
|
2460
|
+
|
|
2461
|
+
[[package]]
|
|
2462
|
+
name = "rustc-demangle"
|
|
2463
|
+
version = "0.1.26"
|
|
2464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2465
|
+
checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
|
|
2466
|
+
|
|
2467
|
+
[[package]]
|
|
2468
|
+
name = "rustc-hash"
|
|
2469
|
+
version = "1.1.0"
|
|
2470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2471
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2472
|
+
|
|
2473
|
+
[[package]]
|
|
2474
|
+
name = "rustc-hash"
|
|
2475
|
+
version = "2.1.1"
|
|
2476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2477
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2478
|
+
|
|
2479
|
+
[[package]]
|
|
2480
|
+
name = "rustc_version"
|
|
2481
|
+
version = "0.4.1"
|
|
2482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2483
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2484
|
+
dependencies = [
|
|
2485
|
+
"semver",
|
|
2486
|
+
]
|
|
2487
|
+
|
|
2488
|
+
[[package]]
|
|
2489
|
+
name = "rustix"
|
|
2490
|
+
version = "1.1.2"
|
|
2491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2492
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
2493
|
+
dependencies = [
|
|
2494
|
+
"bitflags 2.10.0",
|
|
2495
|
+
"errno",
|
|
2496
|
+
"libc",
|
|
2497
|
+
"linux-raw-sys",
|
|
2498
|
+
"windows-sys 0.61.2",
|
|
2499
|
+
]
|
|
2500
|
+
|
|
2501
|
+
[[package]]
|
|
2502
|
+
name = "rustls"
|
|
2503
|
+
version = "0.23.35"
|
|
2504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2505
|
+
checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
|
|
2506
|
+
dependencies = [
|
|
2507
|
+
"once_cell",
|
|
2508
|
+
"ring",
|
|
2509
|
+
"rustls-pki-types",
|
|
2510
|
+
"rustls-webpki",
|
|
2511
|
+
"subtle",
|
|
2512
|
+
"zeroize",
|
|
2513
|
+
]
|
|
2514
|
+
|
|
2515
|
+
[[package]]
|
|
2516
|
+
name = "rustls-native-certs"
|
|
2517
|
+
version = "0.8.2"
|
|
2518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2519
|
+
checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923"
|
|
2520
|
+
dependencies = [
|
|
2521
|
+
"openssl-probe",
|
|
2522
|
+
"rustls-pki-types",
|
|
2523
|
+
"schannel",
|
|
2524
|
+
"security-framework",
|
|
2525
|
+
]
|
|
2526
|
+
|
|
2527
|
+
[[package]]
|
|
2528
|
+
name = "rustls-pki-types"
|
|
2529
|
+
version = "1.13.2"
|
|
2530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
+
checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
|
|
2532
|
+
dependencies = [
|
|
2533
|
+
"web-time",
|
|
2534
|
+
"zeroize",
|
|
2535
|
+
]
|
|
2536
|
+
|
|
2537
|
+
[[package]]
|
|
2538
|
+
name = "rustls-webpki"
|
|
2539
|
+
version = "0.103.8"
|
|
2540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2541
|
+
checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
|
|
2542
|
+
dependencies = [
|
|
2543
|
+
"ring",
|
|
2544
|
+
"rustls-pki-types",
|
|
2545
|
+
"untrusted",
|
|
2546
|
+
]
|
|
2547
|
+
|
|
2548
|
+
[[package]]
|
|
2549
|
+
name = "rustversion"
|
|
2550
|
+
version = "1.0.22"
|
|
2551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2553
|
+
|
|
2554
|
+
[[package]]
|
|
2555
|
+
name = "rusty-fork"
|
|
2556
|
+
version = "0.3.1"
|
|
2557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2558
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
2559
|
+
dependencies = [
|
|
2560
|
+
"fnv",
|
|
2561
|
+
"quick-error",
|
|
2562
|
+
"tempfile",
|
|
2563
|
+
"wait-timeout",
|
|
2564
|
+
]
|
|
2565
|
+
|
|
2566
|
+
[[package]]
|
|
2567
|
+
name = "ryu"
|
|
2568
|
+
version = "1.0.20"
|
|
2569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2570
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2571
|
+
|
|
2572
|
+
[[package]]
|
|
2573
|
+
name = "same-file"
|
|
2574
|
+
version = "1.0.6"
|
|
2575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2576
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2577
|
+
dependencies = [
|
|
2578
|
+
"winapi-util",
|
|
2579
|
+
]
|
|
2580
|
+
|
|
2581
|
+
[[package]]
|
|
2582
|
+
name = "schannel"
|
|
2583
|
+
version = "0.1.28"
|
|
2584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2585
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
2586
|
+
dependencies = [
|
|
2587
|
+
"windows-sys 0.61.2",
|
|
2588
|
+
]
|
|
2589
|
+
|
|
2590
|
+
[[package]]
|
|
2591
|
+
name = "scopeguard"
|
|
2592
|
+
version = "1.2.0"
|
|
2593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2594
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2595
|
+
|
|
2596
|
+
[[package]]
|
|
2597
|
+
name = "security-framework"
|
|
2598
|
+
version = "3.5.1"
|
|
2599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2600
|
+
checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
|
|
2601
|
+
dependencies = [
|
|
2602
|
+
"bitflags 2.10.0",
|
|
2603
|
+
"core-foundation",
|
|
2604
|
+
"core-foundation-sys",
|
|
2605
|
+
"libc",
|
|
2606
|
+
"security-framework-sys",
|
|
2607
|
+
]
|
|
2608
|
+
|
|
2609
|
+
[[package]]
|
|
2610
|
+
name = "security-framework-sys"
|
|
2611
|
+
version = "2.15.0"
|
|
2612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
+
checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
|
2614
|
+
dependencies = [
|
|
2615
|
+
"core-foundation-sys",
|
|
2616
|
+
"libc",
|
|
2617
|
+
]
|
|
2618
|
+
|
|
2619
|
+
[[package]]
|
|
2620
|
+
name = "semver"
|
|
2621
|
+
version = "1.0.27"
|
|
2622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2623
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2624
|
+
|
|
2625
|
+
[[package]]
|
|
2626
|
+
name = "seq-macro"
|
|
2627
|
+
version = "0.3.6"
|
|
2628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2629
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
2630
|
+
|
|
2631
|
+
[[package]]
|
|
2632
|
+
name = "serde"
|
|
2633
|
+
version = "1.0.228"
|
|
2634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2635
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2636
|
+
dependencies = [
|
|
2637
|
+
"serde_core",
|
|
2638
|
+
"serde_derive",
|
|
2639
|
+
]
|
|
2640
|
+
|
|
2641
|
+
[[package]]
|
|
2642
|
+
name = "serde_core"
|
|
2643
|
+
version = "1.0.228"
|
|
2644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2645
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2646
|
+
dependencies = [
|
|
2647
|
+
"serde_derive",
|
|
2648
|
+
]
|
|
2649
|
+
|
|
2650
|
+
[[package]]
|
|
2651
|
+
name = "serde_derive"
|
|
2652
|
+
version = "1.0.228"
|
|
2653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2654
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2655
|
+
dependencies = [
|
|
2656
|
+
"proc-macro2",
|
|
2657
|
+
"quote",
|
|
2658
|
+
"syn",
|
|
2659
|
+
]
|
|
2660
|
+
|
|
2661
|
+
[[package]]
|
|
2662
|
+
name = "serde_json"
|
|
2663
|
+
version = "1.0.145"
|
|
2664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2665
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
2666
|
+
dependencies = [
|
|
2667
|
+
"itoa",
|
|
2668
|
+
"memchr",
|
|
2669
|
+
"ryu",
|
|
2670
|
+
"serde",
|
|
2671
|
+
"serde_core",
|
|
2672
|
+
]
|
|
2673
|
+
|
|
2674
|
+
[[package]]
|
|
2675
|
+
name = "serde_urlencoded"
|
|
2676
|
+
version = "0.7.1"
|
|
2677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2678
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2679
|
+
dependencies = [
|
|
2680
|
+
"form_urlencoded",
|
|
2681
|
+
"itoa",
|
|
2682
|
+
"ryu",
|
|
2683
|
+
"serde",
|
|
2684
|
+
]
|
|
2685
|
+
|
|
2686
|
+
[[package]]
|
|
2687
|
+
name = "sharded-slab"
|
|
2688
|
+
version = "0.1.7"
|
|
2689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2690
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
2691
|
+
dependencies = [
|
|
2692
|
+
"lazy_static",
|
|
2693
|
+
]
|
|
2694
|
+
|
|
2695
|
+
[[package]]
|
|
2696
|
+
name = "shlex"
|
|
2697
|
+
version = "1.3.0"
|
|
2698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2699
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2700
|
+
|
|
2701
|
+
[[package]]
|
|
2702
|
+
name = "signal-hook-registry"
|
|
2703
|
+
version = "1.4.7"
|
|
2704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2705
|
+
checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad"
|
|
2706
|
+
dependencies = [
|
|
2707
|
+
"libc",
|
|
2708
|
+
]
|
|
2709
|
+
|
|
2710
|
+
[[package]]
|
|
2711
|
+
name = "simd-adler32"
|
|
2712
|
+
version = "0.3.8"
|
|
2713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2714
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
2715
|
+
|
|
2716
|
+
[[package]]
|
|
2717
|
+
name = "slab"
|
|
2718
|
+
version = "0.4.11"
|
|
2719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2720
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
2721
|
+
|
|
2722
|
+
[[package]]
|
|
2723
|
+
name = "smallvec"
|
|
2724
|
+
version = "1.15.1"
|
|
2725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2726
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2727
|
+
|
|
2728
|
+
[[package]]
|
|
2729
|
+
name = "snafu"
|
|
2730
|
+
version = "0.8.9"
|
|
2731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2732
|
+
checksum = "6e84b3f4eacbf3a1ce05eac6763b4d629d60cbc94d632e4092c54ade71f1e1a2"
|
|
2733
|
+
dependencies = [
|
|
2734
|
+
"snafu-derive",
|
|
2735
|
+
]
|
|
2736
|
+
|
|
2737
|
+
[[package]]
|
|
2738
|
+
name = "snafu-derive"
|
|
2739
|
+
version = "0.8.9"
|
|
2740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2741
|
+
checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451"
|
|
2742
|
+
dependencies = [
|
|
2743
|
+
"heck",
|
|
2744
|
+
"proc-macro2",
|
|
2745
|
+
"quote",
|
|
2746
|
+
"syn",
|
|
2747
|
+
]
|
|
2748
|
+
|
|
2749
|
+
[[package]]
|
|
2750
|
+
name = "snap"
|
|
2751
|
+
version = "1.1.1"
|
|
2752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2753
|
+
checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
|
|
2754
|
+
|
|
2755
|
+
[[package]]
|
|
2756
|
+
name = "socket2"
|
|
2757
|
+
version = "0.6.1"
|
|
2758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2759
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
2760
|
+
dependencies = [
|
|
2761
|
+
"libc",
|
|
2762
|
+
"windows-sys 0.60.2",
|
|
2763
|
+
]
|
|
2764
|
+
|
|
2765
|
+
[[package]]
|
|
2766
|
+
name = "stable_deref_trait"
|
|
2767
|
+
version = "1.2.1"
|
|
2768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2769
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2770
|
+
|
|
2771
|
+
[[package]]
|
|
2772
|
+
name = "static_assertions"
|
|
2773
|
+
version = "1.1.0"
|
|
2774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2775
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2776
|
+
|
|
2777
|
+
[[package]]
|
|
2778
|
+
name = "strsim"
|
|
2779
|
+
version = "0.11.1"
|
|
2780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2781
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2782
|
+
|
|
2783
|
+
[[package]]
|
|
2784
|
+
name = "subtle"
|
|
2785
|
+
version = "2.6.1"
|
|
2786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2787
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2788
|
+
|
|
2789
|
+
[[package]]
|
|
2790
|
+
name = "syn"
|
|
2791
|
+
version = "2.0.108"
|
|
2792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
+
checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
|
|
2794
|
+
dependencies = [
|
|
2795
|
+
"proc-macro2",
|
|
2796
|
+
"quote",
|
|
2797
|
+
"unicode-ident",
|
|
2798
|
+
]
|
|
2799
|
+
|
|
2800
|
+
[[package]]
|
|
2801
|
+
name = "sync_wrapper"
|
|
2802
|
+
version = "1.0.2"
|
|
2803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2804
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2805
|
+
dependencies = [
|
|
2806
|
+
"futures-core",
|
|
2807
|
+
]
|
|
2808
|
+
|
|
2809
|
+
[[package]]
|
|
2810
|
+
name = "synstructure"
|
|
2811
|
+
version = "0.13.2"
|
|
2812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2813
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2814
|
+
dependencies = [
|
|
2815
|
+
"proc-macro2",
|
|
2816
|
+
"quote",
|
|
2817
|
+
"syn",
|
|
2818
|
+
]
|
|
2819
|
+
|
|
2820
|
+
[[package]]
|
|
2821
|
+
name = "target-lexicon"
|
|
2822
|
+
version = "0.12.16"
|
|
2823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2824
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
2825
|
+
|
|
2826
|
+
[[package]]
|
|
2827
|
+
name = "tempfile"
|
|
2828
|
+
version = "3.23.0"
|
|
2829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2830
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
2831
|
+
dependencies = [
|
|
2832
|
+
"fastrand",
|
|
2833
|
+
"getrandom 0.3.4",
|
|
2834
|
+
"once_cell",
|
|
2835
|
+
"rustix",
|
|
2836
|
+
"windows-sys 0.61.2",
|
|
2837
|
+
]
|
|
2838
|
+
|
|
2839
|
+
[[package]]
|
|
2840
|
+
name = "thiserror"
|
|
2841
|
+
version = "1.0.69"
|
|
2842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2844
|
+
dependencies = [
|
|
2845
|
+
"thiserror-impl 1.0.69",
|
|
2846
|
+
]
|
|
2847
|
+
|
|
2848
|
+
[[package]]
|
|
2849
|
+
name = "thiserror"
|
|
2850
|
+
version = "2.0.17"
|
|
2851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2852
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
2853
|
+
dependencies = [
|
|
2854
|
+
"thiserror-impl 2.0.17",
|
|
2855
|
+
]
|
|
2856
|
+
|
|
2857
|
+
[[package]]
|
|
2858
|
+
name = "thiserror-impl"
|
|
2859
|
+
version = "1.0.69"
|
|
2860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2861
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2862
|
+
dependencies = [
|
|
2863
|
+
"proc-macro2",
|
|
2864
|
+
"quote",
|
|
2865
|
+
"syn",
|
|
2866
|
+
]
|
|
2867
|
+
|
|
2868
|
+
[[package]]
|
|
2869
|
+
name = "thiserror-impl"
|
|
2870
|
+
version = "2.0.17"
|
|
2871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2872
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
2873
|
+
dependencies = [
|
|
2874
|
+
"proc-macro2",
|
|
2875
|
+
"quote",
|
|
2876
|
+
"syn",
|
|
2877
|
+
]
|
|
2878
|
+
|
|
2879
|
+
[[package]]
|
|
2880
|
+
name = "thousands"
|
|
2881
|
+
version = "0.2.0"
|
|
2882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2883
|
+
checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820"
|
|
2884
|
+
|
|
2885
|
+
[[package]]
|
|
2886
|
+
name = "thread_local"
|
|
2887
|
+
version = "1.1.9"
|
|
2888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2889
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
2890
|
+
dependencies = [
|
|
2891
|
+
"cfg-if",
|
|
2892
|
+
]
|
|
2893
|
+
|
|
2894
|
+
[[package]]
|
|
2895
|
+
name = "thrift"
|
|
2896
|
+
version = "0.17.0"
|
|
2897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2898
|
+
checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
|
|
2899
|
+
dependencies = [
|
|
2900
|
+
"byteorder",
|
|
2901
|
+
"integer-encoding",
|
|
2902
|
+
"ordered-float",
|
|
2903
|
+
]
|
|
2904
|
+
|
|
2905
|
+
[[package]]
|
|
2906
|
+
name = "tiny-keccak"
|
|
2907
|
+
version = "2.0.2"
|
|
2908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2909
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
2910
|
+
dependencies = [
|
|
2911
|
+
"crunchy",
|
|
2912
|
+
]
|
|
2913
|
+
|
|
2914
|
+
[[package]]
|
|
2915
|
+
name = "tinystr"
|
|
2916
|
+
version = "0.8.2"
|
|
2917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2918
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
2919
|
+
dependencies = [
|
|
2920
|
+
"displaydoc",
|
|
2921
|
+
"zerovec",
|
|
2922
|
+
]
|
|
2923
|
+
|
|
2924
|
+
[[package]]
|
|
2925
|
+
name = "tinytemplate"
|
|
2926
|
+
version = "1.2.1"
|
|
2927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2928
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
2929
|
+
dependencies = [
|
|
2930
|
+
"serde",
|
|
2931
|
+
"serde_json",
|
|
2932
|
+
]
|
|
2933
|
+
|
|
2934
|
+
[[package]]
|
|
2935
|
+
name = "tinyvec"
|
|
2936
|
+
version = "1.10.0"
|
|
2937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2938
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
2939
|
+
dependencies = [
|
|
2940
|
+
"tinyvec_macros",
|
|
2941
|
+
]
|
|
2942
|
+
|
|
2943
|
+
[[package]]
|
|
2944
|
+
name = "tinyvec_macros"
|
|
2945
|
+
version = "0.1.1"
|
|
2946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2947
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2948
|
+
|
|
2949
|
+
[[package]]
|
|
2950
|
+
name = "tokio"
|
|
2951
|
+
version = "1.48.0"
|
|
2952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2953
|
+
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
2954
|
+
dependencies = [
|
|
2955
|
+
"bytes",
|
|
2956
|
+
"libc",
|
|
2957
|
+
"mio",
|
|
2958
|
+
"parking_lot",
|
|
2959
|
+
"pin-project-lite",
|
|
2960
|
+
"signal-hook-registry",
|
|
2961
|
+
"socket2",
|
|
2962
|
+
"tokio-macros",
|
|
2963
|
+
"windows-sys 0.61.2",
|
|
2964
|
+
]
|
|
2965
|
+
|
|
2966
|
+
[[package]]
|
|
2967
|
+
name = "tokio-macros"
|
|
2968
|
+
version = "2.6.0"
|
|
2969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2970
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
2971
|
+
dependencies = [
|
|
2972
|
+
"proc-macro2",
|
|
2973
|
+
"quote",
|
|
2974
|
+
"syn",
|
|
2975
|
+
]
|
|
2976
|
+
|
|
2977
|
+
[[package]]
|
|
2978
|
+
name = "tokio-rustls"
|
|
2979
|
+
version = "0.26.4"
|
|
2980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2981
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
2982
|
+
dependencies = [
|
|
2983
|
+
"rustls",
|
|
2984
|
+
"tokio",
|
|
2985
|
+
]
|
|
2986
|
+
|
|
2987
|
+
[[package]]
|
|
2988
|
+
name = "tokio-util"
|
|
2989
|
+
version = "0.7.17"
|
|
2990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2991
|
+
checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
|
|
2992
|
+
dependencies = [
|
|
2993
|
+
"bytes",
|
|
2994
|
+
"futures-core",
|
|
2995
|
+
"futures-sink",
|
|
2996
|
+
"pin-project-lite",
|
|
2997
|
+
"tokio",
|
|
2998
|
+
]
|
|
2999
|
+
|
|
3000
|
+
[[package]]
|
|
3001
|
+
name = "tower"
|
|
3002
|
+
version = "0.5.2"
|
|
3003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3004
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
3005
|
+
dependencies = [
|
|
3006
|
+
"futures-core",
|
|
3007
|
+
"futures-util",
|
|
3008
|
+
"pin-project-lite",
|
|
3009
|
+
"sync_wrapper",
|
|
3010
|
+
"tokio",
|
|
3011
|
+
"tower-layer",
|
|
3012
|
+
"tower-service",
|
|
3013
|
+
]
|
|
3014
|
+
|
|
3015
|
+
[[package]]
|
|
3016
|
+
name = "tower-http"
|
|
3017
|
+
version = "0.6.8"
|
|
3018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3019
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
3020
|
+
dependencies = [
|
|
3021
|
+
"bitflags 2.10.0",
|
|
3022
|
+
"bytes",
|
|
3023
|
+
"futures-util",
|
|
3024
|
+
"http",
|
|
3025
|
+
"http-body",
|
|
3026
|
+
"iri-string",
|
|
3027
|
+
"pin-project-lite",
|
|
3028
|
+
"tower",
|
|
3029
|
+
"tower-layer",
|
|
3030
|
+
"tower-service",
|
|
3031
|
+
]
|
|
3032
|
+
|
|
3033
|
+
[[package]]
|
|
3034
|
+
name = "tower-layer"
|
|
3035
|
+
version = "0.3.3"
|
|
3036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3037
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3038
|
+
|
|
3039
|
+
[[package]]
|
|
3040
|
+
name = "tower-service"
|
|
3041
|
+
version = "0.3.3"
|
|
3042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3043
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3044
|
+
|
|
3045
|
+
[[package]]
|
|
3046
|
+
name = "tracing"
|
|
3047
|
+
version = "0.1.43"
|
|
3048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3049
|
+
checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
|
|
3050
|
+
dependencies = [
|
|
3051
|
+
"pin-project-lite",
|
|
3052
|
+
"tracing-attributes",
|
|
3053
|
+
"tracing-core",
|
|
3054
|
+
]
|
|
3055
|
+
|
|
3056
|
+
[[package]]
|
|
3057
|
+
name = "tracing-attributes"
|
|
3058
|
+
version = "0.1.31"
|
|
3059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3060
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3061
|
+
dependencies = [
|
|
3062
|
+
"proc-macro2",
|
|
3063
|
+
"quote",
|
|
3064
|
+
"syn",
|
|
3065
|
+
]
|
|
3066
|
+
|
|
3067
|
+
[[package]]
|
|
3068
|
+
name = "tracing-core"
|
|
3069
|
+
version = "0.1.35"
|
|
3070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3071
|
+
checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
|
|
3072
|
+
dependencies = [
|
|
3073
|
+
"once_cell",
|
|
3074
|
+
"valuable",
|
|
3075
|
+
]
|
|
3076
|
+
|
|
3077
|
+
[[package]]
|
|
3078
|
+
name = "tracing-log"
|
|
3079
|
+
version = "0.2.0"
|
|
3080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3081
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3082
|
+
dependencies = [
|
|
3083
|
+
"log",
|
|
3084
|
+
"once_cell",
|
|
3085
|
+
"tracing-core",
|
|
3086
|
+
]
|
|
3087
|
+
|
|
3088
|
+
[[package]]
|
|
3089
|
+
name = "tracing-subscriber"
|
|
3090
|
+
version = "0.3.22"
|
|
3091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3092
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
3093
|
+
dependencies = [
|
|
3094
|
+
"matchers",
|
|
3095
|
+
"nu-ansi-term",
|
|
3096
|
+
"once_cell",
|
|
3097
|
+
"regex-automata",
|
|
3098
|
+
"sharded-slab",
|
|
3099
|
+
"smallvec",
|
|
3100
|
+
"thread_local",
|
|
3101
|
+
"tracing",
|
|
3102
|
+
"tracing-core",
|
|
3103
|
+
"tracing-log",
|
|
3104
|
+
]
|
|
3105
|
+
|
|
3106
|
+
[[package]]
|
|
3107
|
+
name = "try-lock"
|
|
3108
|
+
version = "0.2.5"
|
|
3109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3110
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3111
|
+
|
|
3112
|
+
[[package]]
|
|
3113
|
+
name = "twox-hash"
|
|
3114
|
+
version = "1.6.3"
|
|
3115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
|
+
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
|
|
3117
|
+
dependencies = [
|
|
3118
|
+
"cfg-if",
|
|
3119
|
+
"static_assertions",
|
|
3120
|
+
]
|
|
3121
|
+
|
|
3122
|
+
[[package]]
|
|
3123
|
+
name = "twox-hash"
|
|
3124
|
+
version = "2.1.2"
|
|
3125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3126
|
+
checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
|
|
3127
|
+
|
|
3128
|
+
[[package]]
|
|
3129
|
+
name = "typenum"
|
|
3130
|
+
version = "1.19.0"
|
|
3131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3132
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
3133
|
+
|
|
3134
|
+
[[package]]
|
|
3135
|
+
name = "unarray"
|
|
3136
|
+
version = "0.1.4"
|
|
3137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3138
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
3139
|
+
|
|
3140
|
+
[[package]]
|
|
3141
|
+
name = "unicode-ident"
|
|
3142
|
+
version = "1.0.20"
|
|
3143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3144
|
+
checksum = "462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06"
|
|
3145
|
+
|
|
3146
|
+
[[package]]
|
|
3147
|
+
name = "unicode-segmentation"
|
|
3148
|
+
version = "1.12.0"
|
|
3149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3150
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3151
|
+
|
|
3152
|
+
[[package]]
|
|
3153
|
+
name = "unicode-width"
|
|
3154
|
+
version = "0.2.2"
|
|
3155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3156
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3157
|
+
|
|
3158
|
+
[[package]]
|
|
3159
|
+
name = "unindent"
|
|
3160
|
+
version = "0.2.4"
|
|
3161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3162
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3163
|
+
|
|
3164
|
+
[[package]]
|
|
3165
|
+
name = "untrusted"
|
|
3166
|
+
version = "0.9.0"
|
|
3167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3168
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3169
|
+
|
|
3170
|
+
[[package]]
|
|
3171
|
+
name = "url"
|
|
3172
|
+
version = "2.5.7"
|
|
3173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
3175
|
+
dependencies = [
|
|
3176
|
+
"form_urlencoded",
|
|
3177
|
+
"idna",
|
|
3178
|
+
"percent-encoding",
|
|
3179
|
+
"serde",
|
|
3180
|
+
]
|
|
3181
|
+
|
|
3182
|
+
[[package]]
|
|
3183
|
+
name = "utf8_iter"
|
|
3184
|
+
version = "1.0.4"
|
|
3185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3186
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3187
|
+
|
|
3188
|
+
[[package]]
|
|
3189
|
+
name = "utf8parse"
|
|
3190
|
+
version = "0.2.2"
|
|
3191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3192
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3193
|
+
|
|
3194
|
+
[[package]]
|
|
3195
|
+
name = "valuable"
|
|
3196
|
+
version = "0.1.1"
|
|
3197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3198
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
3199
|
+
|
|
3200
|
+
[[package]]
|
|
3201
|
+
name = "version_check"
|
|
3202
|
+
version = "0.9.5"
|
|
3203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3204
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3205
|
+
|
|
3206
|
+
[[package]]
|
|
3207
|
+
name = "wait-timeout"
|
|
3208
|
+
version = "0.2.1"
|
|
3209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3210
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
3211
|
+
dependencies = [
|
|
3212
|
+
"libc",
|
|
3213
|
+
]
|
|
3214
|
+
|
|
3215
|
+
[[package]]
|
|
3216
|
+
name = "walkdir"
|
|
3217
|
+
version = "2.5.0"
|
|
3218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3219
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3220
|
+
dependencies = [
|
|
3221
|
+
"same-file",
|
|
3222
|
+
"winapi-util",
|
|
3223
|
+
]
|
|
3224
|
+
|
|
3225
|
+
[[package]]
|
|
3226
|
+
name = "want"
|
|
3227
|
+
version = "0.3.1"
|
|
3228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3229
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3230
|
+
dependencies = [
|
|
3231
|
+
"try-lock",
|
|
3232
|
+
]
|
|
3233
|
+
|
|
3234
|
+
[[package]]
|
|
3235
|
+
name = "wasi"
|
|
3236
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3238
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3239
|
+
|
|
3240
|
+
[[package]]
|
|
3241
|
+
name = "wasip2"
|
|
3242
|
+
version = "1.0.1+wasi-0.2.4"
|
|
3243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3244
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
3245
|
+
dependencies = [
|
|
3246
|
+
"wit-bindgen",
|
|
3247
|
+
]
|
|
3248
|
+
|
|
3249
|
+
[[package]]
|
|
3250
|
+
name = "wasm-bindgen"
|
|
3251
|
+
version = "0.2.105"
|
|
3252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3253
|
+
checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
|
|
3254
|
+
dependencies = [
|
|
3255
|
+
"cfg-if",
|
|
3256
|
+
"once_cell",
|
|
3257
|
+
"rustversion",
|
|
3258
|
+
"wasm-bindgen-macro",
|
|
3259
|
+
"wasm-bindgen-shared",
|
|
3260
|
+
]
|
|
3261
|
+
|
|
3262
|
+
[[package]]
|
|
3263
|
+
name = "wasm-bindgen-futures"
|
|
3264
|
+
version = "0.4.55"
|
|
3265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3266
|
+
checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
|
|
3267
|
+
dependencies = [
|
|
3268
|
+
"cfg-if",
|
|
3269
|
+
"js-sys",
|
|
3270
|
+
"once_cell",
|
|
3271
|
+
"wasm-bindgen",
|
|
3272
|
+
"web-sys",
|
|
3273
|
+
]
|
|
3274
|
+
|
|
3275
|
+
[[package]]
|
|
3276
|
+
name = "wasm-bindgen-macro"
|
|
3277
|
+
version = "0.2.105"
|
|
3278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3279
|
+
checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
|
|
3280
|
+
dependencies = [
|
|
3281
|
+
"quote",
|
|
3282
|
+
"wasm-bindgen-macro-support",
|
|
3283
|
+
]
|
|
3284
|
+
|
|
3285
|
+
[[package]]
|
|
3286
|
+
name = "wasm-bindgen-macro-support"
|
|
3287
|
+
version = "0.2.105"
|
|
3288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3289
|
+
checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
|
|
3290
|
+
dependencies = [
|
|
3291
|
+
"bumpalo",
|
|
3292
|
+
"proc-macro2",
|
|
3293
|
+
"quote",
|
|
3294
|
+
"syn",
|
|
3295
|
+
"wasm-bindgen-shared",
|
|
3296
|
+
]
|
|
3297
|
+
|
|
3298
|
+
[[package]]
|
|
3299
|
+
name = "wasm-bindgen-shared"
|
|
3300
|
+
version = "0.2.105"
|
|
3301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3302
|
+
checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
|
|
3303
|
+
dependencies = [
|
|
3304
|
+
"unicode-ident",
|
|
3305
|
+
]
|
|
3306
|
+
|
|
3307
|
+
[[package]]
|
|
3308
|
+
name = "wasm-bindgen-test"
|
|
3309
|
+
version = "0.3.55"
|
|
3310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3311
|
+
checksum = "bfc379bfb624eb59050b509c13e77b4eb53150c350db69628141abce842f2373"
|
|
3312
|
+
dependencies = [
|
|
3313
|
+
"js-sys",
|
|
3314
|
+
"minicov",
|
|
3315
|
+
"wasm-bindgen",
|
|
3316
|
+
"wasm-bindgen-futures",
|
|
3317
|
+
"wasm-bindgen-test-macro",
|
|
3318
|
+
]
|
|
3319
|
+
|
|
3320
|
+
[[package]]
|
|
3321
|
+
name = "wasm-bindgen-test-macro"
|
|
3322
|
+
version = "0.3.55"
|
|
3323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3324
|
+
checksum = "085b2df989e1e6f9620c1311df6c996e83fe16f57792b272ce1e024ac16a90f1"
|
|
3325
|
+
dependencies = [
|
|
3326
|
+
"proc-macro2",
|
|
3327
|
+
"quote",
|
|
3328
|
+
"syn",
|
|
3329
|
+
]
|
|
3330
|
+
|
|
3331
|
+
[[package]]
|
|
3332
|
+
name = "wasm-streams"
|
|
3333
|
+
version = "0.4.2"
|
|
3334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3335
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
3336
|
+
dependencies = [
|
|
3337
|
+
"futures-util",
|
|
3338
|
+
"js-sys",
|
|
3339
|
+
"wasm-bindgen",
|
|
3340
|
+
"wasm-bindgen-futures",
|
|
3341
|
+
"web-sys",
|
|
3342
|
+
]
|
|
3343
|
+
|
|
3344
|
+
[[package]]
|
|
3345
|
+
name = "web-sys"
|
|
3346
|
+
version = "0.3.82"
|
|
3347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3348
|
+
checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
|
|
3349
|
+
dependencies = [
|
|
3350
|
+
"js-sys",
|
|
3351
|
+
"wasm-bindgen",
|
|
3352
|
+
]
|
|
3353
|
+
|
|
3354
|
+
[[package]]
|
|
3355
|
+
name = "web-time"
|
|
3356
|
+
version = "1.1.0"
|
|
3357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3358
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3359
|
+
dependencies = [
|
|
3360
|
+
"js-sys",
|
|
3361
|
+
"wasm-bindgen",
|
|
3362
|
+
]
|
|
3363
|
+
|
|
3364
|
+
[[package]]
|
|
3365
|
+
name = "winapi"
|
|
3366
|
+
version = "0.3.9"
|
|
3367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3368
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3369
|
+
dependencies = [
|
|
3370
|
+
"winapi-i686-pc-windows-gnu",
|
|
3371
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3372
|
+
]
|
|
3373
|
+
|
|
3374
|
+
[[package]]
|
|
3375
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3376
|
+
version = "0.4.0"
|
|
3377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3378
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3379
|
+
|
|
3380
|
+
[[package]]
|
|
3381
|
+
name = "winapi-util"
|
|
3382
|
+
version = "0.1.11"
|
|
3383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3384
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3385
|
+
dependencies = [
|
|
3386
|
+
"windows-sys 0.61.2",
|
|
3387
|
+
]
|
|
3388
|
+
|
|
3389
|
+
[[package]]
|
|
3390
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3391
|
+
version = "0.4.0"
|
|
3392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3393
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3394
|
+
|
|
3395
|
+
[[package]]
|
|
3396
|
+
name = "windows-core"
|
|
3397
|
+
version = "0.62.2"
|
|
3398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3399
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3400
|
+
dependencies = [
|
|
3401
|
+
"windows-implement",
|
|
3402
|
+
"windows-interface",
|
|
3403
|
+
"windows-link",
|
|
3404
|
+
"windows-result",
|
|
3405
|
+
"windows-strings",
|
|
3406
|
+
]
|
|
3407
|
+
|
|
3408
|
+
[[package]]
|
|
3409
|
+
name = "windows-implement"
|
|
3410
|
+
version = "0.60.2"
|
|
3411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3412
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
3413
|
+
dependencies = [
|
|
3414
|
+
"proc-macro2",
|
|
3415
|
+
"quote",
|
|
3416
|
+
"syn",
|
|
3417
|
+
]
|
|
3418
|
+
|
|
3419
|
+
[[package]]
|
|
3420
|
+
name = "windows-interface"
|
|
3421
|
+
version = "0.59.3"
|
|
3422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3423
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
3424
|
+
dependencies = [
|
|
3425
|
+
"proc-macro2",
|
|
3426
|
+
"quote",
|
|
3427
|
+
"syn",
|
|
3428
|
+
]
|
|
3429
|
+
|
|
3430
|
+
[[package]]
|
|
3431
|
+
name = "windows-link"
|
|
3432
|
+
version = "0.2.1"
|
|
3433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3434
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3435
|
+
|
|
3436
|
+
[[package]]
|
|
3437
|
+
name = "windows-result"
|
|
3438
|
+
version = "0.4.1"
|
|
3439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3440
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3441
|
+
dependencies = [
|
|
3442
|
+
"windows-link",
|
|
3443
|
+
]
|
|
3444
|
+
|
|
3445
|
+
[[package]]
|
|
3446
|
+
name = "windows-strings"
|
|
3447
|
+
version = "0.5.1"
|
|
3448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3449
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3450
|
+
dependencies = [
|
|
3451
|
+
"windows-link",
|
|
3452
|
+
]
|
|
3453
|
+
|
|
3454
|
+
[[package]]
|
|
3455
|
+
name = "windows-sys"
|
|
3456
|
+
version = "0.52.0"
|
|
3457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3458
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3459
|
+
dependencies = [
|
|
3460
|
+
"windows-targets 0.52.6",
|
|
3461
|
+
]
|
|
3462
|
+
|
|
3463
|
+
[[package]]
|
|
3464
|
+
name = "windows-sys"
|
|
3465
|
+
version = "0.59.0"
|
|
3466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3467
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3468
|
+
dependencies = [
|
|
3469
|
+
"windows-targets 0.52.6",
|
|
3470
|
+
]
|
|
3471
|
+
|
|
3472
|
+
[[package]]
|
|
3473
|
+
name = "windows-sys"
|
|
3474
|
+
version = "0.60.2"
|
|
3475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3476
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3477
|
+
dependencies = [
|
|
3478
|
+
"windows-targets 0.53.5",
|
|
3479
|
+
]
|
|
3480
|
+
|
|
3481
|
+
[[package]]
|
|
3482
|
+
name = "windows-sys"
|
|
3483
|
+
version = "0.61.2"
|
|
3484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3485
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3486
|
+
dependencies = [
|
|
3487
|
+
"windows-link",
|
|
3488
|
+
]
|
|
3489
|
+
|
|
3490
|
+
[[package]]
|
|
3491
|
+
name = "windows-targets"
|
|
3492
|
+
version = "0.52.6"
|
|
3493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3494
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3495
|
+
dependencies = [
|
|
3496
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3497
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3498
|
+
"windows_i686_gnu 0.52.6",
|
|
3499
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3500
|
+
"windows_i686_msvc 0.52.6",
|
|
3501
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3502
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3503
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3504
|
+
]
|
|
3505
|
+
|
|
3506
|
+
[[package]]
|
|
3507
|
+
name = "windows-targets"
|
|
3508
|
+
version = "0.53.5"
|
|
3509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3510
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3511
|
+
dependencies = [
|
|
3512
|
+
"windows-link",
|
|
3513
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3514
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3515
|
+
"windows_i686_gnu 0.53.1",
|
|
3516
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3517
|
+
"windows_i686_msvc 0.53.1",
|
|
3518
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3519
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3520
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3521
|
+
]
|
|
3522
|
+
|
|
3523
|
+
[[package]]
|
|
3524
|
+
name = "windows_aarch64_gnullvm"
|
|
3525
|
+
version = "0.52.6"
|
|
3526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3527
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3528
|
+
|
|
3529
|
+
[[package]]
|
|
3530
|
+
name = "windows_aarch64_gnullvm"
|
|
3531
|
+
version = "0.53.1"
|
|
3532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3533
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3534
|
+
|
|
3535
|
+
[[package]]
|
|
3536
|
+
name = "windows_aarch64_msvc"
|
|
3537
|
+
version = "0.52.6"
|
|
3538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3539
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3540
|
+
|
|
3541
|
+
[[package]]
|
|
3542
|
+
name = "windows_aarch64_msvc"
|
|
3543
|
+
version = "0.53.1"
|
|
3544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3545
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3546
|
+
|
|
3547
|
+
[[package]]
|
|
3548
|
+
name = "windows_i686_gnu"
|
|
3549
|
+
version = "0.52.6"
|
|
3550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3551
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3552
|
+
|
|
3553
|
+
[[package]]
|
|
3554
|
+
name = "windows_i686_gnu"
|
|
3555
|
+
version = "0.53.1"
|
|
3556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3557
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3558
|
+
|
|
3559
|
+
[[package]]
|
|
3560
|
+
name = "windows_i686_gnullvm"
|
|
3561
|
+
version = "0.52.6"
|
|
3562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3563
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3564
|
+
|
|
3565
|
+
[[package]]
|
|
3566
|
+
name = "windows_i686_gnullvm"
|
|
3567
|
+
version = "0.53.1"
|
|
3568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3569
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3570
|
+
|
|
3571
|
+
[[package]]
|
|
3572
|
+
name = "windows_i686_msvc"
|
|
3573
|
+
version = "0.52.6"
|
|
3574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3575
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3576
|
+
|
|
3577
|
+
[[package]]
|
|
3578
|
+
name = "windows_i686_msvc"
|
|
3579
|
+
version = "0.53.1"
|
|
3580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3581
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3582
|
+
|
|
3583
|
+
[[package]]
|
|
3584
|
+
name = "windows_x86_64_gnu"
|
|
3585
|
+
version = "0.52.6"
|
|
3586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3587
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3588
|
+
|
|
3589
|
+
[[package]]
|
|
3590
|
+
name = "windows_x86_64_gnu"
|
|
3591
|
+
version = "0.53.1"
|
|
3592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3593
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3594
|
+
|
|
3595
|
+
[[package]]
|
|
3596
|
+
name = "windows_x86_64_gnullvm"
|
|
3597
|
+
version = "0.52.6"
|
|
3598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3599
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3600
|
+
|
|
3601
|
+
[[package]]
|
|
3602
|
+
name = "windows_x86_64_gnullvm"
|
|
3603
|
+
version = "0.53.1"
|
|
3604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3605
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3606
|
+
|
|
3607
|
+
[[package]]
|
|
3608
|
+
name = "windows_x86_64_msvc"
|
|
3609
|
+
version = "0.52.6"
|
|
3610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3611
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3612
|
+
|
|
3613
|
+
[[package]]
|
|
3614
|
+
name = "windows_x86_64_msvc"
|
|
3615
|
+
version = "0.53.1"
|
|
3616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3617
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3618
|
+
|
|
3619
|
+
[[package]]
|
|
3620
|
+
name = "wit-bindgen"
|
|
3621
|
+
version = "0.46.0"
|
|
3622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3623
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
3624
|
+
|
|
3625
|
+
[[package]]
|
|
3626
|
+
name = "writeable"
|
|
3627
|
+
version = "0.6.2"
|
|
3628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3629
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
3630
|
+
|
|
3631
|
+
[[package]]
|
|
3632
|
+
name = "xxhash-rust"
|
|
3633
|
+
version = "0.8.15"
|
|
3634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3635
|
+
checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
3636
|
+
|
|
3637
|
+
[[package]]
|
|
3638
|
+
name = "yoke"
|
|
3639
|
+
version = "0.8.1"
|
|
3640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3641
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
3642
|
+
dependencies = [
|
|
3643
|
+
"stable_deref_trait",
|
|
3644
|
+
"yoke-derive",
|
|
3645
|
+
"zerofrom",
|
|
3646
|
+
]
|
|
3647
|
+
|
|
3648
|
+
[[package]]
|
|
3649
|
+
name = "yoke-derive"
|
|
3650
|
+
version = "0.8.1"
|
|
3651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3652
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
3653
|
+
dependencies = [
|
|
3654
|
+
"proc-macro2",
|
|
3655
|
+
"quote",
|
|
3656
|
+
"syn",
|
|
3657
|
+
"synstructure",
|
|
3658
|
+
]
|
|
3659
|
+
|
|
3660
|
+
[[package]]
|
|
3661
|
+
name = "zerocopy"
|
|
3662
|
+
version = "0.8.30"
|
|
3663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3664
|
+
checksum = "4ea879c944afe8a2b25fef16bb4ba234f47c694565e97383b36f3a878219065c"
|
|
3665
|
+
dependencies = [
|
|
3666
|
+
"zerocopy-derive",
|
|
3667
|
+
]
|
|
3668
|
+
|
|
3669
|
+
[[package]]
|
|
3670
|
+
name = "zerocopy-derive"
|
|
3671
|
+
version = "0.8.30"
|
|
3672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3673
|
+
checksum = "cf955aa904d6040f70dc8e9384444cb1030aed272ba3cb09bbc4ab9e7c1f34f5"
|
|
3674
|
+
dependencies = [
|
|
3675
|
+
"proc-macro2",
|
|
3676
|
+
"quote",
|
|
3677
|
+
"syn",
|
|
3678
|
+
]
|
|
3679
|
+
|
|
3680
|
+
[[package]]
|
|
3681
|
+
name = "zerofrom"
|
|
3682
|
+
version = "0.1.6"
|
|
3683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3684
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
3685
|
+
dependencies = [
|
|
3686
|
+
"zerofrom-derive",
|
|
3687
|
+
]
|
|
3688
|
+
|
|
3689
|
+
[[package]]
|
|
3690
|
+
name = "zerofrom-derive"
|
|
3691
|
+
version = "0.1.6"
|
|
3692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3693
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
3694
|
+
dependencies = [
|
|
3695
|
+
"proc-macro2",
|
|
3696
|
+
"quote",
|
|
3697
|
+
"syn",
|
|
3698
|
+
"synstructure",
|
|
3699
|
+
]
|
|
3700
|
+
|
|
3701
|
+
[[package]]
|
|
3702
|
+
name = "zeroize"
|
|
3703
|
+
version = "1.8.2"
|
|
3704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3705
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3706
|
+
|
|
3707
|
+
[[package]]
|
|
3708
|
+
name = "zerotrie"
|
|
3709
|
+
version = "0.2.3"
|
|
3710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3711
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
3712
|
+
dependencies = [
|
|
3713
|
+
"displaydoc",
|
|
3714
|
+
"yoke",
|
|
3715
|
+
"zerofrom",
|
|
3716
|
+
]
|
|
3717
|
+
|
|
3718
|
+
[[package]]
|
|
3719
|
+
name = "zerovec"
|
|
3720
|
+
version = "0.11.5"
|
|
3721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3722
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
3723
|
+
dependencies = [
|
|
3724
|
+
"yoke",
|
|
3725
|
+
"zerofrom",
|
|
3726
|
+
"zerovec-derive",
|
|
3727
|
+
]
|
|
3728
|
+
|
|
3729
|
+
[[package]]
|
|
3730
|
+
name = "zerovec-derive"
|
|
3731
|
+
version = "0.11.2"
|
|
3732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3733
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
3734
|
+
dependencies = [
|
|
3735
|
+
"proc-macro2",
|
|
3736
|
+
"quote",
|
|
3737
|
+
"syn",
|
|
3738
|
+
]
|
|
3739
|
+
|
|
3740
|
+
[[package]]
|
|
3741
|
+
name = "zstd"
|
|
3742
|
+
version = "0.13.3"
|
|
3743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3744
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
3745
|
+
dependencies = [
|
|
3746
|
+
"zstd-safe",
|
|
3747
|
+
]
|
|
3748
|
+
|
|
3749
|
+
[[package]]
|
|
3750
|
+
name = "zstd-safe"
|
|
3751
|
+
version = "7.2.1"
|
|
3752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3753
|
+
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
|
|
3754
|
+
dependencies = [
|
|
3755
|
+
"zstd-sys",
|
|
3756
|
+
]
|
|
3757
|
+
|
|
3758
|
+
[[package]]
|
|
3759
|
+
name = "zstd-sys"
|
|
3760
|
+
version = "2.0.12+zstd.1.5.6"
|
|
3761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3762
|
+
checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13"
|
|
3763
|
+
dependencies = [
|
|
3764
|
+
"cc",
|
|
3765
|
+
"pkg-config",
|
|
3766
|
+
]
|