-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
55 lines (53 loc) · 2.39 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
module github.com/advancedlogic/easy
require (
github.com/PuerkitoBio/goquery v1.5.0 // indirect
github.com/ankit-arora/go-utils v0.0.0-20170709111640-7f375a7a7b81
github.com/coreos/go-etcd v2.0.0+incompatible // indirect
github.com/fsnotify/fsnotify v1.4.7
github.com/gin-contrib/cors v1.3.0
github.com/gin-gonic/gin v1.4.0
github.com/go-ini/ini v1.42.0 // indirect
github.com/go-redis/redis v6.15.2+incompatible // indirect
github.com/golang/snappy v0.0.1 // indirect
github.com/google/uuid v1.1.1
github.com/hashicorp/consul v1.4.4
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect
github.com/hashicorp/go-retryablehttp v0.5.3 // indirect
github.com/hashicorp/go-rootcerts v1.0.0 // indirect
github.com/hashicorp/serf v0.8.2 // indirect
github.com/hashicorp/vault v1.1.1
github.com/magiconair/properties v1.8.1
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/minio/minio-go v6.0.14+incompatible
github.com/mmcdole/gofeed v1.0.0-beta2 // indirect
github.com/mmcdole/goxpp v0.0.0-20181012175147-0068e33feabf // indirect
github.com/nats-io/go-nats v1.7.2
github.com/nats-io/nkeys v0.0.2 // indirect
github.com/nats-io/nuid v1.0.0 // indirect
github.com/onsi/ginkgo v1.10.2 // indirect
github.com/onsi/gomega v1.7.0 // indirect
github.com/pelletier/go-toml v1.5.0 // indirect
github.com/pierrec/lz4 v2.0.5+incompatible // indirect
github.com/pkg/errors v0.8.1
github.com/ryanuber/go-glob v1.0.0 // indirect
github.com/shoenig/vaultapi v1.0.0
github.com/sirupsen/logrus v1.4.0
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cobra v0.0.3 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.4.0
github.com/stretchr/testify v1.3.0
github.com/toorop/gin-logrus v0.0.0-20180629064933-5d05462a6ed8
github.com/ugorji/go/codec v0.0.0-20190320090025-2dc34c0b8780 // indirect
github.com/volatiletech/authboss v2.2.0+incompatible // indirect
github.com/x-cray/logrus-prefixed-formatter v0.5.2
github.com/zsais/go-gin-prometheus v0.0.0-20181030200533-58963fb32f54
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
golang.org/x/net v0.0.0-20190522155817-f3200d17e092
golang.org/x/oauth2 v0.0.0-20190319182350-c85d3e98c914 // indirect
golang.org/x/sys v0.0.0-20191020212454-3e7259c5e7c2 // indirect
golang.org/x/text v0.3.2
gopkg.in/go-playground/assert.v1 v1.2.1
)
go 1.13