deprecate lib.bzl. (#58) - tag the :lib target as such. - print() a warning when lib.bzl is loaded.
diff --git a/BUILD b/BUILD index a8f9c00..6f932f5 100644 --- a/BUILD +++ b/BUILD
@@ -21,6 +21,10 @@ skylark_library( name = "lib", srcs = ["lib.bzl"], + deprecation = ( + "lib.bzl will go away in the future, please directly depend on the" + + " module(s) needed as it is more efficient." + ), deps = [ "//lib:collections", "//lib:dicts",