-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
34 lines (30 loc) · 1.27 KB
/
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
module clamav
go 1.18
require (
github.com/Sirupsen/logrus v1.3.0
github.com/fatih/structs v1.1.0
github.com/gorilla/mux v1.6.2
github.com/malice-plugins/pkgs v0.0.0-20190107161315-79532f02e4f0
github.com/parnurzeal/gorequest v0.2.15
github.com/pkg/errors v0.8.1
github.com/urfave/cli v1.20.0
)
require (
github.com/elazarl/goproxy v0.0.0-20220529153421-8ea89ba92021 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329 // indirect
github.com/moul/http2curl v1.0.0 // indirect
github.com/olivere/elastic v6.2.15+incompatible // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
github.com/smartystreets/goconvey v1.7.2 // indirect
github.com/stretchr/testify v1.7.0 // indirect
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 // indirect
golang.org/x/net v0.0.0-20190311183353-d8887717615a // indirect
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
)
replace (
github.com/Sirupsen/logrus v1.3.0 => github.com/sirupsen/logrus v1.3.0
github.com/malice-plugins/pkgs v0.0.0-20190107161315-79532f02e4f0 => github.com/andyoulovexy/pkgs01 v0.0.0-20220809100440-5092caf6aefb
)