Skip to content

Commit 2a28426

Browse files
committed
1 parent 5483634 commit 2a28426

File tree

4 files changed

+221
-195
lines changed

4 files changed

+221
-195
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,14 @@ pub fn build(b: *std.Build) !void {
9999
}
100100
```
101101

102+
## How update zon dependencies
103+
104+
Open [`update_zon.zig`](update_zon.zig) and change `const boost_version = "boost-version-tagged";` or add/sub url in `git_urls` list.
105+
106+
```bash
107+
zig run -fsingle-threaded update_zon.zig
108+
```
109+
102110
## License
103111

104112
see: [LICENSE](LICENSE)

build.zig

+3
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,9 @@ const boost_libs = [_][]const u8{
118118
"heap",
119119
"msm",
120120
"coroutine2", // need boost.context
121+
"parser",
122+
"mqtt5", // need boost.asio
123+
"hash2",
121124
};
122125

123126
pub fn build(b: *std.Build) void {

0 commit comments

Comments
 (0)