rules_mojo
0.5.0
published 3 weeks ago
13 stars
5 forks
5 watchers
Other
public
1 assets
26,110 downloads
22 KB
Compatibility level unknown
y/Nphm82h8GXwu/6jc6lsuHZ3qQ5o5vmvza5bXWkaNI=
Maintained byKeith Smiley
0.5.0
July 25, 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.