-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
40 lines (37 loc) · 1.42 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/cf-platform-eng/marman
require (
code.cloudfoundry.org/lager v2.0.0+incompatible
github.com/Masterminds/semver v1.5.0
github.com/bunniesandbeatings/goerkin v0.1.4-beta
github.com/google/go-github/v25 v25.1.3
github.com/gorilla/mux v1.8.0
github.com/jessevdk/go-flags v1.5.0
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.27.8
github.com/pivotal-cf/go-pivnet v1.0.3
github.com/pkg/errors v0.9.1
github.com/tedsuo/ifrit v0.0.0-20220120221754-dd274de71113
golang.org/x/oauth2 v0.9.0
)
require (
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/rivo/uniseg v0.3.4 // indirect
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/net v0.11.0 // indirect
golang.org/x/sync v0.0.0-20220907140024-f12130a52804 // indirect
golang.org/x/sys v0.9.0 // indirect
golang.org/x/text v0.10.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/cheggaaa/pb.v1 v1.0.28 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
go 1.19