grpc-api-example/go.mod

32 lines
1.2 KiB
Modula-2
Raw Normal View History

2024-02-26 10:12:30 +00:00
module github.com/sundowndev/grpc-api-example
go 1.20
require (
2024-02-27 19:21:35 +00:00
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.32.0-20240212200630-3014d81c3a48.1
github.com/bufbuild/protovalidate-go v0.5.2
2024-02-26 10:12:30 +00:00
github.com/gofrs/uuid v4.4.0+incompatible
2024-02-27 19:21:35 +00:00
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1
2024-02-26 10:12:30 +00:00
github.com/stretchr/testify v1.8.4
2024-02-28 12:15:30 +00:00
google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe
2024-02-26 10:12:30 +00:00
google.golang.org/grpc v1.62.0
google.golang.org/protobuf v1.32.0
)
require (
2024-02-27 14:42:25 +00:00
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
2024-02-26 10:12:30 +00:00
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.5.3 // indirect
2024-02-27 14:42:25 +00:00
github.com/google/cel-go v0.19.0 // indirect
2024-02-26 10:12:30 +00:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2024-02-27 19:21:35 +00:00
github.com/rogpeppe/go-internal v1.12.0 // indirect
2024-02-27 14:42:25 +00:00
github.com/stoewer/go-strcase v1.3.0 // indirect
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
2024-02-26 10:12:30 +00:00
golang.org/x/net v0.20.0 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/text v0.14.0 // indirect
2024-02-27 19:21:35 +00:00
google.golang.org/genproto v0.0.0-20240123012728-ef4313101c80 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
2024-02-26 10:12:30 +00:00
gopkg.in/yaml.v3 v3.0.1 // indirect
)