This repository provides rules for building Mojo projects using Bazel.
Copy the latest MODULE.bazel
snippet from the releases
page.
Currently rules_mojo
requires bzlmod
and bazel 8.x or later.
load("@rules_mojo//mojo:mojo_binary.bzl", "mojo_binary")
mojo_binary(
name = "hello_mojo",
srcs = ["hello_mojo.mojo"],
)
See the tests directory for more examples.