-
Notifications
You must be signed in to change notification settings - Fork 25
/
go.mod
57 lines (54 loc) · 2.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
module github.com/nfx/slrp
go 1.20
require (
github.com/bdandy/go-socks4 v1.2.3
github.com/corpix/uarand v0.2.0
github.com/dop251/goja v0.0.0-20230605162241-28ee0ee714f3
github.com/ghodss/yaml v1.0.0
github.com/gorilla/mux v1.8.1
github.com/maxmind/mmdbwriter v1.0.0
github.com/microcosm-cc/bluemonday v1.0.26
github.com/nfx/go-htmltable v0.4.0
github.com/oschwald/maxminddb-golang v1.12.0
github.com/rs/zerolog v1.32.0
github.com/stretchr/testify v1.9.0
github.com/tj/go-update v2.2.4+incompatible
github.com/yosssi/gohtml v0.0.0-20201013000340-ee4748c638f4
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1
golang.org/x/net v0.21.0
golang.zx2c4.com/wireguard v0.0.0-20230704135630-469159ecf7d1
gopkg.in/natefinch/lumberjack.v2 v2.2.1
)
require (
github.com/apex/log v1.9.0 // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/bdandy/go-errors v1.2.2 // indirect
github.com/c4milo/unpackit v0.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dlclark/regexp2 v1.10.0 // indirect
github.com/dsnet/compress v0.0.1 // indirect
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
github.com/google/btree v1.0.1 // indirect
github.com/google/go-github v17.0.0+incompatible // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
github.com/gorilla/css v1.0.0 // indirect
github.com/gosuri/uilive v0.0.4 // indirect
github.com/gosuri/uiprogress v0.0.1 // indirect
github.com/klauspost/compress v1.16.5 // indirect
github.com/klauspost/pgzip v1.2.6 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/ulikunitz/xz v0.5.11 // indirect
go4.org/netipx v0.0.0-20230303233057-f1b76eb4bb35 // indirect
golang.org/x/crypto v0.19.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gvisor.dev/gvisor v0.0.0-20221203005347-703fd9b7fbc0 // indirect
)