-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
76 lines (73 loc) · 3.78 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
module github.com/topfreegames/mqtt-history
go 1.18
require (
github.com/franela/goblin v0.0.0-20180407132755-cd5d08fb4ede
github.com/getsentry/raven-go v0.0.0-20160805001729-c9d3cc542ad1
github.com/labstack/echo v2.0.3-0.20160926051323-04e6901d05b5+incompatible
github.com/newrelic/go-agent v1.4.0
github.com/onsi/gomega v1.10.1
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
github.com/opentracing/opentracing-go v1.2.0
github.com/satori/go.uuid v1.1.1-0.20160713180306-0aa62d5ddceb
github.com/spf13/cobra v0.0.3
github.com/spf13/viper v1.0.2
github.com/topfreegames/extensions v5.18.1+incompatible
github.com/uber-go/zap v0.0.0-20160809182253-d11d2851fcab
github.com/uber/jaeger-client-go v2.30.0+incompatible
go.mongodb.org/mongo-driver v1.7.0
)
require (
cloud.google.com/go v0.20.0 // indirect
github.com/DataDog/datadog-go v0.0.0-20170427165718-0ddda6bee211 // indirect
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect
github.com/asaskevich/govalidator v0.0.0-20180315120708-ccb8e960c48f // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/go-pg/pg v6.10.0+incompatible // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/golang/mock v1.0.0 // indirect
github.com/golang/protobuf v1.4.2 // indirect
github.com/golang/snappy v0.0.1 // indirect
github.com/google/go-cmp v0.5.4 // indirect
github.com/gorilla/context v0.0.0-20160226214623-1ea25387ff6f // indirect
github.com/gorilla/mux v1.6.1 // indirect
github.com/hashicorp/hcl v0.0.0-20160822214145-baeb59c71071 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a // indirect
github.com/klauspost/compress v1.9.5 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/fs v0.0.0-20131111012553-2788f0dbd169 // indirect
github.com/labstack/gommon v0.1.0 // indirect
github.com/magiconair/properties v1.7.1-0.20160816085511-61b492c03cf4 // indirect
github.com/mattn/go-colorable v0.0.6 // indirect
github.com/mattn/go-isatty v0.0.0-20160806122752-66b8e73f3f5c // indirect
github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee // indirect
github.com/onsi/ginkgo v1.14.2 // indirect
github.com/pelletier/go-toml v1.7.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pkg/sftp v0.0.0-20160721231453-a71e8f580e3b // indirect
github.com/sirupsen/logrus v1.4.2 // indirect
github.com/spf13/afero v0.0.0-20160821083612-20500e2abd0d // indirect
github.com/spf13/cast v0.0.0-20160730092037-e31f36ffc91a // indirect
github.com/spf13/jwalterweatherman v0.0.0-20160311093646-33c24e77fb80 // indirect
github.com/spf13/pflag v1.0.3 // indirect
github.com/stretchr/testify v1.7.0 // indirect
github.com/uber-go/atomic v1.0.0 // indirect
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
github.com/valyala/fasttemplate v0.0.0-20160315193134-3b874956e03f // indirect
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
github.com/xdg-go/scram v1.0.2 // indirect
github.com/xdg-go/stringprep v1.0.2 // indirect
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
go.uber.org/atomic v1.10.0 // indirect
golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073 // indirect
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7 // indirect
golang.org/x/oauth2 v0.0.0-20180314180239-fdc9e635145a // indirect
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
golang.org/x/sys v0.0.0-20220926163933-8cfa568d3c25 // indirect
golang.org/x/text v0.3.5 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.0.0 // indirect
google.golang.org/protobuf v1.23.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
)