19 lines
352 B
Python
19 lines
352 B
Python
load("@rules_zig//zig:defs.bzl", "zls_completion")
|
|
load("@zml//third_party/zls:zls.bzl", "zls_runner")
|
|
|
|
zls_runner(
|
|
name = "zls",
|
|
target = ":completion",
|
|
)
|
|
|
|
zls_completion(
|
|
name = "completion",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//async",
|
|
"//examples/llama",
|
|
"//stdx",
|
|
"//zml",
|
|
],
|
|
)
|