From cce7e1c9b5b613d2851a8a549d9942d437d5edf3 Mon Sep 17 00:00:00 2001 From: Vertexwahn Date: Sat, 16 Sep 2023 13:11:22 +0200 Subject: [PATCH] Bazel: Remove version from module and add missing dependencies Signed-off-by: Vertexwahn --- MODULE.bazel | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index 5b4bfc99d..78115b5a0 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,9 +1,9 @@ module( name = "openexr", - version = "0.0.0", # The version "0.0.0" is set here and will be patched within the Bazel Central Registry compatibility_level = 1, ) bazel_dep(name = "bazel_skylib", version = "1.4.2") -bazel_dep(name = "imath", version = "3.1.9") +bazel_dep(name = "imath", repo_name = "Imath", version = "3.1.9") bazel_dep(name = "libdeflate", version = "1.18") +bazel_dep(name = "platforms", version = "0.0.7")