We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5060e25 commit 67b0397Copy full SHA for 67b0397
examples/crate_universe/MODULE.bazel
@@ -512,6 +512,7 @@ no_cargo.spec(
512
no_cargo.spec(
513
features = ["util"],
514
package = "tower",
515
+ package_alias = "tower_with_util", # used in package_alias test
516
repositories = ["no_cargo"],
517
version = "0.4",
518
)
examples/crate_universe/package_alias/BUILD.bazel
@@ -0,0 +1,4 @@
1
+alias(
2
+ name = "tower",
3
+ actual = "@no_cargo//:tower_with_util", # ensures the package_alias works
4
+)
0 commit comments