cc_library(
    name = "base",
    hdrs = [
        "integers.hpp",
    ],
    visibility = ["//visibility:public"],
)

cc_test(
    name = "integers_tests",
    srcs = [
        "integers_tests.cpp",
    ],
    deps = [
        ":base",
    ],
)