We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5060e25 commit 8bd69beCopy full SHA for 8bd69be
examples/crate_universe/MODULE.bazel
@@ -514,6 +514,7 @@ no_cargo.spec(
514
package = "tower",
515
repositories = ["no_cargo"],
516
version = "0.4",
517
+ package_alias = "tower_with_util", # used in package_alias test
518
)
519
no_cargo.spec(
520
features = ["trace"],
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