commit | 61eee54c737cd0a0f48bc9df856a7745e58834c0 | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Wed May 04 10:32:07 2022 -0700 |
committer | GitHub <noreply@github.com> | Wed May 04 10:32:07 2022 -0700 |
tree | c7b73768617424e70897606a6d99753556896af3 | |
parent | 42f78f25e12017a99bae5de4ad21a6f44faa8d5e [diff] |
Add bazel-* directories in cargo_manifest_dir/external_crate to gitignore (#1279) Previously running `bazel build ...` in examples/cargo_manfest_dir/external_crate would leave the following untracked files: Untracked files: (use "git add <file>..." to include in what will be committed) examples/cargo_manifest_dir/external_crate/bazel-bin examples/cargo_manifest_dir/external_crate/bazel-external_crate examples/cargo_manifest_dir/external_crate/bazel-out examples/cargo_manifest_dir/external_crate/bazel-testlogs I noticed that of the 5 workspaces found by `find . -name WORKSPACE.bazel` three of them were ignoring "bazel-*" via the top-level .gitignore while one had its own .gitignore containing only "bazel-*". I consolidated that one into the top-level .gitignore and added the 5th.
This repository provides rules for building Rust projects with Bazel.
General discussions and announcements take place in the GitHub Discussions, but there are additional places where community members gather to discuss rules_rust
.
Please refer to the full documentation.