-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
30 lines (27 loc) · 1.16 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
module github.com/FidelityInternational/possum
go 1.19
require (
github.com/DATA-DOG/go-sqlmock v1.3.3
github.com/cloudfoundry-community/go-cfenv v1.18.0
github.com/go-martini/martini v0.0.0-20170121215854-22fa46961aab
github.com/go-sql-driver/mysql v1.7.1
github.com/gorilla/mux v1.7.3
github.com/martini-contrib/render v0.0.0-20150707142108-ec18f8345a11
github.com/onsi/ginkgo v1.8.0
github.com/onsi/gomega v1.5.1-0.20190502170923-f0e010e04c08
github.com/sirupsen/logrus v1.4.2
)
require (
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 // indirect
github.com/golang/protobuf v1.3.1 // indirect
github.com/hpcloud/tail v1.0.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
golang.org/x/net v0.0.0-20190603091049-60506f45cf65 // indirect
golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3 // indirect
golang.org/x/text v0.3.2 // indirect
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.2.2 // indirect
)