-
Notifications
You must be signed in to change notification settings - Fork 186
/
go.mod
40 lines (37 loc) · 1.48 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
module github.com/AlexStocks/getty
go 1.20
require (
github.com/AlexStocks/goext v0.3.2
github.com/dubbogo/gost v1.13.1
github.com/golang/snappy v0.0.1
github.com/gorilla/websocket v1.4.2
github.com/koding/multiconfig v0.0.0-20171124222453-69c27309b2d7
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.7.0
go.uber.org/atomic v1.9.0
go.uber.org/zap v1.21.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/AlexStocks/log4go v1.0.7 // indirect
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/camelcase v1.0.0 // indirect
github.com/fatih/structs v1.1.0 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/juju/errors v0.0.0-20220331221717-b38fca44723b // indirect
github.com/k0kubun/pp v3.0.1+incompatible // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/mailru/easyjson v0.7.1 // indirect
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
github.com/shirou/gopsutil/v3 v3.22.2 // indirect
github.com/tklauser/go-sysconf v0.3.10 // indirect
github.com/tklauser/numcpus v0.4.0 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27 // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
)