# TODO(donnadionne): describe this package.
load("@rules_cc//cc:cc_library.bzl", "cc_library")

cc_library(
    name = "xxhash",
    hdrs = [
        "xxhash.h",
    ],
    # Must specify the includes so that the header file can be found.
    includes = [
        "",
    ],
    visibility = ["//visibility:public"],
)
