pytecode 0.0.2__tar.gz → 0.1.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.
- pytecode-0.1.0/Cargo.lock +965 -0
- pytecode-0.1.0/Cargo.toml +27 -0
- pytecode-0.1.0/PKG-INFO +429 -0
- pytecode-0.1.0/README.md +396 -0
- pytecode-0.1.0/crates/pytecode-archive/Cargo.toml +25 -0
- pytecode-0.1.0/crates/pytecode-archive/README.md +396 -0
- pytecode-0.1.0/crates/pytecode-archive/benches/jar_read.rs +35 -0
- pytecode-0.1.0/crates/pytecode-archive/examples/rewrite_jar.rs +41 -0
- pytecode-0.1.0/crates/pytecode-archive/src/lib.rs +529 -0
- pytecode-0.1.0/crates/pytecode-archive/tests/jar.rs +281 -0
- pytecode-0.1.0/crates/pytecode-engine/Cargo.toml +33 -0
- pytecode-0.1.0/crates/pytecode-engine/README.md +396 -0
- pytecode-0.1.0/crates/pytecode-engine/benches/pipeline.rs +168 -0
- pytecode-0.1.0/crates/pytecode-engine/examples/finalize_main.rs +33 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/AbstractShape/AbstractShape.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/AnnotatedClass/AnnotatedClass.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/CfgEdgeCaseFixture/CfgEdgeCaseFixture$TrackedResource.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/CfgEdgeCaseFixture/CfgEdgeCaseFixture.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/CfgFixture/CfgFixture.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/Color/Color.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/ComplexGenerics/ComplexGenerics$Builder.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/ComplexGenerics/ComplexGenerics$ConcreteBuilder.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/ComplexGenerics/ComplexGenerics.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/ControlFlowExample/ControlFlowExample.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/EnumAdvanced/EnumAdvanced$1.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/EnumAdvanced/EnumAdvanced$2.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/EnumAdvanced/EnumAdvanced$3.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/EnumAdvanced/EnumAdvanced.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/FieldShowcase/FieldShowcase.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/GenericClass/GenericClass.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/HelloWorld/HelloWorld.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/HierarchyFixture/fixture/hierarchy/Animal.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/HierarchyFixture/fixture/hierarchy/HierarchyFixture.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/HierarchyFixture/fixture/hierarchy/Mammal.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/HierarchyFixture/fixture/hierarchy/Pet.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/HierarchyFixture/fixture/hierarchy/Trainable.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/InstructionShowcase/InstructionShowcase.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/Java25Features/Java25Features$Validated.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/Java25Features/Java25Features.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/LambdaShowcase/LambdaShowcase$ThrowingConsumer.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/LambdaShowcase/LambdaShowcase$TriFunction.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/LambdaShowcase/LambdaShowcase.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/MethodReferences/MethodReferences.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/MultiInterface/MultiInterface.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/NestAccess/NestAccess$1.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/NestAccess/NestAccess$Inner.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/NestAccess/NestAccess$StaticNested.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/NestAccess/NestAccess.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/Outer/Outer$Inner.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/Outer/Outer.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/ParameterAnnotations/InvisibleParam.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/ParameterAnnotations/ParameterAnnotations.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/ParameterAnnotations/VisibleParam.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/PatternMatching/PatternMatching$Add.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/PatternMatching/PatternMatching$Expr.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/PatternMatching/PatternMatching$Lit.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/PatternMatching/PatternMatching$Mul.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/PatternMatching/PatternMatching$Neg.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/PatternMatching/PatternMatching.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/RecordClass/RecordClass$Circle.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/RecordClass/RecordClass$Line.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/RecordClass/RecordClass$Measurable.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/RecordClass/RecordClass$NamedValue.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/RecordClass/RecordClass$Pair.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/RecordClass/RecordClass$Point.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/RecordClass/RecordClass$Range.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/RecordClass/RecordClass$Validated.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/RecordClass/RecordClass.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/SealedHierarchy/SealedHierarchy$BorderedRectangle.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/SealedHierarchy/SealedHierarchy$Circle.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/SealedHierarchy/SealedHierarchy$FilledRectangle.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/SealedHierarchy/SealedHierarchy$Rectangle.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/SealedHierarchy/SealedHierarchy$Shape.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/SealedHierarchy/SealedHierarchy$Square.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/SealedHierarchy/SealedHierarchy$Triangle.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/SealedHierarchy/SealedHierarchy.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/SimpleInterface/SimpleInterface.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/StaticInit/StaticInit.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/StaticInterfaceMethods/StaticInterfaceMethods$Transformer.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/StaticInterfaceMethods/StaticInterfaceMethods$Validator.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/StaticInterfaceMethods/StaticInterfaceMethods.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/StringConcat/StringConcat.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/SwitchExpressions/SwitchExpressions$Day.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/SwitchExpressions/SwitchExpressions.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/TryCatchExample/TryCatchExample.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/classes/VarArgs/VarArgs.class +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/jars/byte-buddy-1.17.5.jar +0 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/AbstractShape.java +16 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/AnnotatedClass.java +15 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/CfgEdgeCaseFixture.java +179 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/CfgFixture.java +267 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/Color.java +7 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/ComplexGenerics.java +100 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/ControlFlowExample.java +42 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/EnumAdvanced.java +47 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/FieldShowcase.java +11 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/GenericClass.java +11 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/HelloWorld.java +10 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/HierarchyFixture.java +27 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/InstructionShowcase.java +156 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/Java25Features.java +70 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/LambdaShowcase.java +115 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/MethodReferences.java +55 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/MultiInterface.java +14 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/NestAccess.java +81 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/Outer.java +11 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/ParameterAnnotations.java +19 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/PatternMatching.java +103 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/RecordClass.java +96 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/SealedHierarchy.java +120 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/SimpleInterface.java +11 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/StaticInit.java +15 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/StaticInterfaceMethods.java +63 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/StringConcat.java +64 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/SwitchExpressions.java +99 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/TryCatchExample.java +22 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/TypeAnnotationShowcase.java +34 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/VarArgs.java +37 -0
- pytecode-0.1.0/crates/pytecode-engine/fixtures/java/VerifierHarness.java +268 -0
- pytecode-0.1.0/crates/pytecode-engine/src/analysis/hierarchy.rs +405 -0
- pytecode-0.1.0/crates/pytecode-engine/src/analysis/mod.rs +1223 -0
- pytecode-0.1.0/crates/pytecode-engine/src/analysis/verify.rs +2176 -0
- pytecode-0.1.0/crates/pytecode-engine/src/bytes.rs +129 -0
- pytecode-0.1.0/crates/pytecode-engine/src/constants.rs +332 -0
- pytecode-0.1.0/crates/pytecode-engine/src/descriptors.rs +218 -0
- pytecode-0.1.0/crates/pytecode-engine/src/error.rs +52 -0
- pytecode-0.1.0/crates/pytecode-engine/src/fixtures.rs +592 -0
- pytecode-0.1.0/crates/pytecode-engine/src/indexes.rs +197 -0
- pytecode-0.1.0/crates/pytecode-engine/src/lib.rs +25 -0
- pytecode-0.1.0/crates/pytecode-engine/src/model/constant_pool_builder.rs +745 -0
- pytecode-0.1.0/crates/pytecode-engine/src/model/debug_info.rs +18 -0
- pytecode-0.1.0/crates/pytecode-engine/src/model/labels.rs +122 -0
- pytecode-0.1.0/crates/pytecode-engine/src/model/mod.rs +2284 -0
- pytecode-0.1.0/crates/pytecode-engine/src/model/operands.rs +197 -0
- pytecode-0.1.0/crates/pytecode-engine/src/modified_utf8.rs +127 -0
- pytecode-0.1.0/crates/pytecode-engine/src/raw/attributes.rs +643 -0
- pytecode-0.1.0/crates/pytecode-engine/src/raw/constant_pool.rs +193 -0
- pytecode-0.1.0/crates/pytecode-engine/src/raw/info.rs +35 -0
- pytecode-0.1.0/crates/pytecode-engine/src/raw/instructions.rs +257 -0
- pytecode-0.1.0/crates/pytecode-engine/src/raw/mod.rs +34 -0
- pytecode-0.1.0/crates/pytecode-engine/src/raw/stub.rs +11 -0
- pytecode-0.1.0/crates/pytecode-engine/src/reader.rs +1258 -0
- pytecode-0.1.0/crates/pytecode-engine/src/signatures.rs +435 -0
- pytecode-0.1.0/crates/pytecode-engine/src/stages.rs +45 -0
- pytecode-0.1.0/crates/pytecode-engine/src/transform/matcher_spec.rs +1480 -0
- pytecode-0.1.0/crates/pytecode-engine/src/transform/mod.rs +847 -0
- pytecode-0.1.0/crates/pytecode-engine/src/transform/pipeline_spec.rs +484 -0
- pytecode-0.1.0/crates/pytecode-engine/src/transform/transform_spec.rs +706 -0
- pytecode-0.1.0/crates/pytecode-engine/src/writer.rs +1044 -0
- pytecode-0.1.0/crates/pytecode-engine/tests/analysis.rs +295 -0
- pytecode-0.1.0/crates/pytecode-engine/tests/attribute_foundation.rs +111 -0
- pytecode-0.1.0/crates/pytecode-engine/tests/descriptors.rs +79 -0
- pytecode-0.1.0/crates/pytecode-engine/tests/fixtures.rs +37 -0
- pytecode-0.1.0/crates/pytecode-engine/tests/model.rs +531 -0
- pytecode-0.1.0/crates/pytecode-engine/tests/modified_utf8.rs +35 -0
- pytecode-0.1.0/crates/pytecode-engine/tests/raw_roundtrip.rs +1015 -0
- pytecode-0.1.0/crates/pytecode-engine/tests/raw_unit_coverage.rs +1936 -0
- pytecode-0.1.0/crates/pytecode-engine/tests/signatures.rs +141 -0
- pytecode-0.1.0/crates/pytecode-engine/tests/transform.rs +284 -0
- pytecode-0.1.0/crates/pytecode-engine/tests/verifier.rs +651 -0
- pytecode-0.1.0/crates/pytecode-python/Cargo.toml +27 -0
- pytecode-0.1.0/crates/pytecode-python/README.md +396 -0
- pytecode-0.1.0/crates/pytecode-python/src/analysis.rs +315 -0
- pytecode-0.1.0/crates/pytecode-python/src/archive.rs +549 -0
- pytecode-0.1.0/crates/pytecode-python/src/attributes.rs +2367 -0
- pytecode-0.1.0/crates/pytecode-python/src/lib.rs +2433 -0
- pytecode-0.1.0/crates/pytecode-python/src/model.rs +3414 -0
- pytecode-0.1.0/crates/pytecode-python/src/transforms.rs +1406 -0
- {pytecode-0.0.2 → pytecode-0.1.0}/pyproject.toml +22 -22
- pytecode-0.1.0/pytecode/__init__.py +24 -0
- pytecode-0.1.0/pytecode/_rust.pyi +2337 -0
- pytecode-0.1.0/pytecode/_utils.py +37 -0
- pytecode-0.1.0/pytecode/analysis/__init__.py +50 -0
- pytecode-0.1.0/pytecode/analysis/hierarchy.py +233 -0
- pytecode-0.1.0/pytecode/analysis/verify.py +54 -0
- pytecode-0.0.2/pytecode/jar.py → pytecode-0.1.0/pytecode/archive.py +150 -72
- pytecode-0.1.0/pytecode/classfile/__init__.py +73 -0
- {pytecode-0.0.2/pytecode → pytecode-0.1.0/pytecode/classfile}/attributes.py +99 -101
- pytecode-0.1.0/pytecode/classfile/bytecode.py +239 -0
- pytecode-0.1.0/pytecode/model.py +238 -0
- pytecode-0.1.0/pytecode/transforms/__init__.py +188 -0
- pytecode-0.1.0/pytecode/transforms/class_transforms.py +85 -0
- pytecode-0.1.0/pytecode/transforms/matchers.py +310 -0
- pytecode-0.1.0/pytecode/transforms/pipeline.py +167 -0
- pytecode-0.0.2/MANIFEST.in +0 -1
- pytecode-0.0.2/PKG-INFO +0 -228
- pytecode-0.0.2/README.md +0 -202
- pytecode-0.0.2/pytecode/__init__.py +0 -22
- pytecode-0.0.2/pytecode/_attribute_clone.py +0 -546
- pytecode-0.0.2/pytecode/analysis.py +0 -2402
- pytecode-0.0.2/pytecode/bytes_utils.py +0 -208
- pytecode-0.0.2/pytecode/class_reader.py +0 -810
- pytecode-0.0.2/pytecode/class_writer.py +0 -630
- pytecode-0.0.2/pytecode/constant_pool.py +0 -196
- pytecode-0.0.2/pytecode/constant_pool_builder.py +0 -1246
- pytecode-0.0.2/pytecode/debug_info.py +0 -319
- pytecode-0.0.2/pytecode/descriptors.py +0 -791
- pytecode-0.0.2/pytecode/hierarchy.py +0 -561
- pytecode-0.0.2/pytecode/info.py +0 -123
- pytecode-0.0.2/pytecode/instructions.py +0 -495
- pytecode-0.0.2/pytecode/labels.py +0 -1237
- pytecode-0.0.2/pytecode/model.py +0 -980
- pytecode-0.0.2/pytecode/modified_utf8.py +0 -145
- pytecode-0.0.2/pytecode/operands.py +0 -683
- pytecode-0.0.2/pytecode/transforms.py +0 -954
- pytecode-0.0.2/pytecode/verify.py +0 -1400
- pytecode-0.0.2/pytecode.egg-info/PKG-INFO +0 -228
- pytecode-0.0.2/pytecode.egg-info/SOURCES.txt +0 -56
- pytecode-0.0.2/pytecode.egg-info/dependency_links.txt +0 -1
- pytecode-0.0.2/pytecode.egg-info/requires.txt +0 -6
- pytecode-0.0.2/pytecode.egg-info/top_level.txt +0 -1
- pytecode-0.0.2/setup.cfg +0 -4
- pytecode-0.0.2/tests/test_analysis.py +0 -2974
- pytecode-0.0.2/tests/test_api_docs.py +0 -115
- pytecode-0.0.2/tests/test_attributes.py +0 -1115
- pytecode-0.0.2/tests/test_bytes_utils.py +0 -610
- pytecode-0.0.2/tests/test_cfg_oracle.py +0 -245
- pytecode-0.0.2/tests/test_class_reader.py +0 -438
- pytecode-0.0.2/tests/test_class_writer.py +0 -132
- pytecode-0.0.2/tests/test_constant_pool.py +0 -411
- pytecode-0.0.2/tests/test_constant_pool_builder.py +0 -1165
- pytecode-0.0.2/tests/test_debug_info.py +0 -465
- pytecode-0.0.2/tests/test_descriptors.py +0 -586
- pytecode-0.0.2/tests/test_helpers.py +0 -196
- pytecode-0.0.2/tests/test_hierarchy.py +0 -290
- pytecode-0.0.2/tests/test_instructions.py +0 -724
- pytecode-0.0.2/tests/test_jar.py +0 -472
- pytecode-0.0.2/tests/test_javap_parser.py +0 -426
- pytecode-0.0.2/tests/test_labels.py +0 -967
- pytecode-0.0.2/tests/test_model.py +0 -1293
- pytecode-0.0.2/tests/test_modified_utf8.py +0 -33
- pytecode-0.0.2/tests/test_operands.py +0 -864
- pytecode-0.0.2/tests/test_transforms.py +0 -1064
- pytecode-0.0.2/tests/test_validate_release_tag.py +0 -66
- pytecode-0.0.2/tests/test_validation.py +0 -146
- pytecode-0.0.2/tests/test_verify.py +0 -2111
- {pytecode-0.0.2 → pytecode-0.1.0}/LICENSE +0 -0
- {pytecode-0.0.2/pytecode → pytecode-0.1.0/pytecode/classfile}/constants.py +0 -0
- {pytecode-0.0.2 → pytecode-0.1.0}/pytecode/py.typed +0 -0
|
@@ -0,0 +1,965 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.4"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "alloca"
|
|
22
|
+
version = "0.4.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"cc",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "anes"
|
|
31
|
+
version = "0.1.6"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstream"
|
|
37
|
+
version = "1.0.0"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"anstyle",
|
|
42
|
+
"anstyle-parse",
|
|
43
|
+
"anstyle-query",
|
|
44
|
+
"anstyle-wincon",
|
|
45
|
+
"colorchoice",
|
|
46
|
+
"is_terminal_polyfill",
|
|
47
|
+
"utf8parse",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle"
|
|
52
|
+
version = "1.0.14"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "anstyle-parse"
|
|
58
|
+
version = "1.0.0"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"utf8parse",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "anstyle-query"
|
|
67
|
+
version = "1.1.5"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"windows-sys",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "anstyle-wincon"
|
|
76
|
+
version = "3.0.11"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"anstyle",
|
|
81
|
+
"once_cell_polyfill",
|
|
82
|
+
"windows-sys",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "autocfg"
|
|
87
|
+
version = "1.5.0"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "bitflags"
|
|
93
|
+
version = "2.11.0"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "bumpalo"
|
|
99
|
+
version = "3.20.2"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "cast"
|
|
105
|
+
version = "0.3.0"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "cc"
|
|
111
|
+
version = "1.2.60"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"find-msvc-tools",
|
|
116
|
+
"shlex",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "cfg-if"
|
|
121
|
+
version = "1.0.4"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "ciborium"
|
|
127
|
+
version = "0.2.2"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
130
|
+
dependencies = [
|
|
131
|
+
"ciborium-io",
|
|
132
|
+
"ciborium-ll",
|
|
133
|
+
"serde",
|
|
134
|
+
]
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "ciborium-io"
|
|
138
|
+
version = "0.2.2"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "ciborium-ll"
|
|
144
|
+
version = "0.2.2"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
147
|
+
dependencies = [
|
|
148
|
+
"ciborium-io",
|
|
149
|
+
"half",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "clap"
|
|
154
|
+
version = "4.6.0"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
157
|
+
dependencies = [
|
|
158
|
+
"clap_builder",
|
|
159
|
+
"clap_derive",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "clap_builder"
|
|
164
|
+
version = "4.6.0"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"anstream",
|
|
169
|
+
"anstyle",
|
|
170
|
+
"clap_lex",
|
|
171
|
+
"strsim",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "clap_derive"
|
|
176
|
+
version = "4.6.0"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"heck",
|
|
181
|
+
"proc-macro2",
|
|
182
|
+
"quote",
|
|
183
|
+
"syn",
|
|
184
|
+
]
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "clap_lex"
|
|
188
|
+
version = "1.1.0"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "colorchoice"
|
|
194
|
+
version = "1.0.5"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "crc32fast"
|
|
200
|
+
version = "1.5.0"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"cfg-if",
|
|
205
|
+
]
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "criterion"
|
|
209
|
+
version = "0.8.2"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
|
|
212
|
+
dependencies = [
|
|
213
|
+
"alloca",
|
|
214
|
+
"anes",
|
|
215
|
+
"cast",
|
|
216
|
+
"ciborium",
|
|
217
|
+
"clap",
|
|
218
|
+
"criterion-plot",
|
|
219
|
+
"itertools",
|
|
220
|
+
"num-traits",
|
|
221
|
+
"oorandom",
|
|
222
|
+
"page_size",
|
|
223
|
+
"plotters",
|
|
224
|
+
"rayon",
|
|
225
|
+
"regex",
|
|
226
|
+
"serde",
|
|
227
|
+
"serde_json",
|
|
228
|
+
"tinytemplate",
|
|
229
|
+
"walkdir",
|
|
230
|
+
]
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "criterion-plot"
|
|
234
|
+
version = "0.8.2"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
|
|
237
|
+
dependencies = [
|
|
238
|
+
"cast",
|
|
239
|
+
"itertools",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "crossbeam-deque"
|
|
244
|
+
version = "0.8.6"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"crossbeam-epoch",
|
|
249
|
+
"crossbeam-utils",
|
|
250
|
+
]
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "crossbeam-epoch"
|
|
254
|
+
version = "0.9.18"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"crossbeam-utils",
|
|
259
|
+
]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "crossbeam-utils"
|
|
263
|
+
version = "0.8.21"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "crunchy"
|
|
269
|
+
version = "0.2.4"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "either"
|
|
275
|
+
version = "1.15.0"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "equivalent"
|
|
281
|
+
version = "1.0.2"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
284
|
+
|
|
285
|
+
[[package]]
|
|
286
|
+
name = "find-msvc-tools"
|
|
287
|
+
version = "0.1.9"
|
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "flate2"
|
|
293
|
+
version = "1.1.9"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
296
|
+
dependencies = [
|
|
297
|
+
"miniz_oxide",
|
|
298
|
+
"zlib-rs",
|
|
299
|
+
]
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "half"
|
|
303
|
+
version = "2.7.1"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"cfg-if",
|
|
308
|
+
"crunchy",
|
|
309
|
+
"zerocopy",
|
|
310
|
+
]
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "hashbrown"
|
|
314
|
+
version = "0.17.0"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "heck"
|
|
320
|
+
version = "0.5.0"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "indexmap"
|
|
326
|
+
version = "2.14.0"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
329
|
+
dependencies = [
|
|
330
|
+
"equivalent",
|
|
331
|
+
"hashbrown",
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "is_terminal_polyfill"
|
|
336
|
+
version = "1.70.2"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "itertools"
|
|
342
|
+
version = "0.13.0"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
345
|
+
dependencies = [
|
|
346
|
+
"either",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "itoa"
|
|
351
|
+
version = "1.0.18"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "js-sys"
|
|
357
|
+
version = "0.3.95"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"once_cell",
|
|
362
|
+
"wasm-bindgen",
|
|
363
|
+
]
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "libc"
|
|
367
|
+
version = "0.2.184"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "log"
|
|
373
|
+
version = "0.4.29"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
376
|
+
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "memchr"
|
|
379
|
+
version = "2.8.0"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "miniz_oxide"
|
|
385
|
+
version = "0.8.9"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"adler2",
|
|
390
|
+
"simd-adler32",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "num-traits"
|
|
395
|
+
version = "0.2.19"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
398
|
+
dependencies = [
|
|
399
|
+
"autocfg",
|
|
400
|
+
]
|
|
401
|
+
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "once_cell"
|
|
404
|
+
version = "1.21.4"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "once_cell_polyfill"
|
|
410
|
+
version = "1.70.2"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "oorandom"
|
|
416
|
+
version = "11.1.5"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "page_size"
|
|
422
|
+
version = "0.6.0"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"libc",
|
|
427
|
+
"winapi",
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "plotters"
|
|
432
|
+
version = "0.3.7"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
435
|
+
dependencies = [
|
|
436
|
+
"num-traits",
|
|
437
|
+
"plotters-backend",
|
|
438
|
+
"plotters-svg",
|
|
439
|
+
"wasm-bindgen",
|
|
440
|
+
"web-sys",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "plotters-backend"
|
|
445
|
+
version = "0.3.7"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "plotters-svg"
|
|
451
|
+
version = "0.3.7"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
454
|
+
dependencies = [
|
|
455
|
+
"plotters-backend",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "portable-atomic"
|
|
460
|
+
version = "1.13.1"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "proc-macro2"
|
|
466
|
+
version = "1.0.106"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
469
|
+
dependencies = [
|
|
470
|
+
"unicode-ident",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "pyo3"
|
|
475
|
+
version = "0.28.3"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"libc",
|
|
480
|
+
"once_cell",
|
|
481
|
+
"portable-atomic",
|
|
482
|
+
"pyo3-build-config",
|
|
483
|
+
"pyo3-ffi",
|
|
484
|
+
"pyo3-macros",
|
|
485
|
+
]
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "pyo3-build-config"
|
|
489
|
+
version = "0.28.3"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
492
|
+
dependencies = [
|
|
493
|
+
"python3-dll-a",
|
|
494
|
+
"target-lexicon",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "pyo3-ffi"
|
|
499
|
+
version = "0.28.3"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"libc",
|
|
504
|
+
"pyo3-build-config",
|
|
505
|
+
]
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "pyo3-macros"
|
|
509
|
+
version = "0.28.3"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
512
|
+
dependencies = [
|
|
513
|
+
"proc-macro2",
|
|
514
|
+
"pyo3-macros-backend",
|
|
515
|
+
"quote",
|
|
516
|
+
"syn",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "pyo3-macros-backend"
|
|
521
|
+
version = "0.28.3"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
524
|
+
dependencies = [
|
|
525
|
+
"heck",
|
|
526
|
+
"proc-macro2",
|
|
527
|
+
"pyo3-build-config",
|
|
528
|
+
"quote",
|
|
529
|
+
"syn",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "pytecode-archive"
|
|
534
|
+
version = "0.1.0"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"criterion",
|
|
537
|
+
"pytecode-engine",
|
|
538
|
+
"serde",
|
|
539
|
+
"thiserror",
|
|
540
|
+
"zip",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "pytecode-cli"
|
|
545
|
+
version = "0.1.0"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"clap",
|
|
548
|
+
"pytecode-archive",
|
|
549
|
+
"pytecode-engine",
|
|
550
|
+
"regex",
|
|
551
|
+
"serde",
|
|
552
|
+
"serde_json",
|
|
553
|
+
"thiserror",
|
|
554
|
+
"zip",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "pytecode-engine"
|
|
559
|
+
version = "0.1.0"
|
|
560
|
+
dependencies = [
|
|
561
|
+
"bitflags",
|
|
562
|
+
"criterion",
|
|
563
|
+
"pyo3",
|
|
564
|
+
"regex",
|
|
565
|
+
"rustc-hash",
|
|
566
|
+
"serde",
|
|
567
|
+
"serde_json",
|
|
568
|
+
"thiserror",
|
|
569
|
+
"walkdir",
|
|
570
|
+
"zip",
|
|
571
|
+
]
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "pytecode-python"
|
|
575
|
+
version = "0.1.0"
|
|
576
|
+
dependencies = [
|
|
577
|
+
"pyo3",
|
|
578
|
+
"pytecode-archive",
|
|
579
|
+
"pytecode-engine",
|
|
580
|
+
"regex",
|
|
581
|
+
"zip",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "python3-dll-a"
|
|
586
|
+
version = "0.2.15"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "d80ba7540edb18890d444c5aa8e1f1f99b1bdf26fb26ae383135325f4a36042b"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"cc",
|
|
591
|
+
]
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "quote"
|
|
595
|
+
version = "1.0.45"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
598
|
+
dependencies = [
|
|
599
|
+
"proc-macro2",
|
|
600
|
+
]
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "rayon"
|
|
604
|
+
version = "1.11.0"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"either",
|
|
609
|
+
"rayon-core",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "rayon-core"
|
|
614
|
+
version = "1.13.0"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"crossbeam-deque",
|
|
619
|
+
"crossbeam-utils",
|
|
620
|
+
]
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "regex"
|
|
624
|
+
version = "1.12.3"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
627
|
+
dependencies = [
|
|
628
|
+
"aho-corasick",
|
|
629
|
+
"memchr",
|
|
630
|
+
"regex-automata",
|
|
631
|
+
"regex-syntax",
|
|
632
|
+
]
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "regex-automata"
|
|
636
|
+
version = "0.4.14"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
639
|
+
dependencies = [
|
|
640
|
+
"aho-corasick",
|
|
641
|
+
"memchr",
|
|
642
|
+
"regex-syntax",
|
|
643
|
+
]
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "regex-syntax"
|
|
647
|
+
version = "0.8.10"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "rustc-hash"
|
|
653
|
+
version = "2.1.2"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "rustversion"
|
|
659
|
+
version = "1.0.22"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "same-file"
|
|
665
|
+
version = "1.0.6"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
668
|
+
dependencies = [
|
|
669
|
+
"winapi-util",
|
|
670
|
+
]
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "serde"
|
|
674
|
+
version = "1.0.228"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
677
|
+
dependencies = [
|
|
678
|
+
"serde_core",
|
|
679
|
+
"serde_derive",
|
|
680
|
+
]
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "serde_core"
|
|
684
|
+
version = "1.0.228"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
687
|
+
dependencies = [
|
|
688
|
+
"serde_derive",
|
|
689
|
+
]
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "serde_derive"
|
|
693
|
+
version = "1.0.228"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
696
|
+
dependencies = [
|
|
697
|
+
"proc-macro2",
|
|
698
|
+
"quote",
|
|
699
|
+
"syn",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "serde_json"
|
|
704
|
+
version = "1.0.149"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"itoa",
|
|
709
|
+
"memchr",
|
|
710
|
+
"serde",
|
|
711
|
+
"serde_core",
|
|
712
|
+
"zmij",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "shlex"
|
|
717
|
+
version = "1.3.0"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "simd-adler32"
|
|
723
|
+
version = "0.3.9"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "strsim"
|
|
729
|
+
version = "0.11.1"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
732
|
+
|
|
733
|
+
[[package]]
|
|
734
|
+
name = "syn"
|
|
735
|
+
version = "2.0.117"
|
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
738
|
+
dependencies = [
|
|
739
|
+
"proc-macro2",
|
|
740
|
+
"quote",
|
|
741
|
+
"unicode-ident",
|
|
742
|
+
]
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "target-lexicon"
|
|
746
|
+
version = "0.13.5"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "thiserror"
|
|
752
|
+
version = "2.0.18"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
755
|
+
dependencies = [
|
|
756
|
+
"thiserror-impl",
|
|
757
|
+
]
|
|
758
|
+
|
|
759
|
+
[[package]]
|
|
760
|
+
name = "thiserror-impl"
|
|
761
|
+
version = "2.0.18"
|
|
762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
764
|
+
dependencies = [
|
|
765
|
+
"proc-macro2",
|
|
766
|
+
"quote",
|
|
767
|
+
"syn",
|
|
768
|
+
]
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "tinytemplate"
|
|
772
|
+
version = "1.2.1"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
775
|
+
dependencies = [
|
|
776
|
+
"serde",
|
|
777
|
+
"serde_json",
|
|
778
|
+
]
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "typed-path"
|
|
782
|
+
version = "0.12.3"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "unicode-ident"
|
|
788
|
+
version = "1.0.24"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "utf8parse"
|
|
794
|
+
version = "0.2.2"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "walkdir"
|
|
800
|
+
version = "2.5.0"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
803
|
+
dependencies = [
|
|
804
|
+
"same-file",
|
|
805
|
+
"winapi-util",
|
|
806
|
+
]
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "wasm-bindgen"
|
|
810
|
+
version = "0.2.118"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"cfg-if",
|
|
815
|
+
"once_cell",
|
|
816
|
+
"rustversion",
|
|
817
|
+
"wasm-bindgen-macro",
|
|
818
|
+
"wasm-bindgen-shared",
|
|
819
|
+
]
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "wasm-bindgen-macro"
|
|
823
|
+
version = "0.2.118"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"quote",
|
|
828
|
+
"wasm-bindgen-macro-support",
|
|
829
|
+
]
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "wasm-bindgen-macro-support"
|
|
833
|
+
version = "0.2.118"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
|
|
836
|
+
dependencies = [
|
|
837
|
+
"bumpalo",
|
|
838
|
+
"proc-macro2",
|
|
839
|
+
"quote",
|
|
840
|
+
"syn",
|
|
841
|
+
"wasm-bindgen-shared",
|
|
842
|
+
]
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "wasm-bindgen-shared"
|
|
846
|
+
version = "0.2.118"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
|
|
849
|
+
dependencies = [
|
|
850
|
+
"unicode-ident",
|
|
851
|
+
]
|
|
852
|
+
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "web-sys"
|
|
855
|
+
version = "0.3.95"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
|
|
858
|
+
dependencies = [
|
|
859
|
+
"js-sys",
|
|
860
|
+
"wasm-bindgen",
|
|
861
|
+
]
|
|
862
|
+
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "winapi"
|
|
865
|
+
version = "0.3.9"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"winapi-i686-pc-windows-gnu",
|
|
870
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
871
|
+
]
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
875
|
+
version = "0.4.0"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "winapi-util"
|
|
881
|
+
version = "0.1.11"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
884
|
+
dependencies = [
|
|
885
|
+
"windows-sys",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
890
|
+
version = "0.4.0"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "windows-link"
|
|
896
|
+
version = "0.2.1"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "windows-sys"
|
|
902
|
+
version = "0.61.2"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"windows-link",
|
|
907
|
+
]
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "zerocopy"
|
|
911
|
+
version = "0.8.48"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"zerocopy-derive",
|
|
916
|
+
]
|
|
917
|
+
|
|
918
|
+
[[package]]
|
|
919
|
+
name = "zerocopy-derive"
|
|
920
|
+
version = "0.8.48"
|
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
923
|
+
dependencies = [
|
|
924
|
+
"proc-macro2",
|
|
925
|
+
"quote",
|
|
926
|
+
"syn",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "zip"
|
|
931
|
+
version = "8.5.1"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "dcab981e19633ebcf0b001ddd37dd802996098bc1864f90b7c5d970ce76c1d59"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"crc32fast",
|
|
936
|
+
"flate2",
|
|
937
|
+
"indexmap",
|
|
938
|
+
"memchr",
|
|
939
|
+
"typed-path",
|
|
940
|
+
"zopfli",
|
|
941
|
+
]
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "zlib-rs"
|
|
945
|
+
version = "0.6.3"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
|
|
948
|
+
|
|
949
|
+
[[package]]
|
|
950
|
+
name = "zmij"
|
|
951
|
+
version = "1.0.21"
|
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "zopfli"
|
|
957
|
+
version = "0.8.3"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
960
|
+
dependencies = [
|
|
961
|
+
"bumpalo",
|
|
962
|
+
"crc32fast",
|
|
963
|
+
"log",
|
|
964
|
+
"simd-adler32",
|
|
965
|
+
]
|