| "Bazel dependencies" | 
 |  | 
 | module( | 
 |     name = "aspect_rules_lint", | 
 |     version = "1.0.0-rc0", | 
 |     compatibility_level = 1, | 
 | ) | 
 |  | 
 | bazel_dep(name = "aspect_bazel_lib", version = "2.5.0") | 
 |  | 
 | # Needed in the root because we use js_lib_helpers in our aspect impl | 
 | # Minimum version needs 'chore: bump bazel-lib to 2.0 by @alexeagle in #1311' | 
 | # to allow users on bazel-lib 2.0 | 
 | bazel_dep(name = "aspect_rules_js", version = "1.40.0") | 
 | bazel_dep(name = "bazel_skylib", version = "1.4.2") | 
 | bazel_dep(name = "platforms", version = "0.0.7") | 
 | bazel_dep(name = "rules_multirun", version = "0.9.0") | 
 | bazel_dep(name = "rules_multitool", version = "0.4.0") | 
 |  | 
 | # Needed in the root because we dereference ProtoInfo in our aspect impl | 
 | bazel_dep(name = "rules_proto", version = "6.0.0") | 
 |  | 
 | # Needed in the root because we dereference the toolchain in our aspect impl | 
 | bazel_dep(name = "rules_buf", version = "0.1.1") | 
 | bazel_dep(name = "toolchains_protoc", version = "0.2.1") | 
 |  | 
 | multitool = use_extension("@rules_multitool//multitool:extension.bzl", "multitool") | 
 | multitool.hub(lockfile = "//format:multitool.lock.json") | 
 | multitool.hub(lockfile = "//lint:multitool.lock.json") | 
 | use_repo(multitool, "multitool") |