From ac12a9e79440a2a89cc1c5617bb8f6db02035182 Mon Sep 17 00:00:00 2001 From: Vertexwahn Date: Thu, 11 Jan 2024 10:41:55 +0100 Subject: [PATCH] Add MODULE.bazel file (#1059) This is the first step of the bzlmod migration: https://bazel.build/external/migration. If/when we no longer support older Bazel versions (bzlmod became GA in 6.0), we can remove WORKSPACE. --- MODULE.bazel | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 MODULE.bazel diff --git a/MODULE.bazel b/MODULE.bazel new file mode 100644 index 0000000..04668ed --- /dev/null +++ b/MODULE.bazel @@ -0,0 +1,6 @@ +module( + name = "glog", + compatibility_level = 1, +) + +bazel_dep(name = "gflags", version = "2.2.2", repo_name = "com_github_gflags_gflags")