-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathMODULE.bazel
More file actions
35 lines (29 loc) · 1.55 KB
/
MODULE.bazel
File metadata and controls
35 lines (29 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"Define the Bazel module published to the Bazel Central Registry"
module(
name = "rules_ruby",
# NB: this version will be replaced after a release by the Publish to BCR app
version = "0.0.0",
compatibility_level = 1,
)
# Lower-bound dependency versions.
# These should NOT be increased unless needed, as bumping our lower-bound may change
# the versions resolved in users repositories.
bazel_dep(name = "bazel_features", version = "1.9.0")
bazel_dep(name = "bazel_skylib", version = "1.3.0")
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.27.0")
bazel_dep(name = "platforms", version = "0.0.5")
bazel_dep(name = "rules_cc", version = "0.0.9")
bazel_dep(name = "rules_java", version = "7.2.0")
bazel_dep(name = "rules_shell", version = "0.4.1")
bazel_dep(name = "buildifier_prebuilt", version = "8.2.1.1")
# NB: LOWER BOUND on earliest BCR release of protobuf module, to avoid upgrading the root module by accident
bazel_dep(name = "protobuf", version = "3.19.6")
# Ruleset development dependencies.
bazel_dep(name = "aspect_bazel_lib", version = "2.22.5", dev_dependency = True)
bazel_dep(name = "bazel_skylib_gazelle_plugin", version = "1.9.0", dev_dependency = True)
bazel_dep(name = "gazelle", version = "0.47.0", dev_dependency = True)
bazel_dep(name = "rules_go", version = "0.59.0", dev_dependency = True)
bazel_dep(name = "stardoc", version = "0.8.0", dev_dependency = True)
go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk", dev_dependency = True)
go_sdk.download(version = "1.23.1")
# TODO: should we register any toolchain by default?