Skip to content

Commit 8847626

Browse files
committed
add: boost.format, boost.pool
1 parent d6cc9cf commit 8847626

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

build.zig

+2
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ const boost_libs = [_][]const u8{
9797
"hof",
9898
"interval",
9999
"local_function",
100+
"format",
101+
"pool",
100102
"callable_traits",
101103
"compat",
102104
"bimap",

build.zig.zon

+8
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,14 @@
422422
.url = "git+https://github.com/boostorg/coroutine2#boost-1.86.0",
423423
.hash = "1220493d37eb17822028b1ec196eed9e5d92ef5549cc1a893cccc216406afdb06207",
424424
},
425+
.pool = .{
426+
.url = "git+https://github.com/boostorg/pool#boost-1.86.0",
427+
.hash = "1220ef9959cc45f3e76c032b9f216f486d06ccee2c0b5e94bce450def54b6c3a845d",
428+
},
429+
.format = .{
430+
.url = "git+https://github.com/boostorg/format#boost-1.86.0",
431+
.hash = "122036526563e97658be92e7a673111cc6583cd7b8cce438557013ab67dc43ff686c",
432+
},
425433
},
426434
.paths = .{""},
427435
}

update_zon.sh

+2
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ GIT_URLS=(
109109
"git+https://github.com/boostorg/heap#$BOOST_VERSION"
110110
"git+https://github.com/boostorg/msm#$BOOST_VERSION"
111111
"git+https://github.com/boostorg/coroutine2#$BOOST_VERSION"
112+
"git+https://github.com/boostorg/pool#$BOOST_VERSION"
113+
"git+https://github.com/boostorg/format#$BOOST_VERSION"
112114

113115
## Add more URLs here
114116
)

0 commit comments

Comments
 (0)