diff options
| author | Dan Engelbrecht <[email protected]> | 2026-04-09 10:34:30 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-04-09 10:34:30 +0200 |
| commit | 4598f710da2d0e387c53eb97d983ff520c211a8f (patch) | |
| tree | b731277ec552a5ad978e1caa104a082ce25ecf2b /src/zenhttp/xmake.lua | |
| parent | 5.8.3 (diff) | |
| download | zen-4598f710da2d0e387c53eb97d983ff520c211a8f.tar.xz zen-4598f710da2d0e387c53eb97d983ff520c211a8f.zip | |
migrate from http_parser to llhttp (#929)
Diffstat (limited to 'src/zenhttp/xmake.lua')
| -rw-r--r-- | src/zenhttp/xmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenhttp/xmake.lua b/src/zenhttp/xmake.lua index 7b050ae35..67a01403d 100644 --- a/src/zenhttp/xmake.lua +++ b/src/zenhttp/xmake.lua @@ -9,7 +9,7 @@ target('zenhttp') add_files("servers/wshttpsys.cpp", {unity_ignored=true}) add_includedirs("include", {public=true}) add_deps("zencore", "zentelemetry", "transport-sdk", "asio") - add_packages("http_parser", "json11", "libcurl") + add_packages("llhttp", "json11", "libcurl") add_options("httpsys") if is_plat("linux", "macosx") then |