[BCR] add maintainers
2 files changed
tree: dea5863d1441a21141efc91d14087d0004dccee4
  1. .bcr/
  2. .devcontainer/
  3. .github/
  4. docs/
  5. e2e/
  6. examples/
  7. probe_rs/
  8. .bazelignore
  9. .bazelrc
  10. .bazelversion
  11. .gitattributes
  12. .gitignore
  13. .pre-commit-config.yaml
  14. .prettierignore
  15. BUILD.bazel
  16. CONTRIBUTING.md
  17. LICENSE
  18. MODULE.bazel
  19. MODULE.bazel.lock
  20. README.md
  21. renovate.json
  22. WORKSPACE.bazel
README.md

Rust ❤️ Bazel: rules_probe_rs

This project aims to provide a simple way to run probe-rs from bazel, similar to the function cargo embed has in the rust ecosystem.

If this project was useful to you, give it a ⭐️ and I'll keep improving it!

Features

Installation

Official releases (coming soon to BCR)

For official releases you can use: https://github.com/hexdae/rules_probe_rs/releases

From source (this repository)

bazel_dep(name = "rules_probe_rs", version = "<version>")

git_override(
    module_name = "rules_probe_rs",
    remote = "https://github.com/hexdae/rules_probe_rs.git",
    commit = "<commit>",
)

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