We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5483634 commit 2a28426Copy full SHA for 2a28426
README.md
@@ -99,6 +99,14 @@ pub fn build(b: *std.Build) !void {
99
}
100
```
101
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
110
## License
111
112
see: [LICENSE](LICENSE)
build.zig
@@ -118,6 +118,9 @@ const boost_libs = [_][]const u8{
118
"heap",
119
"msm",
120
"coroutine2", // need boost.context
121
+ "parser",
122
+ "mqtt5", // need boost.asio
123
+ "hash2",
124
};
125
126
pub fn build(b: *std.Build) void {
0 commit comments