-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
51 lines (49 loc) · 2.25 KB
/
go.mod
File metadata and controls
51 lines (49 loc) · 2.25 KB
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
module github.com/LTitan/BloomFilter
go 1.13
require (
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc
github.com/awalterschulze/gographviz v2.0.1+incompatible // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/gin-gonic/gin v1.4.0
github.com/golang/protobuf v1.3.2
github.com/gorilla/mux v1.7.3 // indirect
github.com/gorilla/websocket v1.4.1 // indirect
github.com/igm/sockjs-go v2.0.1+incompatible // indirect
github.com/jinzhu/gorm v1.9.12
github.com/json-iterator/go v1.1.8 // indirect
github.com/juju/ratelimit v1.0.1 // indirect
github.com/koding/cache v0.0.0-20161222233015-e8a81b0b3f20 // indirect
github.com/koding/kite v0.0.0-20180710021347-baa1a54919e3 // indirect
github.com/koding/logging v0.0.0-20160720134017-8b5a689ed69b // indirect
github.com/mackerelio/go-osstat v0.0.0-20191011055430-af968620273d
github.com/mattn/go-isatty v0.0.10 // indirect
github.com/natefinch/lumberjack v2.0.0+incompatible
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pelletier/go-toml v1.6.0 // indirect
github.com/satori/go.uuid v1.2.0
github.com/sergi/go-diff v1.1.0 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v0.0.6
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.6.2
github.com/swaggo/files v0.0.0-20190704085106-630677cd5c14
github.com/swaggo/gin-swagger v1.2.0
github.com/swaggo/swag v1.5.1
github.com/ugorji/go v1.1.7 // indirect
go.uber.org/zap v1.14.1
golang.org/x/mod v0.2.0 // indirect
golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa // indirect
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9 // indirect
golang.org/x/tools v0.0.0-20200128002243-345141a36859 // indirect
golang.org/x/tools/gopls v0.2.2 // indirect
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
google.golang.org/genproto v0.0.0-20200128133413-58ce757ed39b // indirect
google.golang.org/grpc v1.27.0
gopkg.in/ini.v1 v1.51.1 // indirect
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)