1
0
Fork 0
mirror of https://github.com/zigzap/zap.git synced 2025-10-20 15:14:08 +00:00
zap/build.zig.zon
Rene Schallner d0be271337 Mega update! SimpleHttpRequest got Parameters!
parseBody() : parse form params
parseQuery() : parse query params
getParamCount() : returns number of parsed params
parametersToOwnedStrList() : get params as kv pairs of strings
parametersToOwnedList() : get params as kv list
getParamStr() : get parameter by name
2023-05-06 02:38:35 +02:00

16 lines
492 B
Zig

.{
.name = "zap",
.version = "0.0.14",
.dependencies = .{
.@"facil.io" = .{
// temp workaround until zig's fetch is fixed, supporting GH's redirects
// .url = "http://localhost:8000/zap-0.0.7.tar.gz",
// this is how it should be:
.url = "https://github.com/zigzap/facil.io/archive/refs/tags/zap-0.0.7.tar.gz",
.hash = "1220d03e0579bbb726efb8224ea289b26227bc421158b45c1b16a60b31bfa400ab33",
}
}
}