-
Notifications
You must be signed in to change notification settings - Fork 10
/
go.mod
53 lines (50 loc) · 2.53 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
52
53
module github.com/blacksmith-community/blacksmith
go 1.20
require (
github.com/cloudfoundry-community/gogobosh v0.0.0-20210826203159-894da954b612
github.com/cloudfoundry-community/vaultkv v0.7.0
github.com/geofffranks/spruce v1.27.0
github.com/google/uuid v1.1.2-0.20190416172445-c2e93f3ae59f
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.10.1
github.com/pivotal-cf/brokerapi v0.0.0-20160426160527-3abc5864a39f
github.com/pivotal-golang/lager v0.0.0-20160311180000-7639e31ce662
github.com/shieldproject/shield v0.10.10-0.20220624132236-7b2f20a37a18
github.com/smallfish/simpleyaml v0.0.0-20160128122539-e0865b8fe0bb
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/Knetic/govaluate v3.0.0+incompatible // indirect
github.com/aws/aws-sdk-go v1.34.24 // indirect
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 // indirect
github.com/drewolson/testflight v1.0.0 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/geofffranks/simpleyaml v0.0.0-20161109204137-c9320f076de5 // indirect
github.com/geofffranks/yaml v0.0.0-20161117152608-9f2fe4b6f295 // indirect
github.com/go-martini/martini v0.0.0-20170121215854-22fa46961aab // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/gorilla/mux v1.7.3 // indirect
github.com/gorilla/websocket v1.2.1-0.20171123081129-23059f29570f // indirect
github.com/hashicorp/cap v0.5.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-secure-stdlib/base62 v0.1.2 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/jhunt/go-querytron v0.0.0-20190121150331-d03b28210bbc // indirect
github.com/jmespath/go-jmespath v0.3.0 // indirect
github.com/martini-contrib/render v0.0.0-20150707142108-ec18f8345a11 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
github.com/pborman/uuid v1.2.1 // indirect
github.com/starkandwayne/goutils v0.0.0-20190115202530-896b8a6904be // indirect
github.com/ziutek/utils v0.0.0-20190626152656-eb2a3b364d6c // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/oauth2 v0.5.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
)