-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bzlmod is going to replace the legacy WORKSPACE system in future Baze…
…l releases. This commit prepares us for the future. PiperOrigin-RevId: 636098783
- Loading branch information
1 parent
19feaac
commit a1d9e38
Showing
2 changed files
with
30 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
module( | ||
name = "com_google_robotstxt", | ||
version = "head", | ||
) | ||
|
||
# -- bazel_dep definitions -- # | ||
bazel_dep( | ||
name = "bazel_skylib", | ||
version = "1.5.0", | ||
) | ||
|
||
bazel_dep( | ||
name = "abseil-cpp", | ||
version = "20240116.2", | ||
) | ||
|
||
bazel_dep( | ||
name = "googletest", | ||
version = "1.14.0.bcr.1", | ||
) | ||
|
||
bazel_dep( | ||
name = "rules_cc", | ||
version = "0.0.9", | ||
) |