-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: upgrade dependencies, and upgrade go to 1.19
- Loading branch information
Showing
4 changed files
with
158 additions
and
1,333 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,63 @@ | ||
module github.com/zeromicro/go-queue | ||
|
||
go 1.16 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/beanstalkd/go-beanstalk v0.2.0 | ||
github.com/nats-io/nats-server/v2 v2.9.15 // indirect | ||
github.com/nats-io/nats-streaming-server v0.25.3 // indirect | ||
github.com/nats-io/stan.go v0.10.4 | ||
github.com/rabbitmq/amqp091-go v1.8.0 | ||
github.com/rabbitmq/amqp091-go v1.9.0 | ||
github.com/segmentio/kafka-go v0.4.38 | ||
github.com/zeromicro/go-zero v1.4.3 | ||
github.com/zeromicro/go-zero v1.6.3 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cenkalti/backoff/v4 v4.2.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/fatih/color v1.16.0 // indirect | ||
github.com/go-logr/logr v1.3.0 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.0 // indirect | ||
github.com/klauspost/compress v1.17.7 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect | ||
github.com/nats-io/nats-server/v2 v2.9.15 // indirect | ||
github.com/nats-io/nats-streaming-server v0.25.3 // indirect | ||
github.com/nats-io/nats.go v1.34.1 // indirect | ||
github.com/nats-io/nkeys v0.4.7 // indirect | ||
github.com/nats-io/nuid v1.0.1 // indirect | ||
github.com/openzipkin/zipkin-go v0.4.2 // indirect | ||
github.com/pelletier/go-toml/v2 v2.1.1 // indirect | ||
github.com/pierrec/lz4/v4 v4.1.17 // indirect | ||
github.com/prometheus/client_golang v1.18.0 // indirect | ||
github.com/prometheus/client_model v0.5.0 // indirect | ||
github.com/prometheus/common v0.45.0 // indirect | ||
github.com/prometheus/procfs v0.12.0 // indirect | ||
github.com/redis/go-redis/v9 v9.4.0 // indirect | ||
github.com/spaolacci/murmur3 v1.1.0 // indirect | ||
go.opentelemetry.io/otel v1.19.0 // indirect | ||
go.opentelemetry.io/otel/exporters/jaeger v1.17.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 // indirect | ||
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 // indirect | ||
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.19.0 // indirect | ||
go.opentelemetry.io/otel/exporters/zipkin v1.19.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.19.0 // indirect | ||
go.opentelemetry.io/otel/sdk v1.19.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.19.0 // indirect | ||
go.opentelemetry.io/proto/otlp v1.0.0 // indirect | ||
go.uber.org/automaxprocs v1.5.3 // indirect | ||
golang.org/x/crypto v0.22.0 // indirect | ||
golang.org/x/net v0.21.0 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240123012728-ef4313101c80 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect | ||
google.golang.org/grpc v1.62.0 // indirect | ||
google.golang.org/protobuf v1.32.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
Oops, something went wrong.