forked from corazawaf/coraza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
38 lines (32 loc) · 950 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
module github.com/corazawaf/coraza/v3
go 1.20
// Testing dependencies:
// - go-mockdns
// - go-modsecurity (optional)
// Development dependencies:
// - mage
// Build dependencies:
// - libinjection-go
// - aho-corasick
// - gjson
// - binaryregexp
require (
github.com/anuraaga/go-modsecurity v0.0.0-20220824035035-b9a4099778df
github.com/corazawaf/libinjection-go v0.1.3
github.com/foxcpp/go-mockdns v1.1.0
github.com/magefile/mage v1.15.0
github.com/mccutchen/go-httpbin/v2 v2.13.2
github.com/petar-dambovaliev/aho-corasick v0.0.0-20230725210150-fb29fc3c913e
github.com/tidwall/gjson v1.17.1
golang.org/x/net v0.22.0
golang.org/x/sync v0.6.0
rsc.io/binaryregexp v0.2.0
)
require (
github.com/miekg/dns v1.1.57 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/tools v0.15.0 // indirect
)