You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -144,7 +144,7 @@ For more details about repin, [please refer to the documentation](https://bazelb
144
144
In cases where Rust targets have heavy interactions with other Bazel targets ([Cc](https://docs.bazel.build/versions/main/be/c-cpp.html), [Proto](https://rules-proto-grpc.com/en/4.5.0/lang/rust.html),
145
145
etc.), maintaining Cargo.toml files may have diminishing returns as things like rust-analyzer
146
146
begin to be confused about missing targets or environment variables defined only in Bazel.
147
-
In situations like this, it may be desirable to have a "Cargo free" setup. You find an example in the in the [example folder](../examples/bzlmod/hello_world_no_cargo).
147
+
In situations like this, it may be desirable to have a "Cargo free" setup. You find an example in the in the [example folder](https://github.com/bazelbuild/rules_rust/examples/bzlmod/hello_world_no_cargo).
148
148
149
149
crates_repository supports this through the packages attribute,
150
150
as shown below.
@@ -227,9 +227,9 @@ Only a cargo workspace needs updating whenever the underlying Cargo.toml file ch
227
227
In some cases, it is require that all external dependencies are vendored, meaning downloaded
228
228
and stored in the workspace. This helps, for example, to conduct licence scans, apply custom patches,
229
229
or to ensure full build reproducibility since no download error could possibly occur.
230
-
You find a complete example in the in the [example folder](../examples/bzlmod/all_deps_vendor).
230
+
You find a complete example in the in the [example folder](https://github.com/bazelbuild/rules_rust/examples/bzlmod/all_deps_vendor).
231
231
232
-
For the setup, you need to add the skylib in addition to the rust rules to your MODUE.bazel.
232
+
For the setup, you need to add the skylib in addition to the rust rules to your `MODULE.bazel`.
0 commit comments