forked from raystack/optimus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
57 lines (55 loc) · 2.13 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
54
55
56
57
module github.com/odpf/optimus
require (
cloud.google.com/go v0.81.0
cloud.google.com/go/bigquery v1.8.0
cloud.google.com/go/storage v1.10.0
github.com/AlecAivazis/survey/v2 v2.2.7
github.com/Masterminds/sprig/v3 v3.2.2
github.com/dustinkirkland/golang-petname v0.0.0-20191129215211-8e5a1ed0cff0
github.com/emirpasic/gods v1.12.0
github.com/fatih/color v1.7.0
github.com/flosch/pongo2 v0.0.0-20200913210552-0d938eb266f3
github.com/gogo/protobuf v1.3.2
github.com/golang-migrate/migrate/v4 v4.14.1
github.com/golang/protobuf v1.5.2
github.com/google/uuid v1.1.2
github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8
github.com/gorilla/mux v1.7.4
github.com/grpc-ecosystem/go-grpc-middleware v1.1.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.2.0
github.com/gtank/cryptopasta v0.0.0-20170601214702-1f550f6f2f69
github.com/hashicorp/go-hclog v0.14.1
github.com/hashicorp/go-multierror v1.1.0
github.com/hashicorp/go-plugin v1.4.1
github.com/hashicorp/go-version v1.1.0
github.com/huandu/xstrings v1.3.2 // indirect
github.com/jhump/protoreflect v1.8.1 // indirect
github.com/jinzhu/gorm v1.9.16
github.com/klauspost/compress v1.11.7 // indirect
github.com/knadh/koanf v1.1.0
github.com/kushsharma/parallel v0.2.1
github.com/kushsharma/structs v1.1.1
github.com/lib/pq v1.9.0
github.com/mattn/go-sqlite3 v2.0.1+incompatible // indirect
github.com/olekukonko/tablewriter v0.0.5
github.com/pkg/errors v0.9.1
github.com/robfig/cron/v3 v3.0.1
github.com/segmentio/kafka-go v0.4.12
github.com/sirupsen/logrus v1.7.0
github.com/slack-go/slack v0.9.1
github.com/spf13/afero v1.6.0
github.com/spf13/cobra v1.2.1
github.com/stretchr/testify v1.7.0
github.com/xlab/treeprint v1.1.0
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4
golang.org/x/oauth2 v0.0.0-20210402161424-2e8d93401602
google.golang.org/api v0.44.0
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c
google.golang.org/grpc v1.38.0
google.golang.org/protobuf v1.26.0
gopkg.in/validator.v2 v2.0.0-20180514200540-135c24b11c19
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
gorm.io/datatypes v1.0.0
)
go 1.16