summaryrefslogtreecommitdiff
path: root/vendor/fast_float/BUILD.bazel
blob: 3dfec782118edc909ab29fc10194efcbd4edb404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright 2025 Steven Le Rouzic
#
# SPDX-License-Identifier: BSD-3-Clause

load("@rules_license//rules:license.bzl", "license")

license(
    name = "license",
    license_kinds = [
        "@rules_license//licenses/spdx:MIT",
    ],
    license_text = "LICENSE.txt",
    package_name = "fast_float",
    package_url = "https://github.com/fastfloat/fast_float",
)

cc_library(
    name = "fast_float",
    hdrs = ["fast_float.h"],
    includes = ["."],
    visibility = ["//asl:__subpackages__"],
    applicable_licenses = [
        ":license",
    ],
)