-
Notifications
You must be signed in to change notification settings - Fork 7
/
go.mod
49 lines (45 loc) · 1.73 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
module github.com/black-desk/cgtproxy
go 1.23
require (
github.com/black-desk/lib/go v0.0.0-20240826013949-6a950e6b19a1
github.com/go-playground/validator/v10 v10.23.0
github.com/google/nftables v0.2.0
github.com/onsi/ginkgo/v2 v2.22.2
github.com/onsi/gomega v1.36.2
github.com/sourcegraph/conc v0.3.0
github.com/spf13/cobra v1.8.1
github.com/vishvananda/netlink v1.3.0
go.uber.org/zap v1.27.0
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67
golang.org/x/sys v0.29.0
gopkg.in/yaml.v3 v3.0.1
kernel.org/pub/linux/libs/security/libcap/cap v1.2.73
)
require (
github.com/black-desk/zap-journal v0.0.0-20230529080551-a8e82d81454b // indirect
github.com/gabriel-vasile/mimetype v1.4.7 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
kernel.org/pub/linux/libs/security/libcap/psx v1.2.73 // indirect
)
require (
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
github.com/google/wire v0.6.0
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/josharian/native v1.1.0 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/mdlayher/netlink v1.7.2 // indirect
github.com/mdlayher/socket v0.5.1 // indirect
github.com/rjeczalik/notify v0.9.3
github.com/spf13/pflag v1.0.5 // indirect
github.com/vishvananda/netns v0.0.5 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/tools v0.28.0 // indirect
)