-
Notifications
You must be signed in to change notification settings - Fork 5
/
go.mod
32 lines (29 loc) · 1.12 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
module github.com/cirruslabs/gitlab-tart-executor
go 1.19
require (
github.com/Masterminds/semver/v3 v3.2.1
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137
github.com/avast/retry-go/v4 v4.5.1
github.com/bmatcuk/doublestar/v4 v4.6.1
github.com/caarlos0/env/v8 v8.0.0
github.com/hashicorp/go-version v1.6.0
github.com/shirou/gopsutil/v3 v3.23.4
github.com/spf13/cobra v1.6.1
github.com/stretchr/testify v1.8.4
golang.org/x/crypto v0.17.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
github.com/shoenig/go-m1cpu v0.1.5 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/tklauser/go-sysconf v0.3.11 // indirect
github.com/tklauser/numcpus v0.6.0 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/sys v0.15.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)