Merge pull request #377 from BYVoid/fix-bazel-bzlmod

Fix Bazel build with bzlmod
This commit is contained in:
Daniel Lemire 2026-03-27 09:37:23 -04:00 committed by GitHub
commit d7ad33a80e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,5 @@
load("@rules_cc//cc:cc_library.bzl", "cc_library")
cc_library( cc_library(
name = "fast_float", name = "fast_float",
hdrs = glob(["include/fast_float/*.h"]), hdrs = glob(["include/fast_float/*.h"]),

View File

@ -2,8 +2,10 @@
module( module(
name = "fast_float", name = "fast_float",
version = "6.1.6", version = "8.2.4",
compatibility_level = 6, compatibility_level = 8,
) )
bazel_dep(name = "doctest", version = "2.4.11", dev_dependency = True) bazel_dep(name = "doctest", version = "2.4.11", dev_dependency = True)
bazel_dep(name = "rules_cc", version = "0.2.17")