A lot of tools are utilizing SPM commands to interact with Swift packages. For example Bazel rules for SPM uses swift package dump-package to gather information about the Swift package. Problem is that structure of JSON reported by dump command changed after Swift tools version 5.2, so I am updating it to the latest.
Description of the pull request
Updated swift-tools-version to 5.10.
Why is the change necessary?
A lot of tools are utilizing SPM commands to interact with Swift packages. For example Bazel rules for SPM uses
swift package dump-package
to gather information about the Swift package. Problem is that structure of JSON reported by dump command changed after Swift tools version 5.2, so I am updating it to the latest.