|
1 | 1 | module github.com/asppj/lolita
|
2 | 2 |
|
3 |
| -go 1.14 |
| 3 | +go 1.18 |
4 | 4 |
|
5 | 5 | require (
|
6 |
| - github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect |
7 |
| - github.com/fortytw2/leaktest v1.3.0 // indirect |
8 | 6 | github.com/gin-gonic/gin v1.7.4
|
9 | 7 | github.com/go-errors/errors v1.0.1
|
10 | 8 | github.com/go-redis/redis v6.15.6+incompatible
|
11 | 9 | github.com/golang/protobuf v1.5.2
|
12 | 10 | github.com/grpc-ecosystem/go-grpc-middleware v1.1.0
|
13 | 11 | github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
|
14 | 12 | github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645
|
15 |
| - github.com/json-iterator/go v1.1.10 // indirect |
16 |
| - github.com/klauspost/compress v1.11.0 // indirect |
17 |
| - github.com/kr/text v0.2.0 // indirect |
18 |
| - github.com/mailru/easyjson v0.7.0 // indirect |
19 |
| - github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect |
20 | 13 | github.com/olivere/elastic v6.2.26+incompatible
|
21 |
| - github.com/onsi/ginkgo v1.14.1 // indirect |
22 |
| - github.com/onsi/gomega v1.10.2 // indirect |
23 | 14 | github.com/opentracing-contrib/go-gin v0.0.0-20190301172248-2e18f8b9c7d4
|
24 | 15 | github.com/opentracing/opentracing-go v1.1.0
|
25 | 16 | github.com/panjf2000/ants v1.3.0
|
26 |
| - github.com/pelletier/go-toml v1.8.1 // indirect |
27 | 17 | github.com/prometheus/client_golang v1.3.0
|
28 | 18 | github.com/sirupsen/logrus v1.7.0
|
29 | 19 | github.com/stevenroose/gonfig v0.1.5
|
30 | 20 | github.com/uber/jaeger-client-go v2.20.1+incompatible
|
31 |
| - github.com/uber/jaeger-lib v2.2.0+incompatible // indirect |
32 | 21 | go.mongodb.org/mongo-driver v1.7.2
|
| 22 | + google.golang.org/grpc v1.25.1 |
| 23 | + google.golang.org/protobuf v1.27.1 |
| 24 | +) |
| 25 | + |
| 26 | +require ( |
| 27 | + github.com/beorn7/perks v1.0.1 // indirect |
| 28 | + github.com/cespare/xxhash/v2 v2.1.1 // indirect |
| 29 | + github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect |
| 30 | + github.com/fortytw2/leaktest v1.3.0 // indirect |
| 31 | + github.com/gin-contrib/sse v0.1.0 // indirect |
| 32 | + github.com/go-playground/locales v0.13.0 // indirect |
| 33 | + github.com/go-playground/universal-translator v0.17.0 // indirect |
| 34 | + github.com/go-playground/validator/v10 v10.4.1 // indirect |
| 35 | + github.com/go-stack/stack v1.8.0 // indirect |
| 36 | + github.com/golang/snappy v0.0.1 // indirect |
| 37 | + github.com/json-iterator/go v1.1.10 // indirect |
| 38 | + github.com/klauspost/compress v1.11.0 // indirect |
| 39 | + github.com/kr/text v0.2.0 // indirect |
| 40 | + github.com/leodido/go-urn v1.2.0 // indirect |
| 41 | + github.com/mailru/easyjson v0.7.0 // indirect |
| 42 | + github.com/mattn/go-isatty v0.0.12 // indirect |
| 43 | + github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect |
| 44 | + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 45 | + github.com/modern-go/reflect2 v1.0.1 // indirect |
| 46 | + github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect |
| 47 | + github.com/onsi/ginkgo v1.14.1 // indirect |
| 48 | + github.com/onsi/gomega v1.10.2 // indirect |
| 49 | + github.com/pelletier/go-toml v1.8.1 // indirect |
| 50 | + github.com/pkg/errors v0.9.1 // indirect |
| 51 | + github.com/prometheus/client_model v0.1.0 // indirect |
| 52 | + github.com/prometheus/common v0.7.0 // indirect |
| 53 | + github.com/prometheus/procfs v0.0.8 // indirect |
| 54 | + github.com/uber/jaeger-lib v2.2.0+incompatible // indirect |
| 55 | + github.com/ugorji/go/codec v1.1.7 // indirect |
| 56 | + github.com/xdg-go/pbkdf2 v1.0.0 // indirect |
| 57 | + github.com/xdg-go/scram v1.0.2 // indirect |
| 58 | + github.com/xdg-go/stringprep v1.0.2 // indirect |
| 59 | + github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect |
33 | 60 | go.uber.org/atomic v1.5.1 // indirect
|
34 | 61 | golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
|
35 |
| - golang.org/x/mod v0.4.0 // indirect |
| 62 | + golang.org/x/lint v0.0.0-20190930215403-16217165b5de // indirect |
| 63 | + golang.org/x/net v0.0.0-20201021035429-f5854403a974 // indirect |
| 64 | + golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 // indirect |
36 | 65 | golang.org/x/sys v0.0.0-20201231184435-2d18734c6014 // indirect
|
| 66 | + golang.org/x/text v0.3.5 // indirect |
37 | 67 | golang.org/x/tools v0.0.0-20210104081019-d8d6ddbec6ee // indirect
|
38 | 68 | google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a // indirect
|
39 |
| - google.golang.org/grpc v1.25.1 |
40 |
| - google.golang.org/protobuf v1.27.1 |
41 | 69 | gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
42 | 70 | gopkg.in/yaml.v2 v2.4.0 // indirect
|
43 | 71 | gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
|
|
0 commit comments