ptwm 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ptwm-1.0.0/Cargo.lock +4138 -0
- ptwm-1.0.0/Cargo.toml +40 -0
- ptwm-1.0.0/LICENSE +21 -0
- ptwm-1.0.0/PKG-INFO +461 -0
- ptwm-1.0.0/README.md +421 -0
- ptwm-1.0.0/crates/ptwm-core/Cargo.toml +61 -0
- ptwm-1.0.0/crates/ptwm-core/build.rs +4 -0
- ptwm-1.0.0/crates/ptwm-core/data/bundled-keys.toml +3 -0
- ptwm-1.0.0/crates/ptwm-core/data/vendor_table.toml +19 -0
- ptwm-1.0.0/crates/ptwm-core/src/chain/dispatch.rs +285 -0
- ptwm-1.0.0/crates/ptwm-core/src/chain/graph.rs +74 -0
- ptwm-1.0.0/crates/ptwm-core/src/chain/mod.rs +9 -0
- ptwm-1.0.0/crates/ptwm-core/src/chain/runtime.rs +1365 -0
- ptwm-1.0.0/crates/ptwm-core/src/chain/validate.rs +512 -0
- ptwm-1.0.0/crates/ptwm-core/src/chain/wire.rs +738 -0
- ptwm-1.0.0/crates/ptwm-core/src/codec.rs +257 -0
- ptwm-1.0.0/crates/ptwm-core/src/codec_tagged.rs +353 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/arithmetic.rs +438 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/context_mixing.rs +144 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/fpc.rs +463 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/huff_llm.rs +309 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/huffman.rs +219 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/identity.rs +134 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/mod.rs +14 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/neural_predictor.rs +136 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/order1_arithmetic.rs +237 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/order1_scale_ac.rs +1288 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/per_group_codebook.rs +872 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/rans.rs +248 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/tans.rs +236 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/zstd.rs +179 -0
- ptwm-1.0.0/crates/ptwm-core/src/codecs/zstd_dict.rs +313 -0
- ptwm-1.0.0/crates/ptwm-core/src/compressor.rs +1689 -0
- ptwm-1.0.0/crates/ptwm-core/src/container.rs +2517 -0
- ptwm-1.0.0/crates/ptwm-core/src/delta.rs +280 -0
- ptwm-1.0.0/crates/ptwm-core/src/discovery/mod.rs +475 -0
- ptwm-1.0.0/crates/ptwm-core/src/dispatch.rs +193 -0
- ptwm-1.0.0/crates/ptwm-core/src/dtype.rs +300 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/arithmetic/mod.rs +14 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/arithmetic/model.rs +648 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/context_mixing/coder.rs +181 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/context_mixing/mixer.rs +116 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/context_mixing/mod.rs +10 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/context_mixing/model.rs +146 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/context_mixing/squash.rs +90 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/huff_llm/group_codec.rs +452 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/huff_llm/mod.rs +299 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/huffman/bitstream.rs +234 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/huffman/compress.rs +140 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/huffman/decompress.rs +211 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/huffman/mod.rs +299 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/huffman/tree.rs +348 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/huffman/weights.rs +173 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/mod.rs +101 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/neural_predictor/coder.rs +156 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/neural_predictor/mod.rs +9 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/neural_predictor/net.rs +245 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/outcome.rs +50 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/rans/compress.rs +292 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/rans/decompress.rs +166 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/rans/mod.rs +258 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/stream_frame.rs +116 -0
- ptwm-1.0.0/crates/ptwm-core/src/entropy/tans/mod.rs +581 -0
- ptwm-1.0.0/crates/ptwm-core/src/error.rs +273 -0
- ptwm-1.0.0/crates/ptwm-core/src/extension/builder.rs +76 -0
- ptwm-1.0.0/crates/ptwm-core/src/extension/builtins.rs +230 -0
- ptwm-1.0.0/crates/ptwm-core/src/extension/capability.rs +231 -0
- ptwm-1.0.0/crates/ptwm-core/src/extension/dispatch.rs +217 -0
- ptwm-1.0.0/crates/ptwm-core/src/extension/error.rs +36 -0
- ptwm-1.0.0/crates/ptwm-core/src/extension/id.rs +110 -0
- ptwm-1.0.0/crates/ptwm-core/src/extension/kind.rs +108 -0
- ptwm-1.0.0/crates/ptwm-core/src/extension/lifecycle.rs +61 -0
- ptwm-1.0.0/crates/ptwm-core/src/extension/manifest.rs +113 -0
- ptwm-1.0.0/crates/ptwm-core/src/extension/mod.rs +57 -0
- ptwm-1.0.0/crates/ptwm-core/src/extension/table.rs +427 -0
- ptwm-1.0.0/crates/ptwm-core/src/fit/mod.rs +182 -0
- ptwm-1.0.0/crates/ptwm-core/src/fit/order1.rs +522 -0
- ptwm-1.0.0/crates/ptwm-core/src/fit/per_group_codebook.rs +121 -0
- ptwm-1.0.0/crates/ptwm-core/src/flavor/abi.rs +352 -0
- ptwm-1.0.0/crates/ptwm-core/src/flavor/host.rs +49 -0
- ptwm-1.0.0/crates/ptwm-core/src/flavor/mod.rs +23 -0
- ptwm-1.0.0/crates/ptwm-core/src/flavor/native.rs +313 -0
- ptwm-1.0.0/crates/ptwm-core/src/flavor/router.rs +576 -0
- ptwm-1.0.0/crates/ptwm-core/src/flavor/third_party.rs +92 -0
- ptwm-1.0.0/crates/ptwm-core/src/flavor/wasm.rs +715 -0
- ptwm-1.0.0/crates/ptwm-core/src/header.rs +188 -0
- ptwm-1.0.0/crates/ptwm-core/src/index.rs +122 -0
- ptwm-1.0.0/crates/ptwm-core/src/install/git.rs +84 -0
- ptwm-1.0.0/crates/ptwm-core/src/install/https.rs +36 -0
- ptwm-1.0.0/crates/ptwm-core/src/install/local.rs +76 -0
- ptwm-1.0.0/crates/ptwm-core/src/install/mod.rs +163 -0
- ptwm-1.0.0/crates/ptwm-core/src/install/oci.rs +48 -0
- ptwm-1.0.0/crates/ptwm-core/src/install/pip.rs +176 -0
- ptwm-1.0.0/crates/ptwm-core/src/layout.rs +132 -0
- ptwm-1.0.0/crates/ptwm-core/src/lib.rs +159 -0
- ptwm-1.0.0/crates/ptwm-core/src/metadata.rs +256 -0
- ptwm-1.0.0/crates/ptwm-core/src/plane_record.rs +434 -0
- ptwm-1.0.0/crates/ptwm-core/src/policy/capability_check.rs +291 -0
- ptwm-1.0.0/crates/ptwm-core/src/policy/file.rs +109 -0
- ptwm-1.0.0/crates/ptwm-core/src/policy/mod.rs +19 -0
- ptwm-1.0.0/crates/ptwm-core/src/policy/native_deps.rs +487 -0
- ptwm-1.0.0/crates/ptwm-core/src/policy/resolve.rs +290 -0
- ptwm-1.0.0/crates/ptwm-core/src/prelude.rs +392 -0
- ptwm-1.0.0/crates/ptwm-core/src/quantize.rs +139 -0
- ptwm-1.0.0/crates/ptwm-core/src/range_coder.rs +285 -0
- ptwm-1.0.0/crates/ptwm-core/src/select.rs +125 -0
- ptwm-1.0.0/crates/ptwm-core/src/split/dtype16.rs +324 -0
- ptwm-1.0.0/crates/ptwm-core/src/split/dtype32.rs +279 -0
- ptwm-1.0.0/crates/ptwm-core/src/split/dtype64.rs +168 -0
- ptwm-1.0.0/crates/ptwm-core/src/split/dtype8.rs +399 -0
- ptwm-1.0.0/crates/ptwm-core/src/split/mod.rs +54 -0
- ptwm-1.0.0/crates/ptwm-core/src/tensor_record.rs +589 -0
- ptwm-1.0.0/crates/ptwm-core/src/transcode/base64.rs +115 -0
- ptwm-1.0.0/crates/ptwm-core/src/transcode/jcs.rs +116 -0
- ptwm-1.0.0/crates/ptwm-core/src/transcode/manifest.rs +198 -0
- ptwm-1.0.0/crates/ptwm-core/src/transcode/mod.rs +746 -0
- ptwm-1.0.0/crates/ptwm-core/src/transcode/tests.rs +288 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/alpha_stable_normalize.rs +554 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/bit_reorder_fp8.rs +317 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/bit_reorder_ieee.rs +371 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/block_microscaling_repack.rs +362 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/burrows_wheeler.rs +502 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/byte_passthrough.rs +115 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/byte_split.rs +314 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/concat.rs +281 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/delta.rs +532 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/entropy.rs +174 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/fusion.rs +751 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/index_pack.rs +267 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/int_delta.rs +423 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/mantissa_zero.rs +338 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/mod.rs +50 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/move_to_front.rs +262 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/mxfp4_deinterleave.rs +339 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/nibble_split.rs +310 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/op.rs +271 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/predictor_xor.rs +434 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/reshape.rs +184 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/source.rs +293 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/spherical_normalize.rs +743 -0
- ptwm-1.0.0/crates/ptwm-core/src/transforms/terminal.rs +115 -0
- ptwm-1.0.0/crates/ptwm-core/src/trust/bundled.rs +250 -0
- ptwm-1.0.0/crates/ptwm-core/src/trust/keyring.rs +171 -0
- ptwm-1.0.0/crates/ptwm-core/src/trust/mod.rs +23 -0
- ptwm-1.0.0/crates/ptwm-core/src/trust/org.rs +220 -0
- ptwm-1.0.0/crates/ptwm-core/src/trust/signature.rs +128 -0
- ptwm-1.0.0/crates/ptwm-core/src/trust/verifier.rs +240 -0
- ptwm-1.0.0/crates/ptwm-core/src/types/descriptor.rs +401 -0
- ptwm-1.0.0/crates/ptwm-core/src/types/mod.rs +9 -0
- ptwm-1.0.0/crates/ptwm-core/src/types/plane_role.rs +53 -0
- ptwm-1.0.0/crates/ptwm-core/src/types/role.rs +475 -0
- ptwm-1.0.0/crates/ptwm-py/Cargo.toml +23 -0
- ptwm-1.0.0/crates/ptwm-py/src/ext.rs +98 -0
- ptwm-1.0.0/crates/ptwm-py/src/host_flavor.rs +138 -0
- ptwm-1.0.0/crates/ptwm-py/src/inspect.rs +72 -0
- ptwm-1.0.0/crates/ptwm-py/src/lib.rs +942 -0
- ptwm-1.0.0/crates/ptwm-py/src/policy.rs +96 -0
- ptwm-1.0.0/crates/ptwm-py/src/trust.rs +296 -0
- ptwm-1.0.0/pyproject.toml +310 -0
- ptwm-1.0.0/python/ptwm/__init__.py +52 -0
- ptwm-1.0.0/python/ptwm/_config.py +162 -0
- ptwm-1.0.0/python/ptwm/_exceptions.py +26 -0
- ptwm-1.0.0/python/ptwm/_loader.py +48 -0
- ptwm-1.0.0/python/ptwm/_rust/__init__.py +313 -0
- ptwm-1.0.0/python/ptwm/_rust/_errors.py +38 -0
- ptwm-1.0.0/python/ptwm/_rust/ext.py +19 -0
- ptwm-1.0.0/python/ptwm/_rust/host.py +7 -0
- ptwm-1.0.0/python/ptwm/_rust/policy.py +7 -0
- ptwm-1.0.0/python/ptwm/_rust/trust.py +37 -0
- ptwm-1.0.0/python/ptwm/ablation/__init__.py +34 -0
- ptwm-1.0.0/python/ptwm/ablation/_attribute.py +192 -0
- ptwm-1.0.0/python/ptwm/ablation/_bench.py +171 -0
- ptwm-1.0.0/python/ptwm/ablation/_compare.py +55 -0
- ptwm-1.0.0/python/ptwm/ablation/_replay.py +85 -0
- ptwm-1.0.0/python/ptwm/ablation/_resolve.py +71 -0
- ptwm-1.0.0/python/ptwm/classify/__init__.py +24 -0
- ptwm-1.0.0/python/ptwm/classify/_audit.py +143 -0
- ptwm-1.0.0/python/ptwm/classify/_chain.py +32 -0
- ptwm-1.0.0/python/ptwm/classify/_flags.py +50 -0
- ptwm-1.0.0/python/ptwm/classify/_heuristic.py +63 -0
- ptwm-1.0.0/python/ptwm/classify/_hf_quant.py +91 -0
- ptwm-1.0.0/python/ptwm/classify/_protocol.py +24 -0
- ptwm-1.0.0/python/ptwm/classify/_ptwm_config.py +53 -0
- ptwm-1.0.0/python/ptwm/classify/_role.py +26 -0
- ptwm-1.0.0/python/ptwm/cli/README.md +81 -0
- ptwm-1.0.0/python/ptwm/cli/__init__.py +2 -0
- ptwm-1.0.0/python/ptwm/cli/bench.py +156 -0
- ptwm-1.0.0/python/ptwm/cli/chains.py +550 -0
- ptwm-1.0.0/python/ptwm/cli/compress.py +1185 -0
- ptwm-1.0.0/python/ptwm/cli/decompress.py +466 -0
- ptwm-1.0.0/python/ptwm/cli/ext.py +298 -0
- ptwm-1.0.0/python/ptwm/cli/main.py +39 -0
- ptwm-1.0.0/python/ptwm/cli/policy.py +56 -0
- ptwm-1.0.0/python/ptwm/cli/trust.py +188 -0
- ptwm-1.0.0/python/ptwm/cli/utils.py +64 -0
- ptwm-1.0.0/python/ptwm/codecs/__init__.py +205 -0
- ptwm-1.0.0/python/ptwm/core/__init__.py +9 -0
- ptwm-1.0.0/python/ptwm/core/_compressor.py +202 -0
- ptwm-1.0.0/python/ptwm/core/_decompressor.py +158 -0
- ptwm-1.0.0/python/ptwm/delta/__init__.py +88 -0
- ptwm-1.0.0/python/ptwm/entropy/__init__.py +98 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/__init__.py +0 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/_templates/assemblyscript/manifest.toml +14 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/_templates/assemblyscript/package.json +11 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/_templates/assemblyscript/src/index.ts +28 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/_templates/c/Makefile +14 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/_templates/c/manifest.toml +14 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/_templates/c/src/lib.c +37 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/_templates/rust/Cargo.toml +11 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/_templates/rust/manifest.toml +14 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/_templates/rust/src/lib.rs +44 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/_templates/zig/build.zig +19 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/_templates/zig/manifest.toml +14 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/_templates/zig/src/main.zig +30 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/build.py +145 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/init.py +58 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/pack.py +57 -0
- ptwm-1.0.0/python/ptwm/ext_tooling/sign.py +118 -0
- ptwm-1.0.0/python/ptwm/integrations/__init__.py +14 -0
- ptwm-1.0.0/python/ptwm/integrations/_compress_safetensors.py +401 -0
- ptwm-1.0.0/python/ptwm/integrations/_hf.py +302 -0
- ptwm-1.0.0/python/ptwm/integrations/_safetensors.py +163 -0
- ptwm-1.0.0/python/ptwm/preprocessing/__init__.py +73 -0
- ptwm-1.0.0/python/ptwm/preprocessing/_cache.py +188 -0
- ptwm-1.0.0/python/ptwm/preprocessing/_chains.py +1077 -0
- ptwm-1.0.0/python/ptwm/preprocessing/_explorer.py +410 -0
- ptwm-1.0.0/python/ptwm/preprocessing/_plane.py +26 -0
- ptwm-1.0.0/python/ptwm/random_access/__init__.py +132 -0
- ptwm-1.0.0/python/ptwm/sharding/__init__.py +15 -0
- ptwm-1.0.0/python/ptwm/sharding/_index.py +45 -0
- ptwm-1.0.0/python/ptwm/sharding/_reader.py +64 -0
- ptwm-1.0.0/python/ptwm/sharding/_sharder.py +42 -0
- ptwm-1.0.0/python/ptwm/sharding/_writer.py +100 -0
- ptwm-1.0.0/python/ptwm/stores/__init__.py +100 -0
- ptwm-1.0.0/python/ptwm/stores/_common.py +204 -0
- ptwm-1.0.0/python/ptwm/stores/_lmdb.py +415 -0
- ptwm-1.0.0/python/ptwm/stores/_webdataset.py +330 -0
- ptwm-1.0.0/python/ptwm/utils/__init__.py +34 -0
- ptwm-1.0.0/python/ptwm/utils/_decode.py +93 -0
- ptwm-1.0.0/python/ptwm/utils/_patch.py +37 -0
- ptwm-1.0.0/python/ptwm/utils/_safetensors.py +53 -0
- ptwm-1.0.0/python/ptwm/utils/_torch.py +240 -0
ptwm-1.0.0/Cargo.lock
ADDED
|
@@ -0,0 +1,4138 @@
|
|
|
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.24.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
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
|
+
"once_cell",
|
|
28
|
+
"version_check",
|
|
29
|
+
"zerocopy",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "aho-corasick"
|
|
34
|
+
version = "1.1.3"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"memchr",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "ambient-authority"
|
|
43
|
+
version = "0.0.2"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "e9d4ee0d472d1cd2e28c97dfa124b3d8d992e10eb0a035f33f5d12e3a177ba3b"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "android-tzdata"
|
|
49
|
+
version = "0.1.1"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "android_system_properties"
|
|
55
|
+
version = "0.1.5"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
58
|
+
dependencies = [
|
|
59
|
+
"libc",
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "anyhow"
|
|
64
|
+
version = "1.0.98"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "arbitrary"
|
|
70
|
+
version = "1.4.1"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "arrayref"
|
|
76
|
+
version = "0.3.9"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
79
|
+
|
|
80
|
+
[[package]]
|
|
81
|
+
name = "arrayvec"
|
|
82
|
+
version = "0.7.6"
|
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "async-trait"
|
|
88
|
+
version = "0.1.88"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
|
|
91
|
+
dependencies = [
|
|
92
|
+
"proc-macro2",
|
|
93
|
+
"quote",
|
|
94
|
+
"syn",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "autocfg"
|
|
99
|
+
version = "1.5.0"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "backtrace"
|
|
105
|
+
version = "0.3.75"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"addr2line",
|
|
110
|
+
"cfg-if",
|
|
111
|
+
"libc",
|
|
112
|
+
"miniz_oxide",
|
|
113
|
+
"object",
|
|
114
|
+
"rustc-demangle",
|
|
115
|
+
"windows-targets",
|
|
116
|
+
]
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "base64"
|
|
120
|
+
version = "0.13.1"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "base64"
|
|
126
|
+
version = "0.21.7"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "base64"
|
|
132
|
+
version = "0.22.1"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "base64ct"
|
|
138
|
+
version = "1.8.0"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "bitflags"
|
|
144
|
+
version = "2.9.1"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "blake3"
|
|
150
|
+
version = "1.8.2"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"arrayref",
|
|
155
|
+
"arrayvec",
|
|
156
|
+
"cc",
|
|
157
|
+
"cfg-if",
|
|
158
|
+
"constant_time_eq",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "block-buffer"
|
|
163
|
+
version = "0.10.4"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"generic-array",
|
|
168
|
+
]
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "bumpalo"
|
|
172
|
+
version = "3.19.0"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "byteorder"
|
|
178
|
+
version = "1.5.0"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "bytes"
|
|
184
|
+
version = "1.10.1"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "cap-fs-ext"
|
|
190
|
+
version = "3.4.4"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "e41cc18551193fe8fa6f15c1e3c799bc5ec9e2cfbfaa8ed46f37013e3e6c173c"
|
|
193
|
+
dependencies = [
|
|
194
|
+
"cap-primitives",
|
|
195
|
+
"cap-std",
|
|
196
|
+
"io-lifetimes",
|
|
197
|
+
"windows-sys 0.59.0",
|
|
198
|
+
]
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "cap-net-ext"
|
|
202
|
+
version = "3.4.4"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "9f83833816c66c986e913b22ac887cec216ea09301802054316fc5301809702c"
|
|
205
|
+
dependencies = [
|
|
206
|
+
"cap-primitives",
|
|
207
|
+
"cap-std",
|
|
208
|
+
"rustix 1.0.8",
|
|
209
|
+
"smallvec",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "cap-primitives"
|
|
214
|
+
version = "3.4.4"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "0a1e394ed14f39f8bc26f59d4c0c010dbe7f0a1b9bafff451b1f98b67c8af62a"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"ambient-authority",
|
|
219
|
+
"fs-set-times",
|
|
220
|
+
"io-extras",
|
|
221
|
+
"io-lifetimes",
|
|
222
|
+
"ipnet",
|
|
223
|
+
"maybe-owned",
|
|
224
|
+
"rustix 1.0.8",
|
|
225
|
+
"rustix-linux-procfs",
|
|
226
|
+
"windows-sys 0.59.0",
|
|
227
|
+
"winx",
|
|
228
|
+
]
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "cap-rand"
|
|
232
|
+
version = "3.4.4"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "0acb89ccf798a28683f00089d0630dfaceec087234eae0d308c05ddeaa941b40"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"ambient-authority",
|
|
237
|
+
"rand 0.8.5",
|
|
238
|
+
]
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "cap-std"
|
|
242
|
+
version = "3.4.4"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "07c0355ca583dd58f176c3c12489d684163861ede3c9efa6fd8bba314c984189"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"cap-primitives",
|
|
247
|
+
"io-extras",
|
|
248
|
+
"io-lifetimes",
|
|
249
|
+
"rustix 1.0.8",
|
|
250
|
+
]
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "cap-time-ext"
|
|
254
|
+
version = "3.4.4"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "491af520b8770085daa0466978c75db90368c71896523f2464214e38359b1a5b"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"ambient-authority",
|
|
259
|
+
"cap-primitives",
|
|
260
|
+
"iana-time-zone",
|
|
261
|
+
"once_cell",
|
|
262
|
+
"rustix 1.0.8",
|
|
263
|
+
"winx",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "cc"
|
|
268
|
+
version = "1.2.31"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "c3a42d84bb6b69d3a8b3eaacf0d88f179e1929695e1ad012b6cf64d9caaa5fd2"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"jobserver",
|
|
273
|
+
"libc",
|
|
274
|
+
"shlex",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "cfg-if"
|
|
279
|
+
version = "1.0.1"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "cfg_aliases"
|
|
285
|
+
version = "0.2.1"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "chrono"
|
|
291
|
+
version = "0.4.41"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"android-tzdata",
|
|
296
|
+
"iana-time-zone",
|
|
297
|
+
"js-sys",
|
|
298
|
+
"num-traits",
|
|
299
|
+
"serde",
|
|
300
|
+
"wasm-bindgen",
|
|
301
|
+
"windows-link",
|
|
302
|
+
]
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "ciborium"
|
|
306
|
+
version = "0.2.2"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"ciborium-io",
|
|
311
|
+
"ciborium-ll",
|
|
312
|
+
"serde",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "ciborium-io"
|
|
317
|
+
version = "0.2.2"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "ciborium-ll"
|
|
323
|
+
version = "0.2.2"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
326
|
+
dependencies = [
|
|
327
|
+
"ciborium-io",
|
|
328
|
+
"half",
|
|
329
|
+
]
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "cobs"
|
|
333
|
+
version = "0.3.0"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
336
|
+
dependencies = [
|
|
337
|
+
"thiserror 2.0.12",
|
|
338
|
+
]
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "const-oid"
|
|
342
|
+
version = "0.9.6"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "constant_time_eq"
|
|
348
|
+
version = "0.3.1"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "core-foundation-sys"
|
|
354
|
+
version = "0.8.7"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "cpp_demangle"
|
|
360
|
+
version = "0.4.4"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "96e58d342ad113c2b878f16d5d034c03be492ae460cdbc02b7f0f2284d310c7d"
|
|
363
|
+
dependencies = [
|
|
364
|
+
"cfg-if",
|
|
365
|
+
]
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "cpufeatures"
|
|
369
|
+
version = "0.2.17"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
372
|
+
dependencies = [
|
|
373
|
+
"libc",
|
|
374
|
+
]
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "cranelift-bforest"
|
|
378
|
+
version = "0.113.1"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "540b193ff98b825a1f250a75b3118911af918a734154c69d80bcfcf91e7e9522"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"cranelift-entity",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "cranelift-bitset"
|
|
387
|
+
version = "0.113.1"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "c7cb269598b9557ab942d687d3c1086d77c4b50dcf35813f3a65ba306fd42279"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"serde",
|
|
392
|
+
"serde_derive",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "cranelift-codegen"
|
|
397
|
+
version = "0.113.1"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "46566d7c83a8bff4150748d66020f4c7224091952aa4b4df1ec4959c39d937a1"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"bumpalo",
|
|
402
|
+
"cranelift-bforest",
|
|
403
|
+
"cranelift-bitset",
|
|
404
|
+
"cranelift-codegen-meta",
|
|
405
|
+
"cranelift-codegen-shared",
|
|
406
|
+
"cranelift-control",
|
|
407
|
+
"cranelift-entity",
|
|
408
|
+
"cranelift-isle",
|
|
409
|
+
"gimli",
|
|
410
|
+
"hashbrown 0.14.5",
|
|
411
|
+
"log",
|
|
412
|
+
"regalloc2",
|
|
413
|
+
"rustc-hash",
|
|
414
|
+
"smallvec",
|
|
415
|
+
"target-lexicon 0.12.16",
|
|
416
|
+
]
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "cranelift-codegen-meta"
|
|
420
|
+
version = "0.113.1"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "2df8a86a34236cc75a8a6a271973da779c2aeb36c43b6e14da474cf931317082"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"cranelift-codegen-shared",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "cranelift-codegen-shared"
|
|
429
|
+
version = "0.113.1"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "cf75340b6a57b7c7c1b74f10d3d90883ee6d43a554be8131a4046c2ebcf5eb65"
|
|
432
|
+
|
|
433
|
+
[[package]]
|
|
434
|
+
name = "cranelift-control"
|
|
435
|
+
version = "0.113.1"
|
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
+
checksum = "2e84495bc5d23d86aad8c86f8ade4af765b94882af60d60e271d3153942f1978"
|
|
438
|
+
dependencies = [
|
|
439
|
+
"arbitrary",
|
|
440
|
+
]
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "cranelift-entity"
|
|
444
|
+
version = "0.113.1"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "963c17147b80df351965e57c04d20dbedc85bcaf44c3436780a59a3f1ff1b1c2"
|
|
447
|
+
dependencies = [
|
|
448
|
+
"cranelift-bitset",
|
|
449
|
+
"serde",
|
|
450
|
+
"serde_derive",
|
|
451
|
+
]
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "cranelift-frontend"
|
|
455
|
+
version = "0.113.1"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "727f02acbc4b4cb2ba38a6637101d579db50190df1dd05168c68e762851a3dd5"
|
|
458
|
+
dependencies = [
|
|
459
|
+
"cranelift-codegen",
|
|
460
|
+
"log",
|
|
461
|
+
"smallvec",
|
|
462
|
+
"target-lexicon 0.12.16",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "cranelift-isle"
|
|
467
|
+
version = "0.113.1"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "32b00cc2e03c748f2531eea01c871f502b909d30295fdcad43aec7bf5c5b4667"
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "cranelift-native"
|
|
473
|
+
version = "0.113.1"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "bbeaf978dc7c1a2de8bbb9162510ed218eb156697bc45590b8fbdd69bb08e8de"
|
|
476
|
+
dependencies = [
|
|
477
|
+
"cranelift-codegen",
|
|
478
|
+
"libc",
|
|
479
|
+
"target-lexicon 0.12.16",
|
|
480
|
+
]
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "crc32fast"
|
|
484
|
+
version = "1.5.0"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
487
|
+
dependencies = [
|
|
488
|
+
"cfg-if",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "crossbeam-deque"
|
|
493
|
+
version = "0.8.6"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"crossbeam-epoch",
|
|
498
|
+
"crossbeam-utils",
|
|
499
|
+
]
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "crossbeam-epoch"
|
|
503
|
+
version = "0.9.18"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"crossbeam-utils",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "crossbeam-utils"
|
|
512
|
+
version = "0.8.21"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "crunchy"
|
|
518
|
+
version = "0.2.4"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "crypto-common"
|
|
524
|
+
version = "0.1.6"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"generic-array",
|
|
529
|
+
"typenum",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "curve25519-dalek"
|
|
534
|
+
version = "4.1.3"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"cfg-if",
|
|
539
|
+
"cpufeatures",
|
|
540
|
+
"curve25519-dalek-derive",
|
|
541
|
+
"digest",
|
|
542
|
+
"fiat-crypto",
|
|
543
|
+
"rustc_version",
|
|
544
|
+
"subtle",
|
|
545
|
+
"zeroize",
|
|
546
|
+
]
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "curve25519-dalek-derive"
|
|
550
|
+
version = "0.1.1"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
|
553
|
+
dependencies = [
|
|
554
|
+
"proc-macro2",
|
|
555
|
+
"quote",
|
|
556
|
+
"syn",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "darling"
|
|
561
|
+
version = "0.20.11"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"darling_core",
|
|
566
|
+
"darling_macro",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "darling_core"
|
|
571
|
+
version = "0.20.11"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
574
|
+
dependencies = [
|
|
575
|
+
"fnv",
|
|
576
|
+
"ident_case",
|
|
577
|
+
"proc-macro2",
|
|
578
|
+
"quote",
|
|
579
|
+
"strsim",
|
|
580
|
+
"syn",
|
|
581
|
+
]
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "darling_macro"
|
|
585
|
+
version = "0.20.11"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
588
|
+
dependencies = [
|
|
589
|
+
"darling_core",
|
|
590
|
+
"quote",
|
|
591
|
+
"syn",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "debugid"
|
|
596
|
+
version = "0.8.0"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
|
|
599
|
+
dependencies = [
|
|
600
|
+
"uuid",
|
|
601
|
+
]
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "der"
|
|
605
|
+
version = "0.7.10"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"const-oid",
|
|
610
|
+
"zeroize",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "deranged"
|
|
615
|
+
version = "0.4.0"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"powerfmt",
|
|
620
|
+
"serde",
|
|
621
|
+
]
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "derive_builder"
|
|
625
|
+
version = "0.20.2"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
|
628
|
+
dependencies = [
|
|
629
|
+
"derive_builder_macro",
|
|
630
|
+
]
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "derive_builder_core"
|
|
634
|
+
version = "0.20.2"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
637
|
+
dependencies = [
|
|
638
|
+
"darling",
|
|
639
|
+
"proc-macro2",
|
|
640
|
+
"quote",
|
|
641
|
+
"syn",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "derive_builder_macro"
|
|
646
|
+
version = "0.20.2"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"derive_builder_core",
|
|
651
|
+
"syn",
|
|
652
|
+
]
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "digest"
|
|
656
|
+
version = "0.10.7"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
659
|
+
dependencies = [
|
|
660
|
+
"block-buffer",
|
|
661
|
+
"crypto-common",
|
|
662
|
+
"subtle",
|
|
663
|
+
]
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "directories-next"
|
|
667
|
+
version = "2.0.0"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
|
|
670
|
+
dependencies = [
|
|
671
|
+
"cfg-if",
|
|
672
|
+
"dirs-sys-next",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "dirs"
|
|
677
|
+
version = "4.0.0"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
|
|
680
|
+
dependencies = [
|
|
681
|
+
"dirs-sys",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "dirs-sys"
|
|
686
|
+
version = "0.3.7"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"libc",
|
|
691
|
+
"redox_users",
|
|
692
|
+
"winapi",
|
|
693
|
+
]
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "dirs-sys-next"
|
|
697
|
+
version = "0.1.2"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
|
|
700
|
+
dependencies = [
|
|
701
|
+
"libc",
|
|
702
|
+
"redox_users",
|
|
703
|
+
"winapi",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "displaydoc"
|
|
708
|
+
version = "0.2.5"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"proc-macro2",
|
|
713
|
+
"quote",
|
|
714
|
+
"syn",
|
|
715
|
+
]
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "dyn-clone"
|
|
719
|
+
version = "1.0.20"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "ed25519"
|
|
725
|
+
version = "2.2.3"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
|
728
|
+
dependencies = [
|
|
729
|
+
"pkcs8",
|
|
730
|
+
"signature",
|
|
731
|
+
]
|
|
732
|
+
|
|
733
|
+
[[package]]
|
|
734
|
+
name = "ed25519-dalek"
|
|
735
|
+
version = "2.2.0"
|
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
+
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
|
738
|
+
dependencies = [
|
|
739
|
+
"curve25519-dalek",
|
|
740
|
+
"ed25519",
|
|
741
|
+
"rand_core 0.6.4",
|
|
742
|
+
"serde",
|
|
743
|
+
"sha2",
|
|
744
|
+
"subtle",
|
|
745
|
+
"zeroize",
|
|
746
|
+
]
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "either"
|
|
750
|
+
version = "1.15.0"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
753
|
+
|
|
754
|
+
[[package]]
|
|
755
|
+
name = "embedded-io"
|
|
756
|
+
version = "0.4.0"
|
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
+
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "embedded-io"
|
|
762
|
+
version = "0.6.1"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "encoding_rs"
|
|
768
|
+
version = "0.8.35"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"cfg-if",
|
|
773
|
+
]
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "equivalent"
|
|
777
|
+
version = "1.0.2"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "errno"
|
|
783
|
+
version = "0.3.13"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
|
786
|
+
dependencies = [
|
|
787
|
+
"libc",
|
|
788
|
+
"windows-sys 0.59.0",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "fallible-iterator"
|
|
793
|
+
version = "0.3.0"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "fastrand"
|
|
799
|
+
version = "2.3.0"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "fd-lock"
|
|
805
|
+
version = "4.0.4"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
|
|
808
|
+
dependencies = [
|
|
809
|
+
"cfg-if",
|
|
810
|
+
"rustix 1.0.8",
|
|
811
|
+
"windows-sys 0.59.0",
|
|
812
|
+
]
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "fiat-crypto"
|
|
816
|
+
version = "0.2.9"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "filetime"
|
|
822
|
+
version = "0.2.25"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"cfg-if",
|
|
827
|
+
"libc",
|
|
828
|
+
"libredox",
|
|
829
|
+
"windows-sys 0.59.0",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "flate2"
|
|
834
|
+
version = "1.1.2"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
|
837
|
+
dependencies = [
|
|
838
|
+
"crc32fast",
|
|
839
|
+
"miniz_oxide",
|
|
840
|
+
]
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "fnv"
|
|
844
|
+
version = "1.0.7"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "foldhash"
|
|
850
|
+
version = "0.1.5"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "form_urlencoded"
|
|
856
|
+
version = "1.2.1"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
859
|
+
dependencies = [
|
|
860
|
+
"percent-encoding",
|
|
861
|
+
]
|
|
862
|
+
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "fs-set-times"
|
|
865
|
+
version = "0.20.3"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "94e7099f6313ecacbe1256e8ff9d617b75d1bcb16a6fddef94866d225a01a14a"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"io-lifetimes",
|
|
870
|
+
"rustix 1.0.8",
|
|
871
|
+
"windows-sys 0.59.0",
|
|
872
|
+
]
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "fs_extra"
|
|
876
|
+
version = "1.3.0"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "futures"
|
|
882
|
+
version = "0.3.31"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
885
|
+
dependencies = [
|
|
886
|
+
"futures-channel",
|
|
887
|
+
"futures-core",
|
|
888
|
+
"futures-io",
|
|
889
|
+
"futures-sink",
|
|
890
|
+
"futures-task",
|
|
891
|
+
"futures-util",
|
|
892
|
+
]
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "futures-channel"
|
|
896
|
+
version = "0.3.31"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
899
|
+
dependencies = [
|
|
900
|
+
"futures-core",
|
|
901
|
+
"futures-sink",
|
|
902
|
+
]
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "futures-core"
|
|
906
|
+
version = "0.3.31"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "futures-io"
|
|
912
|
+
version = "0.3.31"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
915
|
+
|
|
916
|
+
[[package]]
|
|
917
|
+
name = "futures-macro"
|
|
918
|
+
version = "0.3.31"
|
|
919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
921
|
+
dependencies = [
|
|
922
|
+
"proc-macro2",
|
|
923
|
+
"quote",
|
|
924
|
+
"syn",
|
|
925
|
+
]
|
|
926
|
+
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "futures-sink"
|
|
929
|
+
version = "0.3.31"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "futures-task"
|
|
935
|
+
version = "0.3.31"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "futures-util"
|
|
941
|
+
version = "0.3.31"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
944
|
+
dependencies = [
|
|
945
|
+
"futures-core",
|
|
946
|
+
"futures-io",
|
|
947
|
+
"futures-macro",
|
|
948
|
+
"futures-sink",
|
|
949
|
+
"futures-task",
|
|
950
|
+
"memchr",
|
|
951
|
+
"pin-project-lite",
|
|
952
|
+
"pin-utils",
|
|
953
|
+
"slab",
|
|
954
|
+
]
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "fxhash"
|
|
958
|
+
version = "0.2.1"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
|
961
|
+
dependencies = [
|
|
962
|
+
"byteorder",
|
|
963
|
+
]
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "fxprof-processed-profile"
|
|
967
|
+
version = "0.6.0"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "27d12c0aed7f1e24276a241aadc4cb8ea9f83000f34bc062b7cc2d51e3b0fabd"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"bitflags",
|
|
972
|
+
"debugid",
|
|
973
|
+
"fxhash",
|
|
974
|
+
"serde",
|
|
975
|
+
"serde_json",
|
|
976
|
+
]
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "generic-array"
|
|
980
|
+
version = "0.14.7"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
983
|
+
dependencies = [
|
|
984
|
+
"typenum",
|
|
985
|
+
"version_check",
|
|
986
|
+
]
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "getrandom"
|
|
990
|
+
version = "0.2.16"
|
|
991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
992
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
993
|
+
dependencies = [
|
|
994
|
+
"cfg-if",
|
|
995
|
+
"js-sys",
|
|
996
|
+
"libc",
|
|
997
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
998
|
+
"wasm-bindgen",
|
|
999
|
+
]
|
|
1000
|
+
|
|
1001
|
+
[[package]]
|
|
1002
|
+
name = "getrandom"
|
|
1003
|
+
version = "0.3.3"
|
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
1006
|
+
dependencies = [
|
|
1007
|
+
"cfg-if",
|
|
1008
|
+
"js-sys",
|
|
1009
|
+
"libc",
|
|
1010
|
+
"r-efi",
|
|
1011
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
1012
|
+
"wasm-bindgen",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "getset"
|
|
1017
|
+
version = "0.1.6"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912"
|
|
1020
|
+
dependencies = [
|
|
1021
|
+
"proc-macro-error2",
|
|
1022
|
+
"proc-macro2",
|
|
1023
|
+
"quote",
|
|
1024
|
+
"syn",
|
|
1025
|
+
]
|
|
1026
|
+
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "gimli"
|
|
1029
|
+
version = "0.31.1"
|
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
+
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
1032
|
+
dependencies = [
|
|
1033
|
+
"fallible-iterator",
|
|
1034
|
+
"indexmap 2.10.0",
|
|
1035
|
+
"stable_deref_trait",
|
|
1036
|
+
]
|
|
1037
|
+
|
|
1038
|
+
[[package]]
|
|
1039
|
+
name = "git2"
|
|
1040
|
+
version = "0.19.0"
|
|
1041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
|
+
checksum = "b903b73e45dc0c6c596f2d37eccece7c1c8bb6e4407b001096387c63d0d93724"
|
|
1043
|
+
dependencies = [
|
|
1044
|
+
"bitflags",
|
|
1045
|
+
"libc",
|
|
1046
|
+
"libgit2-sys",
|
|
1047
|
+
"log",
|
|
1048
|
+
"openssl-probe",
|
|
1049
|
+
"openssl-sys",
|
|
1050
|
+
"url",
|
|
1051
|
+
]
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "half"
|
|
1055
|
+
version = "2.6.0"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
|
1058
|
+
dependencies = [
|
|
1059
|
+
"cfg-if",
|
|
1060
|
+
"crunchy",
|
|
1061
|
+
]
|
|
1062
|
+
|
|
1063
|
+
[[package]]
|
|
1064
|
+
name = "hashbrown"
|
|
1065
|
+
version = "0.12.3"
|
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "hashbrown"
|
|
1071
|
+
version = "0.14.5"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1074
|
+
dependencies = [
|
|
1075
|
+
"ahash",
|
|
1076
|
+
"serde",
|
|
1077
|
+
]
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "hashbrown"
|
|
1081
|
+
version = "0.15.4"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"foldhash",
|
|
1086
|
+
]
|
|
1087
|
+
|
|
1088
|
+
[[package]]
|
|
1089
|
+
name = "heck"
|
|
1090
|
+
version = "0.5.0"
|
|
1091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "hex"
|
|
1096
|
+
version = "0.4.3"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "hmac"
|
|
1102
|
+
version = "0.12.1"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
1105
|
+
dependencies = [
|
|
1106
|
+
"digest",
|
|
1107
|
+
]
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "home"
|
|
1111
|
+
version = "0.5.11"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
|
1114
|
+
dependencies = [
|
|
1115
|
+
"windows-sys 0.59.0",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "http"
|
|
1120
|
+
version = "1.3.1"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
1123
|
+
dependencies = [
|
|
1124
|
+
"bytes",
|
|
1125
|
+
"fnv",
|
|
1126
|
+
"itoa",
|
|
1127
|
+
]
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "http-auth"
|
|
1131
|
+
version = "0.1.10"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "150fa4a9462ef926824cf4519c84ed652ca8f4fbae34cb8af045b5cbcaf98822"
|
|
1134
|
+
dependencies = [
|
|
1135
|
+
"memchr",
|
|
1136
|
+
]
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "http-body"
|
|
1140
|
+
version = "1.0.1"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1143
|
+
dependencies = [
|
|
1144
|
+
"bytes",
|
|
1145
|
+
"http",
|
|
1146
|
+
]
|
|
1147
|
+
|
|
1148
|
+
[[package]]
|
|
1149
|
+
name = "http-body-util"
|
|
1150
|
+
version = "0.1.3"
|
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1153
|
+
dependencies = [
|
|
1154
|
+
"bytes",
|
|
1155
|
+
"futures-core",
|
|
1156
|
+
"http",
|
|
1157
|
+
"http-body",
|
|
1158
|
+
"pin-project-lite",
|
|
1159
|
+
]
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "httparse"
|
|
1163
|
+
version = "1.10.1"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "hyper"
|
|
1169
|
+
version = "1.6.0"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
|
|
1172
|
+
dependencies = [
|
|
1173
|
+
"bytes",
|
|
1174
|
+
"futures-channel",
|
|
1175
|
+
"futures-util",
|
|
1176
|
+
"http",
|
|
1177
|
+
"http-body",
|
|
1178
|
+
"httparse",
|
|
1179
|
+
"itoa",
|
|
1180
|
+
"pin-project-lite",
|
|
1181
|
+
"smallvec",
|
|
1182
|
+
"tokio",
|
|
1183
|
+
"want",
|
|
1184
|
+
]
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "hyper-rustls"
|
|
1188
|
+
version = "0.27.7"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1191
|
+
dependencies = [
|
|
1192
|
+
"http",
|
|
1193
|
+
"hyper",
|
|
1194
|
+
"hyper-util",
|
|
1195
|
+
"rustls",
|
|
1196
|
+
"rustls-pki-types",
|
|
1197
|
+
"tokio",
|
|
1198
|
+
"tokio-rustls",
|
|
1199
|
+
"tower-service",
|
|
1200
|
+
"webpki-roots 1.0.2",
|
|
1201
|
+
]
|
|
1202
|
+
|
|
1203
|
+
[[package]]
|
|
1204
|
+
name = "hyper-util"
|
|
1205
|
+
version = "0.1.16"
|
|
1206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
|
+
checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
|
|
1208
|
+
dependencies = [
|
|
1209
|
+
"base64 0.22.1",
|
|
1210
|
+
"bytes",
|
|
1211
|
+
"futures-channel",
|
|
1212
|
+
"futures-core",
|
|
1213
|
+
"futures-util",
|
|
1214
|
+
"http",
|
|
1215
|
+
"http-body",
|
|
1216
|
+
"hyper",
|
|
1217
|
+
"ipnet",
|
|
1218
|
+
"libc",
|
|
1219
|
+
"percent-encoding",
|
|
1220
|
+
"pin-project-lite",
|
|
1221
|
+
"socket2 0.5.10",
|
|
1222
|
+
"tokio",
|
|
1223
|
+
"tower-service",
|
|
1224
|
+
"tracing",
|
|
1225
|
+
]
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "iana-time-zone"
|
|
1229
|
+
version = "0.1.63"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
|
1232
|
+
dependencies = [
|
|
1233
|
+
"android_system_properties",
|
|
1234
|
+
"core-foundation-sys",
|
|
1235
|
+
"iana-time-zone-haiku",
|
|
1236
|
+
"js-sys",
|
|
1237
|
+
"log",
|
|
1238
|
+
"wasm-bindgen",
|
|
1239
|
+
"windows-core",
|
|
1240
|
+
]
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "iana-time-zone-haiku"
|
|
1244
|
+
version = "0.1.2"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1247
|
+
dependencies = [
|
|
1248
|
+
"cc",
|
|
1249
|
+
]
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "icu_collections"
|
|
1253
|
+
version = "2.0.0"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
1256
|
+
dependencies = [
|
|
1257
|
+
"displaydoc",
|
|
1258
|
+
"potential_utf",
|
|
1259
|
+
"yoke",
|
|
1260
|
+
"zerofrom",
|
|
1261
|
+
"zerovec",
|
|
1262
|
+
]
|
|
1263
|
+
|
|
1264
|
+
[[package]]
|
|
1265
|
+
name = "icu_locale_core"
|
|
1266
|
+
version = "2.0.0"
|
|
1267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
1269
|
+
dependencies = [
|
|
1270
|
+
"displaydoc",
|
|
1271
|
+
"litemap",
|
|
1272
|
+
"tinystr",
|
|
1273
|
+
"writeable",
|
|
1274
|
+
"zerovec",
|
|
1275
|
+
]
|
|
1276
|
+
|
|
1277
|
+
[[package]]
|
|
1278
|
+
name = "icu_normalizer"
|
|
1279
|
+
version = "2.0.0"
|
|
1280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1281
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
|
1282
|
+
dependencies = [
|
|
1283
|
+
"displaydoc",
|
|
1284
|
+
"icu_collections",
|
|
1285
|
+
"icu_normalizer_data",
|
|
1286
|
+
"icu_properties",
|
|
1287
|
+
"icu_provider",
|
|
1288
|
+
"smallvec",
|
|
1289
|
+
"zerovec",
|
|
1290
|
+
]
|
|
1291
|
+
|
|
1292
|
+
[[package]]
|
|
1293
|
+
name = "icu_normalizer_data"
|
|
1294
|
+
version = "2.0.0"
|
|
1295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "icu_properties"
|
|
1300
|
+
version = "2.0.1"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"displaydoc",
|
|
1305
|
+
"icu_collections",
|
|
1306
|
+
"icu_locale_core",
|
|
1307
|
+
"icu_properties_data",
|
|
1308
|
+
"icu_provider",
|
|
1309
|
+
"potential_utf",
|
|
1310
|
+
"zerotrie",
|
|
1311
|
+
"zerovec",
|
|
1312
|
+
]
|
|
1313
|
+
|
|
1314
|
+
[[package]]
|
|
1315
|
+
name = "icu_properties_data"
|
|
1316
|
+
version = "2.0.1"
|
|
1317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "icu_provider"
|
|
1322
|
+
version = "2.0.0"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"displaydoc",
|
|
1327
|
+
"icu_locale_core",
|
|
1328
|
+
"stable_deref_trait",
|
|
1329
|
+
"tinystr",
|
|
1330
|
+
"writeable",
|
|
1331
|
+
"yoke",
|
|
1332
|
+
"zerofrom",
|
|
1333
|
+
"zerotrie",
|
|
1334
|
+
"zerovec",
|
|
1335
|
+
]
|
|
1336
|
+
|
|
1337
|
+
[[package]]
|
|
1338
|
+
name = "id-arena"
|
|
1339
|
+
version = "2.2.1"
|
|
1340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1341
|
+
checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005"
|
|
1342
|
+
|
|
1343
|
+
[[package]]
|
|
1344
|
+
name = "ident_case"
|
|
1345
|
+
version = "1.0.1"
|
|
1346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1347
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1348
|
+
|
|
1349
|
+
[[package]]
|
|
1350
|
+
name = "idna"
|
|
1351
|
+
version = "1.0.3"
|
|
1352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1353
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
1354
|
+
dependencies = [
|
|
1355
|
+
"idna_adapter",
|
|
1356
|
+
"smallvec",
|
|
1357
|
+
"utf8_iter",
|
|
1358
|
+
]
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "idna_adapter"
|
|
1362
|
+
version = "1.2.1"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1365
|
+
dependencies = [
|
|
1366
|
+
"icu_normalizer",
|
|
1367
|
+
"icu_properties",
|
|
1368
|
+
]
|
|
1369
|
+
|
|
1370
|
+
[[package]]
|
|
1371
|
+
name = "indexmap"
|
|
1372
|
+
version = "1.9.3"
|
|
1373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1375
|
+
dependencies = [
|
|
1376
|
+
"autocfg",
|
|
1377
|
+
"hashbrown 0.12.3",
|
|
1378
|
+
"serde",
|
|
1379
|
+
]
|
|
1380
|
+
|
|
1381
|
+
[[package]]
|
|
1382
|
+
name = "indexmap"
|
|
1383
|
+
version = "2.10.0"
|
|
1384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
|
1386
|
+
dependencies = [
|
|
1387
|
+
"equivalent",
|
|
1388
|
+
"hashbrown 0.15.4",
|
|
1389
|
+
"serde",
|
|
1390
|
+
]
|
|
1391
|
+
|
|
1392
|
+
[[package]]
|
|
1393
|
+
name = "indoc"
|
|
1394
|
+
version = "2.0.6"
|
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
1397
|
+
|
|
1398
|
+
[[package]]
|
|
1399
|
+
name = "io-extras"
|
|
1400
|
+
version = "0.18.4"
|
|
1401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
+
checksum = "2285ddfe3054097ef4b2fe909ef8c3bcd1ea52a8f0d274416caebeef39f04a65"
|
|
1403
|
+
dependencies = [
|
|
1404
|
+
"io-lifetimes",
|
|
1405
|
+
"windows-sys 0.59.0",
|
|
1406
|
+
]
|
|
1407
|
+
|
|
1408
|
+
[[package]]
|
|
1409
|
+
name = "io-lifetimes"
|
|
1410
|
+
version = "2.0.4"
|
|
1411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
+
checksum = "06432fb54d3be7964ecd3649233cddf80db2832f47fec34c01f65b3d9d774983"
|
|
1413
|
+
|
|
1414
|
+
[[package]]
|
|
1415
|
+
name = "io-uring"
|
|
1416
|
+
version = "0.7.9"
|
|
1417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
+
checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
|
|
1419
|
+
dependencies = [
|
|
1420
|
+
"bitflags",
|
|
1421
|
+
"cfg-if",
|
|
1422
|
+
"libc",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "ipnet"
|
|
1427
|
+
version = "2.11.0"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "iri-string"
|
|
1433
|
+
version = "0.7.8"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
|
|
1436
|
+
dependencies = [
|
|
1437
|
+
"memchr",
|
|
1438
|
+
"serde",
|
|
1439
|
+
]
|
|
1440
|
+
|
|
1441
|
+
[[package]]
|
|
1442
|
+
name = "itertools"
|
|
1443
|
+
version = "0.12.1"
|
|
1444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
1446
|
+
dependencies = [
|
|
1447
|
+
"either",
|
|
1448
|
+
]
|
|
1449
|
+
|
|
1450
|
+
[[package]]
|
|
1451
|
+
name = "itoa"
|
|
1452
|
+
version = "1.0.15"
|
|
1453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1454
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1455
|
+
|
|
1456
|
+
[[package]]
|
|
1457
|
+
name = "ittapi"
|
|
1458
|
+
version = "0.4.0"
|
|
1459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1460
|
+
checksum = "6b996fe614c41395cdaedf3cf408a9534851090959d90d54a535f675550b64b1"
|
|
1461
|
+
dependencies = [
|
|
1462
|
+
"anyhow",
|
|
1463
|
+
"ittapi-sys",
|
|
1464
|
+
"log",
|
|
1465
|
+
]
|
|
1466
|
+
|
|
1467
|
+
[[package]]
|
|
1468
|
+
name = "ittapi-sys"
|
|
1469
|
+
version = "0.4.0"
|
|
1470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1471
|
+
checksum = "52f5385394064fa2c886205dba02598013ce83d3e92d33dbdc0c52fe0e7bf4fc"
|
|
1472
|
+
dependencies = [
|
|
1473
|
+
"cc",
|
|
1474
|
+
]
|
|
1475
|
+
|
|
1476
|
+
[[package]]
|
|
1477
|
+
name = "jobserver"
|
|
1478
|
+
version = "0.1.33"
|
|
1479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
|
|
1481
|
+
dependencies = [
|
|
1482
|
+
"getrandom 0.3.3",
|
|
1483
|
+
"libc",
|
|
1484
|
+
]
|
|
1485
|
+
|
|
1486
|
+
[[package]]
|
|
1487
|
+
name = "js-sys"
|
|
1488
|
+
version = "0.3.77"
|
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
1491
|
+
dependencies = [
|
|
1492
|
+
"once_cell",
|
|
1493
|
+
"wasm-bindgen",
|
|
1494
|
+
]
|
|
1495
|
+
|
|
1496
|
+
[[package]]
|
|
1497
|
+
name = "jwt"
|
|
1498
|
+
version = "0.16.0"
|
|
1499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
+
checksum = "6204285f77fe7d9784db3fdc449ecce1a0114927a51d5a41c4c7a292011c015f"
|
|
1501
|
+
dependencies = [
|
|
1502
|
+
"base64 0.13.1",
|
|
1503
|
+
"crypto-common",
|
|
1504
|
+
"digest",
|
|
1505
|
+
"hmac",
|
|
1506
|
+
"serde",
|
|
1507
|
+
"serde_json",
|
|
1508
|
+
"sha2",
|
|
1509
|
+
]
|
|
1510
|
+
|
|
1511
|
+
[[package]]
|
|
1512
|
+
name = "lazy_static"
|
|
1513
|
+
version = "1.5.0"
|
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1516
|
+
|
|
1517
|
+
[[package]]
|
|
1518
|
+
name = "leb128"
|
|
1519
|
+
version = "0.2.5"
|
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
+
checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
1522
|
+
|
|
1523
|
+
[[package]]
|
|
1524
|
+
name = "leb128fmt"
|
|
1525
|
+
version = "0.1.0"
|
|
1526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "libc"
|
|
1531
|
+
version = "0.2.174"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "libgit2-sys"
|
|
1537
|
+
version = "0.17.0+1.8.1"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "10472326a8a6477c3c20a64547b0059e4b0d086869eee31e6d7da728a8eb7224"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"cc",
|
|
1542
|
+
"libc",
|
|
1543
|
+
"libz-sys",
|
|
1544
|
+
"openssl-sys",
|
|
1545
|
+
"pkg-config",
|
|
1546
|
+
]
|
|
1547
|
+
|
|
1548
|
+
[[package]]
|
|
1549
|
+
name = "libloading"
|
|
1550
|
+
version = "0.8.8"
|
|
1551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1552
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
|
1553
|
+
dependencies = [
|
|
1554
|
+
"cfg-if",
|
|
1555
|
+
"windows-targets",
|
|
1556
|
+
]
|
|
1557
|
+
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "libm"
|
|
1560
|
+
version = "0.2.15"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
1563
|
+
|
|
1564
|
+
[[package]]
|
|
1565
|
+
name = "libredox"
|
|
1566
|
+
version = "0.1.9"
|
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
+
checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3"
|
|
1569
|
+
dependencies = [
|
|
1570
|
+
"bitflags",
|
|
1571
|
+
"libc",
|
|
1572
|
+
"redox_syscall",
|
|
1573
|
+
]
|
|
1574
|
+
|
|
1575
|
+
[[package]]
|
|
1576
|
+
name = "libz-sys"
|
|
1577
|
+
version = "1.1.22"
|
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
+
checksum = "8b70e7a7df205e92a1a4cd9aaae7898dac0aa555503cc0a649494d0d60e7651d"
|
|
1580
|
+
dependencies = [
|
|
1581
|
+
"cc",
|
|
1582
|
+
"libc",
|
|
1583
|
+
"pkg-config",
|
|
1584
|
+
"vcpkg",
|
|
1585
|
+
]
|
|
1586
|
+
|
|
1587
|
+
[[package]]
|
|
1588
|
+
name = "linux-raw-sys"
|
|
1589
|
+
version = "0.4.15"
|
|
1590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1591
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1592
|
+
|
|
1593
|
+
[[package]]
|
|
1594
|
+
name = "linux-raw-sys"
|
|
1595
|
+
version = "0.9.4"
|
|
1596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1598
|
+
|
|
1599
|
+
[[package]]
|
|
1600
|
+
name = "litemap"
|
|
1601
|
+
version = "0.8.0"
|
|
1602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
1604
|
+
|
|
1605
|
+
[[package]]
|
|
1606
|
+
name = "log"
|
|
1607
|
+
version = "0.4.27"
|
|
1608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1610
|
+
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "lru-slab"
|
|
1613
|
+
version = "0.1.2"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1616
|
+
|
|
1617
|
+
[[package]]
|
|
1618
|
+
name = "mach2"
|
|
1619
|
+
version = "0.4.3"
|
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
+
checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
|
|
1622
|
+
dependencies = [
|
|
1623
|
+
"libc",
|
|
1624
|
+
]
|
|
1625
|
+
|
|
1626
|
+
[[package]]
|
|
1627
|
+
name = "maybe-owned"
|
|
1628
|
+
version = "0.3.4"
|
|
1629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1630
|
+
checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4"
|
|
1631
|
+
|
|
1632
|
+
[[package]]
|
|
1633
|
+
name = "memchr"
|
|
1634
|
+
version = "2.7.5"
|
|
1635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "memfd"
|
|
1640
|
+
version = "0.6.4"
|
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1642
|
+
checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64"
|
|
1643
|
+
dependencies = [
|
|
1644
|
+
"rustix 0.38.44",
|
|
1645
|
+
]
|
|
1646
|
+
|
|
1647
|
+
[[package]]
|
|
1648
|
+
name = "memmap2"
|
|
1649
|
+
version = "0.9.7"
|
|
1650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1651
|
+
checksum = "483758ad303d734cec05e5c12b41d7e93e6a6390c5e9dae6bdeb7c1259012d28"
|
|
1652
|
+
dependencies = [
|
|
1653
|
+
"libc",
|
|
1654
|
+
]
|
|
1655
|
+
|
|
1656
|
+
[[package]]
|
|
1657
|
+
name = "memoffset"
|
|
1658
|
+
version = "0.9.1"
|
|
1659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1661
|
+
dependencies = [
|
|
1662
|
+
"autocfg",
|
|
1663
|
+
]
|
|
1664
|
+
|
|
1665
|
+
[[package]]
|
|
1666
|
+
name = "miniz_oxide"
|
|
1667
|
+
version = "0.8.9"
|
|
1668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1670
|
+
dependencies = [
|
|
1671
|
+
"adler2",
|
|
1672
|
+
]
|
|
1673
|
+
|
|
1674
|
+
[[package]]
|
|
1675
|
+
name = "mio"
|
|
1676
|
+
version = "1.0.4"
|
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
|
1679
|
+
dependencies = [
|
|
1680
|
+
"libc",
|
|
1681
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
1682
|
+
"windows-sys 0.59.0",
|
|
1683
|
+
]
|
|
1684
|
+
|
|
1685
|
+
[[package]]
|
|
1686
|
+
name = "num-conv"
|
|
1687
|
+
version = "0.1.0"
|
|
1688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1690
|
+
|
|
1691
|
+
[[package]]
|
|
1692
|
+
name = "num-traits"
|
|
1693
|
+
version = "0.2.19"
|
|
1694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1696
|
+
dependencies = [
|
|
1697
|
+
"autocfg",
|
|
1698
|
+
]
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "object"
|
|
1702
|
+
version = "0.36.7"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
1705
|
+
dependencies = [
|
|
1706
|
+
"crc32fast",
|
|
1707
|
+
"hashbrown 0.15.4",
|
|
1708
|
+
"indexmap 2.10.0",
|
|
1709
|
+
"memchr",
|
|
1710
|
+
]
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "oci-client"
|
|
1714
|
+
version = "0.13.0"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "53e050f8bab3f561aa5ab537e1a6ed24006d58b4ee93cd6bb2c0cb822726f306"
|
|
1717
|
+
dependencies = [
|
|
1718
|
+
"bytes",
|
|
1719
|
+
"chrono",
|
|
1720
|
+
"futures-util",
|
|
1721
|
+
"http",
|
|
1722
|
+
"http-auth",
|
|
1723
|
+
"jwt",
|
|
1724
|
+
"lazy_static",
|
|
1725
|
+
"oci-spec",
|
|
1726
|
+
"olpc-cjson",
|
|
1727
|
+
"regex",
|
|
1728
|
+
"reqwest",
|
|
1729
|
+
"serde",
|
|
1730
|
+
"serde_json",
|
|
1731
|
+
"sha2",
|
|
1732
|
+
"thiserror 1.0.69",
|
|
1733
|
+
"tokio",
|
|
1734
|
+
"tracing",
|
|
1735
|
+
"unicase",
|
|
1736
|
+
]
|
|
1737
|
+
|
|
1738
|
+
[[package]]
|
|
1739
|
+
name = "oci-spec"
|
|
1740
|
+
version = "0.7.1"
|
|
1741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1742
|
+
checksum = "da406e58efe2eb5986a6139626d611ce426e5324a824133d76367c765cf0b882"
|
|
1743
|
+
dependencies = [
|
|
1744
|
+
"derive_builder",
|
|
1745
|
+
"getset",
|
|
1746
|
+
"regex",
|
|
1747
|
+
"serde",
|
|
1748
|
+
"serde_json",
|
|
1749
|
+
"strum",
|
|
1750
|
+
"strum_macros",
|
|
1751
|
+
"thiserror 2.0.12",
|
|
1752
|
+
]
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "olpc-cjson"
|
|
1756
|
+
version = "0.1.4"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "696183c9b5fe81a7715d074fd632e8bd46f4ccc0231a3ed7fc580a80de5f7083"
|
|
1759
|
+
dependencies = [
|
|
1760
|
+
"serde",
|
|
1761
|
+
"serde_json",
|
|
1762
|
+
"unicode-normalization",
|
|
1763
|
+
]
|
|
1764
|
+
|
|
1765
|
+
[[package]]
|
|
1766
|
+
name = "once_cell"
|
|
1767
|
+
version = "1.21.3"
|
|
1768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1769
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1770
|
+
|
|
1771
|
+
[[package]]
|
|
1772
|
+
name = "openssl-probe"
|
|
1773
|
+
version = "0.1.6"
|
|
1774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1775
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1776
|
+
|
|
1777
|
+
[[package]]
|
|
1778
|
+
name = "openssl-src"
|
|
1779
|
+
version = "300.5.1+3.5.1"
|
|
1780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
+
checksum = "735230c832b28c000e3bc117119e6466a663ec73506bc0a9907ea4187508e42a"
|
|
1782
|
+
dependencies = [
|
|
1783
|
+
"cc",
|
|
1784
|
+
]
|
|
1785
|
+
|
|
1786
|
+
[[package]]
|
|
1787
|
+
name = "openssl-sys"
|
|
1788
|
+
version = "0.9.109"
|
|
1789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
+
checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
|
|
1791
|
+
dependencies = [
|
|
1792
|
+
"cc",
|
|
1793
|
+
"libc",
|
|
1794
|
+
"openssl-src",
|
|
1795
|
+
"pkg-config",
|
|
1796
|
+
"vcpkg",
|
|
1797
|
+
]
|
|
1798
|
+
|
|
1799
|
+
[[package]]
|
|
1800
|
+
name = "paste"
|
|
1801
|
+
version = "1.0.15"
|
|
1802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1803
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1804
|
+
|
|
1805
|
+
[[package]]
|
|
1806
|
+
name = "percent-encoding"
|
|
1807
|
+
version = "2.3.1"
|
|
1808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1809
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
1810
|
+
|
|
1811
|
+
[[package]]
|
|
1812
|
+
name = "pin-project-lite"
|
|
1813
|
+
version = "0.2.16"
|
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1816
|
+
|
|
1817
|
+
[[package]]
|
|
1818
|
+
name = "pin-utils"
|
|
1819
|
+
version = "0.1.0"
|
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1822
|
+
|
|
1823
|
+
[[package]]
|
|
1824
|
+
name = "pkcs8"
|
|
1825
|
+
version = "0.10.2"
|
|
1826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
1828
|
+
dependencies = [
|
|
1829
|
+
"der",
|
|
1830
|
+
"spki",
|
|
1831
|
+
]
|
|
1832
|
+
|
|
1833
|
+
[[package]]
|
|
1834
|
+
name = "pkg-config"
|
|
1835
|
+
version = "0.3.32"
|
|
1836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1838
|
+
|
|
1839
|
+
[[package]]
|
|
1840
|
+
name = "portable-atomic"
|
|
1841
|
+
version = "1.11.1"
|
|
1842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
1844
|
+
|
|
1845
|
+
[[package]]
|
|
1846
|
+
name = "postcard"
|
|
1847
|
+
version = "1.1.3"
|
|
1848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1849
|
+
checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
|
|
1850
|
+
dependencies = [
|
|
1851
|
+
"cobs",
|
|
1852
|
+
"embedded-io 0.4.0",
|
|
1853
|
+
"embedded-io 0.6.1",
|
|
1854
|
+
"serde",
|
|
1855
|
+
]
|
|
1856
|
+
|
|
1857
|
+
[[package]]
|
|
1858
|
+
name = "potential_utf"
|
|
1859
|
+
version = "0.1.2"
|
|
1860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
+
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
|
|
1862
|
+
dependencies = [
|
|
1863
|
+
"zerovec",
|
|
1864
|
+
]
|
|
1865
|
+
|
|
1866
|
+
[[package]]
|
|
1867
|
+
name = "powerfmt"
|
|
1868
|
+
version = "0.2.0"
|
|
1869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1870
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1871
|
+
|
|
1872
|
+
[[package]]
|
|
1873
|
+
name = "ppv-lite86"
|
|
1874
|
+
version = "0.2.21"
|
|
1875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1877
|
+
dependencies = [
|
|
1878
|
+
"zerocopy",
|
|
1879
|
+
]
|
|
1880
|
+
|
|
1881
|
+
[[package]]
|
|
1882
|
+
name = "proc-macro-error-attr2"
|
|
1883
|
+
version = "2.0.0"
|
|
1884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1885
|
+
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
1886
|
+
dependencies = [
|
|
1887
|
+
"proc-macro2",
|
|
1888
|
+
"quote",
|
|
1889
|
+
]
|
|
1890
|
+
|
|
1891
|
+
[[package]]
|
|
1892
|
+
name = "proc-macro-error2"
|
|
1893
|
+
version = "2.0.1"
|
|
1894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
1896
|
+
dependencies = [
|
|
1897
|
+
"proc-macro-error-attr2",
|
|
1898
|
+
"proc-macro2",
|
|
1899
|
+
"quote",
|
|
1900
|
+
"syn",
|
|
1901
|
+
]
|
|
1902
|
+
|
|
1903
|
+
[[package]]
|
|
1904
|
+
name = "proc-macro2"
|
|
1905
|
+
version = "1.0.95"
|
|
1906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
1908
|
+
dependencies = [
|
|
1909
|
+
"unicode-ident",
|
|
1910
|
+
]
|
|
1911
|
+
|
|
1912
|
+
[[package]]
|
|
1913
|
+
name = "psm"
|
|
1914
|
+
version = "0.1.26"
|
|
1915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1916
|
+
checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
|
|
1917
|
+
dependencies = [
|
|
1918
|
+
"cc",
|
|
1919
|
+
]
|
|
1920
|
+
|
|
1921
|
+
[[package]]
|
|
1922
|
+
name = "ptwm-core"
|
|
1923
|
+
version = "1.0.0"
|
|
1924
|
+
dependencies = [
|
|
1925
|
+
"blake3",
|
|
1926
|
+
"ciborium",
|
|
1927
|
+
"crc32fast",
|
|
1928
|
+
"ed25519-dalek",
|
|
1929
|
+
"fs_extra",
|
|
1930
|
+
"git2",
|
|
1931
|
+
"hex",
|
|
1932
|
+
"libloading",
|
|
1933
|
+
"oci-client",
|
|
1934
|
+
"pyo3",
|
|
1935
|
+
"rand_core 0.6.4",
|
|
1936
|
+
"rayon",
|
|
1937
|
+
"serde",
|
|
1938
|
+
"serde_json",
|
|
1939
|
+
"serde_with",
|
|
1940
|
+
"tar",
|
|
1941
|
+
"tempfile",
|
|
1942
|
+
"thiserror 1.0.69",
|
|
1943
|
+
"tokio",
|
|
1944
|
+
"toml",
|
|
1945
|
+
"tracing",
|
|
1946
|
+
"ureq",
|
|
1947
|
+
"walkdir",
|
|
1948
|
+
"wasmtime",
|
|
1949
|
+
"wasmtime-wasi",
|
|
1950
|
+
"wat",
|
|
1951
|
+
"which",
|
|
1952
|
+
"xxhash-rust",
|
|
1953
|
+
"zstd",
|
|
1954
|
+
]
|
|
1955
|
+
|
|
1956
|
+
[[package]]
|
|
1957
|
+
name = "ptwm-py"
|
|
1958
|
+
version = "1.0.0"
|
|
1959
|
+
dependencies = [
|
|
1960
|
+
"hex",
|
|
1961
|
+
"memmap2",
|
|
1962
|
+
"ptwm-core",
|
|
1963
|
+
"pyo3",
|
|
1964
|
+
"rayon",
|
|
1965
|
+
"xxhash-rust",
|
|
1966
|
+
]
|
|
1967
|
+
|
|
1968
|
+
[[package]]
|
|
1969
|
+
name = "pulley-interpreter"
|
|
1970
|
+
version = "26.0.1"
|
|
1971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
|
+
checksum = "df33e7f8a43ccc7f93b330fef4baf271764674926f3f4d40f4a196d54de8af26"
|
|
1973
|
+
dependencies = [
|
|
1974
|
+
"cranelift-bitset",
|
|
1975
|
+
"log",
|
|
1976
|
+
"sptr",
|
|
1977
|
+
]
|
|
1978
|
+
|
|
1979
|
+
[[package]]
|
|
1980
|
+
name = "pyo3"
|
|
1981
|
+
version = "0.24.2"
|
|
1982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1983
|
+
checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
|
|
1984
|
+
dependencies = [
|
|
1985
|
+
"cfg-if",
|
|
1986
|
+
"indoc",
|
|
1987
|
+
"libc",
|
|
1988
|
+
"memoffset",
|
|
1989
|
+
"once_cell",
|
|
1990
|
+
"portable-atomic",
|
|
1991
|
+
"pyo3-build-config",
|
|
1992
|
+
"pyo3-ffi",
|
|
1993
|
+
"pyo3-macros",
|
|
1994
|
+
"unindent",
|
|
1995
|
+
]
|
|
1996
|
+
|
|
1997
|
+
[[package]]
|
|
1998
|
+
name = "pyo3-build-config"
|
|
1999
|
+
version = "0.24.2"
|
|
2000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2001
|
+
checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
|
|
2002
|
+
dependencies = [
|
|
2003
|
+
"once_cell",
|
|
2004
|
+
"target-lexicon 0.13.2",
|
|
2005
|
+
]
|
|
2006
|
+
|
|
2007
|
+
[[package]]
|
|
2008
|
+
name = "pyo3-ffi"
|
|
2009
|
+
version = "0.24.2"
|
|
2010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
+
checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
|
|
2012
|
+
dependencies = [
|
|
2013
|
+
"libc",
|
|
2014
|
+
"pyo3-build-config",
|
|
2015
|
+
]
|
|
2016
|
+
|
|
2017
|
+
[[package]]
|
|
2018
|
+
name = "pyo3-macros"
|
|
2019
|
+
version = "0.24.2"
|
|
2020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2021
|
+
checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
|
|
2022
|
+
dependencies = [
|
|
2023
|
+
"proc-macro2",
|
|
2024
|
+
"pyo3-macros-backend",
|
|
2025
|
+
"quote",
|
|
2026
|
+
"syn",
|
|
2027
|
+
]
|
|
2028
|
+
|
|
2029
|
+
[[package]]
|
|
2030
|
+
name = "pyo3-macros-backend"
|
|
2031
|
+
version = "0.24.2"
|
|
2032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2033
|
+
checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
|
|
2034
|
+
dependencies = [
|
|
2035
|
+
"heck",
|
|
2036
|
+
"proc-macro2",
|
|
2037
|
+
"pyo3-build-config",
|
|
2038
|
+
"quote",
|
|
2039
|
+
"syn",
|
|
2040
|
+
]
|
|
2041
|
+
|
|
2042
|
+
[[package]]
|
|
2043
|
+
name = "quinn"
|
|
2044
|
+
version = "0.11.8"
|
|
2045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
+
checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
|
|
2047
|
+
dependencies = [
|
|
2048
|
+
"bytes",
|
|
2049
|
+
"cfg_aliases",
|
|
2050
|
+
"pin-project-lite",
|
|
2051
|
+
"quinn-proto",
|
|
2052
|
+
"quinn-udp",
|
|
2053
|
+
"rustc-hash",
|
|
2054
|
+
"rustls",
|
|
2055
|
+
"socket2 0.5.10",
|
|
2056
|
+
"thiserror 2.0.12",
|
|
2057
|
+
"tokio",
|
|
2058
|
+
"tracing",
|
|
2059
|
+
"web-time",
|
|
2060
|
+
]
|
|
2061
|
+
|
|
2062
|
+
[[package]]
|
|
2063
|
+
name = "quinn-proto"
|
|
2064
|
+
version = "0.11.12"
|
|
2065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
+
checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
|
|
2067
|
+
dependencies = [
|
|
2068
|
+
"bytes",
|
|
2069
|
+
"getrandom 0.3.3",
|
|
2070
|
+
"lru-slab",
|
|
2071
|
+
"rand 0.9.2",
|
|
2072
|
+
"ring",
|
|
2073
|
+
"rustc-hash",
|
|
2074
|
+
"rustls",
|
|
2075
|
+
"rustls-pki-types",
|
|
2076
|
+
"slab",
|
|
2077
|
+
"thiserror 2.0.12",
|
|
2078
|
+
"tinyvec",
|
|
2079
|
+
"tracing",
|
|
2080
|
+
"web-time",
|
|
2081
|
+
]
|
|
2082
|
+
|
|
2083
|
+
[[package]]
|
|
2084
|
+
name = "quinn-udp"
|
|
2085
|
+
version = "0.5.13"
|
|
2086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2087
|
+
checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970"
|
|
2088
|
+
dependencies = [
|
|
2089
|
+
"cfg_aliases",
|
|
2090
|
+
"libc",
|
|
2091
|
+
"once_cell",
|
|
2092
|
+
"socket2 0.5.10",
|
|
2093
|
+
"tracing",
|
|
2094
|
+
"windows-sys 0.59.0",
|
|
2095
|
+
]
|
|
2096
|
+
|
|
2097
|
+
[[package]]
|
|
2098
|
+
name = "quote"
|
|
2099
|
+
version = "1.0.40"
|
|
2100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2101
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
2102
|
+
dependencies = [
|
|
2103
|
+
"proc-macro2",
|
|
2104
|
+
]
|
|
2105
|
+
|
|
2106
|
+
[[package]]
|
|
2107
|
+
name = "r-efi"
|
|
2108
|
+
version = "5.3.0"
|
|
2109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2110
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2111
|
+
|
|
2112
|
+
[[package]]
|
|
2113
|
+
name = "rand"
|
|
2114
|
+
version = "0.8.5"
|
|
2115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2116
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2117
|
+
dependencies = [
|
|
2118
|
+
"libc",
|
|
2119
|
+
"rand_chacha 0.3.1",
|
|
2120
|
+
"rand_core 0.6.4",
|
|
2121
|
+
]
|
|
2122
|
+
|
|
2123
|
+
[[package]]
|
|
2124
|
+
name = "rand"
|
|
2125
|
+
version = "0.9.2"
|
|
2126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2127
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2128
|
+
dependencies = [
|
|
2129
|
+
"rand_chacha 0.9.0",
|
|
2130
|
+
"rand_core 0.9.3",
|
|
2131
|
+
]
|
|
2132
|
+
|
|
2133
|
+
[[package]]
|
|
2134
|
+
name = "rand_chacha"
|
|
2135
|
+
version = "0.3.1"
|
|
2136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2137
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2138
|
+
dependencies = [
|
|
2139
|
+
"ppv-lite86",
|
|
2140
|
+
"rand_core 0.6.4",
|
|
2141
|
+
]
|
|
2142
|
+
|
|
2143
|
+
[[package]]
|
|
2144
|
+
name = "rand_chacha"
|
|
2145
|
+
version = "0.9.0"
|
|
2146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2147
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2148
|
+
dependencies = [
|
|
2149
|
+
"ppv-lite86",
|
|
2150
|
+
"rand_core 0.9.3",
|
|
2151
|
+
]
|
|
2152
|
+
|
|
2153
|
+
[[package]]
|
|
2154
|
+
name = "rand_core"
|
|
2155
|
+
version = "0.6.4"
|
|
2156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2157
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2158
|
+
dependencies = [
|
|
2159
|
+
"getrandom 0.2.16",
|
|
2160
|
+
]
|
|
2161
|
+
|
|
2162
|
+
[[package]]
|
|
2163
|
+
name = "rand_core"
|
|
2164
|
+
version = "0.9.3"
|
|
2165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2166
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2167
|
+
dependencies = [
|
|
2168
|
+
"getrandom 0.3.3",
|
|
2169
|
+
]
|
|
2170
|
+
|
|
2171
|
+
[[package]]
|
|
2172
|
+
name = "rayon"
|
|
2173
|
+
version = "1.10.0"
|
|
2174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2175
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
2176
|
+
dependencies = [
|
|
2177
|
+
"either",
|
|
2178
|
+
"rayon-core",
|
|
2179
|
+
]
|
|
2180
|
+
|
|
2181
|
+
[[package]]
|
|
2182
|
+
name = "rayon-core"
|
|
2183
|
+
version = "1.12.1"
|
|
2184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2185
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
2186
|
+
dependencies = [
|
|
2187
|
+
"crossbeam-deque",
|
|
2188
|
+
"crossbeam-utils",
|
|
2189
|
+
]
|
|
2190
|
+
|
|
2191
|
+
[[package]]
|
|
2192
|
+
name = "redox_syscall"
|
|
2193
|
+
version = "0.5.17"
|
|
2194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2195
|
+
checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
|
|
2196
|
+
dependencies = [
|
|
2197
|
+
"bitflags",
|
|
2198
|
+
]
|
|
2199
|
+
|
|
2200
|
+
[[package]]
|
|
2201
|
+
name = "redox_users"
|
|
2202
|
+
version = "0.4.6"
|
|
2203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2204
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
2205
|
+
dependencies = [
|
|
2206
|
+
"getrandom 0.2.16",
|
|
2207
|
+
"libredox",
|
|
2208
|
+
"thiserror 1.0.69",
|
|
2209
|
+
]
|
|
2210
|
+
|
|
2211
|
+
[[package]]
|
|
2212
|
+
name = "ref-cast"
|
|
2213
|
+
version = "1.0.24"
|
|
2214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2215
|
+
checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
|
|
2216
|
+
dependencies = [
|
|
2217
|
+
"ref-cast-impl",
|
|
2218
|
+
]
|
|
2219
|
+
|
|
2220
|
+
[[package]]
|
|
2221
|
+
name = "ref-cast-impl"
|
|
2222
|
+
version = "1.0.24"
|
|
2223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
|
+
checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
|
|
2225
|
+
dependencies = [
|
|
2226
|
+
"proc-macro2",
|
|
2227
|
+
"quote",
|
|
2228
|
+
"syn",
|
|
2229
|
+
]
|
|
2230
|
+
|
|
2231
|
+
[[package]]
|
|
2232
|
+
name = "regalloc2"
|
|
2233
|
+
version = "0.10.2"
|
|
2234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2235
|
+
checksum = "12908dbeb234370af84d0579b9f68258a0f67e201412dd9a2814e6f45b2fc0f0"
|
|
2236
|
+
dependencies = [
|
|
2237
|
+
"hashbrown 0.14.5",
|
|
2238
|
+
"log",
|
|
2239
|
+
"rustc-hash",
|
|
2240
|
+
"slice-group-by",
|
|
2241
|
+
"smallvec",
|
|
2242
|
+
]
|
|
2243
|
+
|
|
2244
|
+
[[package]]
|
|
2245
|
+
name = "regex"
|
|
2246
|
+
version = "1.11.1"
|
|
2247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
2249
|
+
dependencies = [
|
|
2250
|
+
"aho-corasick",
|
|
2251
|
+
"memchr",
|
|
2252
|
+
"regex-automata",
|
|
2253
|
+
"regex-syntax",
|
|
2254
|
+
]
|
|
2255
|
+
|
|
2256
|
+
[[package]]
|
|
2257
|
+
name = "regex-automata"
|
|
2258
|
+
version = "0.4.9"
|
|
2259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
2261
|
+
dependencies = [
|
|
2262
|
+
"aho-corasick",
|
|
2263
|
+
"memchr",
|
|
2264
|
+
"regex-syntax",
|
|
2265
|
+
]
|
|
2266
|
+
|
|
2267
|
+
[[package]]
|
|
2268
|
+
name = "regex-syntax"
|
|
2269
|
+
version = "0.8.5"
|
|
2270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2271
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
2272
|
+
|
|
2273
|
+
[[package]]
|
|
2274
|
+
name = "reqwest"
|
|
2275
|
+
version = "0.12.22"
|
|
2276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2277
|
+
checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
|
|
2278
|
+
dependencies = [
|
|
2279
|
+
"base64 0.22.1",
|
|
2280
|
+
"bytes",
|
|
2281
|
+
"futures-core",
|
|
2282
|
+
"futures-util",
|
|
2283
|
+
"http",
|
|
2284
|
+
"http-body",
|
|
2285
|
+
"http-body-util",
|
|
2286
|
+
"hyper",
|
|
2287
|
+
"hyper-rustls",
|
|
2288
|
+
"hyper-util",
|
|
2289
|
+
"js-sys",
|
|
2290
|
+
"log",
|
|
2291
|
+
"percent-encoding",
|
|
2292
|
+
"pin-project-lite",
|
|
2293
|
+
"quinn",
|
|
2294
|
+
"rustls",
|
|
2295
|
+
"rustls-pki-types",
|
|
2296
|
+
"serde",
|
|
2297
|
+
"serde_json",
|
|
2298
|
+
"serde_urlencoded",
|
|
2299
|
+
"sync_wrapper",
|
|
2300
|
+
"tokio",
|
|
2301
|
+
"tokio-rustls",
|
|
2302
|
+
"tokio-util",
|
|
2303
|
+
"tower",
|
|
2304
|
+
"tower-http",
|
|
2305
|
+
"tower-service",
|
|
2306
|
+
"url",
|
|
2307
|
+
"wasm-bindgen",
|
|
2308
|
+
"wasm-bindgen-futures",
|
|
2309
|
+
"wasm-streams",
|
|
2310
|
+
"web-sys",
|
|
2311
|
+
"webpki-roots 1.0.2",
|
|
2312
|
+
]
|
|
2313
|
+
|
|
2314
|
+
[[package]]
|
|
2315
|
+
name = "ring"
|
|
2316
|
+
version = "0.17.14"
|
|
2317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2318
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2319
|
+
dependencies = [
|
|
2320
|
+
"cc",
|
|
2321
|
+
"cfg-if",
|
|
2322
|
+
"getrandom 0.2.16",
|
|
2323
|
+
"libc",
|
|
2324
|
+
"untrusted",
|
|
2325
|
+
"windows-sys 0.52.0",
|
|
2326
|
+
]
|
|
2327
|
+
|
|
2328
|
+
[[package]]
|
|
2329
|
+
name = "rustc-demangle"
|
|
2330
|
+
version = "0.1.26"
|
|
2331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2332
|
+
checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
|
|
2333
|
+
|
|
2334
|
+
[[package]]
|
|
2335
|
+
name = "rustc-hash"
|
|
2336
|
+
version = "2.1.1"
|
|
2337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2338
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2339
|
+
|
|
2340
|
+
[[package]]
|
|
2341
|
+
name = "rustc_version"
|
|
2342
|
+
version = "0.4.1"
|
|
2343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2344
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2345
|
+
dependencies = [
|
|
2346
|
+
"semver",
|
|
2347
|
+
]
|
|
2348
|
+
|
|
2349
|
+
[[package]]
|
|
2350
|
+
name = "rustix"
|
|
2351
|
+
version = "0.38.44"
|
|
2352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2354
|
+
dependencies = [
|
|
2355
|
+
"bitflags",
|
|
2356
|
+
"errno",
|
|
2357
|
+
"libc",
|
|
2358
|
+
"linux-raw-sys 0.4.15",
|
|
2359
|
+
"windows-sys 0.59.0",
|
|
2360
|
+
]
|
|
2361
|
+
|
|
2362
|
+
[[package]]
|
|
2363
|
+
name = "rustix"
|
|
2364
|
+
version = "1.0.8"
|
|
2365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2366
|
+
checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
|
|
2367
|
+
dependencies = [
|
|
2368
|
+
"bitflags",
|
|
2369
|
+
"errno",
|
|
2370
|
+
"libc",
|
|
2371
|
+
"linux-raw-sys 0.9.4",
|
|
2372
|
+
"windows-sys 0.59.0",
|
|
2373
|
+
]
|
|
2374
|
+
|
|
2375
|
+
[[package]]
|
|
2376
|
+
name = "rustix-linux-procfs"
|
|
2377
|
+
version = "0.1.1"
|
|
2378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2379
|
+
checksum = "2fc84bf7e9aa16c4f2c758f27412dc9841341e16aa682d9c7ac308fe3ee12056"
|
|
2380
|
+
dependencies = [
|
|
2381
|
+
"once_cell",
|
|
2382
|
+
"rustix 1.0.8",
|
|
2383
|
+
]
|
|
2384
|
+
|
|
2385
|
+
[[package]]
|
|
2386
|
+
name = "rustls"
|
|
2387
|
+
version = "0.23.31"
|
|
2388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2389
|
+
checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
|
|
2390
|
+
dependencies = [
|
|
2391
|
+
"log",
|
|
2392
|
+
"once_cell",
|
|
2393
|
+
"ring",
|
|
2394
|
+
"rustls-pki-types",
|
|
2395
|
+
"rustls-webpki",
|
|
2396
|
+
"subtle",
|
|
2397
|
+
"zeroize",
|
|
2398
|
+
]
|
|
2399
|
+
|
|
2400
|
+
[[package]]
|
|
2401
|
+
name = "rustls-pki-types"
|
|
2402
|
+
version = "1.12.0"
|
|
2403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2404
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
|
2405
|
+
dependencies = [
|
|
2406
|
+
"web-time",
|
|
2407
|
+
"zeroize",
|
|
2408
|
+
]
|
|
2409
|
+
|
|
2410
|
+
[[package]]
|
|
2411
|
+
name = "rustls-webpki"
|
|
2412
|
+
version = "0.103.4"
|
|
2413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2414
|
+
checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
|
|
2415
|
+
dependencies = [
|
|
2416
|
+
"ring",
|
|
2417
|
+
"rustls-pki-types",
|
|
2418
|
+
"untrusted",
|
|
2419
|
+
]
|
|
2420
|
+
|
|
2421
|
+
[[package]]
|
|
2422
|
+
name = "rustversion"
|
|
2423
|
+
version = "1.0.21"
|
|
2424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2425
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
|
2426
|
+
|
|
2427
|
+
[[package]]
|
|
2428
|
+
name = "ryu"
|
|
2429
|
+
version = "1.0.20"
|
|
2430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2431
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2432
|
+
|
|
2433
|
+
[[package]]
|
|
2434
|
+
name = "same-file"
|
|
2435
|
+
version = "1.0.6"
|
|
2436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2437
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2438
|
+
dependencies = [
|
|
2439
|
+
"winapi-util",
|
|
2440
|
+
]
|
|
2441
|
+
|
|
2442
|
+
[[package]]
|
|
2443
|
+
name = "schemars"
|
|
2444
|
+
version = "0.9.0"
|
|
2445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2446
|
+
checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
|
|
2447
|
+
dependencies = [
|
|
2448
|
+
"dyn-clone",
|
|
2449
|
+
"ref-cast",
|
|
2450
|
+
"serde",
|
|
2451
|
+
"serde_json",
|
|
2452
|
+
]
|
|
2453
|
+
|
|
2454
|
+
[[package]]
|
|
2455
|
+
name = "schemars"
|
|
2456
|
+
version = "1.0.4"
|
|
2457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2458
|
+
checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0"
|
|
2459
|
+
dependencies = [
|
|
2460
|
+
"dyn-clone",
|
|
2461
|
+
"ref-cast",
|
|
2462
|
+
"serde",
|
|
2463
|
+
"serde_json",
|
|
2464
|
+
]
|
|
2465
|
+
|
|
2466
|
+
[[package]]
|
|
2467
|
+
name = "semver"
|
|
2468
|
+
version = "1.0.26"
|
|
2469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2470
|
+
checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
2471
|
+
dependencies = [
|
|
2472
|
+
"serde",
|
|
2473
|
+
]
|
|
2474
|
+
|
|
2475
|
+
[[package]]
|
|
2476
|
+
name = "serde"
|
|
2477
|
+
version = "1.0.219"
|
|
2478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2479
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
2480
|
+
dependencies = [
|
|
2481
|
+
"serde_derive",
|
|
2482
|
+
]
|
|
2483
|
+
|
|
2484
|
+
[[package]]
|
|
2485
|
+
name = "serde_derive"
|
|
2486
|
+
version = "1.0.219"
|
|
2487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2488
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
2489
|
+
dependencies = [
|
|
2490
|
+
"proc-macro2",
|
|
2491
|
+
"quote",
|
|
2492
|
+
"syn",
|
|
2493
|
+
]
|
|
2494
|
+
|
|
2495
|
+
[[package]]
|
|
2496
|
+
name = "serde_json"
|
|
2497
|
+
version = "1.0.142"
|
|
2498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2499
|
+
checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7"
|
|
2500
|
+
dependencies = [
|
|
2501
|
+
"itoa",
|
|
2502
|
+
"memchr",
|
|
2503
|
+
"ryu",
|
|
2504
|
+
"serde",
|
|
2505
|
+
]
|
|
2506
|
+
|
|
2507
|
+
[[package]]
|
|
2508
|
+
name = "serde_spanned"
|
|
2509
|
+
version = "0.6.9"
|
|
2510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2511
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
2512
|
+
dependencies = [
|
|
2513
|
+
"serde",
|
|
2514
|
+
]
|
|
2515
|
+
|
|
2516
|
+
[[package]]
|
|
2517
|
+
name = "serde_urlencoded"
|
|
2518
|
+
version = "0.7.1"
|
|
2519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2520
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2521
|
+
dependencies = [
|
|
2522
|
+
"form_urlencoded",
|
|
2523
|
+
"itoa",
|
|
2524
|
+
"ryu",
|
|
2525
|
+
"serde",
|
|
2526
|
+
]
|
|
2527
|
+
|
|
2528
|
+
[[package]]
|
|
2529
|
+
name = "serde_with"
|
|
2530
|
+
version = "3.14.0"
|
|
2531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2532
|
+
checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5"
|
|
2533
|
+
dependencies = [
|
|
2534
|
+
"base64 0.22.1",
|
|
2535
|
+
"chrono",
|
|
2536
|
+
"hex",
|
|
2537
|
+
"indexmap 1.9.3",
|
|
2538
|
+
"indexmap 2.10.0",
|
|
2539
|
+
"schemars 0.9.0",
|
|
2540
|
+
"schemars 1.0.4",
|
|
2541
|
+
"serde",
|
|
2542
|
+
"serde_derive",
|
|
2543
|
+
"serde_json",
|
|
2544
|
+
"serde_with_macros",
|
|
2545
|
+
"time",
|
|
2546
|
+
]
|
|
2547
|
+
|
|
2548
|
+
[[package]]
|
|
2549
|
+
name = "serde_with_macros"
|
|
2550
|
+
version = "3.14.0"
|
|
2551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
+
checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f"
|
|
2553
|
+
dependencies = [
|
|
2554
|
+
"darling",
|
|
2555
|
+
"proc-macro2",
|
|
2556
|
+
"quote",
|
|
2557
|
+
"syn",
|
|
2558
|
+
]
|
|
2559
|
+
|
|
2560
|
+
[[package]]
|
|
2561
|
+
name = "sha2"
|
|
2562
|
+
version = "0.10.9"
|
|
2563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2564
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2565
|
+
dependencies = [
|
|
2566
|
+
"cfg-if",
|
|
2567
|
+
"cpufeatures",
|
|
2568
|
+
"digest",
|
|
2569
|
+
]
|
|
2570
|
+
|
|
2571
|
+
[[package]]
|
|
2572
|
+
name = "shellexpand"
|
|
2573
|
+
version = "2.1.2"
|
|
2574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2575
|
+
checksum = "7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4"
|
|
2576
|
+
dependencies = [
|
|
2577
|
+
"dirs",
|
|
2578
|
+
]
|
|
2579
|
+
|
|
2580
|
+
[[package]]
|
|
2581
|
+
name = "shlex"
|
|
2582
|
+
version = "1.3.0"
|
|
2583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2584
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2585
|
+
|
|
2586
|
+
[[package]]
|
|
2587
|
+
name = "signature"
|
|
2588
|
+
version = "2.2.0"
|
|
2589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2590
|
+
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
|
2591
|
+
dependencies = [
|
|
2592
|
+
"rand_core 0.6.4",
|
|
2593
|
+
]
|
|
2594
|
+
|
|
2595
|
+
[[package]]
|
|
2596
|
+
name = "slab"
|
|
2597
|
+
version = "0.4.9"
|
|
2598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2599
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
2600
|
+
dependencies = [
|
|
2601
|
+
"autocfg",
|
|
2602
|
+
]
|
|
2603
|
+
|
|
2604
|
+
[[package]]
|
|
2605
|
+
name = "slice-group-by"
|
|
2606
|
+
version = "0.3.1"
|
|
2607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2608
|
+
checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7"
|
|
2609
|
+
|
|
2610
|
+
[[package]]
|
|
2611
|
+
name = "smallvec"
|
|
2612
|
+
version = "1.15.1"
|
|
2613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2614
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2615
|
+
dependencies = [
|
|
2616
|
+
"serde",
|
|
2617
|
+
]
|
|
2618
|
+
|
|
2619
|
+
[[package]]
|
|
2620
|
+
name = "socket2"
|
|
2621
|
+
version = "0.5.10"
|
|
2622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2623
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
2624
|
+
dependencies = [
|
|
2625
|
+
"libc",
|
|
2626
|
+
"windows-sys 0.52.0",
|
|
2627
|
+
]
|
|
2628
|
+
|
|
2629
|
+
[[package]]
|
|
2630
|
+
name = "socket2"
|
|
2631
|
+
version = "0.6.0"
|
|
2632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2633
|
+
checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
|
|
2634
|
+
dependencies = [
|
|
2635
|
+
"libc",
|
|
2636
|
+
"windows-sys 0.59.0",
|
|
2637
|
+
]
|
|
2638
|
+
|
|
2639
|
+
[[package]]
|
|
2640
|
+
name = "spki"
|
|
2641
|
+
version = "0.7.3"
|
|
2642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2643
|
+
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
2644
|
+
dependencies = [
|
|
2645
|
+
"base64ct",
|
|
2646
|
+
"der",
|
|
2647
|
+
]
|
|
2648
|
+
|
|
2649
|
+
[[package]]
|
|
2650
|
+
name = "sptr"
|
|
2651
|
+
version = "0.3.2"
|
|
2652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2653
|
+
checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a"
|
|
2654
|
+
|
|
2655
|
+
[[package]]
|
|
2656
|
+
name = "stable_deref_trait"
|
|
2657
|
+
version = "1.2.0"
|
|
2658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2659
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
2660
|
+
|
|
2661
|
+
[[package]]
|
|
2662
|
+
name = "strsim"
|
|
2663
|
+
version = "0.11.1"
|
|
2664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2665
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2666
|
+
|
|
2667
|
+
[[package]]
|
|
2668
|
+
name = "strum"
|
|
2669
|
+
version = "0.26.3"
|
|
2670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2671
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
2672
|
+
|
|
2673
|
+
[[package]]
|
|
2674
|
+
name = "strum_macros"
|
|
2675
|
+
version = "0.26.4"
|
|
2676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2677
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
2678
|
+
dependencies = [
|
|
2679
|
+
"heck",
|
|
2680
|
+
"proc-macro2",
|
|
2681
|
+
"quote",
|
|
2682
|
+
"rustversion",
|
|
2683
|
+
"syn",
|
|
2684
|
+
]
|
|
2685
|
+
|
|
2686
|
+
[[package]]
|
|
2687
|
+
name = "subtle"
|
|
2688
|
+
version = "2.6.1"
|
|
2689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2690
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2691
|
+
|
|
2692
|
+
[[package]]
|
|
2693
|
+
name = "syn"
|
|
2694
|
+
version = "2.0.104"
|
|
2695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2696
|
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
|
2697
|
+
dependencies = [
|
|
2698
|
+
"proc-macro2",
|
|
2699
|
+
"quote",
|
|
2700
|
+
"unicode-ident",
|
|
2701
|
+
]
|
|
2702
|
+
|
|
2703
|
+
[[package]]
|
|
2704
|
+
name = "sync_wrapper"
|
|
2705
|
+
version = "1.0.2"
|
|
2706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2707
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2708
|
+
dependencies = [
|
|
2709
|
+
"futures-core",
|
|
2710
|
+
]
|
|
2711
|
+
|
|
2712
|
+
[[package]]
|
|
2713
|
+
name = "synstructure"
|
|
2714
|
+
version = "0.13.2"
|
|
2715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2716
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2717
|
+
dependencies = [
|
|
2718
|
+
"proc-macro2",
|
|
2719
|
+
"quote",
|
|
2720
|
+
"syn",
|
|
2721
|
+
]
|
|
2722
|
+
|
|
2723
|
+
[[package]]
|
|
2724
|
+
name = "system-interface"
|
|
2725
|
+
version = "0.27.3"
|
|
2726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2727
|
+
checksum = "cc4592f674ce18521c2a81483873a49596655b179f71c5e05d10c1fe66c78745"
|
|
2728
|
+
dependencies = [
|
|
2729
|
+
"bitflags",
|
|
2730
|
+
"cap-fs-ext",
|
|
2731
|
+
"cap-std",
|
|
2732
|
+
"fd-lock",
|
|
2733
|
+
"io-lifetimes",
|
|
2734
|
+
"rustix 0.38.44",
|
|
2735
|
+
"windows-sys 0.59.0",
|
|
2736
|
+
"winx",
|
|
2737
|
+
]
|
|
2738
|
+
|
|
2739
|
+
[[package]]
|
|
2740
|
+
name = "tar"
|
|
2741
|
+
version = "0.4.44"
|
|
2742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2743
|
+
checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
|
|
2744
|
+
dependencies = [
|
|
2745
|
+
"filetime",
|
|
2746
|
+
"libc",
|
|
2747
|
+
"xattr",
|
|
2748
|
+
]
|
|
2749
|
+
|
|
2750
|
+
[[package]]
|
|
2751
|
+
name = "target-lexicon"
|
|
2752
|
+
version = "0.12.16"
|
|
2753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2754
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
2755
|
+
|
|
2756
|
+
[[package]]
|
|
2757
|
+
name = "target-lexicon"
|
|
2758
|
+
version = "0.13.2"
|
|
2759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2760
|
+
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
|
|
2761
|
+
|
|
2762
|
+
[[package]]
|
|
2763
|
+
name = "tempfile"
|
|
2764
|
+
version = "3.20.0"
|
|
2765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2766
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
|
2767
|
+
dependencies = [
|
|
2768
|
+
"fastrand",
|
|
2769
|
+
"getrandom 0.3.3",
|
|
2770
|
+
"once_cell",
|
|
2771
|
+
"rustix 1.0.8",
|
|
2772
|
+
"windows-sys 0.59.0",
|
|
2773
|
+
]
|
|
2774
|
+
|
|
2775
|
+
[[package]]
|
|
2776
|
+
name = "termcolor"
|
|
2777
|
+
version = "1.4.1"
|
|
2778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2779
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
2780
|
+
dependencies = [
|
|
2781
|
+
"winapi-util",
|
|
2782
|
+
]
|
|
2783
|
+
|
|
2784
|
+
[[package]]
|
|
2785
|
+
name = "thiserror"
|
|
2786
|
+
version = "1.0.69"
|
|
2787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2788
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2789
|
+
dependencies = [
|
|
2790
|
+
"thiserror-impl 1.0.69",
|
|
2791
|
+
]
|
|
2792
|
+
|
|
2793
|
+
[[package]]
|
|
2794
|
+
name = "thiserror"
|
|
2795
|
+
version = "2.0.12"
|
|
2796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2797
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
|
2798
|
+
dependencies = [
|
|
2799
|
+
"thiserror-impl 2.0.12",
|
|
2800
|
+
]
|
|
2801
|
+
|
|
2802
|
+
[[package]]
|
|
2803
|
+
name = "thiserror-impl"
|
|
2804
|
+
version = "1.0.69"
|
|
2805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2806
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2807
|
+
dependencies = [
|
|
2808
|
+
"proc-macro2",
|
|
2809
|
+
"quote",
|
|
2810
|
+
"syn",
|
|
2811
|
+
]
|
|
2812
|
+
|
|
2813
|
+
[[package]]
|
|
2814
|
+
name = "thiserror-impl"
|
|
2815
|
+
version = "2.0.12"
|
|
2816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2817
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
2818
|
+
dependencies = [
|
|
2819
|
+
"proc-macro2",
|
|
2820
|
+
"quote",
|
|
2821
|
+
"syn",
|
|
2822
|
+
]
|
|
2823
|
+
|
|
2824
|
+
[[package]]
|
|
2825
|
+
name = "time"
|
|
2826
|
+
version = "0.3.41"
|
|
2827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2828
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
|
2829
|
+
dependencies = [
|
|
2830
|
+
"deranged",
|
|
2831
|
+
"itoa",
|
|
2832
|
+
"num-conv",
|
|
2833
|
+
"powerfmt",
|
|
2834
|
+
"serde",
|
|
2835
|
+
"time-core",
|
|
2836
|
+
"time-macros",
|
|
2837
|
+
]
|
|
2838
|
+
|
|
2839
|
+
[[package]]
|
|
2840
|
+
name = "time-core"
|
|
2841
|
+
version = "0.1.4"
|
|
2842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
2844
|
+
|
|
2845
|
+
[[package]]
|
|
2846
|
+
name = "time-macros"
|
|
2847
|
+
version = "0.2.22"
|
|
2848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
|
2850
|
+
dependencies = [
|
|
2851
|
+
"num-conv",
|
|
2852
|
+
"time-core",
|
|
2853
|
+
]
|
|
2854
|
+
|
|
2855
|
+
[[package]]
|
|
2856
|
+
name = "tinystr"
|
|
2857
|
+
version = "0.8.1"
|
|
2858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2859
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
2860
|
+
dependencies = [
|
|
2861
|
+
"displaydoc",
|
|
2862
|
+
"zerovec",
|
|
2863
|
+
]
|
|
2864
|
+
|
|
2865
|
+
[[package]]
|
|
2866
|
+
name = "tinyvec"
|
|
2867
|
+
version = "1.9.0"
|
|
2868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
|
2870
|
+
dependencies = [
|
|
2871
|
+
"tinyvec_macros",
|
|
2872
|
+
]
|
|
2873
|
+
|
|
2874
|
+
[[package]]
|
|
2875
|
+
name = "tinyvec_macros"
|
|
2876
|
+
version = "0.1.1"
|
|
2877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2879
|
+
|
|
2880
|
+
[[package]]
|
|
2881
|
+
name = "tokio"
|
|
2882
|
+
version = "1.47.1"
|
|
2883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2884
|
+
checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
|
|
2885
|
+
dependencies = [
|
|
2886
|
+
"backtrace",
|
|
2887
|
+
"bytes",
|
|
2888
|
+
"io-uring",
|
|
2889
|
+
"libc",
|
|
2890
|
+
"mio",
|
|
2891
|
+
"pin-project-lite",
|
|
2892
|
+
"slab",
|
|
2893
|
+
"socket2 0.6.0",
|
|
2894
|
+
"tokio-macros",
|
|
2895
|
+
"windows-sys 0.59.0",
|
|
2896
|
+
]
|
|
2897
|
+
|
|
2898
|
+
[[package]]
|
|
2899
|
+
name = "tokio-macros"
|
|
2900
|
+
version = "2.5.0"
|
|
2901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2902
|
+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
|
|
2903
|
+
dependencies = [
|
|
2904
|
+
"proc-macro2",
|
|
2905
|
+
"quote",
|
|
2906
|
+
"syn",
|
|
2907
|
+
]
|
|
2908
|
+
|
|
2909
|
+
[[package]]
|
|
2910
|
+
name = "tokio-rustls"
|
|
2911
|
+
version = "0.26.2"
|
|
2912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2913
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
|
2914
|
+
dependencies = [
|
|
2915
|
+
"rustls",
|
|
2916
|
+
"tokio",
|
|
2917
|
+
]
|
|
2918
|
+
|
|
2919
|
+
[[package]]
|
|
2920
|
+
name = "tokio-util"
|
|
2921
|
+
version = "0.7.16"
|
|
2922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2923
|
+
checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
|
|
2924
|
+
dependencies = [
|
|
2925
|
+
"bytes",
|
|
2926
|
+
"futures-core",
|
|
2927
|
+
"futures-sink",
|
|
2928
|
+
"pin-project-lite",
|
|
2929
|
+
"tokio",
|
|
2930
|
+
]
|
|
2931
|
+
|
|
2932
|
+
[[package]]
|
|
2933
|
+
name = "toml"
|
|
2934
|
+
version = "0.8.23"
|
|
2935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2936
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
2937
|
+
dependencies = [
|
|
2938
|
+
"serde",
|
|
2939
|
+
"serde_spanned",
|
|
2940
|
+
"toml_datetime",
|
|
2941
|
+
"toml_edit",
|
|
2942
|
+
]
|
|
2943
|
+
|
|
2944
|
+
[[package]]
|
|
2945
|
+
name = "toml_datetime"
|
|
2946
|
+
version = "0.6.11"
|
|
2947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2948
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
2949
|
+
dependencies = [
|
|
2950
|
+
"serde",
|
|
2951
|
+
]
|
|
2952
|
+
|
|
2953
|
+
[[package]]
|
|
2954
|
+
name = "toml_edit"
|
|
2955
|
+
version = "0.22.27"
|
|
2956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2957
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
2958
|
+
dependencies = [
|
|
2959
|
+
"indexmap 2.10.0",
|
|
2960
|
+
"serde",
|
|
2961
|
+
"serde_spanned",
|
|
2962
|
+
"toml_datetime",
|
|
2963
|
+
"toml_write",
|
|
2964
|
+
"winnow",
|
|
2965
|
+
]
|
|
2966
|
+
|
|
2967
|
+
[[package]]
|
|
2968
|
+
name = "toml_write"
|
|
2969
|
+
version = "0.1.2"
|
|
2970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2971
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
2972
|
+
|
|
2973
|
+
[[package]]
|
|
2974
|
+
name = "tower"
|
|
2975
|
+
version = "0.5.2"
|
|
2976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2977
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
2978
|
+
dependencies = [
|
|
2979
|
+
"futures-core",
|
|
2980
|
+
"futures-util",
|
|
2981
|
+
"pin-project-lite",
|
|
2982
|
+
"sync_wrapper",
|
|
2983
|
+
"tokio",
|
|
2984
|
+
"tower-layer",
|
|
2985
|
+
"tower-service",
|
|
2986
|
+
]
|
|
2987
|
+
|
|
2988
|
+
[[package]]
|
|
2989
|
+
name = "tower-http"
|
|
2990
|
+
version = "0.6.6"
|
|
2991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2992
|
+
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
|
|
2993
|
+
dependencies = [
|
|
2994
|
+
"bitflags",
|
|
2995
|
+
"bytes",
|
|
2996
|
+
"futures-util",
|
|
2997
|
+
"http",
|
|
2998
|
+
"http-body",
|
|
2999
|
+
"iri-string",
|
|
3000
|
+
"pin-project-lite",
|
|
3001
|
+
"tower",
|
|
3002
|
+
"tower-layer",
|
|
3003
|
+
"tower-service",
|
|
3004
|
+
]
|
|
3005
|
+
|
|
3006
|
+
[[package]]
|
|
3007
|
+
name = "tower-layer"
|
|
3008
|
+
version = "0.3.3"
|
|
3009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3010
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3011
|
+
|
|
3012
|
+
[[package]]
|
|
3013
|
+
name = "tower-service"
|
|
3014
|
+
version = "0.3.3"
|
|
3015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3016
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3017
|
+
|
|
3018
|
+
[[package]]
|
|
3019
|
+
name = "tracing"
|
|
3020
|
+
version = "0.1.41"
|
|
3021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3022
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
3023
|
+
dependencies = [
|
|
3024
|
+
"log",
|
|
3025
|
+
"pin-project-lite",
|
|
3026
|
+
"tracing-attributes",
|
|
3027
|
+
"tracing-core",
|
|
3028
|
+
]
|
|
3029
|
+
|
|
3030
|
+
[[package]]
|
|
3031
|
+
name = "tracing-attributes"
|
|
3032
|
+
version = "0.1.30"
|
|
3033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3034
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
|
3035
|
+
dependencies = [
|
|
3036
|
+
"proc-macro2",
|
|
3037
|
+
"quote",
|
|
3038
|
+
"syn",
|
|
3039
|
+
]
|
|
3040
|
+
|
|
3041
|
+
[[package]]
|
|
3042
|
+
name = "tracing-core"
|
|
3043
|
+
version = "0.1.34"
|
|
3044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3045
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
3046
|
+
dependencies = [
|
|
3047
|
+
"once_cell",
|
|
3048
|
+
]
|
|
3049
|
+
|
|
3050
|
+
[[package]]
|
|
3051
|
+
name = "try-lock"
|
|
3052
|
+
version = "0.2.5"
|
|
3053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3054
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3055
|
+
|
|
3056
|
+
[[package]]
|
|
3057
|
+
name = "typenum"
|
|
3058
|
+
version = "1.18.0"
|
|
3059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3060
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
3061
|
+
|
|
3062
|
+
[[package]]
|
|
3063
|
+
name = "unicase"
|
|
3064
|
+
version = "2.8.1"
|
|
3065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3066
|
+
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
3067
|
+
|
|
3068
|
+
[[package]]
|
|
3069
|
+
name = "unicode-ident"
|
|
3070
|
+
version = "1.0.18"
|
|
3071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3072
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
3073
|
+
|
|
3074
|
+
[[package]]
|
|
3075
|
+
name = "unicode-normalization"
|
|
3076
|
+
version = "0.1.24"
|
|
3077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3078
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
|
3079
|
+
dependencies = [
|
|
3080
|
+
"tinyvec",
|
|
3081
|
+
]
|
|
3082
|
+
|
|
3083
|
+
[[package]]
|
|
3084
|
+
name = "unicode-width"
|
|
3085
|
+
version = "0.2.1"
|
|
3086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3087
|
+
checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
|
|
3088
|
+
|
|
3089
|
+
[[package]]
|
|
3090
|
+
name = "unicode-xid"
|
|
3091
|
+
version = "0.2.6"
|
|
3092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3093
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3094
|
+
|
|
3095
|
+
[[package]]
|
|
3096
|
+
name = "unindent"
|
|
3097
|
+
version = "0.2.4"
|
|
3098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3099
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3100
|
+
|
|
3101
|
+
[[package]]
|
|
3102
|
+
name = "untrusted"
|
|
3103
|
+
version = "0.9.0"
|
|
3104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3105
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3106
|
+
|
|
3107
|
+
[[package]]
|
|
3108
|
+
name = "ureq"
|
|
3109
|
+
version = "2.12.1"
|
|
3110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3111
|
+
checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
|
|
3112
|
+
dependencies = [
|
|
3113
|
+
"base64 0.22.1",
|
|
3114
|
+
"flate2",
|
|
3115
|
+
"log",
|
|
3116
|
+
"once_cell",
|
|
3117
|
+
"rustls",
|
|
3118
|
+
"rustls-pki-types",
|
|
3119
|
+
"url",
|
|
3120
|
+
"webpki-roots 0.26.11",
|
|
3121
|
+
]
|
|
3122
|
+
|
|
3123
|
+
[[package]]
|
|
3124
|
+
name = "url"
|
|
3125
|
+
version = "2.5.4"
|
|
3126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3127
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
3128
|
+
dependencies = [
|
|
3129
|
+
"form_urlencoded",
|
|
3130
|
+
"idna",
|
|
3131
|
+
"percent-encoding",
|
|
3132
|
+
]
|
|
3133
|
+
|
|
3134
|
+
[[package]]
|
|
3135
|
+
name = "utf8_iter"
|
|
3136
|
+
version = "1.0.4"
|
|
3137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3138
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3139
|
+
|
|
3140
|
+
[[package]]
|
|
3141
|
+
name = "uuid"
|
|
3142
|
+
version = "1.17.0"
|
|
3143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3144
|
+
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
|
|
3145
|
+
dependencies = [
|
|
3146
|
+
"js-sys",
|
|
3147
|
+
"wasm-bindgen",
|
|
3148
|
+
]
|
|
3149
|
+
|
|
3150
|
+
[[package]]
|
|
3151
|
+
name = "vcpkg"
|
|
3152
|
+
version = "0.2.15"
|
|
3153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3154
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
3155
|
+
|
|
3156
|
+
[[package]]
|
|
3157
|
+
name = "version_check"
|
|
3158
|
+
version = "0.9.5"
|
|
3159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3160
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3161
|
+
|
|
3162
|
+
[[package]]
|
|
3163
|
+
name = "walkdir"
|
|
3164
|
+
version = "2.5.0"
|
|
3165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3166
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3167
|
+
dependencies = [
|
|
3168
|
+
"same-file",
|
|
3169
|
+
"winapi-util",
|
|
3170
|
+
]
|
|
3171
|
+
|
|
3172
|
+
[[package]]
|
|
3173
|
+
name = "want"
|
|
3174
|
+
version = "0.3.1"
|
|
3175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3176
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3177
|
+
dependencies = [
|
|
3178
|
+
"try-lock",
|
|
3179
|
+
]
|
|
3180
|
+
|
|
3181
|
+
[[package]]
|
|
3182
|
+
name = "wasi"
|
|
3183
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3185
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3186
|
+
|
|
3187
|
+
[[package]]
|
|
3188
|
+
name = "wasi"
|
|
3189
|
+
version = "0.14.2+wasi-0.2.4"
|
|
3190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3191
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
3192
|
+
dependencies = [
|
|
3193
|
+
"wit-bindgen-rt",
|
|
3194
|
+
]
|
|
3195
|
+
|
|
3196
|
+
[[package]]
|
|
3197
|
+
name = "wasm-bindgen"
|
|
3198
|
+
version = "0.2.100"
|
|
3199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3200
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
3201
|
+
dependencies = [
|
|
3202
|
+
"cfg-if",
|
|
3203
|
+
"once_cell",
|
|
3204
|
+
"rustversion",
|
|
3205
|
+
"wasm-bindgen-macro",
|
|
3206
|
+
]
|
|
3207
|
+
|
|
3208
|
+
[[package]]
|
|
3209
|
+
name = "wasm-bindgen-backend"
|
|
3210
|
+
version = "0.2.100"
|
|
3211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3212
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
3213
|
+
dependencies = [
|
|
3214
|
+
"bumpalo",
|
|
3215
|
+
"log",
|
|
3216
|
+
"proc-macro2",
|
|
3217
|
+
"quote",
|
|
3218
|
+
"syn",
|
|
3219
|
+
"wasm-bindgen-shared",
|
|
3220
|
+
]
|
|
3221
|
+
|
|
3222
|
+
[[package]]
|
|
3223
|
+
name = "wasm-bindgen-futures"
|
|
3224
|
+
version = "0.4.50"
|
|
3225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3226
|
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
|
|
3227
|
+
dependencies = [
|
|
3228
|
+
"cfg-if",
|
|
3229
|
+
"js-sys",
|
|
3230
|
+
"once_cell",
|
|
3231
|
+
"wasm-bindgen",
|
|
3232
|
+
"web-sys",
|
|
3233
|
+
]
|
|
3234
|
+
|
|
3235
|
+
[[package]]
|
|
3236
|
+
name = "wasm-bindgen-macro"
|
|
3237
|
+
version = "0.2.100"
|
|
3238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3239
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
3240
|
+
dependencies = [
|
|
3241
|
+
"quote",
|
|
3242
|
+
"wasm-bindgen-macro-support",
|
|
3243
|
+
]
|
|
3244
|
+
|
|
3245
|
+
[[package]]
|
|
3246
|
+
name = "wasm-bindgen-macro-support"
|
|
3247
|
+
version = "0.2.100"
|
|
3248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3249
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
3250
|
+
dependencies = [
|
|
3251
|
+
"proc-macro2",
|
|
3252
|
+
"quote",
|
|
3253
|
+
"syn",
|
|
3254
|
+
"wasm-bindgen-backend",
|
|
3255
|
+
"wasm-bindgen-shared",
|
|
3256
|
+
]
|
|
3257
|
+
|
|
3258
|
+
[[package]]
|
|
3259
|
+
name = "wasm-bindgen-shared"
|
|
3260
|
+
version = "0.2.100"
|
|
3261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3262
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
3263
|
+
dependencies = [
|
|
3264
|
+
"unicode-ident",
|
|
3265
|
+
]
|
|
3266
|
+
|
|
3267
|
+
[[package]]
|
|
3268
|
+
name = "wasm-encoder"
|
|
3269
|
+
version = "0.218.1"
|
|
3270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3271
|
+
checksum = "491f7e48672d0a1efdeadf897d98ac1f45942c26c3829cb44a6b828f6f26155f"
|
|
3272
|
+
dependencies = [
|
|
3273
|
+
"leb128",
|
|
3274
|
+
]
|
|
3275
|
+
|
|
3276
|
+
[[package]]
|
|
3277
|
+
name = "wasm-encoder"
|
|
3278
|
+
version = "0.236.0"
|
|
3279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3280
|
+
checksum = "3108979166ab0d3c7262d2e16a2190ffe784b2a5beb963edef154b5e8e07680b"
|
|
3281
|
+
dependencies = [
|
|
3282
|
+
"leb128fmt",
|
|
3283
|
+
"wasmparser 0.236.0",
|
|
3284
|
+
]
|
|
3285
|
+
|
|
3286
|
+
[[package]]
|
|
3287
|
+
name = "wasm-streams"
|
|
3288
|
+
version = "0.4.2"
|
|
3289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3290
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
3291
|
+
dependencies = [
|
|
3292
|
+
"futures-util",
|
|
3293
|
+
"js-sys",
|
|
3294
|
+
"wasm-bindgen",
|
|
3295
|
+
"wasm-bindgen-futures",
|
|
3296
|
+
"web-sys",
|
|
3297
|
+
]
|
|
3298
|
+
|
|
3299
|
+
[[package]]
|
|
3300
|
+
name = "wasmparser"
|
|
3301
|
+
version = "0.218.1"
|
|
3302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3303
|
+
checksum = "059739c2eac26eea736389a7d6d30b41a8201490bea204d0facde19183359849"
|
|
3304
|
+
dependencies = [
|
|
3305
|
+
"ahash",
|
|
3306
|
+
"bitflags",
|
|
3307
|
+
"hashbrown 0.14.5",
|
|
3308
|
+
"indexmap 2.10.0",
|
|
3309
|
+
"semver",
|
|
3310
|
+
"serde",
|
|
3311
|
+
]
|
|
3312
|
+
|
|
3313
|
+
[[package]]
|
|
3314
|
+
name = "wasmparser"
|
|
3315
|
+
version = "0.236.0"
|
|
3316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3317
|
+
checksum = "16d1eee846a705f6f3cb9d7b9f79b54583810f1fb57a1e3aea76d1742db2e3d2"
|
|
3318
|
+
dependencies = [
|
|
3319
|
+
"bitflags",
|
|
3320
|
+
"indexmap 2.10.0",
|
|
3321
|
+
"semver",
|
|
3322
|
+
]
|
|
3323
|
+
|
|
3324
|
+
[[package]]
|
|
3325
|
+
name = "wasmprinter"
|
|
3326
|
+
version = "0.218.1"
|
|
3327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3328
|
+
checksum = "38b30ceafa77646f56747369b0f2a0296016a40b447d32e6907439f2e4bb7695"
|
|
3329
|
+
dependencies = [
|
|
3330
|
+
"anyhow",
|
|
3331
|
+
"termcolor",
|
|
3332
|
+
"wasmparser 0.218.1",
|
|
3333
|
+
]
|
|
3334
|
+
|
|
3335
|
+
[[package]]
|
|
3336
|
+
name = "wasmtime"
|
|
3337
|
+
version = "26.0.1"
|
|
3338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3339
|
+
checksum = "51e762e163fd305770c6c341df3290f0cabb3c264e7952943018e9a1ced8d917"
|
|
3340
|
+
dependencies = [
|
|
3341
|
+
"addr2line",
|
|
3342
|
+
"anyhow",
|
|
3343
|
+
"async-trait",
|
|
3344
|
+
"bitflags",
|
|
3345
|
+
"bumpalo",
|
|
3346
|
+
"cc",
|
|
3347
|
+
"cfg-if",
|
|
3348
|
+
"encoding_rs",
|
|
3349
|
+
"fxprof-processed-profile",
|
|
3350
|
+
"gimli",
|
|
3351
|
+
"hashbrown 0.14.5",
|
|
3352
|
+
"indexmap 2.10.0",
|
|
3353
|
+
"ittapi",
|
|
3354
|
+
"libc",
|
|
3355
|
+
"libm",
|
|
3356
|
+
"log",
|
|
3357
|
+
"mach2",
|
|
3358
|
+
"memfd",
|
|
3359
|
+
"object",
|
|
3360
|
+
"once_cell",
|
|
3361
|
+
"paste",
|
|
3362
|
+
"postcard",
|
|
3363
|
+
"psm",
|
|
3364
|
+
"pulley-interpreter",
|
|
3365
|
+
"rayon",
|
|
3366
|
+
"rustix 0.38.44",
|
|
3367
|
+
"semver",
|
|
3368
|
+
"serde",
|
|
3369
|
+
"serde_derive",
|
|
3370
|
+
"serde_json",
|
|
3371
|
+
"smallvec",
|
|
3372
|
+
"sptr",
|
|
3373
|
+
"target-lexicon 0.12.16",
|
|
3374
|
+
"wasm-encoder 0.218.1",
|
|
3375
|
+
"wasmparser 0.218.1",
|
|
3376
|
+
"wasmtime-asm-macros",
|
|
3377
|
+
"wasmtime-cache",
|
|
3378
|
+
"wasmtime-component-macro",
|
|
3379
|
+
"wasmtime-component-util",
|
|
3380
|
+
"wasmtime-cranelift",
|
|
3381
|
+
"wasmtime-environ",
|
|
3382
|
+
"wasmtime-fiber",
|
|
3383
|
+
"wasmtime-jit-debug",
|
|
3384
|
+
"wasmtime-jit-icache-coherence",
|
|
3385
|
+
"wasmtime-slab",
|
|
3386
|
+
"wasmtime-versioned-export-macros",
|
|
3387
|
+
"wasmtime-winch",
|
|
3388
|
+
"wat",
|
|
3389
|
+
"windows-sys 0.59.0",
|
|
3390
|
+
]
|
|
3391
|
+
|
|
3392
|
+
[[package]]
|
|
3393
|
+
name = "wasmtime-asm-macros"
|
|
3394
|
+
version = "26.0.1"
|
|
3395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3396
|
+
checksum = "63caa7aebb546374e26257a1900fb93579171e7c02514cde26805b9ece3ef812"
|
|
3397
|
+
dependencies = [
|
|
3398
|
+
"cfg-if",
|
|
3399
|
+
]
|
|
3400
|
+
|
|
3401
|
+
[[package]]
|
|
3402
|
+
name = "wasmtime-cache"
|
|
3403
|
+
version = "26.0.1"
|
|
3404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3405
|
+
checksum = "c7192f71e3afe32e858729454d9d90d6e927bd92427d688a9507d8220bddb256"
|
|
3406
|
+
dependencies = [
|
|
3407
|
+
"anyhow",
|
|
3408
|
+
"base64 0.21.7",
|
|
3409
|
+
"directories-next",
|
|
3410
|
+
"log",
|
|
3411
|
+
"postcard",
|
|
3412
|
+
"rustix 0.38.44",
|
|
3413
|
+
"serde",
|
|
3414
|
+
"serde_derive",
|
|
3415
|
+
"sha2",
|
|
3416
|
+
"toml",
|
|
3417
|
+
"windows-sys 0.59.0",
|
|
3418
|
+
"zstd",
|
|
3419
|
+
]
|
|
3420
|
+
|
|
3421
|
+
[[package]]
|
|
3422
|
+
name = "wasmtime-component-macro"
|
|
3423
|
+
version = "26.0.1"
|
|
3424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3425
|
+
checksum = "d61a4b5ce2ad9c15655e830f0eac0c38b8def30c74ecac71f452d3901e491b68"
|
|
3426
|
+
dependencies = [
|
|
3427
|
+
"anyhow",
|
|
3428
|
+
"proc-macro2",
|
|
3429
|
+
"quote",
|
|
3430
|
+
"syn",
|
|
3431
|
+
"wasmtime-component-util",
|
|
3432
|
+
"wasmtime-wit-bindgen",
|
|
3433
|
+
"wit-parser",
|
|
3434
|
+
]
|
|
3435
|
+
|
|
3436
|
+
[[package]]
|
|
3437
|
+
name = "wasmtime-component-util"
|
|
3438
|
+
version = "26.0.1"
|
|
3439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3440
|
+
checksum = "35e87a1212270dbb84a49af13d82594e00a92769d6952b0ea7fc4366c949f6ad"
|
|
3441
|
+
|
|
3442
|
+
[[package]]
|
|
3443
|
+
name = "wasmtime-cranelift"
|
|
3444
|
+
version = "26.0.1"
|
|
3445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3446
|
+
checksum = "7cb40dddf38c6a5eefd5ce7c1baf43b00fe44eada11a319fab22e993a960262f"
|
|
3447
|
+
dependencies = [
|
|
3448
|
+
"anyhow",
|
|
3449
|
+
"cfg-if",
|
|
3450
|
+
"cranelift-codegen",
|
|
3451
|
+
"cranelift-control",
|
|
3452
|
+
"cranelift-entity",
|
|
3453
|
+
"cranelift-frontend",
|
|
3454
|
+
"cranelift-native",
|
|
3455
|
+
"gimli",
|
|
3456
|
+
"itertools",
|
|
3457
|
+
"log",
|
|
3458
|
+
"object",
|
|
3459
|
+
"smallvec",
|
|
3460
|
+
"target-lexicon 0.12.16",
|
|
3461
|
+
"thiserror 1.0.69",
|
|
3462
|
+
"wasmparser 0.218.1",
|
|
3463
|
+
"wasmtime-environ",
|
|
3464
|
+
"wasmtime-versioned-export-macros",
|
|
3465
|
+
]
|
|
3466
|
+
|
|
3467
|
+
[[package]]
|
|
3468
|
+
name = "wasmtime-environ"
|
|
3469
|
+
version = "26.0.1"
|
|
3470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3471
|
+
checksum = "8613075e89e94a48c05862243c2b718eef1b9c337f51493ebf951e149a10fa19"
|
|
3472
|
+
dependencies = [
|
|
3473
|
+
"anyhow",
|
|
3474
|
+
"cpp_demangle",
|
|
3475
|
+
"cranelift-bitset",
|
|
3476
|
+
"cranelift-entity",
|
|
3477
|
+
"gimli",
|
|
3478
|
+
"indexmap 2.10.0",
|
|
3479
|
+
"log",
|
|
3480
|
+
"object",
|
|
3481
|
+
"postcard",
|
|
3482
|
+
"rustc-demangle",
|
|
3483
|
+
"semver",
|
|
3484
|
+
"serde",
|
|
3485
|
+
"serde_derive",
|
|
3486
|
+
"smallvec",
|
|
3487
|
+
"target-lexicon 0.12.16",
|
|
3488
|
+
"wasm-encoder 0.218.1",
|
|
3489
|
+
"wasmparser 0.218.1",
|
|
3490
|
+
"wasmprinter",
|
|
3491
|
+
"wasmtime-component-util",
|
|
3492
|
+
]
|
|
3493
|
+
|
|
3494
|
+
[[package]]
|
|
3495
|
+
name = "wasmtime-fiber"
|
|
3496
|
+
version = "26.0.1"
|
|
3497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3498
|
+
checksum = "77acabfbcd89a4d47ad117fb31e340c824e2f49597105402c3127457b6230995"
|
|
3499
|
+
dependencies = [
|
|
3500
|
+
"anyhow",
|
|
3501
|
+
"cc",
|
|
3502
|
+
"cfg-if",
|
|
3503
|
+
"rustix 0.38.44",
|
|
3504
|
+
"wasmtime-asm-macros",
|
|
3505
|
+
"wasmtime-versioned-export-macros",
|
|
3506
|
+
"windows-sys 0.59.0",
|
|
3507
|
+
]
|
|
3508
|
+
|
|
3509
|
+
[[package]]
|
|
3510
|
+
name = "wasmtime-jit-debug"
|
|
3511
|
+
version = "26.0.1"
|
|
3512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3513
|
+
checksum = "f02a0118d471de665565ed200bc56673eaa10cc8e223dfe2cef5d50ed0d9d143"
|
|
3514
|
+
dependencies = [
|
|
3515
|
+
"object",
|
|
3516
|
+
"once_cell",
|
|
3517
|
+
"rustix 0.38.44",
|
|
3518
|
+
"wasmtime-versioned-export-macros",
|
|
3519
|
+
]
|
|
3520
|
+
|
|
3521
|
+
[[package]]
|
|
3522
|
+
name = "wasmtime-jit-icache-coherence"
|
|
3523
|
+
version = "26.0.1"
|
|
3524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3525
|
+
checksum = "da47fba49af72581bc0dc67c8faaf5ee550e6f106e285122a184a675193701a5"
|
|
3526
|
+
dependencies = [
|
|
3527
|
+
"anyhow",
|
|
3528
|
+
"cfg-if",
|
|
3529
|
+
"libc",
|
|
3530
|
+
"windows-sys 0.59.0",
|
|
3531
|
+
]
|
|
3532
|
+
|
|
3533
|
+
[[package]]
|
|
3534
|
+
name = "wasmtime-slab"
|
|
3535
|
+
version = "26.0.1"
|
|
3536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3537
|
+
checksum = "770e10cdefb15f2b6304152978e115bd062753c1ebe7221c0b6b104fa0419ff6"
|
|
3538
|
+
|
|
3539
|
+
[[package]]
|
|
3540
|
+
name = "wasmtime-versioned-export-macros"
|
|
3541
|
+
version = "26.0.1"
|
|
3542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3543
|
+
checksum = "db8efb877c9e5e67239d4553bb44dd2a34ae5cfb728f3cf2c5e64439c6ca6ee7"
|
|
3544
|
+
dependencies = [
|
|
3545
|
+
"proc-macro2",
|
|
3546
|
+
"quote",
|
|
3547
|
+
"syn",
|
|
3548
|
+
]
|
|
3549
|
+
|
|
3550
|
+
[[package]]
|
|
3551
|
+
name = "wasmtime-wasi"
|
|
3552
|
+
version = "26.0.1"
|
|
3553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3554
|
+
checksum = "f16c8d87a45168131be6815045e6d46d7f6ddf65897c49444ab210488bce10dc"
|
|
3555
|
+
dependencies = [
|
|
3556
|
+
"anyhow",
|
|
3557
|
+
"async-trait",
|
|
3558
|
+
"bitflags",
|
|
3559
|
+
"bytes",
|
|
3560
|
+
"cap-fs-ext",
|
|
3561
|
+
"cap-net-ext",
|
|
3562
|
+
"cap-rand",
|
|
3563
|
+
"cap-std",
|
|
3564
|
+
"cap-time-ext",
|
|
3565
|
+
"fs-set-times",
|
|
3566
|
+
"futures",
|
|
3567
|
+
"io-extras",
|
|
3568
|
+
"io-lifetimes",
|
|
3569
|
+
"once_cell",
|
|
3570
|
+
"rustix 0.38.44",
|
|
3571
|
+
"system-interface",
|
|
3572
|
+
"thiserror 1.0.69",
|
|
3573
|
+
"tokio",
|
|
3574
|
+
"tracing",
|
|
3575
|
+
"url",
|
|
3576
|
+
"wasmtime",
|
|
3577
|
+
"wiggle",
|
|
3578
|
+
"windows-sys 0.59.0",
|
|
3579
|
+
]
|
|
3580
|
+
|
|
3581
|
+
[[package]]
|
|
3582
|
+
name = "wasmtime-winch"
|
|
3583
|
+
version = "26.0.1"
|
|
3584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3585
|
+
checksum = "4f7a267367382ceec3e7f7ace63a63b83d86f4a680846743dead644e10f08150"
|
|
3586
|
+
dependencies = [
|
|
3587
|
+
"anyhow",
|
|
3588
|
+
"cranelift-codegen",
|
|
3589
|
+
"gimli",
|
|
3590
|
+
"object",
|
|
3591
|
+
"target-lexicon 0.12.16",
|
|
3592
|
+
"wasmparser 0.218.1",
|
|
3593
|
+
"wasmtime-cranelift",
|
|
3594
|
+
"wasmtime-environ",
|
|
3595
|
+
"winch-codegen",
|
|
3596
|
+
]
|
|
3597
|
+
|
|
3598
|
+
[[package]]
|
|
3599
|
+
name = "wasmtime-wit-bindgen"
|
|
3600
|
+
version = "26.0.1"
|
|
3601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3602
|
+
checksum = "4bef2a726fd8d1ee9b0144655e16c492dc32eb4c7c9f7e3309fcffe637870933"
|
|
3603
|
+
dependencies = [
|
|
3604
|
+
"anyhow",
|
|
3605
|
+
"heck",
|
|
3606
|
+
"indexmap 2.10.0",
|
|
3607
|
+
"wit-parser",
|
|
3608
|
+
]
|
|
3609
|
+
|
|
3610
|
+
[[package]]
|
|
3611
|
+
name = "wast"
|
|
3612
|
+
version = "35.0.2"
|
|
3613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3614
|
+
checksum = "2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68"
|
|
3615
|
+
dependencies = [
|
|
3616
|
+
"leb128",
|
|
3617
|
+
]
|
|
3618
|
+
|
|
3619
|
+
[[package]]
|
|
3620
|
+
name = "wast"
|
|
3621
|
+
version = "236.0.0"
|
|
3622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3623
|
+
checksum = "11d6b6faeab519ba6fbf9b26add41617ca6f5553f99ebc33d876e591d2f4f3c6"
|
|
3624
|
+
dependencies = [
|
|
3625
|
+
"bumpalo",
|
|
3626
|
+
"leb128fmt",
|
|
3627
|
+
"memchr",
|
|
3628
|
+
"unicode-width",
|
|
3629
|
+
"wasm-encoder 0.236.0",
|
|
3630
|
+
]
|
|
3631
|
+
|
|
3632
|
+
[[package]]
|
|
3633
|
+
name = "wat"
|
|
3634
|
+
version = "1.236.0"
|
|
3635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3636
|
+
checksum = "cc31704322400f461f7f31a5f9190d5488aaeafb63ae69ad2b5888d2704dcb08"
|
|
3637
|
+
dependencies = [
|
|
3638
|
+
"wast 236.0.0",
|
|
3639
|
+
]
|
|
3640
|
+
|
|
3641
|
+
[[package]]
|
|
3642
|
+
name = "web-sys"
|
|
3643
|
+
version = "0.3.77"
|
|
3644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3645
|
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
|
|
3646
|
+
dependencies = [
|
|
3647
|
+
"js-sys",
|
|
3648
|
+
"wasm-bindgen",
|
|
3649
|
+
]
|
|
3650
|
+
|
|
3651
|
+
[[package]]
|
|
3652
|
+
name = "web-time"
|
|
3653
|
+
version = "1.1.0"
|
|
3654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3655
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3656
|
+
dependencies = [
|
|
3657
|
+
"js-sys",
|
|
3658
|
+
"wasm-bindgen",
|
|
3659
|
+
]
|
|
3660
|
+
|
|
3661
|
+
[[package]]
|
|
3662
|
+
name = "webpki-roots"
|
|
3663
|
+
version = "0.26.11"
|
|
3664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3665
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
3666
|
+
dependencies = [
|
|
3667
|
+
"webpki-roots 1.0.2",
|
|
3668
|
+
]
|
|
3669
|
+
|
|
3670
|
+
[[package]]
|
|
3671
|
+
name = "webpki-roots"
|
|
3672
|
+
version = "1.0.2"
|
|
3673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3674
|
+
checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2"
|
|
3675
|
+
dependencies = [
|
|
3676
|
+
"rustls-pki-types",
|
|
3677
|
+
]
|
|
3678
|
+
|
|
3679
|
+
[[package]]
|
|
3680
|
+
name = "which"
|
|
3681
|
+
version = "6.0.3"
|
|
3682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3683
|
+
checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f"
|
|
3684
|
+
dependencies = [
|
|
3685
|
+
"either",
|
|
3686
|
+
"home",
|
|
3687
|
+
"rustix 0.38.44",
|
|
3688
|
+
"winsafe",
|
|
3689
|
+
]
|
|
3690
|
+
|
|
3691
|
+
[[package]]
|
|
3692
|
+
name = "wiggle"
|
|
3693
|
+
version = "26.0.1"
|
|
3694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3695
|
+
checksum = "b0f25588cf5ea16f56c1af13244486d50c5a2cf67cc0c4e990c665944d741546"
|
|
3696
|
+
dependencies = [
|
|
3697
|
+
"anyhow",
|
|
3698
|
+
"async-trait",
|
|
3699
|
+
"bitflags",
|
|
3700
|
+
"thiserror 1.0.69",
|
|
3701
|
+
"tracing",
|
|
3702
|
+
"wasmtime",
|
|
3703
|
+
"wiggle-macro",
|
|
3704
|
+
]
|
|
3705
|
+
|
|
3706
|
+
[[package]]
|
|
3707
|
+
name = "wiggle-generate"
|
|
3708
|
+
version = "26.0.1"
|
|
3709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3710
|
+
checksum = "28ff23bed568b335dac6a324b8b167318a0c60555199445fcc89745a5eb42452"
|
|
3711
|
+
dependencies = [
|
|
3712
|
+
"anyhow",
|
|
3713
|
+
"heck",
|
|
3714
|
+
"proc-macro2",
|
|
3715
|
+
"quote",
|
|
3716
|
+
"shellexpand",
|
|
3717
|
+
"syn",
|
|
3718
|
+
"witx",
|
|
3719
|
+
]
|
|
3720
|
+
|
|
3721
|
+
[[package]]
|
|
3722
|
+
name = "wiggle-macro"
|
|
3723
|
+
version = "26.0.1"
|
|
3724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3725
|
+
checksum = "7f13be83541aa0b033ac5ec8a8b59c9a8d8b32305845b8466dd066e722cb0004"
|
|
3726
|
+
dependencies = [
|
|
3727
|
+
"proc-macro2",
|
|
3728
|
+
"quote",
|
|
3729
|
+
"syn",
|
|
3730
|
+
"wiggle-generate",
|
|
3731
|
+
]
|
|
3732
|
+
|
|
3733
|
+
[[package]]
|
|
3734
|
+
name = "winapi"
|
|
3735
|
+
version = "0.3.9"
|
|
3736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3737
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3738
|
+
dependencies = [
|
|
3739
|
+
"winapi-i686-pc-windows-gnu",
|
|
3740
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3741
|
+
]
|
|
3742
|
+
|
|
3743
|
+
[[package]]
|
|
3744
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3745
|
+
version = "0.4.0"
|
|
3746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3747
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3748
|
+
|
|
3749
|
+
[[package]]
|
|
3750
|
+
name = "winapi-util"
|
|
3751
|
+
version = "0.1.9"
|
|
3752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3753
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
3754
|
+
dependencies = [
|
|
3755
|
+
"windows-sys 0.59.0",
|
|
3756
|
+
]
|
|
3757
|
+
|
|
3758
|
+
[[package]]
|
|
3759
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3760
|
+
version = "0.4.0"
|
|
3761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3762
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3763
|
+
|
|
3764
|
+
[[package]]
|
|
3765
|
+
name = "winch-codegen"
|
|
3766
|
+
version = "26.0.1"
|
|
3767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3768
|
+
checksum = "07ab957fc71a36c63834b9b51cc2e087c4260d5ff810a5309ab99f7fbeb19567"
|
|
3769
|
+
dependencies = [
|
|
3770
|
+
"anyhow",
|
|
3771
|
+
"cranelift-codegen",
|
|
3772
|
+
"gimli",
|
|
3773
|
+
"regalloc2",
|
|
3774
|
+
"smallvec",
|
|
3775
|
+
"target-lexicon 0.12.16",
|
|
3776
|
+
"wasmparser 0.218.1",
|
|
3777
|
+
"wasmtime-cranelift",
|
|
3778
|
+
"wasmtime-environ",
|
|
3779
|
+
]
|
|
3780
|
+
|
|
3781
|
+
[[package]]
|
|
3782
|
+
name = "windows-core"
|
|
3783
|
+
version = "0.61.2"
|
|
3784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3785
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
3786
|
+
dependencies = [
|
|
3787
|
+
"windows-implement",
|
|
3788
|
+
"windows-interface",
|
|
3789
|
+
"windows-link",
|
|
3790
|
+
"windows-result",
|
|
3791
|
+
"windows-strings",
|
|
3792
|
+
]
|
|
3793
|
+
|
|
3794
|
+
[[package]]
|
|
3795
|
+
name = "windows-implement"
|
|
3796
|
+
version = "0.60.0"
|
|
3797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3798
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
3799
|
+
dependencies = [
|
|
3800
|
+
"proc-macro2",
|
|
3801
|
+
"quote",
|
|
3802
|
+
"syn",
|
|
3803
|
+
]
|
|
3804
|
+
|
|
3805
|
+
[[package]]
|
|
3806
|
+
name = "windows-interface"
|
|
3807
|
+
version = "0.59.1"
|
|
3808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3809
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
3810
|
+
dependencies = [
|
|
3811
|
+
"proc-macro2",
|
|
3812
|
+
"quote",
|
|
3813
|
+
"syn",
|
|
3814
|
+
]
|
|
3815
|
+
|
|
3816
|
+
[[package]]
|
|
3817
|
+
name = "windows-link"
|
|
3818
|
+
version = "0.1.3"
|
|
3819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3820
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
3821
|
+
|
|
3822
|
+
[[package]]
|
|
3823
|
+
name = "windows-result"
|
|
3824
|
+
version = "0.3.4"
|
|
3825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3826
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
3827
|
+
dependencies = [
|
|
3828
|
+
"windows-link",
|
|
3829
|
+
]
|
|
3830
|
+
|
|
3831
|
+
[[package]]
|
|
3832
|
+
name = "windows-strings"
|
|
3833
|
+
version = "0.4.2"
|
|
3834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3835
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
3836
|
+
dependencies = [
|
|
3837
|
+
"windows-link",
|
|
3838
|
+
]
|
|
3839
|
+
|
|
3840
|
+
[[package]]
|
|
3841
|
+
name = "windows-sys"
|
|
3842
|
+
version = "0.52.0"
|
|
3843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3844
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3845
|
+
dependencies = [
|
|
3846
|
+
"windows-targets",
|
|
3847
|
+
]
|
|
3848
|
+
|
|
3849
|
+
[[package]]
|
|
3850
|
+
name = "windows-sys"
|
|
3851
|
+
version = "0.59.0"
|
|
3852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3853
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3854
|
+
dependencies = [
|
|
3855
|
+
"windows-targets",
|
|
3856
|
+
]
|
|
3857
|
+
|
|
3858
|
+
[[package]]
|
|
3859
|
+
name = "windows-targets"
|
|
3860
|
+
version = "0.52.6"
|
|
3861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3862
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3863
|
+
dependencies = [
|
|
3864
|
+
"windows_aarch64_gnullvm",
|
|
3865
|
+
"windows_aarch64_msvc",
|
|
3866
|
+
"windows_i686_gnu",
|
|
3867
|
+
"windows_i686_gnullvm",
|
|
3868
|
+
"windows_i686_msvc",
|
|
3869
|
+
"windows_x86_64_gnu",
|
|
3870
|
+
"windows_x86_64_gnullvm",
|
|
3871
|
+
"windows_x86_64_msvc",
|
|
3872
|
+
]
|
|
3873
|
+
|
|
3874
|
+
[[package]]
|
|
3875
|
+
name = "windows_aarch64_gnullvm"
|
|
3876
|
+
version = "0.52.6"
|
|
3877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3878
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3879
|
+
|
|
3880
|
+
[[package]]
|
|
3881
|
+
name = "windows_aarch64_msvc"
|
|
3882
|
+
version = "0.52.6"
|
|
3883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3884
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3885
|
+
|
|
3886
|
+
[[package]]
|
|
3887
|
+
name = "windows_i686_gnu"
|
|
3888
|
+
version = "0.52.6"
|
|
3889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3890
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3891
|
+
|
|
3892
|
+
[[package]]
|
|
3893
|
+
name = "windows_i686_gnullvm"
|
|
3894
|
+
version = "0.52.6"
|
|
3895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3896
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3897
|
+
|
|
3898
|
+
[[package]]
|
|
3899
|
+
name = "windows_i686_msvc"
|
|
3900
|
+
version = "0.52.6"
|
|
3901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3902
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3903
|
+
|
|
3904
|
+
[[package]]
|
|
3905
|
+
name = "windows_x86_64_gnu"
|
|
3906
|
+
version = "0.52.6"
|
|
3907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3908
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3909
|
+
|
|
3910
|
+
[[package]]
|
|
3911
|
+
name = "windows_x86_64_gnullvm"
|
|
3912
|
+
version = "0.52.6"
|
|
3913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3914
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3915
|
+
|
|
3916
|
+
[[package]]
|
|
3917
|
+
name = "windows_x86_64_msvc"
|
|
3918
|
+
version = "0.52.6"
|
|
3919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3920
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3921
|
+
|
|
3922
|
+
[[package]]
|
|
3923
|
+
name = "winnow"
|
|
3924
|
+
version = "0.7.12"
|
|
3925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3926
|
+
checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
|
|
3927
|
+
dependencies = [
|
|
3928
|
+
"memchr",
|
|
3929
|
+
]
|
|
3930
|
+
|
|
3931
|
+
[[package]]
|
|
3932
|
+
name = "winsafe"
|
|
3933
|
+
version = "0.0.19"
|
|
3934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3935
|
+
checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
|
|
3936
|
+
|
|
3937
|
+
[[package]]
|
|
3938
|
+
name = "winx"
|
|
3939
|
+
version = "0.36.4"
|
|
3940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3941
|
+
checksum = "3f3fd376f71958b862e7afb20cfe5a22830e1963462f3a17f49d82a6c1d1f42d"
|
|
3942
|
+
dependencies = [
|
|
3943
|
+
"bitflags",
|
|
3944
|
+
"windows-sys 0.59.0",
|
|
3945
|
+
]
|
|
3946
|
+
|
|
3947
|
+
[[package]]
|
|
3948
|
+
name = "wit-bindgen-rt"
|
|
3949
|
+
version = "0.39.0"
|
|
3950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3951
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
3952
|
+
dependencies = [
|
|
3953
|
+
"bitflags",
|
|
3954
|
+
]
|
|
3955
|
+
|
|
3956
|
+
[[package]]
|
|
3957
|
+
name = "wit-parser"
|
|
3958
|
+
version = "0.218.1"
|
|
3959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3960
|
+
checksum = "f104473e8546f8096f1fa483d337101a98dc9525d67f4275816bcd177fe3e2be"
|
|
3961
|
+
dependencies = [
|
|
3962
|
+
"anyhow",
|
|
3963
|
+
"id-arena",
|
|
3964
|
+
"indexmap 2.10.0",
|
|
3965
|
+
"log",
|
|
3966
|
+
"semver",
|
|
3967
|
+
"serde",
|
|
3968
|
+
"serde_derive",
|
|
3969
|
+
"serde_json",
|
|
3970
|
+
"unicode-xid",
|
|
3971
|
+
"wasmparser 0.218.1",
|
|
3972
|
+
]
|
|
3973
|
+
|
|
3974
|
+
[[package]]
|
|
3975
|
+
name = "witx"
|
|
3976
|
+
version = "0.9.1"
|
|
3977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3978
|
+
checksum = "e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b"
|
|
3979
|
+
dependencies = [
|
|
3980
|
+
"anyhow",
|
|
3981
|
+
"log",
|
|
3982
|
+
"thiserror 1.0.69",
|
|
3983
|
+
"wast 35.0.2",
|
|
3984
|
+
]
|
|
3985
|
+
|
|
3986
|
+
[[package]]
|
|
3987
|
+
name = "writeable"
|
|
3988
|
+
version = "0.6.1"
|
|
3989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3990
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
3991
|
+
|
|
3992
|
+
[[package]]
|
|
3993
|
+
name = "xattr"
|
|
3994
|
+
version = "1.5.1"
|
|
3995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3996
|
+
checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909"
|
|
3997
|
+
dependencies = [
|
|
3998
|
+
"libc",
|
|
3999
|
+
"rustix 1.0.8",
|
|
4000
|
+
]
|
|
4001
|
+
|
|
4002
|
+
[[package]]
|
|
4003
|
+
name = "xxhash-rust"
|
|
4004
|
+
version = "0.8.15"
|
|
4005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4006
|
+
checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
4007
|
+
|
|
4008
|
+
[[package]]
|
|
4009
|
+
name = "yoke"
|
|
4010
|
+
version = "0.8.0"
|
|
4011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4012
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
|
4013
|
+
dependencies = [
|
|
4014
|
+
"serde",
|
|
4015
|
+
"stable_deref_trait",
|
|
4016
|
+
"yoke-derive",
|
|
4017
|
+
"zerofrom",
|
|
4018
|
+
]
|
|
4019
|
+
|
|
4020
|
+
[[package]]
|
|
4021
|
+
name = "yoke-derive"
|
|
4022
|
+
version = "0.8.0"
|
|
4023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4024
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
4025
|
+
dependencies = [
|
|
4026
|
+
"proc-macro2",
|
|
4027
|
+
"quote",
|
|
4028
|
+
"syn",
|
|
4029
|
+
"synstructure",
|
|
4030
|
+
]
|
|
4031
|
+
|
|
4032
|
+
[[package]]
|
|
4033
|
+
name = "zerocopy"
|
|
4034
|
+
version = "0.8.26"
|
|
4035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4036
|
+
checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
|
|
4037
|
+
dependencies = [
|
|
4038
|
+
"zerocopy-derive",
|
|
4039
|
+
]
|
|
4040
|
+
|
|
4041
|
+
[[package]]
|
|
4042
|
+
name = "zerocopy-derive"
|
|
4043
|
+
version = "0.8.26"
|
|
4044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4045
|
+
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
|
|
4046
|
+
dependencies = [
|
|
4047
|
+
"proc-macro2",
|
|
4048
|
+
"quote",
|
|
4049
|
+
"syn",
|
|
4050
|
+
]
|
|
4051
|
+
|
|
4052
|
+
[[package]]
|
|
4053
|
+
name = "zerofrom"
|
|
4054
|
+
version = "0.1.6"
|
|
4055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4056
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4057
|
+
dependencies = [
|
|
4058
|
+
"zerofrom-derive",
|
|
4059
|
+
]
|
|
4060
|
+
|
|
4061
|
+
[[package]]
|
|
4062
|
+
name = "zerofrom-derive"
|
|
4063
|
+
version = "0.1.6"
|
|
4064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4065
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4066
|
+
dependencies = [
|
|
4067
|
+
"proc-macro2",
|
|
4068
|
+
"quote",
|
|
4069
|
+
"syn",
|
|
4070
|
+
"synstructure",
|
|
4071
|
+
]
|
|
4072
|
+
|
|
4073
|
+
[[package]]
|
|
4074
|
+
name = "zeroize"
|
|
4075
|
+
version = "1.8.1"
|
|
4076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4077
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
|
4078
|
+
|
|
4079
|
+
[[package]]
|
|
4080
|
+
name = "zerotrie"
|
|
4081
|
+
version = "0.2.2"
|
|
4082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4083
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
4084
|
+
dependencies = [
|
|
4085
|
+
"displaydoc",
|
|
4086
|
+
"yoke",
|
|
4087
|
+
"zerofrom",
|
|
4088
|
+
]
|
|
4089
|
+
|
|
4090
|
+
[[package]]
|
|
4091
|
+
name = "zerovec"
|
|
4092
|
+
version = "0.11.4"
|
|
4093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4094
|
+
checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
|
|
4095
|
+
dependencies = [
|
|
4096
|
+
"yoke",
|
|
4097
|
+
"zerofrom",
|
|
4098
|
+
"zerovec-derive",
|
|
4099
|
+
]
|
|
4100
|
+
|
|
4101
|
+
[[package]]
|
|
4102
|
+
name = "zerovec-derive"
|
|
4103
|
+
version = "0.11.1"
|
|
4104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4105
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
4106
|
+
dependencies = [
|
|
4107
|
+
"proc-macro2",
|
|
4108
|
+
"quote",
|
|
4109
|
+
"syn",
|
|
4110
|
+
]
|
|
4111
|
+
|
|
4112
|
+
[[package]]
|
|
4113
|
+
name = "zstd"
|
|
4114
|
+
version = "0.13.3"
|
|
4115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4116
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
4117
|
+
dependencies = [
|
|
4118
|
+
"zstd-safe",
|
|
4119
|
+
]
|
|
4120
|
+
|
|
4121
|
+
[[package]]
|
|
4122
|
+
name = "zstd-safe"
|
|
4123
|
+
version = "7.2.4"
|
|
4124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4125
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
4126
|
+
dependencies = [
|
|
4127
|
+
"zstd-sys",
|
|
4128
|
+
]
|
|
4129
|
+
|
|
4130
|
+
[[package]]
|
|
4131
|
+
name = "zstd-sys"
|
|
4132
|
+
version = "2.0.15+zstd.1.5.7"
|
|
4133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4134
|
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
|
|
4135
|
+
dependencies = [
|
|
4136
|
+
"cc",
|
|
4137
|
+
"pkg-config",
|
|
4138
|
+
]
|