|
1 | 1 | module github.com/sliveryou/goctl-swagger
|
2 | 2 |
|
3 |
| -go 1.16 |
| 3 | +go 1.19 |
4 | 4 |
|
5 | 5 | require (
|
6 | 6 | github.com/grpc-ecosystem/grpc-gateway v1.16.0
|
7 | 7 | github.com/urfave/cli/v2 v2.27.1
|
8 |
| - github.com/zeromicro/go-zero v1.6.1 |
9 |
| - github.com/zeromicro/go-zero/tools/goctl v1.6.1 |
10 |
| - golang.org/x/oauth2 v0.16.0 |
| 8 | + github.com/zeromicro/go-zero v1.6.2 |
| 9 | + github.com/zeromicro/go-zero/tools/goctl v1.6.2 |
| 10 | + golang.org/x/oauth2 v0.17.0 |
| 11 | +) |
| 12 | + |
| 13 | +require ( |
| 14 | + github.com/beorn7/perks v1.0.1 // indirect |
| 15 | + github.com/cenkalti/backoff/v4 v4.2.1 // indirect |
| 16 | + github.com/cespare/xxhash/v2 v2.2.0 // indirect |
| 17 | + github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect |
| 18 | + github.com/fatih/color v1.16.0 // indirect |
| 19 | + github.com/fatih/structtag v1.2.0 // indirect |
| 20 | + github.com/ghodss/yaml v1.0.0 // indirect |
| 21 | + github.com/go-logr/logr v1.3.0 // indirect |
| 22 | + github.com/go-logr/stdr v1.2.2 // indirect |
| 23 | + github.com/golang-jwt/jwt/v4 v4.5.0 // indirect |
| 24 | + github.com/golang/glog v1.1.2 // indirect |
| 25 | + github.com/golang/protobuf v1.5.3 // indirect |
| 26 | + github.com/google/uuid v1.6.0 // indirect |
| 27 | + github.com/gookit/color v1.5.4 // indirect |
| 28 | + github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.0 // indirect |
| 29 | + github.com/inconshreveable/mousetrap v1.1.0 // indirect |
| 30 | + github.com/mattn/go-colorable v0.1.13 // indirect |
| 31 | + github.com/mattn/go-isatty v0.0.20 // indirect |
| 32 | + github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect |
| 33 | + github.com/openzipkin/zipkin-go v0.4.2 // indirect |
| 34 | + github.com/pelletier/go-toml/v2 v2.1.1 // indirect |
| 35 | + github.com/prometheus/client_golang v1.18.0 // indirect |
| 36 | + github.com/prometheus/client_model v0.5.0 // indirect |
| 37 | + github.com/prometheus/common v0.45.0 // indirect |
| 38 | + github.com/prometheus/procfs v0.12.0 // indirect |
| 39 | + github.com/russross/blackfriday/v2 v2.1.0 // indirect |
| 40 | + github.com/spaolacci/murmur3 v1.1.0 // indirect |
| 41 | + github.com/spf13/cobra v1.8.0 // indirect |
| 42 | + github.com/spf13/pflag v1.0.5 // indirect |
| 43 | + github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect |
| 44 | + github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect |
| 45 | + github.com/zeromicro/antlr v0.0.1 // indirect |
| 46 | + go.opentelemetry.io/otel v1.19.0 // indirect |
| 47 | + go.opentelemetry.io/otel/exporters/jaeger v1.17.0 // indirect |
| 48 | + go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 // indirect |
| 49 | + go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 // indirect |
| 50 | + go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 // indirect |
| 51 | + go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.19.0 // indirect |
| 52 | + go.opentelemetry.io/otel/exporters/zipkin v1.19.0 // indirect |
| 53 | + go.opentelemetry.io/otel/metric v1.19.0 // indirect |
| 54 | + go.opentelemetry.io/otel/sdk v1.19.0 // indirect |
| 55 | + go.opentelemetry.io/otel/trace v1.19.0 // indirect |
| 56 | + go.opentelemetry.io/proto/otlp v1.0.0 // indirect |
| 57 | + go.uber.org/automaxprocs v1.5.3 // indirect |
| 58 | + golang.org/x/net v0.21.0 // indirect |
| 59 | + golang.org/x/sys v0.17.0 // indirect |
| 60 | + golang.org/x/text v0.14.0 // indirect |
| 61 | + google.golang.org/appengine v1.6.8 // indirect |
| 62 | + google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 // indirect |
| 63 | + google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 // indirect |
| 64 | + google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect |
| 65 | + google.golang.org/grpc v1.61.0 // indirect |
| 66 | + google.golang.org/protobuf v1.32.0 // indirect |
| 67 | + gopkg.in/yaml.v2 v2.4.0 // indirect |
11 | 68 | )
|
0 commit comments