mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 23:45:10 +00:00
Go 1.24 was released on 2025-02-11. At this point Go 1.22 become an unsupported Go runtime. Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
31 lines
1.2 KiB
Modula-2
31 lines
1.2 KiB
Modula-2
module github.com/hyperledger/fabric-samples/asset-transfer-basic/chaincode-go
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/hyperledger/fabric-chaincode-go/v2 v2.0.0
|
|
github.com/hyperledger/fabric-contract-api-go/v2 v2.2.0
|
|
github.com/hyperledger/fabric-protos-go-apiv2 v0.3.4
|
|
github.com/stretchr/testify v1.10.0
|
|
google.golang.org/protobuf v1.36.1
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/go-openapi/jsonpointer v0.21.0 // indirect
|
|
github.com/go-openapi/jsonreference v0.21.0 // indirect
|
|
github.com/go-openapi/spec v0.21.0 // indirect
|
|
github.com/go-openapi/swag v0.23.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
|
|
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
|
|
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
|
|
golang.org/x/net v0.28.0 // indirect
|
|
golang.org/x/sys v0.24.0 // indirect
|
|
golang.org/x/text v0.17.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
|
|
google.golang.org/grpc v1.67.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|