rules_mojo
0.6.0
published 2 days ago
13 stars
5 forks
5 watchers
Other
public
1 assets
26,387 downloads
22 KB
Compatibility level unknown
sIwg/0LdhwhfW12lKXvZNJmb1EPp4dyj3s0mYyuVjj8=
Maintained byKeith Smiley
0.6.0
August 26, 2025
[expand for release notes]

rules_mojo

This repository provides rules for building Mojo projects using Bazel.

Quick setup

Copy the latest MODULE.bazel snippet from the releases page.

Currently rules_mojo requires bzlmod and bazel 8.x or later.

Example

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.