-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgo.mod
36 lines (32 loc) · 1.41 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
module github.com/pivotal-cf/service-instance-logs-cli-plugin
go 1.22
require (
github.com/onsi/ginkgo/v2 v2.19.1
github.com/onsi/gomega v1.34.0
)
require (
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/text v0.15.0 // indirect
golang.org/x/tools v0.21.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
code.cloudfoundry.org/cli v6.34.1+incompatible
github.com/apoydence/eachers v0.0.0-20161009051034-dc08b96c9060 // indirect
github.com/cloudfoundry/dropsonde v1.0.1-0.20170526033252-566965a4f337
github.com/cloudfoundry/noaa v2.1.1-0.20171030182453-9d59e2b25abb+incompatible
github.com/cloudfoundry/sonde-go v0.0.0-20170525164920-5f5bca3bcb61
github.com/elazarl/goproxy v0.0.0-20170413182129-aacba83f36a5 // indirect
github.com/fatih/color v1.1.1-0.20161025120501-bf82308e8c85
github.com/gogo/protobuf v0.0.0-20170529194536-b79ae77db468
github.com/gorilla/websocket v1.1.1-0.20170319172727-a91eba7f9777 // indirect
github.com/mattn/go-colorable v0.0.7 // indirect
github.com/mattn/go-isatty v0.0.0-20161123143637-30a891c33c7c // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)