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.
Files changed (160) hide show
  1. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/Cargo.lock +245 -244
  2. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/Cargo.toml +7 -8
  3. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/PKG-INFO +4 -4
  4. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/README.md +1 -0
  5. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/pyproject.toml +2 -6
  6. polyglot_piranha-0.3.26/src/cleanup_rules/ruby/edges.toml +50 -0
  7. polyglot_piranha-0.3.26/src/cleanup_rules/ruby/rules.toml +1158 -0
  8. polyglot_piranha-0.3.26/src/cleanup_rules/ruby/scope_config.toml +36 -0
  9. polyglot_piranha-0.3.26/src/models/concrete_syntax.rs +367 -0
  10. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/default_configs.rs +5 -1
  11. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/language.rs +32 -4
  12. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/matches.rs +15 -0
  13. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/piranha_arguments.rs +3 -2
  14. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/unit_tests/concrete_syntax_test.rs +82 -10
  15. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/mod.rs +3 -2
  16. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_java.rs +2 -2
  17. polyglot_piranha-0.3.26/src/tests/test_piranha_ruby.rs +32 -0
  18. polyglot_piranha-0.3.26/src/tests/test_piranha_yaml.rs +24 -0
  19. polyglot_piranha-0.3.24/src/models/concrete_syntax.rs +0 -217
  20. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/LICENSE +0 -0
  21. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/EnumWithClassSymbol.java +0 -0
  22. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/PiranhaRuntimeException.java +0 -0
  23. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/PiranhaUtils.java +0 -0
  24. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/UsageCounter.java +0 -0
  25. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/XPFlagCleaner.java +0 -0
  26. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/config/Config.java +0 -0
  27. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/config/MethodRecord.java +0 -0
  28. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/config/PiranhaConfigurationException.java +0 -0
  29. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/config/PiranhaEnumRecord.java +0 -0
  30. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/config/PiranhaMethodRecord.java +0 -0
  31. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/config/PiranhaRecord.java +0 -0
  32. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/testannotations/AnnotationArgument.java +0 -0
  33. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/testannotations/AnnotationResolutionException.java +0 -0
  34. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/testannotations/ResolvedTestAnnotation.java +0 -0
  35. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/testannotations/TestAnnotationResolver.java +0 -0
  36. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/main/java/com/uber/piranha/testannotations/TestAnnotationSpecRecord.java +0 -0
  37. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/java/com/uber/piranha/ConfigurationTest.java +0 -0
  38. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/java/com/uber/piranha/CorePiranhaTest.java +0 -0
  39. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/java/com/uber/piranha/EnumConstantTest.java +0 -0
  40. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/java/com/uber/piranha/PiranhaTestingHelpers.java +0 -0
  41. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/java/com/uber/piranha/TestCaseCleanUpTest.java +0 -0
  42. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/java/com/uber/piranha/TreatmentGroupsTest.java +0 -0
  43. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPFlagCleanerNegativeCases.java +0 -0
  44. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPFlagCleanerPositiveCases.java +0 -0
  45. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPFlagCleanerPositiveCasesControl.java +0 -0
  46. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPFlagCleanerPositiveCasesTreatment.java +0 -0
  47. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPMethodChainCases.java +0 -0
  48. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPMethodChainCasesControl.java +0 -0
  49. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPMethodChainCasesDoNotAllowMethodChain.java +0 -0
  50. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPMethodChainCasesDoNotallowArgMatchingAndMethodChain.java +0 -0
  51. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPMethodChainCasesTreatment.java +0 -0
  52. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPMethodChainCasesTreatmentDoNotAllowMatchingArgMethodInvc.java +0 -0
  53. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/XPTest.java +0 -0
  54. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/BoolParam.java +0 -0
  55. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/BoolParameter.java +0 -0
  56. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/OverlappingNameInterface.java +0 -0
  57. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/PVal.java +0 -0
  58. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/Parameter.java +0 -0
  59. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/SomeOtherInterface.java +0 -0
  60. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/SomeParamRev.java +0 -0
  61. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/com/uber/piranha/mock/StaticMthds.java +0 -0
  62. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/invalid/piranha.properties +0 -0
  63. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/invalid/properties_test_invalid.json +0 -0
  64. {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
  65. {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
  66. {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
  67. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_enum_no_arg.json +0 -0
  68. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_method_chain_control.json +0 -0
  69. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_method_chain_treated.json +0 -0
  70. {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
  71. {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
  72. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_no_method_chain.json +0 -0
  73. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_argument.json +0 -0
  74. {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
  75. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_noFlag.json +0 -0
  76. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_noTreatmentGroup.json +0 -0
  77. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_receive.json +0 -0
  78. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_receive_argument.json +0 -0
  79. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_return.json +0 -0
  80. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_return_argument.json +0 -0
  81. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_return_receive.json +0 -0
  82. {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
  83. {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
  84. {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
  85. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_test_without_enum.json +0 -0
  86. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/piranha/src/test/resources/config/properties_unnecessary_instance_method.json +0 -0
  87. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/sample/src/main/java/com/uber/mylib/MyClass.java +0 -0
  88. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/sample/src/main/resources/com/uber/mylib/MyClass.bak +0 -0
  89. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/java/sample/src/main/resources/com/uber/mylib/MyClass.expect +0 -0
  90. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/javascript/src/config_checker.js +0 -0
  91. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/javascript/src/piranha.js +0 -0
  92. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/javascript/src/refactor.js +0 -0
  93. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/javascript/src/source_checker.js +0 -0
  94. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/objc/src/XPFlagRefactoring/CMakeLists.txt +0 -0
  95. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/objc/src/XPFlagRefactoring/README.txt +0 -0
  96. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/objc/src/XPFlagRefactoring/XPFlagRefactoring.cpp +0 -0
  97. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/legacy/objc/src/XPFlagRefactoring/XPFlagRefactoring.exports +0 -0
  98. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/plugins/pyproject.toml +0 -0
  99. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/site/src/components/AdditionalContent/index.js +0 -0
  100. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/site/src/components/AdditionalContent/styles.module.css +0 -0
  101. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/site/src/components/HomepageFeatures/index.js +0 -0
  102. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/site/src/components/HomepageFeatures/styles.module.css +0 -0
  103. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/site/src/css/custom.css +0 -0
  104. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/site/src/pages/index.js +0 -0
  105. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/site/src/pages/index.module.css +0 -0
  106. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/go/edges.toml +0 -0
  107. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/go/rules.toml +0 -0
  108. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/go/scope_config.toml +0 -0
  109. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/java/edges.toml +0 -0
  110. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/java/rules.toml +0 -0
  111. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/java/scope_config.toml +0 -0
  112. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/java_cs/edges.toml +0 -0
  113. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/java_cs/rules.toml +0 -0
  114. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/java_cs/scope_config.toml +0 -0
  115. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/kt/edges.toml +0 -0
  116. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/kt/rules.toml +0 -0
  117. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/kt/scope_config.toml +0 -0
  118. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/scala/scope_config.toml +0 -0
  119. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/swift/edges.toml +0 -0
  120. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/swift/rules.toml +0 -0
  121. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/cleanup_rules/swift/scope_config.toml +0 -0
  122. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/df/README.md +0 -0
  123. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/df/analysis.rs +0 -0
  124. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/df/mod.rs +0 -0
  125. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/df/tag_analysis.rs +0 -0
  126. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/df/unit_tests/tag_analysis_test.rs +0 -0
  127. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/df/utils.rs +0 -0
  128. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/lib.rs +0 -0
  129. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/main.rs +0 -0
  130. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/capture_group_patterns.rs +0 -0
  131. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/edit.rs +0 -0
  132. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/filter.rs +0 -0
  133. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/mod.rs +0 -0
  134. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/outgoing_edges.rs +0 -0
  135. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/piranha_output.rs +0 -0
  136. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/rule.rs +0 -0
  137. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/rule_graph.rs +0 -0
  138. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/rule_store.rs +0 -0
  139. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/scopes.rs +0 -0
  140. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/source_code_unit.rs +0 -0
  141. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/unit_tests/piranha_arguments_test.rs +0 -0
  142. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/unit_tests/rule_graph_validation_test.rs +0 -0
  143. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/unit_tests/rule_test.rs +0 -0
  144. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/unit_tests/scopes_test.rs +0 -0
  145. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/models/unit_tests/source_code_unit_test.rs +0 -0
  146. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_go.rs +0 -0
  147. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_kt.rs +0 -0
  148. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_python.rs +0 -0
  149. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_scala.rs +0 -0
  150. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_scm.rs +0 -0
  151. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_strings.rs +0 -0
  152. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_swift.rs +0 -0
  153. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_thrift.rs +0 -0
  154. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_ts.rs +0 -0
  155. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/tests/test_piranha_tsx.rs +0 -0
  156. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/utilities/mod.rs +0 -0
  157. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/utilities/regex_utilities.rs +0 -0
  158. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/utilities/tree_sitter_utilities.rs +0 -0
  159. {polyglot_piranha-0.3.24 → polyglot_piranha-0.3.26}/src/utilities/unit_tests/tree_sitter_utilities_test.rs +0 -0
  160. {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.2"
7
+ version = "1.1.3"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
9
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
10
10
  dependencies = [
11
11
  "memchr",
12
12
  ]
13
13
 
14
14
  [[package]]
15
15
  name = "anstream"
16
- version = "0.6.5"
16
+ version = "0.6.15"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "d664a92ecae85fd0a7392615844904654d1d5f5514837f471ddef4a057aba1b6"
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.4"
31
+ version = "1.0.8"
31
32
  source = "registry+https://github.com/rust-lang/crates.io-index"
32
- checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"
33
+ checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
33
34
 
34
35
  [[package]]
35
36
  name = "anstyle-parse"
36
- version = "0.2.3"
37
+ version = "0.2.5"
37
38
  source = "registry+https://github.com/rust-lang/crates.io-index"
38
- checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
39
+ checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
39
40
  dependencies = [
40
41
  "utf8parse",
41
42
  ]
42
43
 
43
44
  [[package]]
44
45
  name = "anstyle-query"
45
- version = "1.0.2"
46
+ version = "1.1.1"
46
47
  source = "registry+https://github.com/rust-lang/crates.io-index"
47
- checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
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.2"
55
+ version = "3.0.4"
55
56
  source = "registry+https://github.com/rust-lang/crates.io-index"
56
- checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
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.6.0"
65
+ version = "1.7.1"
65
66
  source = "registry+https://github.com/rust-lang/crates.io-index"
66
- checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
67
+ checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
67
68
 
68
69
  [[package]]
69
70
  name = "assert_cmd"
70
- version = "2.0.12"
71
+ version = "2.0.15"
71
72
  source = "registry+https://github.com/rust-lang/crates.io-index"
72
- checksum = "88903cb14723e4d4003335bb7f8a14f27691649105346a0f0957466c096adfe6"
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.1.0"
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 = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
88
+ checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
94
89
 
95
90
  [[package]]
96
91
  name = "bitflags"
97
- version = "2.4.1"
92
+ version = "2.6.0"
98
93
  source = "registry+https://github.com/rust-lang/crates.io-index"
99
- checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
94
+ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
100
95
 
101
96
  [[package]]
102
97
  name = "bstr"
103
- version = "1.9.0"
98
+ version = "1.10.0"
104
99
  source = "registry+https://github.com/rust-lang/crates.io-index"
105
- checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc"
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.83"
109
+ version = "1.0.106"
115
110
  source = "registry+https://github.com/rust-lang/crates.io-index"
116
- checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
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.4.13"
121
+ version = "4.5.11"
130
122
  source = "registry+https://github.com/rust-lang/crates.io-index"
131
- checksum = "52bdc885e4cacc7f7c9eedc1ef6da641603180c783c41a15c264944deeaab642"
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.4.12"
131
+ version = "4.5.11"
140
132
  source = "registry+https://github.com/rust-lang/crates.io-index"
141
- checksum = "fb7fb5e4e979aec3be7791562fcba452f94ad85e954da024396433e0e25a79e9"
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.4.7"
143
+ version = "4.5.11"
152
144
  source = "registry+https://github.com/rust-lang/crates.io-index"
153
- checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442"
145
+ checksum = "5d029b67f89d30bbb547c89fd5161293c0aec155fc691d7924b64550662db93e"
154
146
  dependencies = [
155
- "heck",
147
+ "heck 0.5.0",
156
148
  "proc-macro2",
157
149
  "quote",
158
- "syn 2.0.48",
150
+ "syn 2.0.72",
159
151
  ]
160
152
 
161
153
  [[package]]
162
154
  name = "clap_lex"
163
- version = "0.6.0"
155
+ version = "0.7.2"
164
156
  source = "registry+https://github.com/rust-lang/crates.io-index"
165
- checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
157
+ checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
166
158
 
167
159
  [[package]]
168
160
  name = "colorchoice"
169
- version = "1.0.0"
161
+ version = "1.0.2"
170
162
  source = "registry+https://github.com/rust-lang/crates.io-index"
171
- checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
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.3"
177
+ version = "0.8.4"
186
178
  source = "registry+https://github.com/rust-lang/crates.io-index"
187
- checksum = "6eb9105919ca8e40d437fc9cbb8f1975d916f1bd28afe795a48aae32a2cc8920"
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.10"
190
+ version = "0.5.13"
200
191
  source = "registry+https://github.com/rust-lang/crates.io-index"
201
- checksum = "82a9b73a36529d9c47029b9fb3a6f0ea3cc916a261195352ba19e770fc1748b2"
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.4"
199
+ version = "0.8.5"
210
200
  source = "registry+https://github.com/rust-lang/crates.io-index"
211
- checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751"
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.17"
209
+ version = "0.9.18"
221
210
  source = "registry+https://github.com/rust-lang/crates.io-index"
222
- checksum = "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d"
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.10"
218
+ version = "0.3.11"
232
219
  source = "registry+https://github.com/rust-lang/crates.io-index"
233
- checksum = "adc6598521bb5a83d491e8c1fe51db7296019d2ca3cb93cc6c2a20369a4d78a2"
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.18"
227
+ version = "0.8.20"
242
228
  source = "registry+https://github.com/rust-lang/crates.io-index"
243
- checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c"
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.9.0"
311
+ version = "1.13.0"
329
312
  source = "registry+https://github.com/rust-lang/crates.io-index"
330
- checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
313
+ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
331
314
 
332
315
  [[package]]
333
316
  name = "env_logger"
334
- version = "0.10.1"
317
+ version = "0.10.2"
335
318
  source = "registry+https://github.com/rust-lang/crates.io-index"
336
- checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece"
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.3"
375
+ version = "0.14.5"
403
376
  source = "registry+https://github.com/rust-lang/crates.io-index"
404
- checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
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.3"
393
+ version = "0.3.9"
415
394
  source = "registry+https://github.com/rust-lang/crates.io-index"
416
- checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
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.1.0"
411
+ version = "2.2.6"
433
412
  source = "registry+https://github.com/rust-lang/crates.io-index"
434
- checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
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.4"
421
+ version = "2.0.5"
443
422
  source = "registry+https://github.com/rust-lang/crates.io-index"
444
- checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
423
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
445
424
 
446
425
  [[package]]
447
426
  name = "is-terminal"
448
- version = "0.4.10"
427
+ version = "0.4.12"
449
428
  source = "registry+https://github.com/rust-lang/crates.io-index"
450
- checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
429
+ checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
451
430
  dependencies = [
452
431
  "hermit-abi",
453
- "rustix",
432
+ "libc",
454
433
  "windows-sys 0.52.0",
455
434
  ]
456
435
 
457
436
  [[package]]
458
- name = "itertools"
459
- version = "0.11.0"
437
+ name = "is_terminal_polyfill"
438
+ version = "1.70.1"
460
439
  source = "registry+https://github.com/rust-lang/crates.io-index"
461
- checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
462
- dependencies = [
463
- "either",
464
- ]
440
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
465
441
 
466
442
  [[package]]
467
443
  name = "itertools"
468
- version = "0.12.0"
444
+ version = "0.12.1"
469
445
  source = "registry+https://github.com/rust-lang/crates.io-index"
470
- checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0"
446
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
471
447
  dependencies = [
472
448
  "either",
473
449
  ]
474
450
 
475
451
  [[package]]
476
452
  name = "itoa"
477
- version = "1.0.10"
453
+ version = "1.0.11"
478
454
  source = "registry+https://github.com/rust-lang/crates.io-index"
479
- checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
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.4.0"
475
+ version = "1.5.0"
500
476
  source = "registry+https://github.com/rust-lang/crates.io-index"
501
- checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
477
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
502
478
 
503
479
  [[package]]
504
480
  name = "libc"
505
- version = "0.2.151"
481
+ version = "0.2.155"
506
482
  source = "registry+https://github.com/rust-lang/crates.io-index"
507
- checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
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.11"
487
+ version = "0.4.12"
518
488
  source = "registry+https://github.com/rust-lang/crates.io-index"
519
- checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
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.20"
497
+ version = "0.4.22"
528
498
  source = "registry+https://github.com/rust-lang/crates.io-index"
529
- checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
499
+ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
530
500
 
531
501
  [[package]]
532
502
  name = "memchr"
533
- version = "2.7.1"
503
+ version = "2.7.4"
534
504
  source = "registry+https://github.com/rust-lang/crates.io-index"
535
- checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
505
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
536
506
 
537
507
  [[package]]
538
508
  name = "memoffset"
539
- version = "0.9.0"
509
+ version = "0.9.1"
540
510
  source = "registry+https://github.com/rust-lang/crates.io-index"
541
- checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
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.17"
524
+ version = "0.2.19"
555
525
  source = "registry+https://github.com/rust-lang/crates.io-index"
556
- checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
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.1"
539
+ version = "0.12.3"
570
540
  source = "registry+https://github.com/rust-lang/crates.io-index"
571
- checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
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.9"
549
+ version = "0.9.10"
580
550
  source = "registry+https://github.com/rust-lang/crates.io-index"
581
- checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
551
+ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
582
552
  dependencies = [
583
553
  "cfg-if",
584
554
  "libc",
585
555
  "redox_syscall",
586
556
  "smallvec",
587
- "windows-targets 0.48.5",
557
+ "windows-targets 0.52.6",
588
558
  ]
589
559
 
590
560
  [[package]]
591
561
  name = "piranha"
592
- version = "0.3.24"
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 0.12.0",
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.0.4"
610
+ version = "3.1.2"
633
611
  source = "registry+https://github.com/rust-lang/crates.io-index"
634
- checksum = "6dfc28575c2e3f19cb3c73b93af36460ae898d426eba6fc15b9bd2a5220758a0"
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.6"
624
+ version = "1.0.8"
648
625
  source = "registry+https://github.com/rust-lang/crates.io-index"
649
- checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174"
626
+ checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931"
650
627
 
651
628
  [[package]]
652
629
  name = "predicates-tree"
653
- version = "1.0.9"
630
+ version = "1.0.11"
654
631
  source = "registry+https://github.com/rust-lang/crates.io-index"
655
- checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf"
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.75"
664
+ version = "1.0.86"
688
665
  source = "registry+https://github.com/rust-lang/crates.io-index"
689
- checksum = "907a61bd0f64c2f29cd1cf1dc34d05176426a3f504a78010f08416ddb7b13708"
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.1"
673
+ version = "0.20.3"
697
674
  source = "registry+https://github.com/rust-lang/crates.io-index"
698
- checksum = "e82ad98ce1991c9c70c3464ba4187337b9c45fcbbb060d46dca15f0c075e14e2"
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.1"
691
+ version = "0.20.3"
714
692
  source = "registry+https://github.com/rust-lang/crates.io-index"
715
- checksum = "5503d0b3aee2c7a8dbb389cd87cd9649f675d4c7f60ca33699a3e3859d81a891"
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.1"
701
+ version = "0.20.3"
724
702
  source = "registry+https://github.com/rust-lang/crates.io-index"
725
- checksum = "18a79e8d80486a00d11c0dcb27cd2aa17c022cc95c677b461f01797226ba8f41"
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.1"
722
+ version = "0.20.3"
745
723
  source = "registry+https://github.com/rust-lang/crates.io-index"
746
- checksum = "1f4b0dc7eaa578604fab11c8c7ff8934c71249c61d4def8e272c76ed879f03d4"
724
+ checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
747
725
  dependencies = [
748
726
  "proc-macro2",
749
727
  "pyo3-macros-backend",
750
728
  "quote",
751
- "syn 2.0.48",
729
+ "syn 2.0.72",
752
730
  ]
753
731
 
754
732
  [[package]]
755
733
  name = "pyo3-macros-backend"
756
- version = "0.20.1"
734
+ version = "0.20.3"
757
735
  source = "registry+https://github.com/rust-lang/crates.io-index"
758
- checksum = "816a4f709e29ddab2e3cdfe94600d554c5556cad0ddfeea95c47b580c3247fa4"
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.48",
742
+ "syn 2.0.72",
764
743
  ]
765
744
 
766
745
  [[package]]
767
746
  name = "quote"
768
- version = "1.0.35"
747
+ version = "1.0.36"
769
748
  source = "registry+https://github.com/rust-lang/crates.io-index"
770
- checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
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.8.0"
784
+ version = "1.10.0"
806
785
  source = "registry+https://github.com/rust-lang/crates.io-index"
807
- checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
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.0"
794
+ version = "1.12.1"
816
795
  source = "registry+https://github.com/rust-lang/crates.io-index"
817
- checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
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.4.1"
813
+ version = "0.5.3"
835
814
  source = "registry+https://github.com/rust-lang/crates.io-index"
836
- checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
815
+ checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
837
816
  dependencies = [
838
- "bitflags 1.3.2",
817
+ "bitflags",
839
818
  ]
840
819
 
841
820
  [[package]]
842
821
  name = "regex"
843
- version = "1.10.2"
822
+ version = "1.10.5"
844
823
  source = "registry+https://github.com/rust-lang/crates.io-index"
845
- checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
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.3"
834
+ version = "0.4.7"
856
835
  source = "registry+https://github.com/rust-lang/crates.io-index"
857
- checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
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.2"
845
+ version = "0.8.4"
867
846
  source = "registry+https://github.com/rust-lang/crates.io-index"
868
- checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
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.16"
860
+ version = "1.0.18"
895
861
  source = "registry+https://github.com/rust-lang/crates.io-index"
896
- checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
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.194"
872
+ version = "1.0.204"
907
873
  source = "registry+https://github.com/rust-lang/crates.io-index"
908
- checksum = "0b114498256798c94a0689e1a15fec6005dee8ac1f41de56404b67afc2a4b773"
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.194"
881
+ version = "1.0.204"
916
882
  source = "registry+https://github.com/rust-lang/crates.io-index"
917
- checksum = "a3385e45322e8f9931410f01b3031ec534c3947d0e94c18049af4d9f9907d4e0"
883
+ checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
918
884
  dependencies = [
919
885
  "proc-macro2",
920
886
  "quote",
921
- "syn 2.0.48",
887
+ "syn 2.0.72",
922
888
  ]
923
889
 
924
890
  [[package]]
925
891
  name = "serde_json"
926
- version = "1.0.111"
892
+ version = "1.0.121"
927
893
  source = "registry+https://github.com/rust-lang/crates.io-index"
928
- checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
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.5"
904
+ version = "0.6.7"
938
905
  source = "registry+https://github.com/rust-lang/crates.io-index"
939
- checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
906
+ checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d"
940
907
  dependencies = [
941
908
  "serde",
942
909
  ]
943
910
 
944
911
  [[package]]
945
912
  name = "smallvec"
946
- version = "1.11.2"
913
+ version = "1.13.2"
947
914
  source = "registry+https://github.com/rust-lang/crates.io-index"
948
- checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
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.48"
942
+ version = "2.0.72"
970
943
  source = "registry+https://github.com/rust-lang/crates.io-index"
971
- checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
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.13"
953
+ version = "0.12.15"
981
954
  source = "registry+https://github.com/rust-lang/crates.io-index"
982
- checksum = "69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae"
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.0"
969
+ version = "1.4.1"
997
970
  source = "registry+https://github.com/rust-lang/crates.io-index"
998
- checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449"
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.8"
984
+ version = "0.8.16"
1012
985
  source = "registry+https://github.com/rust-lang/crates.io-index"
1013
- checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35"
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.5"
996
+ version = "0.6.7"
1024
997
  source = "registry+https://github.com/rust-lang/crates.io-index"
1025
- checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
998
+ checksum = "f8fb9f64314842840f1d940ac544da178732128f1c78c21772e876579e0da1db"
1026
999
  dependencies = [
1027
1000
  "serde",
1028
1001
  ]
1029
1002
 
1030
1003
  [[package]]
1031
1004
  name = "toml_edit"
1032
- version = "0.21.0"
1005
+ version = "0.22.17"
1033
1006
  source = "registry+https://github.com/rust-lang/crates.io-index"
1034
- checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03"
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.2"
1075
- source = "git+https://github.com/fwcd/tree-sitter-kotlin.git#0ef87892401bb01c84b40916e1f150197bc134b1"
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.2"
1087
+ version = "0.20.3"
1104
1088
  source = "registry+https://github.com/rust-lang/crates.io-index"
1105
- checksum = "93df43ab4f2b3299fe97e73eb9b946bbca453b402bea8debf1fa69ab4e28412b"
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.3"
1134
+ version = "0.20.5"
1151
1135
  source = "registry+https://github.com/rust-lang/crates.io-index"
1152
- checksum = "a75049f0aafabb2aac205d7bb24da162b53dcd0cfb326785f25a2f32efa8071a"
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.1"
1166
+ version = "0.2.2"
1173
1167
  source = "registry+https://github.com/rust-lang/crates.io-index"
1174
- checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
1168
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1175
1169
 
1176
1170
  [[package]]
1177
1171
  name = "version_check"
1178
- version = "0.9.4"
1172
+ version = "0.9.5"
1179
1173
  source = "registry+https://github.com/rust-lang/crates.io-index"
1180
- checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
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.6"
1203
+ version = "0.1.8"
1210
1204
  source = "registry+https://github.com/rust-lang/crates.io-index"
1211
- checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
1205
+ checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
1212
1206
  dependencies = [
1213
- "winapi",
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.0",
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.0"
1251
+ version = "0.52.6"
1258
1252
  source = "registry+https://github.com/rust-lang/crates.io-index"
1259
- checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
1253
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1260
1254
  dependencies = [
1261
- "windows_aarch64_gnullvm 0.52.0",
1262
- "windows_aarch64_msvc 0.52.0",
1263
- "windows_i686_gnu 0.52.0",
1264
- "windows_i686_msvc 0.52.0",
1265
- "windows_x86_64_gnu 0.52.0",
1266
- "windows_x86_64_gnullvm 0.52.0",
1267
- "windows_x86_64_msvc 0.52.0",
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.0"
1273
+ version = "0.52.6"
1279
1274
  source = "registry+https://github.com/rust-lang/crates.io-index"
1280
- checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
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.0"
1285
+ version = "0.52.6"
1291
1286
  source = "registry+https://github.com/rust-lang/crates.io-index"
1292
- checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
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.0"
1297
+ version = "0.52.6"
1303
1298
  source = "registry+https://github.com/rust-lang/crates.io-index"
1304
- checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
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.0"
1315
+ version = "0.52.6"
1315
1316
  source = "registry+https://github.com/rust-lang/crates.io-index"
1316
- checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
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.0"
1327
+ version = "0.52.6"
1327
1328
  source = "registry+https://github.com/rust-lang/crates.io-index"
1328
- checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
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.0"
1339
+ version = "0.52.6"
1339
1340
  source = "registry+https://github.com/rust-lang/crates.io-index"
1340
- checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
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.0"
1351
+ version = "0.52.6"
1351
1352
  source = "registry+https://github.com/rust-lang/crates.io-index"
1352
- checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
1353
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1353
1354
 
1354
1355
  [[package]]
1355
1356
  name = "winnow"
1356
- version = "0.5.32"
1357
+ version = "0.6.16"
1357
1358
  source = "registry+https://github.com/rust-lang/crates.io-index"
1358
- checksum = "8434aeec7b290e8da5c3f0d628cb0eac6cabcb31d14bb74f779a08109a5914d6"
1359
+ checksum = "b480ae9340fc261e6be3e95a1ba86d54ae3f9171132a73ce8d4bbaf68339507c"
1359
1360
  dependencies = [
1360
1361
  "memchr",
1361
1362
  ]