diff --git a/BUILD b/BUILD index 939ca12a..5b844ebf 100644 --- a/BUILD +++ b/BUILD @@ -1,5 +1,8 @@ # Bazel(http://bazel.io) BUILD file +load("@rules_cc//cc:cc_library.bzl", "cc_library") +load("@rules_cc//cc:cc_test.bzl", "cc_test") + licenses(["notice"]) exports_files(["LICENSE"]) diff --git a/MODULE.bazel b/MODULE.bazel index cfda2966..1eb843f9 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -2,6 +2,8 @@ module( name = "double-conversion", - version = "3.3.0", + version = "3.4.1", compatibility_level = 3, ) + +bazel_dep(name = "rules_cc", version = "0.2.16")