Add ZJ dep, and fix enctype spec

This commit is contained in:
Craig Everett 2025-10-11 15:43:10 +09:00
parent 7f77f9e3b1
commit f2e41fcfec
4 changed files with 6 additions and 6 deletions

View File

@ -3,5 +3,5 @@
{registered,[]}, {registered,[]},
{included_applications,[]}, {included_applications,[]},
{applications,[stdlib,kernel]}, {applications,[stdlib,kernel]},
{vsn,"0.2.0"}, {vsn,"0.2.1"},
{modules,[qhl]}]}. {modules,[qhl]}]}.

View File

@ -6,7 +6,7 @@
version = undefined :: undefined | http10 | http11 | http20, version = undefined :: undefined | http10 | http11 | http20,
headers = undefined :: undefined | [{Key :: binary(), Value :: binary()}], headers = undefined :: undefined | [{Key :: binary(), Value :: binary()}],
cookies = undefined :: undefined | #{Key :: binary() := Value :: binary()}, cookies = undefined :: undefined | #{Key :: binary() := Value :: binary()},
enctype = undefined :: undefined | none | urlencoded | multipart(), enctype = undefined :: undefined | none | urlencoded | json | multipart(),
size = undefined :: undefined | none | non_neg_integer(), size = undefined :: undefined | none | non_neg_integer(),
body = undefined :: undefined | none | body()}). body = undefined :: undefined | none | body()}).

View File

@ -8,7 +8,7 @@
%%% @end %%% @end
-module(qhl). -module(qhl).
-vsn("0.2.0"). -vsn("0.2.1").
-author("Craig Everett <ceverett@tsuriai.jp>"). -author("Craig Everett <ceverett@tsuriai.jp>").
-copyright("Craig Everett <ceverett@tsuriai.jp>"). -copyright("Craig Everett <ceverett@tsuriai.jp>").
-license("MIT"). -license("MIT").

View File

@ -2,10 +2,10 @@
{type,lib}. {type,lib}.
{modules,[]}. {modules,[]}.
{prefix,none}. {prefix,none}.
{author,"Craig Everett"}.
{desc,"The Quick HTTP Library"}. {desc,"The Quick HTTP Library"}.
{package_id,{"otpr","qhl",{0,2,0}}}. {author,"Craig Everett"}.
{deps,[]}. {package_id,{"otpr","qhl",{0,2,1}}}.
{deps,[{"otpr","zj",{1,1,2}}]}.
{key_name,none}. {key_name,none}.
{a_email,"zxq9@zxq9.com"}. {a_email,"zxq9@zxq9.com"}.
{c_email,"zxq9@zxq9.com"}. {c_email,"zxq9@zxq9.com"}.