-
Notifications
You must be signed in to change notification settings - Fork 36
/
go.mod
51 lines (48 loc) · 2.17 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
module github.com/pivotal-cf/pivnet-resource/v3
go 1.20
require (
github.com/blang/semver v3.5.1+incompatible
github.com/concourse/s3-resource v1.0.0
github.com/fatih/color v1.7.0
github.com/h2non/filetype v0.0.0-20180111114405-3af83f124ffa
github.com/maxbrunsfeld/counterfeiter/v6 v6.6.1
github.com/onsi/ginkgo v1.12.0
github.com/onsi/gomega v1.26.0
github.com/pivotal-cf/go-pivnet/v7 v7.0.1
github.com/robdimsdale/sanitizer v0.0.0-20160522134901-ab2334cb7539
gopkg.in/yaml.v2 v2.2.4
)
require (
github.com/StackExchange/wmi v0.0.0-20180725035823-b12b22c5341f // indirect
github.com/aws/aws-sdk-go v0.0.0-20171017211306-a28db88bdcd8 // indirect
github.com/cheggaaa/pb v1.0.26 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-ini/ini v1.39.0 // indirect
github.com/go-ole/go-ole v1.2.1 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/gopherjs/gopherjs v0.0.0-20171016203739-a0a7cfed7b2a // indirect
github.com/hpcloud/tail v1.0.0 // indirect
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect
github.com/jtolds/gls v4.2.1+incompatible // indirect
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.4 // indirect
github.com/mattn/go-runewidth v0.0.3 // indirect
github.com/mitchellh/colorstring v0.0.0-20150917214807-8631ce90f286 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/shirou/gopsutil v2.17.12+incompatible // indirect
github.com/smartystreets/assertions v0.0.0-20170925172151-0b37b35ec743 // indirect
github.com/smartystreets/goconvey v0.0.0-20170825221426-e5b2b7c91115 // indirect
github.com/stretchr/testify v0.0.0-20171018052257-2aa2c176b9da // indirect
golang.org/x/mod v0.7.0 // indirect
golang.org/x/net v0.5.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/text v0.6.0 // indirect
golang.org/x/tools v0.5.0 // indirect
gopkg.in/cheggaaa/pb.v1 v1.0.26 // indirect
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/h2non/filetype.v1 v1.0.5 // indirect
gopkg.in/ini.v1 v1.39.0 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)