diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-07-03 18:37:18 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-07-04 20:44:04 +0200 |
commit | bcdad5b8762060c82a0b7840cb905e69ddb9a65e (patch) | |
tree | 468694d1662c61c12f813689520f43c8e1767538 /vendor/fast_float/BUILD.bazel | |
parent | cca2e267241a90f238e424e47501b1e8613a5955 (diff) |
Diffstat (limited to 'vendor/fast_float/BUILD.bazel')
-rw-r--r-- | vendor/fast_float/BUILD.bazel | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/fast_float/BUILD.bazel b/vendor/fast_float/BUILD.bazel new file mode 100644 index 0000000..3dfec78 --- /dev/null +++ b/vendor/fast_float/BUILD.bazel @@ -0,0 +1,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", + ], +) |