diff options
author | Loïc Hoguin <[email protected]> | 2013-11-08 18:47:05 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-11-08 18:47:05 +0100 |
commit | 8d546dacbc1b2fe82e67fee5d28b86fe8b428443 (patch) | |
tree | 87c34a5056c17f62e28fd4497da214c25679c2eb /Makefile | |
parent | 6672ea04155a075e60381413bf9b65b3974b7d57 (diff) | |
download | cowboy-8d546dacbc1b2fe82e67fee5d28b86fe8b428443.tar.gz cowboy-8d546dacbc1b2fe82e67fee5d28b86fe8b428443.tar.bz2 cowboy-8d546dacbc1b2fe82e67fee5d28b86fe8b428443.zip |
Optimize query string parsing
* Parsing code was moved to cowlib: cowboy_qs:parse_qs/1
* A function was added to build query strings: cowboy_qs:qs/1
* Also added cowboy_qs:urlencode/1 and cowboy_qsurldecode/1
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ PLT_APPS = crypto public_key ssl # Dependencies. DEPS = cowlib ranch -dep_cowlib = pkg://cowlib 0.3.0 +dep_cowlib = pkg://cowlib 0.4.0 dep_ranch = pkg://ranch 0.8.5 TEST_DEPS = ct_helper gun |