Files
SwiftLint/bazel/CollectionConcurrencyKit.BUILD
JP Simard a97718f4c6 Replace incrementer dispatch queue with an actor (#4073)
To support this, we first must use an async entrypoint to the CLI, which
we do by changing the lint and analyze commands to conform to
`AsyncParsableCommand`.

The in order to map over the closures with suspension points, we pull in
CollectionConcurrencyKit as a new dependency.

This change does not touch SwiftLintFramework, only the CLI target.
2022-08-09 13:06:08 +00:00

12 lines
278 B
INI

load(
"@build_bazel_rules_swift//swift:swift.bzl",
"swift_library",
)
swift_library(
name = "CollectionConcurrencyKit",
srcs = ["Sources/CollectionConcurrencyKit.swift"],
module_name = "CollectionConcurrencyKit",
visibility = ["//visibility:public"],
)