File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ This will automatically install run-time lua dependencies for you.
33
33
- [ luaossl] ( http://25thandclement.com/~william/projects/luaossl.html ) >= 20161208
34
34
- [ basexx] ( https://github.com/aiq/basexx/ ) >= 0.2.0
35
35
- [ lpeg] ( http://www.inf.puc-rio.br/~roberto/lpeg/lpeg.html )
36
- - [ lpeg_patterns] ( https://github.com/daurnimator/lpeg_patterns ) >= 0.3
36
+ - [ lpeg_patterns] ( https://github.com/daurnimator/lpeg_patterns ) >= 0.5
37
37
- [ fifo] ( https://github.com/daurnimator/fifo.lua )
38
38
39
39
To use gzip compression you need ** one** of:
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ dependencies = {
19
19
" luaossl >= 20161208" ;
20
20
" basexx >= 0.2.0" ;
21
21
" lpeg" ;
22
- " lpeg_patterns >= 0.3 " ;
22
+ " lpeg_patterns >= 0.5 " ;
23
23
" fifo" ;
24
24
}
25
25
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ local request_mt = {
36
36
}
37
37
38
38
local EOF = lpeg .P (- 1 )
39
- local sts_patt = lpeg . Cf ( lpeg . Ct ( true ) * http_patts .Strict_Transport_Security , rawset ) * EOF
39
+ local sts_patt = http_patts .Strict_Transport_Security * EOF
40
40
local uri_patt = uri_patts .uri * EOF
41
41
local uri_ref = uri_patts .uri_reference * EOF
42
42
You can’t perform that action at this time.
0 commit comments