mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
grpc.Dial() is (soon to be) deprecated in current gRPC versions. Use grpc.NewClient() instead. Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
19 lines
602 B
Modula-2
19 lines
602 B
Modula-2
module github.com/hyperledger/fabric-samples/hardware-security-module/application-go
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
github.com/hyperledger/fabric-gateway v1.5.0
|
|
google.golang.org/grpc v1.63.2
|
|
)
|
|
|
|
require (
|
|
github.com/hyperledger/fabric-protos-go-apiv2 v0.3.3 // indirect
|
|
github.com/miekg/pkcs11 v1.1.1 // indirect
|
|
golang.org/x/crypto v0.22.0 // indirect
|
|
golang.org/x/net v0.24.0 // indirect
|
|
golang.org/x/sys v0.19.0 // indirect
|
|
golang.org/x/text v0.14.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20240401170217-c3f982113cda // indirect
|
|
google.golang.org/protobuf v1.33.0 // indirect
|
|
)
|