Skip to content

Commit

Permalink
chore: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bcessa committed Oct 3, 2023
1 parent a2c7625 commit 3007677
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 86 deletions.
5 changes: 5 additions & 0 deletions agent/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,11 @@ func (h *Handler) ServerSetup(server *grpc.Server) {
protoV1.RegisterAgentAPIServer(server, &rpcHandler{handler: h})
}

// ServiceDesc returns the standard service description for `AgentAPI`.
func (h *Handler) ServiceDesc() grpc.ServiceDesc {
return protoV1.AgentAPI_ServiceDesc
}

// GatewaySetup return the HTTP setup method to allow exposing the
// handler's functionality through an HTTP gateway.
func (h *Handler) GatewaySetup() rpc.GatewayRegisterFunc {
Expand Down
41 changes: 20 additions & 21 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ go 1.18

require (
github.com/algorand/go-algorand-sdk v1.24.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.2
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.0
github.com/ipfs/go-ipfs-api v0.5.0
github.com/kennygrant/sanitize v1.2.4
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.7.0
github.com/spf13/viper v1.16.0
go.bryk.io/pkg v0.0.0-20230801145222-8c38b7af2b92
go.bryk.io/x v0.0.0-20230727165201-2b787cd68652
go.mongodb.org/mongo-driver v1.12.0
golang.org/x/crypto v0.12.0
google.golang.org/genproto/googleapis/api v0.0.0-20230726155614-23370e0ffb3e
google.golang.org/grpc v1.57.0
go.bryk.io/pkg v0.0.0-20230924180543-e117d4b37929
go.bryk.io/x v0.0.0-20230926191807-ed75aaebda7d
go.mongodb.org/mongo-driver v1.12.1
golang.org/x/crypto v0.13.0
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d
google.golang.org/grpc v1.58.2
google.golang.org/protobuf v1.31.0
)

Expand All @@ -38,7 +38,7 @@ require (
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/google/uuid v1.3.1 // indirect
github.com/gorilla/handlers v1.5.1 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
Expand Down Expand Up @@ -90,22 +90,21 @@ require (
github.com/xdg-go/scram v1.1.2 // indirect
github.com/xdg-go/stringprep v1.0.4 // indirect
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
go.bryk.io/miracl v0.5.1 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.42.0 // indirect
go.opentelemetry.io/otel v1.16.0 // indirect
go.opentelemetry.io/otel/metric v1.16.0 // indirect
go.opentelemetry.io/otel/trace v1.16.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.bryk.io/miracl v0.6.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.44.0 // indirect
go.opentelemetry.io/otel v1.18.0 // indirect
go.opentelemetry.io/otel/metric v1.18.0 // indirect
go.opentelemetry.io/otel/trace v1.18.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/net v0.12.0 // indirect
go.uber.org/zap v1.26.0 // indirect
golang.org/x/net v0.15.0 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/term v0.11.0 // indirect
golang.org/x/text v0.12.0 // indirect
golang.org/x/sys v0.12.0 // indirect
golang.org/x/term v0.12.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/time v0.3.0 // indirect
google.golang.org/genproto v0.0.0-20230706204954-ccb25ca9f130 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230726155614-23370e0ffb3e // indirect
google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
lukechampine.com/blake3 v1.1.7 // indirect
Expand Down
Loading

0 comments on commit 3007677

Please sign in to comment.