Files
codeql/swift/codegen/lib/BUILD.bazel
Paolo Tranquilli 8e079320f3 Swift: some restructuring of codegen
Loading of the schema and dbscheme has been moved to a separate
`loaders` package for better separation of concerns.
2023-02-14 09:53:02 +01:00

12 lines
264 B
Python

load("@swift_codegen_deps//:requirements.bzl", "requirement")
py_library(
name = "lib",
srcs = glob(["*.py"]),
visibility = ["//swift/codegen:__subpackages__"],
deps = [
requirement("pystache"),
requirement("inflection"),
],
)