Skip to content

v0.0.1

Compare
Choose a tag to compare
@github-actions github-actions released this 15 Aug 08:45
· 8 commits to main since this release

Using Bzlmod with Bazel 6 or greater

  1. (Bazel 6 only) Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_probe_rs", version = "0.0.1")

probe_rs = use_extension("@rules_probe_rs//probe_rs:extensions.bzl", "probe_rs")
probe_rs.tools(
    name = "probe_rs",
    version = "0.24.0",
)
use_repo(probe_rs, "probe_rs")

Full Changelog: https://github.com/hexdae/rules_probe_rs/commits/v0.0.1