mirror of
https://github.com/go-micro/go-micro.git
synced 2025-03-17 20:28:06 +02:00
* 1.fix plugins go get bug. 2.update all mode. 3.add tidy tools * continue fix pre version go get bug that unknown v3.5.1
24 lines
1.1 KiB
Modula-2
24 lines
1.1 KiB
Modula-2
module github.com/asim/go-micro/plugins/server/grpc/v3
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/asim/go-micro/plugins/broker/memory/v3 v3.0.0-20210630062103-c13bb07171bc
|
|
github.com/asim/go-micro/plugins/client/grpc/v3 v3.0.0-20210630062103-c13bb07171bc
|
|
github.com/asim/go-micro/plugins/registry/memory/v3 v3.0.0-20210630062103-c13bb07171bc
|
|
github.com/asim/go-micro/plugins/transport/grpc/v3 v3.0.0-20210630062103-c13bb07171bc
|
|
github.com/asim/go-micro/v3 v3.5.2-0.20210630062103-c13bb07171bc
|
|
github.com/golang/protobuf v1.5.2
|
|
golang.org/x/net v0.0.0-20210614182718-04defd469f4e
|
|
google.golang.org/genproto v0.0.0-20200806141610-86f49bd18e98
|
|
google.golang.org/grpc v1.38.0
|
|
)
|
|
|
|
replace (
|
|
github.com/asim/go-micro/plugins/broker/memory/v3 => ../../../plugins/broker/memory
|
|
github.com/asim/go-micro/plugins/client/grpc/v3 => ../../../plugins/client/grpc
|
|
github.com/asim/go-micro/plugins/registry/memory/v3 => ../../../plugins/registry/memory
|
|
github.com/asim/go-micro/plugins/transport/grpc/v3 => ../../../plugins/transport/grpc
|
|
github.com/asim/go-micro/v3 => ../../../../go-micro
|
|
)
|