forked from openshift-online/rh-trex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
74 lines (71 loc) · 3.04 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
module github.com/openshift-online/rh-trex
go 1.21
require (
github.com/Masterminds/squirrel v1.1.0
github.com/auth0/go-jwt-middleware v0.0.0-20190805220309-36081240882b
github.com/bxcodec/faker/v3 v3.2.0
github.com/docker/go-healthcheck v0.1.0
github.com/getsentry/sentry-go v0.20.0
github.com/ghodss/yaml v1.0.0
github.com/go-gormigrate/gormigrate/v2 v2.0.0
github.com/golang-jwt/jwt/v4 v4.5.0
github.com/golang/glog v1.0.0
github.com/google/uuid v1.3.0
github.com/gorilla/handlers v1.4.2
github.com/gorilla/mux v1.7.3
github.com/jinzhu/inflection v1.0.0
github.com/lib/pq v1.10.5
github.com/mendsley/gojwk v0.0.0-20141217222730-4d5ec6e58103
github.com/onsi/gomega v1.27.1
github.com/openshift-online/ocm-sdk-go v0.1.334
github.com/prometheus/client_golang v1.16.0
github.com/segmentio/ksuid v1.0.2
github.com/spf13/cobra v0.0.5
github.com/spf13/pflag v1.0.5
github.com/yaacov/tree-search-language v0.0.0-20190923184055-1c2dad2e354b
gopkg.in/resty.v1 v1.12.0
gorm.io/driver/postgres v1.0.5
gorm.io/gorm v1.20.5
)
require (
github.com/antlr/antlr4 v0.0.0-20190518164840-edae2a1c9b4b // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/docker/distribution v2.8.1+incompatible // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/gorilla/css v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.12.0 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/pgtype v1.11.0 // indirect
github.com/jackc/pgx/v4 v4.16.0 // indirect
github.com/jinzhu/now v1.1.1 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/microcosm-cc/bluemonday v1.0.23 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.42.0 // indirect
github.com/prometheus/procfs v0.10.1 // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
github.com/smartystreets/goconvey v1.8.1 // indirect
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
google.golang.org/protobuf v1.30.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)