-
Notifications
You must be signed in to change notification settings - Fork 3
/
go.mod
23 lines (21 loc) · 934 Bytes
/
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
module github.com/blalor/nomad-watcher
require (
github.com/golang/protobuf v1.3.1 // indirect
github.com/gorilla/websocket v1.4.1 // indirect
github.com/hashicorp/go-rootcerts v1.0.1 // indirect
github.com/hashicorp/nomad/api v0.0.0-20190930164120-8ee9fe623d92
github.com/jessevdk/go-flags v1.4.0
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-isatty v0.0.9 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b
github.com/onsi/ginkgo v1.7.0
github.com/onsi/gomega v1.4.3
github.com/sirupsen/logrus v1.4.2
github.com/vektra/mockery v0.0.0-20181123154057-e78b021dcbb5
golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c // indirect
golang.org/x/sys v0.0.0-20190927073244-c990c680b611 // indirect
golang.org/x/text v0.3.2 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)
go 1.13