-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
60 lines (58 loc) · 2.89 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
module github.com/DITAS-Project/VDC-Request-Monitor
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/DITAS-Project/KeycloakConfigClient v1.0.3
github.com/DITAS-Project/TUBUtil v1.0.2
github.com/DITAS-Project/blueprint-go v0.0.0-20191008152613-bf6bc6aa3c2d
github.com/DataDog/zstd v1.3.5 // indirect
github.com/Microsoft/go-winio v0.4.12 // indirect
github.com/Shopify/sarama v1.20.1 // indirect
github.com/Shopify/toxiproxy v2.1.4+incompatible // indirect
github.com/apache/thrift v0.12.0 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/docker/docker v1.13.1
github.com/docker/go-connections v0.4.0
github.com/docker/go-units v0.3.3 // indirect
github.com/eapache/go-resiliency v1.1.0 // indirect
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect
github.com/eapache/queue v1.1.0 // indirect
github.com/gbrlsnchs/jwt/v3 v3.0.0-beta.1
github.com/go-logfmt/logfmt v0.4.0 // indirect
github.com/go-openapi/jsonreference v0.19.3 // indirect
github.com/go-openapi/spec v0.19.4 // indirect
github.com/golang/snappy v0.0.1 // indirect
github.com/gorilla/mux v1.7.2
github.com/gorilla/websocket v1.4.0 // indirect
github.com/hashicorp/golang-lru v0.5.1
github.com/kabukky/httpscerts v0.0.0-20150320125433-617593d7dcb3
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/lestrrat/go-jwx v0.0.0-20180221005942-b7d4802280ae
github.com/lestrrat/go-pdebug v0.0.0-20180220043741-569c97477ae8 // indirect
github.com/mailgun/timetools v0.0.0-20170619190023-f3a7b8ffff47 // indirect
github.com/mailru/easyjson v0.7.0 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/olivere/elastic v6.2.16+incompatible
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492 // indirect
github.com/opentracing/opentracing-go v1.0.2
github.com/openzipkin-contrib/zipkin-go-opentracing v0.3.5 // indirect
github.com/openzipkin/zipkin-go-opentracing v0.3.5
github.com/pierrec/lz4 v2.0.5+incompatible // indirect
github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a // indirect
github.com/satori/go.uuid v1.2.0
github.com/sirupsen/logrus v1.4.2
github.com/spf13/pflag v1.0.3
github.com/spf13/viper v1.3.1
github.com/vulcand/oxy v0.0.0-20181130145254-c34b0c501e43
github.com/x-cray/logrus-prefixed-formatter v0.5.2
go.uber.org/atomic v1.3.2
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
golang.org/x/net v0.0.0-20191021144547-ec77196f6094 // indirect
golang.org/x/sys v0.0.0-20191022100944-742c48ecaeb7 // indirect
golang.org/x/tools v0.0.0-20190729092621-ff9f1409240a // indirect
gopkg.in/h2non/gock.v1 v1.0.14
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce // indirect
)
go 1.13