Skip to content

Commit d7ad33a

Browse files
authored
Merge pull request #377 from BYVoid/fix-bazel-bzlmod
Fix Bazel build with bzlmod
2 parents 7124634 + 2027a39 commit d7ad33a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

BUILD.bazel

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
2+
13
cc_library(
24
name = "fast_float",
35
hdrs = glob(["include/fast_float/*.h"]),

MODULE.bazel

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
module(
44
name = "fast_float",
5-
version = "6.1.6",
6-
compatibility_level = 6,
5+
version = "8.2.4",
6+
compatibility_level = 8,
77
)
88

99
bazel_dep(name = "doctest", version = "2.4.11", dev_dependency = True)
10+
11+
bazel_dep(name = "rules_cc", version = "0.2.17")

0 commit comments

Comments
 (0)