Add numbers parsing

This commit is contained in:
2025-07-03 18:37:18 +02:00
parent cca2e26724
commit bcdad5b876
12 changed files with 4977 additions and 1 deletions

25
vendor/fast_float/BUILD.bazel vendored Normal file
View File

@ -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",
],
)