-
Notifications
You must be signed in to change notification settings - Fork 28
/
go.mod
82 lines (79 loc) · 3.81 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
75
76
77
78
79
80
81
82
module github.com/Peripli/service-manager
go 1.14
require (
github.com/DATA-DOG/go-sqlmock v1.3.1-0.20180720083239-852fc940e4b9
github.com/InVisionApp/go-health v2.1.0+incompatible
github.com/InVisionApp/go-logger v1.0.1
github.com/Kount/pq-timeouts v1.0.0
github.com/Microsoft/go-winio v0.4.16 // indirect
github.com/ajg/form v1.5.1 // indirect
github.com/antlr/antlr4 v0.0.0-20210105192202-5c2b686f95e1
github.com/benjamintf1/unmarshalledmatchers v1.0.0
github.com/cloudfoundry-community/go-cfenv v1.17.1-0.20171115121958-e84b5c116637
github.com/containerd/containerd v1.4.3 // indirect
github.com/coreos/go-oidc v2.0.0+incompatible
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/docker/docker v20.10.2+incompatible // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/fatih/structs v1.0.0
github.com/fsnotify/fsnotify v1.5.4
github.com/gavv/httpexpect v0.0.0-20170820080527-c44a6d7bb636
github.com/gavv/monotime v0.0.0-20190418164738-30dba4353424 // indirect
github.com/gbrlsnchs/jwt v0.5.0
github.com/go-redis/redis v6.15.9+incompatible
github.com/gobwas/glob v0.2.3
github.com/gofrs/uuid v3.1.0+incompatible
github.com/golang-migrate/migrate v3.5.4+incompatible
github.com/google/go-querystring v1.0.0 // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/gorilla/mux v1.6.1
github.com/gorilla/websocket v1.4.2
github.com/imkira/go-interpol v1.1.0 // indirect
github.com/jmoiron/sqlx v1.2.1-0.20201120164427-00c6e74d816a
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
github.com/kubernetes-sigs/go-open-service-broker-client v0.0.0-20180330214919-dca737037ce6
github.com/lib/pq v1.9.0
github.com/magiconair/properties v1.8.4 // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mitchellh/mapstructure v1.4.0
github.com/moby/term v0.0.0-20201216013528-df9cb8a40635 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/moul/http2curl v1.0.0 // indirect
github.com/onrik/logrus v0.4.1
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.19.0
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.1 // indirect
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/pquerna/cachecontrol v0.0.0-20201205024021-ac21108117ac // indirect
github.com/sergi/go-diff v1.1.0 // indirect
github.com/sirupsen/logrus v1.4.1
github.com/spf13/afero v1.5.1 // indirect
github.com/spf13/cast v1.3.0
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.3
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.7.1 // indirect
github.com/tidwall/gjson v1.9.3
github.com/tidwall/sjson v1.1.4
github.com/ulule/limiter v2.2.2+incompatible
github.com/valyala/fasthttp v1.34.0 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirect
github.com/yudai/gojsondiff v0.0.0-20170107030110-7b1b7adf999d // indirect
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
github.com/yudai/pp v2.0.1+incompatible // indirect
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5
google.golang.org/appengine v1.6.7 // indirect
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0 // indirect
gopkg.in/ini.v1 v1.62.0 // indirect
gopkg.in/square/go-jose.v2 v2.5.1
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
gotest.tools/v3 v3.0.3 // indirect
)
replace github.com/antlr/antlr4 v0.0.0-20210105192202-5c2b686f95e1 => github.com/antlr/antlr4 v0.0.0-20210105192202-5c2b686f95e1