polyglot-piranha 0.3.24__tar.gz → 0.3.26__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.
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/Cargo.lock +245 -244
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/Cargo.toml +7 -8
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/PKG-INFO +4 -4
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/README.md +1 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/pyproject.toml +2 -6
- polyglot_piranha-0.3.26/src/cleanup_rules/ruby/edges.toml +50 -0
- polyglot_piranha-0.3.26/src/cleanup_rules/ruby/rules.toml +1158 -0
- polyglot_piranha-0.3.26/src/cleanup_rules/ruby/scope_config.toml +36 -0
- polyglot_piranha-0.3.26/src/models/concrete_syntax.rs +367 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/default_configs.rs +5 -1
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/language.rs +32 -4
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/matches.rs +15 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/piranha_arguments.rs +3 -2
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/unit_tests/concrete_syntax_test.rs +82 -10
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/mod.rs +3 -2
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_java.rs +2 -2
- polyglot_piranha-0.3.26/src/tests/test_piranha_ruby.rs +32 -0
- polyglot_piranha-0.3.26/src/tests/test_piranha_yaml.rs +24 -0
- polyglot_piranha-0.3.24/src/models/concrete_syntax.rs +0 -217
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/LICENSE +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/EnumWithClassSymbol.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/PiranhaRuntimeException.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/PiranhaUtils.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/UsageCounter.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/XPFlagCleaner.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/config/Config.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/config/MethodRecord.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/config/PiranhaConfigurationException.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/config/PiranhaEnumRecord.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/config/PiranhaMethodRecord.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/config/PiranhaRecord.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/testannotations/AnnotationArgument.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/testannotations/AnnotationResolutionException.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/testannotations/ResolvedTestAnnotation.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/testannotations/TestAnnotationResolver.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/testannotations/TestAnnotationSpecRecord.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/java/com/uber/piranha/ConfigurationTest.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/java/com/uber/piranha/CorePiranhaTest.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/java/com/uber/piranha/EnumConstantTest.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/java/com/uber/piranha/PiranhaTestingHelpers.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/java/com/uber/piranha/TestCaseCleanUpTest.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/java/com/uber/piranha/TreatmentGroupsTest.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPFlagCleanerNegativeCases.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPFlagCleanerPositiveCases.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPFlagCleanerPositiveCasesControl.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPFlagCleanerPositiveCasesTreatment.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPMethodChainCases.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPMethodChainCasesControl.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPMethodChainCasesDoNotAllowMethodChain.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPMethodChainCasesDoNotallowArgMatchingAndMethodChain.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPMethodChainCasesTreatment.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPMethodChainCasesTreatmentDoNotAllowMatchingArgMethodInvc.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPTest.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/BoolParam.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/BoolParameter.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/OverlappingNameInterface.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/PVal.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/Parameter.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/SomeOtherInterface.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/SomeParamRev.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/StaticMthds.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/invalid/piranha.properties +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/invalid/properties_test_invalid.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/invalid/properties_test_invalid_2.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/invalid/properties_test_invalid_3.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/invalid/properties_test_invalid_4.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_enum_no_arg.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_method_chain_control.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_method_chain_treated.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_no_flag_method_name.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_no_flag_method_name_no_method_chain.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_no_method_chain.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_argument.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_clean_by_setters_ignore_others.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_noFlag.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_noTreatmentGroup.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_receive.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_receive_argument.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_return.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_return_argument.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_return_receive.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_return_receive_argument.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_with_enum_no_match.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_with_enum_wrong_arg.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_without_enum.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_unnecessary_instance_method.json +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/sample/src/main/java/com/uber/mylib/MyClass.java +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/sample/src/main/resources/com/uber/mylib/MyClass.bak +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/sample/src/main/resources/com/uber/mylib/MyClass.expect +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/javascript/src/config_checker.js +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/javascript/src/piranha.js +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/javascript/src/refactor.js +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/javascript/src/source_checker.js +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/objc/src/XPFlagRefactoring/CMakeLists.txt +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/objc/src/XPFlagRefactoring/README.txt +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/objc/src/XPFlagRefactoring/XPFlagRefactoring.cpp +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/objc/src/XPFlagRefactoring/XPFlagRefactoring.exports +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/plugins/pyproject.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/site/src/components/AdditionalContent/index.js +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/site/src/components/AdditionalContent/styles.module.css +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/site/src/components/HomepageFeatures/index.js +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/site/src/components/HomepageFeatures/styles.module.css +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/site/src/css/custom.css +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/site/src/pages/index.js +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/site/src/pages/index.module.css +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/go/edges.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/go/rules.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/go/scope_config.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/java/edges.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/java/rules.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/java/scope_config.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/java_cs/edges.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/java_cs/rules.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/java_cs/scope_config.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/kt/edges.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/kt/rules.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/kt/scope_config.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/scala/scope_config.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/swift/edges.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/swift/rules.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/swift/scope_config.toml +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/df/README.md +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/df/analysis.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/df/mod.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/df/tag_analysis.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/df/unit_tests/tag_analysis_test.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/df/utils.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/lib.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/main.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/capture_group_patterns.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/edit.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/filter.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/mod.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/outgoing_edges.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/piranha_output.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/rule.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/rule_graph.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/rule_store.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/scopes.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/source_code_unit.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/unit_tests/piranha_arguments_test.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/unit_tests/rule_graph_validation_test.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/unit_tests/rule_test.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/unit_tests/scopes_test.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/unit_tests/source_code_unit_test.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_go.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_kt.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_python.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_scala.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_scm.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_strings.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_swift.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_thrift.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_ts.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_tsx.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/utilities/mod.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/utilities/regex_utilities.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/utilities/tree_sitter_utilities.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/utilities/unit_tests/tree_sitter_utilities_test.rs +0 -0
- {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/utilities/unit_tests/utilities_test.rs +0 -0
@@ -4,56 +4,57 @@ version = 3
|
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "aho-corasick"
|
7
|
-
version = "1.1.
|
7
|
+
version = "1.1.3"
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "
|
9
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
10
10
|
dependencies = [
|
11
11
|
"memchr",
|
12
12
|
]
|
13
13
|
|
14
14
|
[[package]]
|
15
15
|
name = "anstream"
|
16
|
-
version = "0.6.
|
16
|
+
version = "0.6.15"
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
-
checksum = "
|
18
|
+
checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
|
19
19
|
dependencies = [
|
20
20
|
"anstyle",
|
21
21
|
"anstyle-parse",
|
22
22
|
"anstyle-query",
|
23
23
|
"anstyle-wincon",
|
24
24
|
"colorchoice",
|
25
|
+
"is_terminal_polyfill",
|
25
26
|
"utf8parse",
|
26
27
|
]
|
27
28
|
|
28
29
|
[[package]]
|
29
30
|
name = "anstyle"
|
30
|
-
version = "1.0.
|
31
|
+
version = "1.0.8"
|
31
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
32
|
-
checksum = "
|
33
|
+
checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
|
33
34
|
|
34
35
|
[[package]]
|
35
36
|
name = "anstyle-parse"
|
36
|
-
version = "0.2.
|
37
|
+
version = "0.2.5"
|
37
38
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
38
|
-
checksum = "
|
39
|
+
checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
|
39
40
|
dependencies = [
|
40
41
|
"utf8parse",
|
41
42
|
]
|
42
43
|
|
43
44
|
[[package]]
|
44
45
|
name = "anstyle-query"
|
45
|
-
version = "1.
|
46
|
+
version = "1.1.1"
|
46
47
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
47
|
-
checksum = "
|
48
|
+
checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
|
48
49
|
dependencies = [
|
49
50
|
"windows-sys 0.52.0",
|
50
51
|
]
|
51
52
|
|
52
53
|
[[package]]
|
53
54
|
name = "anstyle-wincon"
|
54
|
-
version = "3.0.
|
55
|
+
version = "3.0.4"
|
55
56
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
56
|
-
checksum = "
|
57
|
+
checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
|
57
58
|
dependencies = [
|
58
59
|
"anstyle",
|
59
60
|
"windows-sys 0.52.0",
|
@@ -61,15 +62,15 @@ dependencies = [
|
|
61
62
|
|
62
63
|
[[package]]
|
63
64
|
name = "arc-swap"
|
64
|
-
version = "1.
|
65
|
+
version = "1.7.1"
|
65
66
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
66
|
-
checksum = "
|
67
|
+
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
|
67
68
|
|
68
69
|
[[package]]
|
69
70
|
name = "assert_cmd"
|
70
|
-
version = "2.0.
|
71
|
+
version = "2.0.15"
|
71
72
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
72
|
-
checksum = "
|
73
|
+
checksum = "bc65048dd435533bb1baf2ed9956b9a278fbfdcf90301b39ee117f06c0199d37"
|
73
74
|
dependencies = [
|
74
75
|
"anstyle",
|
75
76
|
"bstr",
|
@@ -82,27 +83,21 @@ dependencies = [
|
|
82
83
|
|
83
84
|
[[package]]
|
84
85
|
name = "autocfg"
|
85
|
-
version = "1.
|
86
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
87
|
-
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
88
|
-
|
89
|
-
[[package]]
|
90
|
-
name = "bitflags"
|
91
|
-
version = "1.3.2"
|
86
|
+
version = "1.3.0"
|
92
87
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
93
|
-
checksum = "
|
88
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
94
89
|
|
95
90
|
[[package]]
|
96
91
|
name = "bitflags"
|
97
|
-
version = "2.
|
92
|
+
version = "2.6.0"
|
98
93
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
99
|
-
checksum = "
|
94
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
100
95
|
|
101
96
|
[[package]]
|
102
97
|
name = "bstr"
|
103
|
-
version = "1.
|
98
|
+
version = "1.10.0"
|
104
99
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
105
|
-
checksum = "
|
100
|
+
checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c"
|
106
101
|
dependencies = [
|
107
102
|
"memchr",
|
108
103
|
"regex-automata",
|
@@ -111,12 +106,9 @@ dependencies = [
|
|
111
106
|
|
112
107
|
[[package]]
|
113
108
|
name = "cc"
|
114
|
-
version = "1.0.
|
109
|
+
version = "1.0.106"
|
115
110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
116
|
-
checksum = "
|
117
|
-
dependencies = [
|
118
|
-
"libc",
|
119
|
-
]
|
111
|
+
checksum = "066fce287b1d4eafef758e89e09d724a24808a9196fe9756b8ca90e86d0719a2"
|
120
112
|
|
121
113
|
[[package]]
|
122
114
|
name = "cfg-if"
|
@@ -126,9 +118,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
126
118
|
|
127
119
|
[[package]]
|
128
120
|
name = "clap"
|
129
|
-
version = "4.
|
121
|
+
version = "4.5.11"
|
130
122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
131
|
-
checksum = "
|
123
|
+
checksum = "35723e6a11662c2afb578bcf0b88bf6ea8e21282a953428f240574fcc3a2b5b3"
|
132
124
|
dependencies = [
|
133
125
|
"clap_builder",
|
134
126
|
"clap_derive",
|
@@ -136,39 +128,39 @@ dependencies = [
|
|
136
128
|
|
137
129
|
[[package]]
|
138
130
|
name = "clap_builder"
|
139
|
-
version = "4.
|
131
|
+
version = "4.5.11"
|
140
132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
141
|
-
checksum = "
|
133
|
+
checksum = "49eb96cbfa7cfa35017b7cd548c75b14c3118c98b423041d70562665e07fb0fa"
|
142
134
|
dependencies = [
|
143
135
|
"anstream",
|
144
136
|
"anstyle",
|
145
137
|
"clap_lex",
|
146
|
-
"strsim",
|
138
|
+
"strsim 0.11.1",
|
147
139
|
]
|
148
140
|
|
149
141
|
[[package]]
|
150
142
|
name = "clap_derive"
|
151
|
-
version = "4.
|
143
|
+
version = "4.5.11"
|
152
144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
153
|
-
checksum = "
|
145
|
+
checksum = "5d029b67f89d30bbb547c89fd5161293c0aec155fc691d7924b64550662db93e"
|
154
146
|
dependencies = [
|
155
|
-
"heck",
|
147
|
+
"heck 0.5.0",
|
156
148
|
"proc-macro2",
|
157
149
|
"quote",
|
158
|
-
"syn 2.0.
|
150
|
+
"syn 2.0.72",
|
159
151
|
]
|
160
152
|
|
161
153
|
[[package]]
|
162
154
|
name = "clap_lex"
|
163
|
-
version = "0.
|
155
|
+
version = "0.7.2"
|
164
156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
165
|
-
checksum = "
|
157
|
+
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
|
166
158
|
|
167
159
|
[[package]]
|
168
160
|
name = "colorchoice"
|
169
|
-
version = "1.0.
|
161
|
+
version = "1.0.2"
|
170
162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
171
|
-
checksum = "
|
163
|
+
checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
|
172
164
|
|
173
165
|
[[package]]
|
174
166
|
name = "colored"
|
@@ -182,11 +174,10 @@ dependencies = [
|
|
182
174
|
|
183
175
|
[[package]]
|
184
176
|
name = "crossbeam"
|
185
|
-
version = "0.8.
|
177
|
+
version = "0.8.4"
|
186
178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
187
|
-
checksum = "
|
179
|
+
checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
|
188
180
|
dependencies = [
|
189
|
-
"cfg-if",
|
190
181
|
"crossbeam-channel",
|
191
182
|
"crossbeam-deque",
|
192
183
|
"crossbeam-epoch",
|
@@ -196,54 +187,46 @@ dependencies = [
|
|
196
187
|
|
197
188
|
[[package]]
|
198
189
|
name = "crossbeam-channel"
|
199
|
-
version = "0.5.
|
190
|
+
version = "0.5.13"
|
200
191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
201
|
-
checksum = "
|
192
|
+
checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
|
202
193
|
dependencies = [
|
203
|
-
"cfg-if",
|
204
194
|
"crossbeam-utils",
|
205
195
|
]
|
206
196
|
|
207
197
|
[[package]]
|
208
198
|
name = "crossbeam-deque"
|
209
|
-
version = "0.8.
|
199
|
+
version = "0.8.5"
|
210
200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
211
|
-
checksum = "
|
201
|
+
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
212
202
|
dependencies = [
|
213
|
-
"cfg-if",
|
214
203
|
"crossbeam-epoch",
|
215
204
|
"crossbeam-utils",
|
216
205
|
]
|
217
206
|
|
218
207
|
[[package]]
|
219
208
|
name = "crossbeam-epoch"
|
220
|
-
version = "0.9.
|
209
|
+
version = "0.9.18"
|
221
210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
222
|
-
checksum = "
|
211
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
223
212
|
dependencies = [
|
224
|
-
"autocfg",
|
225
|
-
"cfg-if",
|
226
213
|
"crossbeam-utils",
|
227
214
|
]
|
228
215
|
|
229
216
|
[[package]]
|
230
217
|
name = "crossbeam-queue"
|
231
|
-
version = "0.3.
|
218
|
+
version = "0.3.11"
|
232
219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
233
|
-
checksum = "
|
220
|
+
checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
|
234
221
|
dependencies = [
|
235
|
-
"cfg-if",
|
236
222
|
"crossbeam-utils",
|
237
223
|
]
|
238
224
|
|
239
225
|
[[package]]
|
240
226
|
name = "crossbeam-utils"
|
241
|
-
version = "0.8.
|
227
|
+
version = "0.8.20"
|
242
228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
243
|
-
checksum = "
|
244
|
-
dependencies = [
|
245
|
-
"cfg-if",
|
246
|
-
]
|
229
|
+
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
|
247
230
|
|
248
231
|
[[package]]
|
249
232
|
name = "darling"
|
@@ -265,7 +248,7 @@ dependencies = [
|
|
265
248
|
"ident_case",
|
266
249
|
"proc-macro2",
|
267
250
|
"quote",
|
268
|
-
"strsim",
|
251
|
+
"strsim 0.10.0",
|
269
252
|
"syn 1.0.109",
|
270
253
|
]
|
271
254
|
|
@@ -325,15 +308,15 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
325
308
|
|
326
309
|
[[package]]
|
327
310
|
name = "either"
|
328
|
-
version = "1.
|
311
|
+
version = "1.13.0"
|
329
312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
330
|
-
checksum = "
|
313
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
331
314
|
|
332
315
|
[[package]]
|
333
316
|
name = "env_logger"
|
334
|
-
version = "0.10.
|
317
|
+
version = "0.10.2"
|
335
318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
336
|
-
checksum = "
|
319
|
+
checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
|
337
320
|
dependencies = [
|
338
321
|
"humantime",
|
339
322
|
"is-terminal",
|
@@ -348,16 +331,6 @@ version = "1.0.1"
|
|
348
331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
349
332
|
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
350
333
|
|
351
|
-
[[package]]
|
352
|
-
name = "errno"
|
353
|
-
version = "0.3.8"
|
354
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
355
|
-
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
|
356
|
-
dependencies = [
|
357
|
-
"libc",
|
358
|
-
"windows-sys 0.52.0",
|
359
|
-
]
|
360
|
-
|
361
334
|
[[package]]
|
362
335
|
name = "float-cmp"
|
363
336
|
version = "0.9.0"
|
@@ -399,9 +372,9 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
399
372
|
|
400
373
|
[[package]]
|
401
374
|
name = "hashbrown"
|
402
|
-
version = "0.14.
|
375
|
+
version = "0.14.5"
|
403
376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
404
|
-
checksum = "
|
377
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
405
378
|
|
406
379
|
[[package]]
|
407
380
|
name = "heck"
|
@@ -409,11 +382,17 @@ version = "0.4.1"
|
|
409
382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
410
383
|
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
411
384
|
|
385
|
+
[[package]]
|
386
|
+
name = "heck"
|
387
|
+
version = "0.5.0"
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
389
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
390
|
+
|
412
391
|
[[package]]
|
413
392
|
name = "hermit-abi"
|
414
|
-
version = "0.3.
|
393
|
+
version = "0.3.9"
|
415
394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
416
|
-
checksum = "
|
395
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
417
396
|
|
418
397
|
[[package]]
|
419
398
|
name = "humantime"
|
@@ -429,9 +408,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
429
408
|
|
430
409
|
[[package]]
|
431
410
|
name = "indexmap"
|
432
|
-
version = "2.
|
411
|
+
version = "2.2.6"
|
433
412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
434
|
-
checksum = "
|
413
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
435
414
|
dependencies = [
|
436
415
|
"equivalent",
|
437
416
|
"hashbrown",
|
@@ -439,44 +418,41 @@ dependencies = [
|
|
439
418
|
|
440
419
|
[[package]]
|
441
420
|
name = "indoc"
|
442
|
-
version = "2.0.
|
421
|
+
version = "2.0.5"
|
443
422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
444
|
-
checksum = "
|
423
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
445
424
|
|
446
425
|
[[package]]
|
447
426
|
name = "is-terminal"
|
448
|
-
version = "0.4.
|
427
|
+
version = "0.4.12"
|
449
428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
450
|
-
checksum = "
|
429
|
+
checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
|
451
430
|
dependencies = [
|
452
431
|
"hermit-abi",
|
453
|
-
"
|
432
|
+
"libc",
|
454
433
|
"windows-sys 0.52.0",
|
455
434
|
]
|
456
435
|
|
457
436
|
[[package]]
|
458
|
-
name = "
|
459
|
-
version = "
|
437
|
+
name = "is_terminal_polyfill"
|
438
|
+
version = "1.70.1"
|
460
439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
461
|
-
checksum = "
|
462
|
-
dependencies = [
|
463
|
-
"either",
|
464
|
-
]
|
440
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
465
441
|
|
466
442
|
[[package]]
|
467
443
|
name = "itertools"
|
468
|
-
version = "0.12.
|
444
|
+
version = "0.12.1"
|
469
445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
470
|
-
checksum = "
|
446
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
471
447
|
dependencies = [
|
472
448
|
"either",
|
473
449
|
]
|
474
450
|
|
475
451
|
[[package]]
|
476
452
|
name = "itoa"
|
477
|
-
version = "1.0.
|
453
|
+
version = "1.0.11"
|
478
454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
479
|
-
checksum = "
|
455
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
480
456
|
|
481
457
|
[[package]]
|
482
458
|
name = "json"
|
@@ -496,27 +472,21 @@ dependencies = [
|
|
496
472
|
|
497
473
|
[[package]]
|
498
474
|
name = "lazy_static"
|
499
|
-
version = "1.
|
475
|
+
version = "1.5.0"
|
500
476
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
501
|
-
checksum = "
|
477
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
502
478
|
|
503
479
|
[[package]]
|
504
480
|
name = "libc"
|
505
|
-
version = "0.2.
|
481
|
+
version = "0.2.155"
|
506
482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
507
|
-
checksum = "
|
508
|
-
|
509
|
-
[[package]]
|
510
|
-
name = "linux-raw-sys"
|
511
|
-
version = "0.4.12"
|
512
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
513
|
-
checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
|
483
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
514
484
|
|
515
485
|
[[package]]
|
516
486
|
name = "lock_api"
|
517
|
-
version = "0.4.
|
487
|
+
version = "0.4.12"
|
518
488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
519
|
-
checksum = "
|
489
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
520
490
|
dependencies = [
|
521
491
|
"autocfg",
|
522
492
|
"scopeguard",
|
@@ -524,21 +494,21 @@ dependencies = [
|
|
524
494
|
|
525
495
|
[[package]]
|
526
496
|
name = "log"
|
527
|
-
version = "0.4.
|
497
|
+
version = "0.4.22"
|
528
498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
529
|
-
checksum = "
|
499
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
530
500
|
|
531
501
|
[[package]]
|
532
502
|
name = "memchr"
|
533
|
-
version = "2.7.
|
503
|
+
version = "2.7.4"
|
534
504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
535
|
-
checksum = "
|
505
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
536
506
|
|
537
507
|
[[package]]
|
538
508
|
name = "memoffset"
|
539
|
-
version = "0.9.
|
509
|
+
version = "0.9.1"
|
540
510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
541
|
-
checksum = "
|
511
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
542
512
|
dependencies = [
|
543
513
|
"autocfg",
|
544
514
|
]
|
@@ -551,9 +521,9 @@ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
551
521
|
|
552
522
|
[[package]]
|
553
523
|
name = "num-traits"
|
554
|
-
version = "0.2.
|
524
|
+
version = "0.2.19"
|
555
525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
556
|
-
checksum = "
|
526
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
557
527
|
dependencies = [
|
558
528
|
"autocfg",
|
559
529
|
]
|
@@ -566,9 +536,9 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
566
536
|
|
567
537
|
[[package]]
|
568
538
|
name = "parking_lot"
|
569
|
-
version = "0.12.
|
539
|
+
version = "0.12.3"
|
570
540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
571
|
-
checksum = "
|
541
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
572
542
|
dependencies = [
|
573
543
|
"lock_api",
|
574
544
|
"parking_lot_core",
|
@@ -576,20 +546,20 @@ dependencies = [
|
|
576
546
|
|
577
547
|
[[package]]
|
578
548
|
name = "parking_lot_core"
|
579
|
-
version = "0.9.
|
549
|
+
version = "0.9.10"
|
580
550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
581
|
-
checksum = "
|
551
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
582
552
|
dependencies = [
|
583
553
|
"cfg-if",
|
584
554
|
"libc",
|
585
555
|
"redox_syscall",
|
586
556
|
"smallvec",
|
587
|
-
"windows-targets 0.
|
557
|
+
"windows-targets 0.52.6",
|
588
558
|
]
|
589
559
|
|
590
560
|
[[package]]
|
591
561
|
name = "piranha"
|
592
|
-
version = "0.3.
|
562
|
+
version = "0.3.26"
|
593
563
|
dependencies = [
|
594
564
|
"assert_cmd",
|
595
565
|
"cc",
|
@@ -599,7 +569,7 @@ dependencies = [
|
|
599
569
|
"env_logger",
|
600
570
|
"getset",
|
601
571
|
"glob",
|
602
|
-
"itertools
|
572
|
+
"itertools",
|
603
573
|
"json",
|
604
574
|
"jwalk",
|
605
575
|
"lazy_static",
|
@@ -619,24 +589,31 @@ dependencies = [
|
|
619
589
|
"tree-sitter-kotlin",
|
620
590
|
"tree-sitter-python",
|
621
591
|
"tree-sitter-query",
|
592
|
+
"tree-sitter-ruby",
|
622
593
|
"tree-sitter-scala",
|
623
594
|
"tree-sitter-strings",
|
624
595
|
"tree-sitter-swift",
|
625
596
|
"tree-sitter-thrift",
|
626
597
|
"tree-sitter-traversal",
|
627
598
|
"tree-sitter-typescript",
|
599
|
+
"tree-sitter-yaml",
|
628
600
|
]
|
629
601
|
|
602
|
+
[[package]]
|
603
|
+
name = "portable-atomic"
|
604
|
+
version = "1.7.0"
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
606
|
+
checksum = "da544ee218f0d287a911e9c99a39a8c9bc8fcad3cb8db5959940044ecfc67265"
|
607
|
+
|
630
608
|
[[package]]
|
631
609
|
name = "predicates"
|
632
|
-
version = "3.
|
610
|
+
version = "3.1.2"
|
633
611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
634
|
-
checksum = "
|
612
|
+
checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97"
|
635
613
|
dependencies = [
|
636
614
|
"anstyle",
|
637
615
|
"difflib",
|
638
616
|
"float-cmp",
|
639
|
-
"itertools 0.11.0",
|
640
617
|
"normalize-line-endings",
|
641
618
|
"predicates-core",
|
642
619
|
"regex",
|
@@ -644,15 +621,15 @@ dependencies = [
|
|
644
621
|
|
645
622
|
[[package]]
|
646
623
|
name = "predicates-core"
|
647
|
-
version = "1.0.
|
624
|
+
version = "1.0.8"
|
648
625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
649
|
-
checksum = "
|
626
|
+
checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931"
|
650
627
|
|
651
628
|
[[package]]
|
652
629
|
name = "predicates-tree"
|
653
|
-
version = "1.0.
|
630
|
+
version = "1.0.11"
|
654
631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
655
|
-
checksum = "
|
632
|
+
checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13"
|
656
633
|
dependencies = [
|
657
634
|
"predicates-core",
|
658
635
|
"termtree",
|
@@ -684,24 +661,25 @@ dependencies = [
|
|
684
661
|
|
685
662
|
[[package]]
|
686
663
|
name = "proc-macro2"
|
687
|
-
version = "1.0.
|
664
|
+
version = "1.0.86"
|
688
665
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
689
|
-
checksum = "
|
666
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
690
667
|
dependencies = [
|
691
668
|
"unicode-ident",
|
692
669
|
]
|
693
670
|
|
694
671
|
[[package]]
|
695
672
|
name = "pyo3"
|
696
|
-
version = "0.20.
|
673
|
+
version = "0.20.3"
|
697
674
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
698
|
-
checksum = "
|
675
|
+
checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
|
699
676
|
dependencies = [
|
700
677
|
"cfg-if",
|
701
678
|
"indoc",
|
702
679
|
"libc",
|
703
680
|
"memoffset",
|
704
681
|
"parking_lot",
|
682
|
+
"portable-atomic",
|
705
683
|
"pyo3-build-config",
|
706
684
|
"pyo3-ffi",
|
707
685
|
"pyo3-macros",
|
@@ -710,9 +688,9 @@ dependencies = [
|
|
710
688
|
|
711
689
|
[[package]]
|
712
690
|
name = "pyo3-build-config"
|
713
|
-
version = "0.20.
|
691
|
+
version = "0.20.3"
|
714
692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
715
|
-
checksum = "
|
693
|
+
checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
|
716
694
|
dependencies = [
|
717
695
|
"once_cell",
|
718
696
|
"target-lexicon",
|
@@ -720,9 +698,9 @@ dependencies = [
|
|
720
698
|
|
721
699
|
[[package]]
|
722
700
|
name = "pyo3-ffi"
|
723
|
-
version = "0.20.
|
701
|
+
version = "0.20.3"
|
724
702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
725
|
-
checksum = "
|
703
|
+
checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
|
726
704
|
dependencies = [
|
727
705
|
"libc",
|
728
706
|
"pyo3-build-config",
|
@@ -741,33 +719,34 @@ dependencies = [
|
|
741
719
|
|
742
720
|
[[package]]
|
743
721
|
name = "pyo3-macros"
|
744
|
-
version = "0.20.
|
722
|
+
version = "0.20.3"
|
745
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
746
|
-
checksum = "
|
724
|
+
checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
|
747
725
|
dependencies = [
|
748
726
|
"proc-macro2",
|
749
727
|
"pyo3-macros-backend",
|
750
728
|
"quote",
|
751
|
-
"syn 2.0.
|
729
|
+
"syn 2.0.72",
|
752
730
|
]
|
753
731
|
|
754
732
|
[[package]]
|
755
733
|
name = "pyo3-macros-backend"
|
756
|
-
version = "0.20.
|
734
|
+
version = "0.20.3"
|
757
735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
758
|
-
checksum = "
|
736
|
+
checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
|
759
737
|
dependencies = [
|
760
|
-
"heck",
|
738
|
+
"heck 0.4.1",
|
761
739
|
"proc-macro2",
|
740
|
+
"pyo3-build-config",
|
762
741
|
"quote",
|
763
|
-
"syn 2.0.
|
742
|
+
"syn 2.0.72",
|
764
743
|
]
|
765
744
|
|
766
745
|
[[package]]
|
767
746
|
name = "quote"
|
768
|
-
version = "1.0.
|
747
|
+
version = "1.0.36"
|
769
748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
770
|
-
checksum = "
|
749
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
771
750
|
dependencies = [
|
772
751
|
"proc-macro2",
|
773
752
|
]
|
@@ -802,9 +781,9 @@ checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
|
|
802
781
|
|
803
782
|
[[package]]
|
804
783
|
name = "rayon"
|
805
|
-
version = "1.
|
784
|
+
version = "1.10.0"
|
806
785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
807
|
-
checksum = "
|
786
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
808
787
|
dependencies = [
|
809
788
|
"either",
|
810
789
|
"rayon-core",
|
@@ -812,9 +791,9 @@ dependencies = [
|
|
812
791
|
|
813
792
|
[[package]]
|
814
793
|
name = "rayon-core"
|
815
|
-
version = "1.12.
|
794
|
+
version = "1.12.1"
|
816
795
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
817
|
-
checksum = "
|
796
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
818
797
|
dependencies = [
|
819
798
|
"crossbeam-deque",
|
820
799
|
"crossbeam-utils",
|
@@ -831,18 +810,18 @@ dependencies = [
|
|
831
810
|
|
832
811
|
[[package]]
|
833
812
|
name = "redox_syscall"
|
834
|
-
version = "0.
|
813
|
+
version = "0.5.3"
|
835
814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
836
|
-
checksum = "
|
815
|
+
checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
|
837
816
|
dependencies = [
|
838
|
-
"bitflags
|
817
|
+
"bitflags",
|
839
818
|
]
|
840
819
|
|
841
820
|
[[package]]
|
842
821
|
name = "regex"
|
843
|
-
version = "1.10.
|
822
|
+
version = "1.10.5"
|
844
823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
845
|
-
checksum = "
|
824
|
+
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
|
846
825
|
dependencies = [
|
847
826
|
"aho-corasick",
|
848
827
|
"memchr",
|
@@ -852,9 +831,9 @@ dependencies = [
|
|
852
831
|
|
853
832
|
[[package]]
|
854
833
|
name = "regex-automata"
|
855
|
-
version = "0.4.
|
834
|
+
version = "0.4.7"
|
856
835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
857
|
-
checksum = "
|
836
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
858
837
|
dependencies = [
|
859
838
|
"aho-corasick",
|
860
839
|
"memchr",
|
@@ -863,9 +842,9 @@ dependencies = [
|
|
863
842
|
|
864
843
|
[[package]]
|
865
844
|
name = "regex-syntax"
|
866
|
-
version = "0.8.
|
845
|
+
version = "0.8.4"
|
867
846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
868
|
-
checksum = "
|
847
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
869
848
|
|
870
849
|
[[package]]
|
871
850
|
name = "remove_dir_all"
|
@@ -876,24 +855,11 @@ dependencies = [
|
|
876
855
|
"winapi",
|
877
856
|
]
|
878
857
|
|
879
|
-
[[package]]
|
880
|
-
name = "rustix"
|
881
|
-
version = "0.38.28"
|
882
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
883
|
-
checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
|
884
|
-
dependencies = [
|
885
|
-
"bitflags 2.4.1",
|
886
|
-
"errno",
|
887
|
-
"libc",
|
888
|
-
"linux-raw-sys",
|
889
|
-
"windows-sys 0.52.0",
|
890
|
-
]
|
891
|
-
|
892
858
|
[[package]]
|
893
859
|
name = "ryu"
|
894
|
-
version = "1.0.
|
860
|
+
version = "1.0.18"
|
895
861
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
896
|
-
checksum = "
|
862
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
897
863
|
|
898
864
|
[[package]]
|
899
865
|
name = "scopeguard"
|
@@ -903,49 +869,50 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
903
869
|
|
904
870
|
[[package]]
|
905
871
|
name = "serde"
|
906
|
-
version = "1.0.
|
872
|
+
version = "1.0.204"
|
907
873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
908
|
-
checksum = "
|
874
|
+
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
|
909
875
|
dependencies = [
|
910
876
|
"serde_derive",
|
911
877
|
]
|
912
878
|
|
913
879
|
[[package]]
|
914
880
|
name = "serde_derive"
|
915
|
-
version = "1.0.
|
881
|
+
version = "1.0.204"
|
916
882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
917
|
-
checksum = "
|
883
|
+
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
|
918
884
|
dependencies = [
|
919
885
|
"proc-macro2",
|
920
886
|
"quote",
|
921
|
-
"syn 2.0.
|
887
|
+
"syn 2.0.72",
|
922
888
|
]
|
923
889
|
|
924
890
|
[[package]]
|
925
891
|
name = "serde_json"
|
926
|
-
version = "1.0.
|
892
|
+
version = "1.0.121"
|
927
893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
928
|
-
checksum = "
|
894
|
+
checksum = "4ab380d7d9f22ef3f21ad3e6c1ebe8e4fc7a2000ccba2e4d71fc96f15b2cb609"
|
929
895
|
dependencies = [
|
930
896
|
"itoa",
|
897
|
+
"memchr",
|
931
898
|
"ryu",
|
932
899
|
"serde",
|
933
900
|
]
|
934
901
|
|
935
902
|
[[package]]
|
936
903
|
name = "serde_spanned"
|
937
|
-
version = "0.6.
|
904
|
+
version = "0.6.7"
|
938
905
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
939
|
-
checksum = "
|
906
|
+
checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d"
|
940
907
|
dependencies = [
|
941
908
|
"serde",
|
942
909
|
]
|
943
910
|
|
944
911
|
[[package]]
|
945
912
|
name = "smallvec"
|
946
|
-
version = "1.
|
913
|
+
version = "1.13.2"
|
947
914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
948
|
-
checksum = "
|
915
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
949
916
|
|
950
917
|
[[package]]
|
951
918
|
name = "strsim"
|
@@ -953,6 +920,12 @@ version = "0.10.0"
|
|
953
920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
954
921
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
955
922
|
|
923
|
+
[[package]]
|
924
|
+
name = "strsim"
|
925
|
+
version = "0.11.1"
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
927
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
928
|
+
|
956
929
|
[[package]]
|
957
930
|
name = "syn"
|
958
931
|
version = "1.0.109"
|
@@ -966,9 +939,9 @@ dependencies = [
|
|
966
939
|
|
967
940
|
[[package]]
|
968
941
|
name = "syn"
|
969
|
-
version = "2.0.
|
942
|
+
version = "2.0.72"
|
970
943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
971
|
-
checksum = "
|
944
|
+
checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
|
972
945
|
dependencies = [
|
973
946
|
"proc-macro2",
|
974
947
|
"quote",
|
@@ -977,9 +950,9 @@ dependencies = [
|
|
977
950
|
|
978
951
|
[[package]]
|
979
952
|
name = "target-lexicon"
|
980
|
-
version = "0.12.
|
953
|
+
version = "0.12.15"
|
981
954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
982
|
-
checksum = "
|
955
|
+
checksum = "4873307b7c257eddcb50c9bedf158eb669578359fb28428bef438fec8e6ba7c2"
|
983
956
|
|
984
957
|
[[package]]
|
985
958
|
name = "tempdir"
|
@@ -993,9 +966,9 @@ dependencies = [
|
|
993
966
|
|
994
967
|
[[package]]
|
995
968
|
name = "termcolor"
|
996
|
-
version = "1.4.
|
969
|
+
version = "1.4.1"
|
997
970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
998
|
-
checksum = "
|
971
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
999
972
|
dependencies = [
|
1000
973
|
"winapi-util",
|
1001
974
|
]
|
@@ -1008,9 +981,9 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
|
|
1008
981
|
|
1009
982
|
[[package]]
|
1010
983
|
name = "toml"
|
1011
|
-
version = "0.8.
|
984
|
+
version = "0.8.16"
|
1012
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1013
|
-
checksum = "
|
986
|
+
checksum = "81967dd0dd2c1ab0bc3468bd7caecc32b8a4aa47d0c8c695d8c2b2108168d62c"
|
1014
987
|
dependencies = [
|
1015
988
|
"serde",
|
1016
989
|
"serde_spanned",
|
@@ -1020,18 +993,18 @@ dependencies = [
|
|
1020
993
|
|
1021
994
|
[[package]]
|
1022
995
|
name = "toml_datetime"
|
1023
|
-
version = "0.6.
|
996
|
+
version = "0.6.7"
|
1024
997
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1025
|
-
checksum = "
|
998
|
+
checksum = "f8fb9f64314842840f1d940ac544da178732128f1c78c21772e876579e0da1db"
|
1026
999
|
dependencies = [
|
1027
1000
|
"serde",
|
1028
1001
|
]
|
1029
1002
|
|
1030
1003
|
[[package]]
|
1031
1004
|
name = "toml_edit"
|
1032
|
-
version = "0.
|
1005
|
+
version = "0.22.17"
|
1033
1006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1034
|
-
checksum = "
|
1007
|
+
checksum = "8d9f8729f5aea9562aac1cc0441f5d6de3cff1ee0c5d67293eeca5eb36ee7c16"
|
1035
1008
|
dependencies = [
|
1036
1009
|
"indexmap",
|
1037
1010
|
"serde",
|
@@ -1071,8 +1044,9 @@ dependencies = [
|
|
1071
1044
|
|
1072
1045
|
[[package]]
|
1073
1046
|
name = "tree-sitter-kotlin"
|
1074
|
-
version = "0.3.
|
1075
|
-
source = "
|
1047
|
+
version = "0.3.5"
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1049
|
+
checksum = "8df217a0e1fec649f3e13157de932439f3d37ea4e265038dd0873971ef56e726"
|
1076
1050
|
dependencies = [
|
1077
1051
|
"cc",
|
1078
1052
|
"tree-sitter",
|
@@ -1098,11 +1072,21 @@ dependencies = [
|
|
1098
1072
|
"tree-sitter",
|
1099
1073
|
]
|
1100
1074
|
|
1075
|
+
[[package]]
|
1076
|
+
name = "tree-sitter-ruby"
|
1077
|
+
version = "0.20.1"
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1079
|
+
checksum = "44d50ef383469df8485f024c5fb01faced8cb90368192a7ba02605b43b2427fe"
|
1080
|
+
dependencies = [
|
1081
|
+
"cc",
|
1082
|
+
"tree-sitter",
|
1083
|
+
]
|
1084
|
+
|
1101
1085
|
[[package]]
|
1102
1086
|
name = "tree-sitter-scala"
|
1103
|
-
version = "0.20.
|
1087
|
+
version = "0.20.3"
|
1104
1088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1105
|
-
checksum = "
|
1089
|
+
checksum = "44fcf4628a88a3b5cbac3ff52658b924f3e545abddfa245ab9cf683c1adda350"
|
1106
1090
|
dependencies = [
|
1107
1091
|
"cc",
|
1108
1092
|
"tree-sitter",
|
@@ -1147,9 +1131,19 @@ dependencies = [
|
|
1147
1131
|
|
1148
1132
|
[[package]]
|
1149
1133
|
name = "tree-sitter-typescript"
|
1150
|
-
version = "0.20.
|
1134
|
+
version = "0.20.5"
|
1151
1135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1152
|
-
checksum = "
|
1136
|
+
checksum = "c8bc1d2c24276a48ef097a71b56888ac9db63717e8f8d0b324668a27fd619670"
|
1137
|
+
dependencies = [
|
1138
|
+
"cc",
|
1139
|
+
"tree-sitter",
|
1140
|
+
]
|
1141
|
+
|
1142
|
+
[[package]]
|
1143
|
+
name = "tree-sitter-yaml"
|
1144
|
+
version = "0.0.1"
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1146
|
+
checksum = "324767d0ad6bc588467aa4b98f6f5cd6eda64ece1eae568f8fcf5b899bcf0fe9"
|
1153
1147
|
dependencies = [
|
1154
1148
|
"cc",
|
1155
1149
|
"tree-sitter",
|
@@ -1169,15 +1163,15 @@ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
1169
1163
|
|
1170
1164
|
[[package]]
|
1171
1165
|
name = "utf8parse"
|
1172
|
-
version = "0.2.
|
1166
|
+
version = "0.2.2"
|
1173
1167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1174
|
-
checksum = "
|
1168
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
1175
1169
|
|
1176
1170
|
[[package]]
|
1177
1171
|
name = "version_check"
|
1178
|
-
version = "0.9.
|
1172
|
+
version = "0.9.5"
|
1179
1173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1180
|
-
checksum = "
|
1174
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
1181
1175
|
|
1182
1176
|
[[package]]
|
1183
1177
|
name = "wait-timeout"
|
@@ -1206,11 +1200,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1206
1200
|
|
1207
1201
|
[[package]]
|
1208
1202
|
name = "winapi-util"
|
1209
|
-
version = "0.1.
|
1203
|
+
version = "0.1.8"
|
1210
1204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1211
|
-
checksum = "
|
1205
|
+
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
|
1212
1206
|
dependencies = [
|
1213
|
-
"
|
1207
|
+
"windows-sys 0.52.0",
|
1214
1208
|
]
|
1215
1209
|
|
1216
1210
|
[[package]]
|
@@ -1234,7 +1228,7 @@ version = "0.52.0"
|
|
1234
1228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1235
1229
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
1236
1230
|
dependencies = [
|
1237
|
-
"windows-targets 0.52.
|
1231
|
+
"windows-targets 0.52.6",
|
1238
1232
|
]
|
1239
1233
|
|
1240
1234
|
[[package]]
|
@@ -1254,17 +1248,18 @@ dependencies = [
|
|
1254
1248
|
|
1255
1249
|
[[package]]
|
1256
1250
|
name = "windows-targets"
|
1257
|
-
version = "0.52.
|
1251
|
+
version = "0.52.6"
|
1258
1252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1259
|
-
checksum = "
|
1253
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
1260
1254
|
dependencies = [
|
1261
|
-
"windows_aarch64_gnullvm 0.52.
|
1262
|
-
"windows_aarch64_msvc 0.52.
|
1263
|
-
"windows_i686_gnu 0.52.
|
1264
|
-
"
|
1265
|
-
"
|
1266
|
-
"
|
1267
|
-
"
|
1255
|
+
"windows_aarch64_gnullvm 0.52.6",
|
1256
|
+
"windows_aarch64_msvc 0.52.6",
|
1257
|
+
"windows_i686_gnu 0.52.6",
|
1258
|
+
"windows_i686_gnullvm",
|
1259
|
+
"windows_i686_msvc 0.52.6",
|
1260
|
+
"windows_x86_64_gnu 0.52.6",
|
1261
|
+
"windows_x86_64_gnullvm 0.52.6",
|
1262
|
+
"windows_x86_64_msvc 0.52.6",
|
1268
1263
|
]
|
1269
1264
|
|
1270
1265
|
[[package]]
|
@@ -1275,9 +1270,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
1275
1270
|
|
1276
1271
|
[[package]]
|
1277
1272
|
name = "windows_aarch64_gnullvm"
|
1278
|
-
version = "0.52.
|
1273
|
+
version = "0.52.6"
|
1279
1274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1280
|
-
checksum = "
|
1275
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
1281
1276
|
|
1282
1277
|
[[package]]
|
1283
1278
|
name = "windows_aarch64_msvc"
|
@@ -1287,9 +1282,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
1287
1282
|
|
1288
1283
|
[[package]]
|
1289
1284
|
name = "windows_aarch64_msvc"
|
1290
|
-
version = "0.52.
|
1285
|
+
version = "0.52.6"
|
1291
1286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1292
|
-
checksum = "
|
1287
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
1293
1288
|
|
1294
1289
|
[[package]]
|
1295
1290
|
name = "windows_i686_gnu"
|
@@ -1299,9 +1294,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
1299
1294
|
|
1300
1295
|
[[package]]
|
1301
1296
|
name = "windows_i686_gnu"
|
1302
|
-
version = "0.52.
|
1297
|
+
version = "0.52.6"
|
1303
1298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1304
|
-
checksum = "
|
1299
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
1300
|
+
|
1301
|
+
[[package]]
|
1302
|
+
name = "windows_i686_gnullvm"
|
1303
|
+
version = "0.52.6"
|
1304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1305
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
1305
1306
|
|
1306
1307
|
[[package]]
|
1307
1308
|
name = "windows_i686_msvc"
|
@@ -1311,9 +1312,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
1311
1312
|
|
1312
1313
|
[[package]]
|
1313
1314
|
name = "windows_i686_msvc"
|
1314
|
-
version = "0.52.
|
1315
|
+
version = "0.52.6"
|
1315
1316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1316
|
-
checksum = "
|
1317
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1317
1318
|
|
1318
1319
|
[[package]]
|
1319
1320
|
name = "windows_x86_64_gnu"
|
@@ -1323,9 +1324,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
1323
1324
|
|
1324
1325
|
[[package]]
|
1325
1326
|
name = "windows_x86_64_gnu"
|
1326
|
-
version = "0.52.
|
1327
|
+
version = "0.52.6"
|
1327
1328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1328
|
-
checksum = "
|
1329
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1329
1330
|
|
1330
1331
|
[[package]]
|
1331
1332
|
name = "windows_x86_64_gnullvm"
|
@@ -1335,9 +1336,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
1335
1336
|
|
1336
1337
|
[[package]]
|
1337
1338
|
name = "windows_x86_64_gnullvm"
|
1338
|
-
version = "0.52.
|
1339
|
+
version = "0.52.6"
|
1339
1340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1340
|
-
checksum = "
|
1341
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
1341
1342
|
|
1342
1343
|
[[package]]
|
1343
1344
|
name = "windows_x86_64_msvc"
|
@@ -1347,15 +1348,15 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
1347
1348
|
|
1348
1349
|
[[package]]
|
1349
1350
|
name = "windows_x86_64_msvc"
|
1350
|
-
version = "0.52.
|
1351
|
+
version = "0.52.6"
|
1351
1352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1352
|
-
checksum = "
|
1353
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
1353
1354
|
|
1354
1355
|
[[package]]
|
1355
1356
|
name = "winnow"
|
1356
|
-
version = "0.
|
1357
|
+
version = "0.6.16"
|
1357
1358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1358
|
-
checksum = "
|
1359
|
+
checksum = "b480ae9340fc261e6be3e95a1ba86d54ae3f9171132a73ce8d4bbaf68339507c"
|
1359
1360
|
dependencies = [
|
1360
1361
|
"memchr",
|
1361
1362
|
]
|