diff --git a/go/go.mod b/go/go.mod index 1237db4..ffcb9b7 100644 --- a/go/go.mod +++ b/go/go.mod @@ -1,29 +1,35 @@ module github.com/rechain-network/katya-mesh-go -go 1.21 +go 1.23.0 require ( github.com/go-redis/redis/v8 v8.11.5 github.com/google/uuid v1.6.0 github.com/gorilla/websocket v1.5.1 github.com/lib/pq v1.10.9 - golang.org/x/crypto v0.21.0 - golang.org/x/sys v0.18.0 - google.golang.org/grpc v1.60.1 - google.golang.org/protobuf v1.31.0 github.com/prometheus/client_golang v1.18.0 - golang.org/x/net v0.23.0 - github.com/stretchr/testify v1.8.4 - github.com/spf13/cobra v1.7.0 - github.com/spf13/viper v1.16.0 go.uber.org/zap v1.26.0 - github.com/golang-jwt/jwt/v5 v5.2.0 - github.com/hashicorp/consul/api v1.26.1 - github.com/Shopify/sarama v1.38.1 - github.com/segmentio/kafka-go v0.4.47 - github.com/go-kit/kit v0.13.0 - github.com/opentracing/opentracing-go v1.2.0 - github.com/uber/jaeger-client-go v2.30.0+incompatible - github.com/uber/jaeger-lib v2.4.1+incompatible + golang.org/x/crypto v0.35.0 + google.golang.org/grpc v1.60.1 ) +require ( + github.com/beorn7/perks v1.0.1 // indirect + github.com/cespare/xxhash/v2 v2.2.0 // indirect + github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect + github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect + github.com/fsnotify/fsnotify v1.6.0 // indirect + github.com/golang/protobuf v1.5.3 // indirect + github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect + github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // 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/stretchr/testify v1.8.4 // indirect + go.uber.org/multierr v1.10.0 // indirect + golang.org/x/net v0.23.0 // indirect + golang.org/x/sys v0.30.0 // indirect + golang.org/x/text v0.22.0 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect + google.golang.org/protobuf v1.31.0 // indirect +)