-
Notifications
You must be signed in to change notification settings - Fork 24
/
go.mod
72 lines (69 loc) · 2.9 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
module github.com/minus5/svckit
go 1.18
require (
github.com/aws/aws-sdk-go v1.44.211
github.com/cenkalti/backoff v2.1.1+incompatible
github.com/davecgh/go-spew v1.1.1
github.com/fatih/color v1.14.1
github.com/fatih/structtag v1.2.0
github.com/fsnotify/fsnotify v1.6.0
github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8
github.com/gobwas/httphead v0.1.0
github.com/gobwas/ws v1.1.0
github.com/gorilla/mux v1.8.0
github.com/hashicorp/consul/api v1.18.0
github.com/json-iterator/go v1.1.12
github.com/koding/websocketproxy v0.0.0-20181220232114-7ed82d81a28c
github.com/minus5/go-simplejson v0.5.1-0.20190518182223-8af509724a86
github.com/nranchev/go-libGeoIP v0.0.0-20170629073846-d6d4a9a4c7e8
github.com/nsqio/go-nsq v1.1.0
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d
github.com/oschwald/geoip2-golang v1.7.0
github.com/pkg/errors v0.9.1
github.com/satori/go.uuid v1.2.0
github.com/smira/go-statsd v1.3.2
github.com/stretchr/testify v1.8.2
github.com/urfave/negroni v1.0.0
github.com/yudai/gojsondiff v1.0.0
go.mongodb.org/mongo-driver v1.16.0
golang.org/x/net v0.21.0
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/armon/go-metrics v0.4.1 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-hclog v1.4.0 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hashicorp/serf v0.10.1 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/klauspost/compress v1.13.6 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/montanaflynn/stats v0.7.1 // indirect
github.com/onsi/ginkgo v1.11.0 // indirect
github.com/onsi/gomega v1.7.0 // indirect
github.com/oschwald/maxminddb-golang v1.9.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sergi/go-diff v1.0.0 // indirect
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
github.com/xdg-go/scram v1.1.2 // indirect
github.com/xdg-go/stringprep v1.0.4 // indirect
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // 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.22.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)